Commit Graph

66 Commits

Author SHA1 Message Date
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 b485ce8560 update packages openscenegraph poppler 2013-06-23 21:33:58 +10:00
Mark Brand 5e7360b884 update package poppler 2013-05-14 09:10:04 +02:00
Tony Theodore b6c22794a2 packages poppler mdbtools: separate make and install steps 2013-05-11 16:41:46 +10:00
Mark Brand 7756456a88 update package poppler 2013-04-13 10:12:38 +02:00
Mark Brand 75914ee94a update package poppler 2013-03-12 00:00:57 +01:00
Mark Brand 03a083d686 update package poppler 2013-02-10 14:10:24 +01:00
Mark Brand 907a070710 update package poppler 2012-12-30 12:20:18 +01:00
Mark Brand be3c1910d7 update package poppler 2012-10-11 17:25:35 +02:00
Mark Brand 233978a172 update package poppler 2012-09-21 14:51:40 +02:00
Mark Brand bf668ad08e package poppler: use TARGET rather than assuming its value 2012-09-20 20:03:47 +02:00
Mark Brand fe90269b30 package poppler: use extra pkgconfig directory for qt 2012-09-20 17:01:13 +02:00
Mark Brand 7bd6681a4a update package poppler 2012-07-11 21:25:16 +02:00
Mark Brand 898d3e399d update package poppler 2012-06-14 17:25:04 +02:00
Tony Theodore 4ed13a9f30 all packages: use $(WGET) portability variable 2012-05-16 17:49:40 +10:00
Stefan Löffler 04d70b56a3 New package: poppler 2012-04-17 21:07:25 +02:00