Commit Graph

28 Commits

Author SHA1 Message Date
Mark Brand a4eedb7465 update package gdb 2014-02-06 14:20:01 +01:00
Mark Brand e02abb5169 update package gdb 2013-12-08 10:51:11 +01:00
Mark Brand e906f2f21d update package gdb 2013-08-31 15:27:04 +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
Tony Theodore 6188de2ed3 various packages: remove grep workarounds for version sorting 2013-05-22 19:33:04 +10:00
Mark Brand 7ecb9764b0 update package gdb 2013-04-26 23:05:29 +02:00
Luis Saavedra c33b4e377e in mingw termcap library is usually not present,
but with ncurses termcap is present in mxe, so it's necessary
remove the support these function
2012-12-14 02:31:05 -03:00
Mark Brand 226387cd94 update package gdb 2012-11-29 14:24:44 +01:00
Mark Brand 2f4765fda8 update package gdb 2012-08-18 12:00:48 +02:00
Tony Theodore 4ed13a9f30 all packages: use $(WGET) portability variable 2012-05-16 17:49:40 +10:00
Mark Brand a1b8ca88cc update package gdb 2012-04-26 23:24:12 +02:00
Volker Grabsch 00f4690d3f Move full package names from src/*.mk into package list (index.html) 2012-03-29 21:41:44 +02:00
Volker Grabsch 7badad85c9 Move doc/index.html -> index.html 2012-03-29 12:14:15 +02:00
Volker Grabsch 7e6723adb5 Move $(PKG)_VERSION and $(PKG)_WEBSITE from src/*.mk into doc/index.html 2012-03-29 11:07:07 +02:00
Volker Grabsch defdff28f0 Rebrand to new project name MXE 2012-03-28 15:46:58 +02:00
Mark Brand c17edf1e61 update packages curl gdb 2012-01-24 14:19:23 +01:00
Mark Brand 0edbbe4d5e package gdb: fix filename 2011-11-16 22:36:59 +01:00
Volker Grabsch 6ca88cec3a merge 2011-11-15 16:43:58 +01:00
Mark Brand a5a6c9c334 package gdb: fix update macro 2011-10-24 21:50:41 +02:00
Mark Brand 7f11247d23 update package gdb 2011-10-24 11:44:48 +02:00
Tony Theodore ba14d03305 update broken download links in stable branch 2011-10-23 02:15:55 +11:00
Volker Grabsch 8674d110c5 bugfix for packages gdb, avoids build failure on systems that don't have makeinfo 2011-09-03 00:00:20 +02:00
Mark Brand 284a8e6e26 package gdb: improve update macro 2011-08-25 17:56:48 +02:00
Mark Brand dd4801aa72 update packages: gdb imagemagick libevent libvpx x264 2011-08-25 14:03:10 +02:00
Mark Brand 4570c759bc update packages: fftw freeimage gdb libsigc++ libusb 2011-07-28 02:26:58 +02:00
Mark Brand ffa8337ba9 update package gdb 2010-09-03 16:43:06 +02:00
Volker Grabsch faf79ea7e1 forge gdb to use Bash instead of the potentially buggy /bin/sh in package gdb (by Tony Theodore) 2010-05-26 02:33:59 +02:00
Volker Grabsch dee66284ff new package: gdb (by Mark de Wever) 2010-05-12 19:22:38 +02:00