Commit Graph

54 Commits

Author SHA1 Message Date
Tibor Lajos Füzi 9e55e5cab5 fltk: update 1.3.4-2 --> 1.3.5 2020-06-03 13:32:50 +10:00
Viktor Szakats f5a4a69695 secure URLs 2018-12-09 02:50:28 +11:00
0xACE d8c63e296d
Updated FLTK to 1.3.4-2 and _UPDATE function
The previous update function wouldn't catch suffixed -* versions, nor did the URL support them.
2018-10-17 20:34:34 +02:00
Tony Theodore 01e2a64d00 cross packages: replace dependency gcc with cc 2017-12-23 08:19:00 +11:00
Boris Nagaev 74163f1794 add _WEBSITE and _DESCR fields to core packages
See https://github.com/mxe/mxe/issues/1422

Automation (Python 2 code): https://gist.github.com/9f5c315e5d0cf113d41dc454b7a0eb41
2016-12-22 22:25:48 +01:00
Boris Nagaev 6adb5ade12 Copyright headers: point to LICENSE.md and shorten
The following script was applied:

    sed ':a;/part of MXE.$/{N;s/\n//;ba}' -i $(git grep -l 'part of MXE')

    sed 's/\(part of MXE\).*\(See index.html\)/\1. \2/' -i \
        $(git grep -l 'part of MXE.*See index.html')

    before='This file is part of MXE. See index.html for further information.'
    after='This file is part of MXE. See LICENSE.md for licensing information.'
    sed "s/$before/$after/" -i $(git grep -l 'part of MXE')

Then git grep 'index.html for further information' revealed two other files.
One of them was patched manually (patch.mk). Makefile has text
"See index.html for further information" unrelated to licensing.

