Commit Graph

13 Commits

Author SHA1 Message Date
Mark Brand 736bbb481c update qt5 modules 2014-06-25 22:40:09 +02:00
Mark Brand ebc859ef6c update qt5 modules 2014-05-21 11:59:00 +02:00
Mark Brand ef2799c07b update qt5 modules 2014-02-06 16:34:20 +01:00
Mark Brand e8765d97d5 update qt5 packages (5.2.0 final) 2013-12-12 16:48:46 +01:00
Mark Brand adb9178258 upgrade qt5 packages 2013-11-30 11:08:22 +01:00
Mark Brand 9c9175d0f2 qt5 packages: use qtbase variables 2013-10-15 23:11:27 +02:00
Mark Brand e074d9fff7 update qt5 packages 2013-08-28 14:42:56 +02: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
Niels Kristian Bech Jensen 06808ea943 update package qt5 2013-07-06 14:59:27 +10:00
Mark Brand 3b712d7b8b update qt5 module packagess 2013-07-01 10:47:54 +02:00
Mark Brand 5190441c5d update qt5 module packages 2013-06-18 14:16:24 +02:00
Mark Brand 957ab92cc0 update qt5 module packages 2013-06-14 09:42:10 +02:00
Mark Brand dba7f0aab8 new qt5 modules: qtquickcontrols qtsensors qtserialport 2013-06-01 00:40:02 +02:00