Commit Graph

19 Commits

Author SHA1 Message Date
Tony Theodore b38e0e0134 itk: update 4.13.1 --> 5.0.1
finally fixes i686-w64-mingw32.shared
2019-11-09 01:35:01 +11:00
Tony Theodore 4bf48883f7 itk: switch to github and update 4.13.0 --> 4.13.1
fixes gcc8 build
2018-08-15 12:57:09 +10:00
Tony Theodore e511af5bc3 itk: update 4.10.1 --> 4.13.0 2018-08-15 12:57:09 +10:00
Tony Theodore 01e2a64d00 cross packages: replace dependency gcc with cc 2017-12-23 08:19:00 +11:00
Viktor Szakats 45d34aaac7 more URL updates 2017-03-10 13:59:00 +00:00
Boris Nagaev c5864def02 remove unneeded cmake vars specified by packages 2017-01-08 03:01:54 +01: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 55e9bbada5 update itk to 4.10.1 2016-10-24 03:30:24 +03: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
Tony Theodore 6ac06b8578 itk: enable shared following b317f60 2015-12-03 02:12:32 +11:00
Tony Theodore a542fd9d94 itk: add updater, update 4.4.1-->4.8.2, enable system libs, and use cmake wrapper 2015-12-01 20:33:23 +11: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
Mark Brand 6947d3245f itk libdca libvpx openscenegraph: gcc 5 compatibility 2015-04-23 23:10:46 +02:00
Tony Theodore 8de0584a23 many packages: explicitly disable shared builds
closes #369
2014-04-06 23:18:24 +10:00
Martin Müllenhaupt c07b02a842 package itk: update to version 4.4.1 which includes our hostcheck patch 2013-07-31 13:05:57 +02: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 59dfeb6d53 packge itk: fix whitespace and update placeholder and disable examples 2013-06-27 23:18:29 +10:00
Martin Müllenhaupt a42b180729 add package itk 2013-06-27 23:15:28 +10:00