See https://github.com/mxe/mxe/issues/1500#issuecomment-241340792
2016-08-27 12:31:29 +03:00
Boris Nagaev 17e40d3884 use $(TEST_FILE) instead of $(2).c and other
The following script was applied:

    set -xue

    find src/ plugins/ -name '*.mk' -type f > mks

    # special cases for test file:
    # ls -d src/*-test* | sed 's@-test.*@@' | sort | uniq --repeated
    sed 's@$(2).c@$(PWD)/src/$(PKG)-test.c@g' -i \
        src/{boost,freeimage,hdf5,lapack,sdl,sdl_image,sdl_sound}.mk
    sed 's@$(2).f@$(PWD)/src/$(PKG)-test.f@g' -i src/lapack.mk
    sed 's@$(PWD)/$(2).pro@$(PWD)/src/$(PKG)-test.pro@g' -i \
        src/qt.mk plugins/examples/custom-qt-min/overrides.mk
    sed 's@$(2)-CMakeLists.txt@$(PWD)/src/$(PKG)-test-CMakeLists.txt@g' \
        -i src/{sdl_image,sdl_sound}.mk

    # check
    for base in $(ls -d src/*-test* | sed 's@-test.*@@' | sort | uniq --repeated); do
        ! grep -q '$(2)' "${base}.mk"
    done

    # other $(2)
    sed 's@$(2).cpp@$(TEST_FILE)@g' -i $(cat mks)
    sed 's@$(2).cxx@$(TEST_FILE)@g' -i $(cat mks)
    sed 's@$(2).c@$(TEST_FILE)@g' -i $(cat mks)
    sed 's@$(2).ml@$(TEST_FILE)@g' -i $(cat mks)
    sed 's@$(2).f@$(TEST_FILE)@g' -i $(cat mks)

    # check
    ! grep '$(2)' $(cat mks)

See https://github.com/mxe/mxe/issues/1452
2016-07-30 22:38:45 +03:00
Tony Theodore fc0ed34fb9 all packages: really use sha256 checksums 2015-09-23 18:32:58 +10:00
Tony Theodore ac7344aaef many packages: cleanup deps ordering 2015-09-23 17:41:16 +10:00
Tony Theodore a228c0488f all packages: switch to sha256 checksums
closes #871
2015-09-23 17:27:16 +10:00
Tony Theodore 6d28d37485 fltk: update 2014-12-01 22:50:31 +11:00
Tony Theodore 89f10e44f8 packages curl fftw fltk freetds gnutls libidn libssh2: enable/fix shared build 2014-02-17 16:01:50 +11:00
Volker Grabsch e412eb642d Move package versions from index.html back into the src/*.mk files
Most of the automatic conversion was done using the following Python script:

import os
import re
pkgs = sorted(mkfile[:-len('.mk')] for mkfile in os.listdir('src') if mkfile.endswith('.mk'))
with open('index.html', 'rb') as f:
    index = f.read()
pkgs_index = re.findall('<td class="package">([^<]*)</td>', index)
assert pkgs_index == pkgs
versions = dict(re.findall('<td id="([^"]*)-version">([^<]*)</td>', index))
assert sorted(versions.keys()) == pkgs
for pkg in pkgs:
    version = versions[pkg]
    with open('src/' + pkg + '.mk', 'rb') as f:
        mk = f.read()
    checksumpos = mk.index('\n$(PKG)_CHECKSUM ')
    versionline = '\n$(PKG)_VERSION  := %(version)s' % {'version': version}
    newmk = mk[:checksumpos] + versionline + mk[checksumpos:]
    with open('src/' + pkg + '.mk', 'wb') as f:
        f.write(newmk)
2013-07-22 01:41:31 +02:00
Niels Kristian Bech Jensen 34582ebb0b Package fltk: update download URL 2013-05-05 22:52:01 +02:00
Mark Brand 3d91a4ae18 update package fltk 2012-12-09 22:34:17 +01:00
Mark Brand 28f7e25f91 update package fltk 2012-11-07 12:55:37 +01:00
Tony Theodore 4ed13a9f30 all packages: use $(WGET) portability variable 2012-05-16 17:49:40 +10:00
Volker Grabsch 00f4690d3f Move full package names from src/*.mk into package list (index.html) 2012-03-29 21:41:44 +02:00
Volker Grabsch 7badad85c9 Move doc/index.html -> index.html 2012-03-29 12:14:15 +02:00
Volker Grabsch 7e6723adb5 Move $(PKG)_VERSION and $(PKG)_WEBSITE from src/*.mk into doc/index.html 2012-03-29 11:07:07 +02:00
Volker Grabsch defdff28f0 Rebrand to new project name MXE 2012-03-28 15:46:58 +02:00
Volker Grabsch e86ebf0526 Fix annoying whitespaces at EOL 2012-03-27 13:29:57 +02:00
Volker Grabsch 148931b4ae replaced $(BUILD) with a more direct and less brittle construct
For discussion, see the following email and its follow-ups:
http://lists.nongnu.org/archive/html/mingw-cross-env-list/2011-11/msg00112.html
2011-11-28 09:51:56 +01:00
Mark Brand 3cce3e9b58 many packages: use --build instead of wine cross_compiling hack 2011-11-26 16:30:36 +01:00
Volker Grabsch 98a2ee286d improved coding style regarding creation of symlinks 2011-08-15 12:40:35 +02:00
Mark Brand a83ef35091 update packages fltk libntlm 2011-06-20 20:27:01 +02:00
Mark Brand 01af1d03c9 update packages: dbus fltk imagemagick x264 2011-06-11 19:05:29 +02:00
Mark Brand 7b8631c5e7 upgrade packages: dbus fltk geos glib gnutls imagemagick lcms libass libevent libgsf pfstools x264 xvidcore xz 2011-06-08 08:53:36 +02:00
Tony Theodore 4cf9601e56 package fltk: add test program 2011-05-24 22:38:13 +10:00
Mark Brand 5bf241b285 update packages fltk tinyxml 2011-05-15 10:06:41 +02:00
Mark Brand 8b686e3aa5 update packages gmp fltk imagemagick 2011-05-09 10:21:54 +02:00
Volker Grabsch cd1a17fd6b improved comment for package fltk 2011-04-24 22:22:50 +02:00
Volker Grabsch 38f4056efe use the 1.3.x snapshots of package fltk 2011-04-24 15:46:19 +02:00
Mark Brand dbed610cc7 don't remove the "-mno-cygwin" flag, but provide clean bugfixes instead for packages fltk and xvidcore 2011-03-28 00:13:53 +02:00
Mark Brand 4e751c0bc5 package fltk: workaround for gcc 4.6 2011-03-26 01:00:59 +01:00
Mark Brand c0aa9d9644 package fltk: libpng 1.5 compatibility 2011-03-03 21:15:33 +01:00
Tony Theodore 2a8184f58a package fltk: libpng15 breaks build - use builtin png library instead 2011-03-04 02:38:27 +11:00
Volker Grabsch b2053a8302 detangle package pthreads from package gcc
Originally, the builds of gcc and pthreads were interlaced as a
work-around to get OpenMPI support. However, that never worked.
2010-05-03 12:12:53 +02:00
Volker Grabsch e1ab4466ff changed coding style: make "-i" always the first argument of $(SED) (by Mark Brand) 2010-02-16 04:12:53 +01:00
Volker Grabsch 71f83a7e0d point consequently to "doc/index.html" instead of "doc/index.html or doc/README" 2010-02-08 00:58:06 +01:00
Volker Grabsch 8a3233b044 simplified file markers 2010-01-16 23:02:02 +01:00
Volker Grabsch 2b4323ae90 update version of packages fltk and readline 2010-01-04 13:23:53 +01:00
Volker Grabsch ab81a8c8d9 update version of packages curl, fltk, gnutls, gtk, libntlm, openssl, sdl_mixer, sqlite and tiff 2009-11-09 10:31:35 +01:00
Volker Grabsch 0e2bddb985 update version of packages fltk, freetype, libgsasl and libxml2 2009-10-09 20:50:39 +02:00
Volker Grabsch 31efaa74be update version of packages fltk, fontconfig, glib, gnutls, gtk, libgsf, libpng, libxml2, libxslt and sqlite 2009-09-20 16:48:09 +02:00
Volker Grabsch f162381b1a improved version recognition, enable the notation of ignored (bad) package versions 2009-09-20 14:36:46 +02:00
Volker Grabsch 89411daf8a enable libgomp (OpenMP) in package gcc by interweaving the pthread build into the gcc build 2009-09-19 04:46:12 +02:00
Volker Grabsch 163b118424 replace the contact email address with hints to the project mailing list 2009-09-01 16:35:59 +02:00
Volker Grabsch 3c5ab4e280 add a copyright notice and license to each source file 2009-08-21 06:58:11 +02:00
Volker Grabsch 6a2cab9dbb validate downloads using SHA-1 checksums 2009-04-05 14:00:17 +02:00