summaryrefslogtreecommitdiffstats
path: root/src/pixman.mk
Commit message (Collapse)AuthorAgeFilesLines
* various packages: enable shared buildsTony Theodore2014-02-101-4/+1
|
* update package gtk2 and dependenciesNiels Kristian Bech Jensen2013-11-101-2/+2
|
* 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)
* Update package pixmanNiels Kristian Bech Jensen2013-05-051-1/+1
|
* update package pixmanMark Brand2013-01-301-1/+1
|
* update package pixmanMark Brand2012-10-261-1/+1
|
* update package pixmanMark Brand2012-08-111-1/+1
|
* all packages: use $(WGET) portability variableTony Theodore2012-05-161-1/+1
|
* upgrade package pixmanMark Brand2012-05-151-1/+1
|
* Move full package names from src/*.mk into package list (index.html)Volker Grabsch2012-03-291-1/+0
|
* Move doc/index.html -> index.htmlVolker Grabsch2012-03-291-1/+1
|
* Move $(PKG)_VERSION and $(PKG)_WEBSITE from src/*.mk into doc/index.htmlVolker Grabsch2012-03-291-2/+0
|
* Rebrand to new project name MXEVolker Grabsch2012-03-281-1/+1
|
* update package pixmanMark Brand2012-03-081-2/+3
|
* update package pixmanMark Brand2011-10-301-2/+2
|
* update packages libevent pixman x264Mark Brand2011-10-121-2/+2
|
* update packages: imagemagick pixman postgresql x264Mark Brand2011-09-111-2/+2
|
* update package pixmanMark Brand2011-07-061-2/+2
|
* upgrade packages: atkmm imagemagick pangomm pixman x264Volker Grabsch2011-04-231-2/+2
|
* improved version recognition for packages: libpng pixman x264Volker Grabsch2011-04-221-1/+1
|
* improved download URLs of package pixmanVolker Grabsch2011-04-041-1/+2
|
* update package pixmanMark Brand2011-02-251-2/+2
|
* upgrade package pixmanMark Brand2011-01-221-2/+2
|
* upgrade packages: atkmm gdal gdk-pixbuf glew glib gtk imagemagick lapack ↵Volker Grabsch2010-11-281-2/+2
| | | | librsvg libvpx libxml2 ogg pixman vorbis x264
* improved upgrade script of packages: cairo cairomm pixmanVolker Grabsch2010-11-281-3/+1
|
* upgrade packages: cairomm curl imagemagick pixman x264 xzVolker Grabsch2010-10-271-2/+2
|
* upgrade package pixmanMark Brand2010-09-211-2/+2
|
* update packages: gst-plugins-good libpano13 pixmanMark Brand2010-09-031-2/+2
|
* upgrade package pixmanMark Brand2010-05-131-2/+2
|
* upgrade packages: atk geos glew glib libpaper pango pcre pixmanMark Brand2010-04-191-2/+2
|
* corrected regexes in exceptions rules of version recognitionVolker Grabsch2010-04-101-1/+1
|
* update version of packages gtk, libpng, openssl and pixmanVolker Grabsch2010-02-271-2/+2
|
* update version of packages curl, freetype, gdal, glib, gtk and pixmanVolker Grabsch2010-02-141-2/+2
|
* point consequently to "doc/index.html" instead of "doc/index.html or doc/README"Volker Grabsch2010-02-071-1/+1
|
* update version of packages pcre and pixmanVolker Grabsch2010-01-221-2/+2
|
* simplified file markersVolker Grabsch2010-01-161-20/+2
|
* avoid all old 0.16.x versions of package pixmanVolker Grabsch2009-12-201-3/+4
|
* update version of packages atk, boost, fontconfig, gdal, geos, glib, lcms, ↵Volker Grabsch2009-12-021-2/+2
| | | | libevent, pango, pixman, sdl_image and sdl_mixer
* update version of packages libxml2, libxslt, pixman and theoraVolker Grabsch2009-10-031-2/+2
|
* improved version recognition, enable the notation of ignored (bad) package ↵Volker Grabsch2009-09-201-0/+1
| | | | versions
* update version of packages curl, fontconfig, gdal, gnutls, gtk, libpng, ↵Volker Grabsch2009-09-021-2/+2
| | | | mingwrt, pango, pixman, sqlite and tiff
* replace the contact email address with hints to the project mailing listVolker Grabsch2009-09-011-1/+1
|
* add a copyright notice and license to each source fileVolker Grabsch2009-08-211-1/+21
|
* update version of packages fontconfig, glib, gtk, libevent, libiconv, ↵Volker Grabsch2009-08-101-2/+2
| | | | libpng, libusb, ogg, pixman, sqlite and vorbis
* update version of packages cairo, geos, libgsasl, pixman and sqliteVolker Grabsch2009-06-161-2/+2
|
* update version of packages atk, curl, gcc, gdal, glib, gnutls, gtk, ↵Volker Grabsch2009-06-101-2/+2
| | | | libevent, libidn, libntlm, libpng, nsis, pango, pdflib_lite, pixman, sqlite, tre and xmlwrapp
* update version of packages gnutls, pcre, pdflib_lite and pixmanVolker Grabsch2009-04-151-2/+2
|
* validate downloads using SHA-1 checksumsVolker Grabsch2009-04-051-7/+8
|
* put all package's project websites into Make variables $($(PKG)_WEBSITE)Volker Grabsch2009-03-011-1/+1
|
* new packages: jasper, pixman, cairo, pango, atk and gtkVolker Grabsch2009-02-281-0/+24