Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Revert "qt5: try to fix CMake files" | Timothy Gu | 2014-09-23 | 1 | -6/+0 |
| | | | | This reverts commit 8a6cf7cab7ab03217fd8e6c305eabc7d2913a4b3. | ||||
* | qt5: try to fix CMake files | Timothy Gu | 2014-09-23 | 1 | -0/+6 |
| | | | | | | | | | See #466. This is one of the worst hacks I've ever seen. If there is a way to fix this better, please mention on #466. Signed-off-by: Timothy Gu <timothygu99@gmail.com> | ||||
* | 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) | ||||
* | add qt5 convenience target package | Tony Theodore | 2013-06-01 | 1 | -0/+17 |
| | |||||
* | package qt5: replace monolothic package with module packages | Mark Brand | 2012-12-20 | 1 | -64/+0 |
| | | | | | Qt 5 is designed to be modular. The big monolothic tarball is actually deprecated. | ||||
* | package qt5: remove obsolete configure options | Mark Brand | 2012-12-19 | 1 | -2/+0 |
| | |||||
* | update package qt5 (final 5.0.0) | Mark Brand | 2012-12-19 | 1 | -2/+2 |
| | |||||
* | package qt5: temporarily disable c++11 on OSX | Tony Theodore | 2012-12-16 | 1 | -0/+1 |
| | |||||
* | new package qt5 | Mark Brand | 2012-12-13 | 1 | -0/+65 |