Commit Graph

22 Commits

Author SHA1 Message Date
Mark Brand d8769fa94b jpeg: use the package's shipped libjpeg.pc
and fix the references to our old crafted jpeg.pc.
2018-11-13 23:54:11 +01:00
Tony Theodore 858a7456ff netcdf: update, switch to cmake and github, add test 2018-07-01 20:52:17 +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 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
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
Timothy Gu 86ea3b3e5f Fix downloading json_spirit,liboauth, and netcdf
See #774.
2015-07-26 19:44:19 -07:00
Rashad e96091ea53 enable shared 2015-06-06 18:46:37 +02:00
Timothy Gu abf69fa8a9 netcdf: Add portablexdr as a dependency
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
2014-10-21 16:47:31 -07:00
Tony Theodore 90f8971e32 netcdf: enable i686-w64-mingw32 (see #492) 2014-10-03 02:15:07 +10:00
Tony Theodore 8de0584a23 many packages: explicitly disable shared builds
closes #369
2014-04-06 23:18:24 +10:00
Tony Theodore 27cf6b0720 package netcdf: fix checksum 2013-12-04 13:23:59 +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
Tony Theodore 5390e5203e various packages: enable/disable mingw-w64 builds 2013-06-01 22:28:04 +10:00
Tony Theodore cc96a15d39 package netcdf: update checksum 2013-05-11 17:25:06 +10:00
Niels Kristian Bech Jensen edc24c87c7 Update package netcdf 2013-05-05 22:52:01 +02:00
Tony Theodore b526ec623f package netcdf: add update script 2013-01-08 22:37:11 +11:00
Martin Lambers 54afd00283 Remove unnecessary dependency on msvcr80.dll from hdf5 package.
This also removes linking with libmsvcr80.a for the netcdf and gdal packages.
2012-12-07 17:40:20 +11:00
Tony Theodore 7081702736 packages hdf4 hdf5 netcdf portablexdr: add TODO placeholder for update scripts 2012-12-06 00:25:58 +11:00
Martin Lambers a36c93db65 Add package netcdf and its prerequisites hdf4, hdf5, and portablexdr.
Also enable the HDF4, HDF5 and NetCDF drivers for GDAL.
2012-12-05 18:26:56 +11:00