Commit Graph

11 Commits

Author SHA1 Message Date
Tony Theodore 88859e7a0f pthreads, qt5: remove unnecessary *_UPDATE boilerplate 2015-11-30 14:51:46 +11:00
Tony Theodore 069b03d511 qt5: remove download related variables
in rare cases, it would try downloading qtbase again
2015-10-17 13:46:20 +11:00
Timothy Gu a108a13fcf Revert "qt5: try to fix CMake files"
This reverts commit 8a6cf7cab7.
2014-09-23 09:43:28 -07:00
Timothy Gu 8a6cf7cab7 qt5: try to fix CMake files
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>
2014-09-22 21:53:47 -07:00
Volker Grabsch e412eb642d Move package versions from index.html back into the src/*.mk files
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)
2013-07-22 01:41:31 +02:00
Tony Theodore 8519287ff1 add qt5 convenience target package 2013-06-01 15:32:53 +10:00
Mark Brand c0ab4fe418 package qt5: replace monolothic package with module packages
Qt 5 is designed to be modular. The big monolothic tarball is
actually deprecated.
2012-12-20 08:52:43 +01:00
Mark Brand 26c126f728 package qt5: remove obsolete configure options 2012-12-19 20:39:25 +01:00
Mark Brand 9993390405 update package qt5 (final 5.0.0) 2012-12-19 16:01:24 +01:00
Tony Theodore c7b96939d2 package qt5: temporarily disable c++11 on OSX 2012-12-16 15:06:59 +11:00
Mark Brand ffc65a4ed2 new package qt5 2012-12-13 22:48:54 +01:00