Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | all packages: really use sha256 checksums | Tony Theodore | 2015-09-23 | 1 | -1/+1 |
| | |||||
* | all packages: switch to sha256 checksums | Tony Theodore | 2015-09-23 | 1 | -1/+1 |
| | | | | closes #871 | ||||
* | qwt: update | Mark Brand | 2014-10-22 | 1 | -2/+2 |
| | |||||
* | Remove i686-pc-mingw32 package recipes | Timothy Gu | 2014-10-14 | 1 | -1/+0 |
| | | | | Signed-off-by: Timothy Gu <timothygu99@gmail.com> | ||||
* | qt*: Disable i686-pc-mingw32 | Timothy Gu | 2014-09-21 | 1 | -0/+2 |
| | | | | | | Leftover from 8b70bf0008c8c70957adde14082dee25f78b1b51 Signed-off-by: Timothy Gu <timothygu99@gmail.com> | ||||
* | package qwt: enable shared build | Tony Theodore | 2014-04-03 | 1 | -0/+3 |
| | |||||
* | 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) | ||||
* | Fix initial comments of all src/*.mk files | Volker Grabsch | 2013-07-21 | 1 | -1/+0 |
| | |||||
* | package qwt: use qt5 qmake for test program | Tony Theodore | 2013-06-01 | 1 | -1/+1 |
| | |||||
* | package qwt: move to qt5 | Mark Brand | 2013-05-30 | 1 | -2/+2 |
| | |||||
* | update package qwt | Mark Brand | 2013-05-30 | 1 | -1/+1 |
| | |||||
* | adjust references to qmake (Qt 4) | Mark Brand | 2013-04-02 | 1 | -2/+2 |
| | | | | Follow-up to previous commit. | ||||
* | update package qwt | Mark Brand | 2012-12-01 | 1 | -1/+1 |
| | |||||
* | new package: qwt | Luis Saavedra | 2012-05-17 | 1 | -0/+30 |
this package was stolen from muellni fork... |