Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | update wget | Mark Brand | 2018-01-28 | 1 | -2/+2 |
| | |||||
* | update gnutls, jpeg, wget | Mark Brand | 2018-01-20 | 1 | -2/+2 |
| | |||||
* | cross packages: replace dependency gcc with cc | Tony Theodore | 2017-12-22 | 1 | -1/+1 |
| | |||||
* | update wget | Mark Brand | 2017-10-26 | 1 | -3/+3 |
| | |||||
* | URL updates | Viktor Szakats | 2017-03-04 | 1 | -2/+2 |
| | |||||
* | update: freetds, libiconv, wget | Mark Brand | 2017-02-12 | 1 | -2/+2 |
| | |||||
* | wget: fix update macro | Mark Brand | 2017-01-14 | 1 | -1/+1 |
| | |||||
* | wget: remove old workaround for symbol clash with gnutls | Mark Brand | 2017-01-14 | 1 | -2/+0 |
| | |||||
* | add _WEBSITE and _DESCR fields to core packages | Boris Nagaev | 2016-12-22 | 1 | -0/+1 |
| | | | | | | See https://github.com/mxe/mxe/issues/1422 Automation (Python 2 code): https://gist.github.com/9f5c315e5d0cf113d41dc454b7a0eb41 | ||||
* | Copyright headers: point to LICENSE.md and shorten | Boris Nagaev | 2016-08-27 | 1 | -2/+1 |
| | | | | | | | | | | | | | | | | | | | 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 | ||||
* | update: gettext libpng wget | Mark Brand | 2016-06-10 | 1 | -2/+2 |
| | |||||
* | wget: update | Mark Brand | 2016-01-12 | 1 | -5/+3 |
| | | | | | To avoid trouble with static linking to gnutls_free, defined GNUTLS_INTERNAL_BUILD to prevent defining _SYM_EXPORT. | ||||
* | wget: use MXE_CONFIGURE_OPTS | Mark Brand | 2015-09-28 | 1 | -3/+1 |
| | |||||
* | all packages: really use sha256 checksums | Tony Theodore | 2015-09-23 | 1 | -1/+1 |
| | |||||
* | many packages: cleanup deps ordering | Tony Theodore | 2015-09-23 | 1 | -1/+1 |
| | |||||
* | all packages: switch to sha256 checksums | Tony Theodore | 2015-09-23 | 1 | -1/+1 |
| | | | | closes #871 | ||||
* | wget: install only binPROGRAMS | Tony Theodore | 2015-09-11 | 1 | -3/+2 |
| | |||||
* | Add missing backslashes | Timothy Gu | 2015-07-20 | 1 | -2/+2 |
| | |||||
* | wget: Fix | Timothy Gu | 2015-07-09 | 1 | -2/+3 |
| | |||||
* | wget: Fix compilation | Timothy Gu | 2015-07-09 | 1 | -1/+2 |
| | |||||
* | wget: update | Mark Brand | 2015-03-09 | 1 | -2/+2 |
| | |||||
* | wget: update | Mark Brand | 2015-03-01 | 1 | -2/+2 |
| | |||||
* | remove stray comment | Mark Brand | 2014-10-29 | 1 | -2/+0 |
| | |||||
* | wget: enable shared build | Mark Brand | 2014-10-29 | 1 | -2/+2 |
| | |||||
* | wget: update | Mark Brand | 2014-10-29 | 1 | -2/+2 |
| | |||||
* | many packages: explicitly disable shared builds | Tony Theodore | 2014-04-06 | 1 | -0/+2 |
| | | | | closes #369 | ||||
* | update package wget | Mark Brand | 2014-01-20 | 1 | -3/+4 |
| | |||||
* | Move package versions from index.html back into the src/*.mk files | Volker Grabsch | 2013-07-21 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | 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) | ||||
* | package wget: enable mingw-w64 builds | Tony Theodore | 2013-06-04 | 1 | -4/+2 |
| | |||||
* | various packages: enable/disable mingw-w64 builds | Tony Theodore | 2013-06-01 | 1 | -0/+3 |
| | |||||
* | packages qdbm wget: replace i686-pc-mingw32 with TARGET variable | Tony Theodore | 2012-12-05 | 1 | -1/+1 |
| | |||||
* | package wget: remove non-options | Mark Brand | 2012-10-11 | 1 | -2/+0 |
| | |||||
* | new package wget | Mark Brand | 2012-10-11 | 1 | -0/+29 |
Though not a library, wget is useful because it is often used by applications. |