Commit Graph

43 Commits

Author SHA1 Message Date
Tony Theodore f5fe0a816e wget: fix shared build 2020-06-06 19:21:21 +10:00
Tony Theodore 1353efae29 wget: set _WIN32_WINNT to vista to fix inet_ntop issue 2020-04-08 00:12:25 +10:00
Mark Brand 5b7fd37c3c update wget 2019-04-06 16:45:55 +02:00
Mark Brand efbd2b52e5 add support for lzip archives 2019-01-10 16:41:17 +01:00
Mark Brand 62329b26b9 wget: add missing pcre2 dependency 2019-01-10 15:19:33 +01:00
Mark Brand 158ca6cb40 wget: update deps list for libidn2 instead of libidn 2019-01-01 20:02:54 +01:00
Mark Brand 9b8be3a1f4 update wget 2018-12-30 22:02:10 +01:00
Mark Brand b0e54976e0 update: harfbuzz, wget 2018-12-05 22:54:26 +01:00
Mark Brand a08b3225ff update: dbus, freetype, lzma, wget, xz 2018-05-08 22:43:12 +02:00
Mark Brand 4b20d91690 wget: use libidn2 instead of libidn
ghostscript and libgsasl still need libidn.
2018-04-27 11:22:35 +02:00
Mark Brand d56ab83e87 update wget 2018-01-28 10:14:22 +01:00
Mark Brand bd60e8ff3b update gnutls, jpeg, wget 2018-01-21 00:26:14 +01:00
Tony Theodore 01e2a64d00 cross packages: replace dependency gcc with cc 2017-12-23 08:19:00 +11:00
Mark Brand 17e002bfd1 update wget 2017-10-26 21:09:08 +02:00
Viktor Szakats e961e447fb URL updates 2017-03-04 10:33:47 +00:00
Mark Brand c373382c1b update: freetds, libiconv, wget 2017-02-12 12:26:34 +01:00
Mark Brand 6f7f958429 wget: fix update macro 2017-01-14 11:24:54 +01:00
Mark Brand 2c8cfcc33e wget: remove old workaround for symbol clash with gnutls 2017-01-14 11:19:37 +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 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
Mark Brand b85d79650a update: gettext libpng wget 2016-06-10 22:36:15 +02:00
Mark Brand fe062e7fe8 wget: update
To avoid trouble with static linking to gnutls_free,
defined GNUTLS_INTERNAL_BUILD to prevent defining _SYM_EXPORT.
2016-01-12 23:09:59 +01:00
Mark Brand 24c22847a3 wget: use MXE_CONFIGURE_OPTS 2015-09-28 02:01:06 +02: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 a84293af4e wget: install only binPROGRAMS 2015-09-11 16:25:58 +10:00
Timothy Gu 0b67ffa3ec Add missing backslashes 2015-07-20 08:39:06 +08:00
Timothy Gu 8b273439af wget: Fix 2015-07-09 06:25:05 -07:00
Timothy Gu a5acdcdb0d wget: Fix compilation 2015-07-09 01:09:14 -07:00
Mark Brand abd129934d wget: update 2015-03-09 20:29:40 +01:00
Mark Brand 2be53455dd wget: update 2015-03-01 09:35:03 +01:00
Mark Brand e7bf11c374 remove stray comment 2014-10-29 20:31:45 +01:00
Mark Brand b6e0de9380 wget: enable shared build 2014-10-29 20:10:52 +01:00
Mark Brand 0a1ceaf338 wget: update 2014-10-29 19:49:28 +01:00
Tony Theodore 8de0584a23 many packages: explicitly disable shared builds
closes #369
2014-04-06 23:18:24 +10:00
Mark Brand ad174ec0fe update package wget 2014-01-20 21:45:23 +01: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 7629bf9a82 package wget: enable mingw-w64 builds 2013-06-04 16:03:34 +10:00
Tony Theodore 5390e5203e various packages: enable/disable mingw-w64 builds 2013-06-01 22:28:04 +10:00
Tony Theodore e792db019a packages qdbm wget: replace i686-pc-mingw32 with TARGET variable 2012-12-05 18:52:44 +11:00
Mark Brand 99d3ef31ec package wget: remove non-options 2012-10-11 13:27:17 +02:00
Mark Brand bdc5cead5f new package wget
Though not a library, wget is useful because it is often used by
applications.
2012-10-11 11:08:46 +02:00