Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | apr: enable shared builds | Timothy Gu | 2014-08-17 | 1 | -8/+2 |
| | | | | Signed-off-by: Timothy Gu <timothygu99@gmail.com> | ||||
* | many packages: explicitly disable shared builds | Tony Theodore | 2014-04-06 | 1 | -0/+2 |
| | | | | closes #369 | ||||
* | package apr: update ignored version | Niels Kristian Bech Jensen | 2013-11-23 | 1 | -1/+1 |
| | |||||
* | 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) | ||||
* | packages apr apr-util qdbm: small fixes | Niels Kristian Bech Jensen | 2013-06-29 | 1 | -1/+1 |
| | |||||
* | all packages: use $(WGET) portability variable | Tony Theodore | 2012-05-16 | 1 | -1/+1 |
| | |||||
* | various packages: fix references to mingw-cross-env and doc/index.html | Tony Theodore | 2012-05-02 | 1 | -2/+2 |
| | |||||
* | packages apr, apr-util, log4cxx: various changes and add log4cxx test program | Tony Theodore | 2012-05-02 | 1 | -37/+12 |
| | |||||
* | new packages: apr, apr-util, log4cxx | Daniel Stonier | 2012-05-02 | 1 | -0/+58 |