summaryrefslogtreecommitdiffstats
path: root/src/qt5.mk
Commit message (Collapse)AuthorAgeFilesLines
* Move package versions from index.html back into the src/*.mk filesVolker Grabsch2013-07-211-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 packageTony Theodore2013-06-011-0/+17
|
* package qt5: replace monolothic package with module packagesMark Brand2012-12-201-64/+0
| | | | | Qt 5 is designed to be modular. The big monolothic tarball is actually deprecated.
* package qt5: remove obsolete configure optionsMark Brand2012-12-191-2/+0
|
* update package qt5 (final 5.0.0)Mark Brand2012-12-191-2/+2
|
* package qt5: temporarily disable c++11 on OSXTony Theodore2012-12-161-0/+1
|
* new package qt5Mark Brand2012-12-131-0/+65