Commit Graph

20 Commits

Author SHA1 Message Date
Tony Theodore e8d882a99e muparser: enable shared build 2015-11-21 14:01:53 +11:00
Boris Nagaev b28501f031 MXE_GET_GITHUB_TAGS: new argument, stripped prefix 2015-11-15 18:41:26 +03:00
Boris Nagaev 7f1edc40fa muparser: update upstream URL and version to 2.2.5
Original muparser location [1] forwards to Google Code [2], which
in turn forwards to Github [3].

Version 2.2.3 can't be found on Github, that is why it was
updated to 2.2.5.

Updater script updated as well. MXE_GET_GITHUB_TAGS is used.

[1] http://sourceforge.net/projects/muparser/
[2] https://code.google.com/p/muparser/
[3] https://github.com/beltoforion/muparser
2015-09-26 10:17:38 +03:00
Tony Theodore fc0ed34fb9 all packages: really use sha256 checksums 2015-09-23 18:32:58 +10:00
Tony Theodore a228c0488f all packages: switch to sha256 checksums
closes #871
2015-09-23 17:27:16 +10:00
Tony Theodore 8de0584a23 many packages: explicitly disable shared builds
closes #369
2014-04-06 23:18:24 +10: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
Tony Theodore e8ca67a32c update package muparser 2013-01-06 00:19:03 +11:00
Tony Theodore 4ed13a9f30 all packages: use $(WGET) portability variable 2012-05-16 17:49:40 +10:00
Tony Theodore fea344e8dc update package muparser 2012-04-17 02:21:41 +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
Mark Brand 0d20234f54 remove $($PKG)_SUBDIR) from FILE and URL defintions
For now this means a bit of duplication, but if the remaining
references to SUBDIR can be dealt with, we should be able
to get rid of the SUBDIR defintion altogether.
2010-12-12 01:16:13 +01:00
Volker Grabsch 77f47c13ca improved update script of all remaining SourceForge packages 2010-12-02 20:31:45 +01:00
Mark Brand 10b237f4c0 fixed sourceforge URLs in UPDATE macros 2010-09-09 21:24:32 +02:00
Mark Brand 9ecaecea94 update packages: imagemagick muparser 2010-09-05 20:56:45 +02:00
Volker Grabsch fce859d9a1 improved version recognition of package muparser 2010-02-14 21:28:19 +01:00
Volker Grabsch 875ff2ce66 new package: muparser (by Martin Lambers) 2010-02-14 21:15:10 +01:00