Commit Graph

70 Commits

Author SHA1 Message Date
Mark Brand b304870088 fix gitlab GNOME packages update macros 2019-05-14 10:04:27 +02:00
Viktor Szakats b9a47e838a Secure URLs 2018-07-27 12:18:03 +10:00
Tony Theodore 01e2a64d00 cross packages: replace dependency gcc with cc 2017-12-23 08:19:00 +11:00
Mark Brand 8f1a0d021e fix some update macros 2017-12-16 12:54:18 +01:00
Viktor Szakats e961e447fb URL updates 2017-03-04 10:33:47 +00: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 fc0ed34fb9 all packages: really use sha256 checksums 2015-09-23 18:32:58 +10:00
Tony Theodore ac7344aaef many packages: cleanup deps ordering 2015-09-23 17:41:16 +10:00
Tony Theodore a228c0488f all packages: switch to sha256 checksums
closes #871
2015-09-23 17:27:16 +10:00
Boris Nagaev 24cf97dbdd update pango to 1.37.4
Remove patches:
 * the patch disabling DllMain in pango-utils.c
   (There is no DllMain pango-utils.c in pango 1.37.4)
 * the patch disabling forced shared build for win32
   (Can't find this code in configure.ac; also the build is'not
    forced to be shared, so it is Ok to remove the patch)
 * patches related to modules (there are no more eodules)

Fix patches with changed context
2015-09-05 22:28:28 +03:00
Tobias Gruetzmacher c45869654a Package pango: Enable shared build.
FIXME: Maybe enable --with-dynamic-modules in shared build? What's the
difference?
2014-03-08 22:00:18 +01:00
Niels Kristian Bech Jensen 7c37f8b438 update packages gdk-pixbuf pango 2013-11-12 17:32:38 +11:00
Niels Kristian Bech Jensen 02091d821a update package gtk2 and dependencies 2013-11-10 15:18:56 +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
Tony Theodore 08bd15ca83 update packages curl gdk-pixbuf gtk2 harfbuzz imagemagick pango 2013-06-23 20:34:21 +10:00
Tony Theodore 0da2595601 packages icu4c harfbuzz pango: really fix linking 2013-05-19 04:13:12 +10:00
Tony Theodore ceeaa8ef00 packages harfbuzz pango: fix for icu enabled builds 2013-05-19 02:15:48 +10:00
Mark Brand 5aeb1e583e update package pango 2013-05-14 08:59:20 +02:00
Mark Brand 633c68fbb0 update package pango 2013-03-26 07:52:03 +01:00
Mark Brand ec45affda6 update package pango 2013-03-24 11:04:30 +01:00
Mark Brand 9e0b8825f2 update package pango 2013-03-06 22:09:58 +01:00
Mark Brand 43e53c7103 update package pango 2013-02-06 00:07:09 +01:00
Mark Brand 017f4a4552 update package pango 2013-01-10 15:56:41 +01:00
Mark Brand b7517a8849 update package pango 2012-12-18 11:42:06 +01:00
Mark Brand 5456265220 update packages harfbuzz pango 2012-11-21 10:08:37 +01:00
Mark Brand 1186223fc2 update package pango 2012-11-17 22:19:30 +01:00
Mark Brand 0d851910d9 package pango: add harfbuzz dependency 2012-11-12 23:13:06 +01:00
Mark Brand 4640bc8b33 update package pango 2012-10-12 12:14:25 +02:00
Mark Brand 3e75b506ff package pango: kill gtk-doc dependenc 2012-06-18 22:05:30 +02:00
Mark Brand 2b07bce981 update package pango 2012-06-15 16:30:47 +02:00
Tony Theodore 4ed13a9f30 all packages: use $(WGET) portability variable 2012-05-16 17:49:40 +10:00
Tony Theodore 9555f8f2b6 packages atk* glib* libsigc++ pango: use xz archives 2012-05-03 08:02:36 +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 cdf34d69f3 packages gtk2 gtkglextmm pango: replace wine workaround patches 2011-11-28 10:41:34 +01:00
Mark Brand 316ef1dbeb update packages: imagemagick libiconv libvpx ogg pango x264 2011-08-09 14:46:30 +02:00
Mark Brand e9f5cb5158 update package pango 2011-04-05 09:12:20 +02:00
Mark Brand 0f087da1d0 upgrade package pango 2010-09-29 14:46:42 +02:00
Mark Brand ce8c4110d9 remove experimental residue 2010-09-29 02:21:30 +02:00
Mark Brand 8d11b5f68d upgrade package pango 2010-09-29 01:19:40 +02:00
Mark Brand b0e22b14a6 upgrade packages: pango tiff 2010-06-16 11:17:08 +02:00
Volker Grabsch 66c0a17cf2 improved version recognition of packages atk, glib, gtk, libxml2, libxslt and pango 2010-04-21 01:15:03 +02:00
Mark Brand 734d34653d upgrade packages: atk geos glew glib libpaper pango pcre pixman 2010-04-19 21:54:23 +02:00
Volker Grabsch ec8be2b6b0 update version of package pango 2010-02-23 17:18:33 +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 71f83a7e0d point consequently to "doc/index.html" instead of "doc/index.html or doc/README" 2010-02-08 00:58:06 +01:00