Commit Graph

57 Commits

Author SHA1 Message Date
Jonas Kvinge 146cad7e93 Fix cairo update 2019-09-08 12:56:57 +10:00
Mark Brand 01c46ee1da update: cairo ffmpeg gpgme libaacs libusb1 lz4 mpg123 2018-11-16 00:34:14 +01:00
Jonas Kvinge aa7e5380ce Update cairo 2018-09-23 23:12:21 +02:00
Tony Theodore 01e2a64d00 cross packages: replace dependency gcc with cc 2017-12-23 08:19:00 +11:00
Viktor Szakats e961e447fb URL updates 2017-03-04 10:33:47 +00:00
Boris Nagaev 3f9a07ef52 cairo: update to snapshot 1.15.4
See https://github.com/mxe/mxe/issues/1647#issuecomment-275925653

Warning! Updating to a snapshot, not to a release!
Snapshots are the unstable, in-progress cairo development.
2017-02-01 03:16:49 +01:00
Boris Nagaev 74163f1794 add _WEBSITE and _DESCR fields to core packages
See https://github.com/mxe/mxe/issues/1422

Automation (Python 2 code): https://gist.github.com/9f5c315e5d0cf113d41dc454b7a0eb41
2016-12-22 22:25:48 +01:00
Boris Nagaev 6adb5ade12 Copyright headers: point to LICENSE.md and shorten
The following script was applied:

    sed ':a;/part of MXE.$/{N;s/\n//;ba}' -i $(git grep -l 'part of MXE')

    sed 's/\(part of MXE\).*\(See index.html\)/\1. \2/' -i \
        $(git grep -l 'part of MXE.*See index.html')

    before='This file is part of MXE. See index.html for further information.'
    after='This file is part of MXE. See LICENSE.md for licensing information.'
    sed "s/$before/$after/" -i $(git grep -l 'part of MXE')

Then git grep 'index.html for further information' revealed two other files.
One of them was patched manually (patch.mk). Makefile has text
"See index.html for further information" unrelated to licensing.

See https://github.com/mxe/mxe/issues/1500#issuecomment-241340792
2016-08-27 12:31:29 +03:00
Tony Theodore 719e7e0c30 cairo: update 1.14.2 --> 1.14.6 2016-01-12 19:41:40 +11:00
Tony Theodore fc0ed34fb9 all packages: really use sha256 checksums 2015-09-23 18:32:58 +10:00
Tony Theodore a228c0488f all packages: switch to sha256 checksums
closes #871
2015-09-23 17:27:16 +10:00
Tony Theodore a694ec9d8a cairo: add glib dependency to enable gobject features 2015-09-15 05:32:48 +10:00
Mark Brand 00b9ecde38 cairo freetype harfbuzz: update 2015-06-20 21:41:57 +02:00
Timothy Gu 64e9127b9b cairo: Update
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
2014-11-13 15:47:14 -05:00
Tony Theodore d53a3a4348 packages cairo fontconfig freetype harbuzz: bootstrap build for mutual dependencies 2014-06-17 20:01:11 +10:00
Timothy Gu 05aa359b7a cairo: disable LTO
Should fix part of #403.

Signed-off-by: Timothy Gu <timothygu99@gmail.com>
2014-05-08 20:23:21 -07:00
Tony Theodore 31b6c18678 package cairo: add lzo dependency 2014-04-01 23:07:29 +11:00
Tony Theodore c950f3635c various packages: enable shared builds 2014-02-10 16:33:26 +11:00
Tuukka Pasanen 1d19f54ef7 Updated Cairo for shared build 2014-02-10 13:55:24 +11:00
Niels Kristian Bech Jensen 4782d01ead update packages cairo fontconfig glib harfbuzz pango 2013-09-07 23:15:07 +10: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
Mark Brand c5ebffb237 update package cairo 2013-02-12 09:57:29 +01:00
Mark Brand 37685e0489 update package cairo 2013-01-31 18:14:39 +01:00
Mark Brand 7a87b87852 update package cairo 2013-01-17 08:46:41 +01:00
Mark Brand fe09146491 upgrade package cairo 2012-11-05 04:07:35 +01:00
Mark Brand 63b3f2e502 update package cairo 2012-10-22 15:22:47 +02:00
Mark Brand 630d424795 update package cairo 2012-10-11 17:25:13 +02:00
Mark Brand d3953d7f70 package cairo: remove obsolete options 2012-06-15 16:03:30 +02:00
Mark Brand 1a4505eb61 package cairo: use config.guess 2012-06-15 16:02:23 +02:00
Hans Petter Jansson 4669cde481 update package cairo 2012-06-15 15:54:54 +02:00
Tony Theodore 4ed13a9f30 all packages: use $(WGET) portability variable 2012-05-16 17:49:40 +10: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 266a05a2e7 upgrade packages atkmm cairo cairomm imagemagick liboauth 2011-01-22 23:28:52 +01:00
Volker Grabsch 297f37c6e0 improved upgrade script of packages: cairo cairomm pixman 2010-11-28 17:46:40 +01:00
Mark Brand 3a0eb359d6 upgrade packages: cairo cairomm 2010-09-23 13:11:57 +02:00
Volker Grabsch d3b0379329 update version of package cairo 2010-02-21 18:41:46 +01:00
Volker Grabsch e1ab4466ff changed coding style: make "-i" always the first argument of $(SED) (by Mark Brand) 2010-02-16 04:12:53 +01:00
Volker Grabsch 7af76e7a89 fixed several dependencies and *.pc scripts 2010-02-16 03:14:49 +01:00
Volker Grabsch a963fe3cdb new package: librsvg 2010-02-16 00:41:24 +01:00
Volker Grabsch 71f83a7e0d point consequently to "doc/index.html" instead of "doc/index.html or doc/README" 2010-02-08 00:58:06 +01:00
Volker Grabsch 8a3233b044 simplified file markers 2010-01-16 23:02:02 +01:00
Volker Grabsch 34ccfb801d corrected dependency library flags for packages cairo and gtk (by Zdenek Hutyra) 2010-01-16 22:33:50 +01:00
Volker Grabsch c4d75e7e77 update version of package libpng 2010-01-12 13:57:46 +01:00
Volker Grabsch f162381b1a improved version recognition, enable the notation of ignored (bad) package versions 2009-09-20 14:36:46 +02:00
Volker Grabsch 163b118424 replace the contact email address with hints to the project mailing list 2009-09-01 16:35:59 +02:00
Volker Grabsch 3c5ab4e280 add a copyright notice and license to each source file 2009-08-21 06:58:11 +02:00
Volker Grabsch b2fe0692f3 update version of packages cairo, geos, libgsasl, pixman and sqlite 2009-06-16 22:39:25 +02:00