Commit Graph

51 Commits

Author SHA1 Message Date
Mark Brand b304870088 fix gitlab GNOME packages update macros 2019-05-14 10:04:27 +02: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
Tony Theodore 5d0fe61710 atk: update 2.14.0 --> 2.16.0 2015-09-15 05:36:09 +10:00
Timothy Gu e77a97ddd8 atk: Update
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
2014-10-17 00:33:59 -04:00
Tony Theodore ab49a50845 package atk: improve portability fix 2014-04-08 11:16:01 +10:00
Tobias Gruetzmacher 9dd03f469b Enable shared builds for atk, gdk-pixbuf and gtk2. 2014-03-08 22:00:19 +01:00
Niels Kristian Bech Jensen 02091d821a update package gtk2 and dependencies 2013-11-10 15:18:56 +11: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 7324658809 update packages atk gdk-pixbuf 2013-03-29 16:38:54 +11:00
Mark Brand 45053565c3 update package atk 2012-10-12 12:32:26 +02:00
Mark Brand f8714c7553 package atk: use config.guess 2012-06-15 15:54:54 +02:00
Hans Petter Jansson b86f86abb3 update package atk 2012-06-15 14:36:25 +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
Matthias Gehre df6829c957 atk: rename DllMain to atk_DllMain 2012-04-14 21:08:47 +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
Tony Theodore 94e28a86c8 update packages atk, atkmm 2012-03-25 01:43:58 +11:00
Mark Brand ad330fab95 update packags: atk glibmm gnutls gst-plugins-base gst-plugins-good gstreamer gtk2 imagemagick x264 2011-06-20 10:40:51 +02:00
Mark Brand 74c7613f73 update package atk 2011-04-05 09:13:26 +02:00
Mark Brand 305f023d29 upgrade packages: atk imagemagick 2010-09-27 10:49:35 +02:00
Volker Grabsch f6b1cf79ad avoid beta versions of packages atk and libgsf (by Tony Theodore) 2010-04-26 17:30:24 +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 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
Volker Grabsch 8a3233b044 simplified file markers 2010-01-16 23:02:02 +01:00
Volker Grabsch 2547ed8403 update version of packages atk, glib and gtk 2009-12-23 23:32:04 +01:00
Volker Grabsch 4fba6cd5bb update version of packages atk, boost, fontconfig, gdal, geos, glib, lcms, libevent, pango, pixman, sdl_image and sdl_mixer 2009-12-02 16:35:27 +01:00
Volker Grabsch 3c74da9895 update version of packages atk, gtk, sdl, sdl_image and sdl_mixer 2009-10-28 03:01:41 +01:00
Volker Grabsch a79acd1f3e improved version recognition of packages atk, glib, gtk, libxml2, libxslt, nsis, pango, sdl, sdl_image, sdl_mixer and sdl_ttf 2009-10-21 13:24:44 +02: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 695da3b2ca update version of packages atk, curl, gcc, gdal, glib, gnutls, gtk, libevent, libidn, libntlm, libpng, nsis, pango, pdflib_lite, pixman, sqlite, tre and xmlwrapp 2009-06-10 10:56:10 +02:00
Volker Grabsch 6a2cab9dbb validate downloads using SHA-1 checksums 2009-04-05 14:00:17 +02:00
Volker Grabsch fc91f75020 bugfix in several build rules: use "$(SED)" instead of "sed" 2009-03-05 15:22:43 +01:00
Volker Grabsch 5deaef6eb0 improved the regexes for package version recognition 2009-03-02 06:00:03 +01:00
Volker Grabsch b05d179c96 put all package's project websites into Make variables $($(PKG)_WEBSITE) 2009-03-01 16:35:21 +01:00
Volker Grabsch 1e8e85e10a new macro SHORT_PKG_VERSION which assists in creating download URLs 2009-03-01 16:18:46 +01:00
Volker Grabsch 78ccfaaa65 corrected library dependencies and disabled dangling DLL stuff in packages atk, cairo, fontconfig, glib, gtk and pango 2009-03-01 02:26:09 +01:00