Commit Graph

47 Commits

Author SHA1 Message Date
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 cc102cf94b gstreamer and plugins: update 1.4.5 --> 1.6.2 and enable shared 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 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 368bab3acb gstreamer and plugins: update 1.4.4 --> 1.4.5 2015-08-25 20:54:20 +10:00
Tony Theodore e7733f274c gstreamer and plugins: update 2014-12-01 22:40:35 +11:00
Tony Theodore 6ecce732a5 gstreamer and plugins: downgrade to stable series and adjust update macro 2014-05-11 21:03:02 +10:00
Tony Theodore 2e55129874 Revert "update package gstreamer and plugins"
This reverts commit 3d7cce8ce7.
2014-05-11 17:35:58 +10:00
Tony Theodore 3d7cce8ce7 update package gstreamer and plugins 2014-05-10 02:44:32 +10:00
Tony Theodore 8de0584a23 many packages: explicitly disable shared builds
closes #369
2014-04-06 23:18:24 +10:00
Niels Kristian Bech Jensen aaa43ae49e update package gstreamer and plugins 2014-01-29 01:45:08 +11:00
Tony Theodore 9406cd8631 update package gstreamer and plugins 2013-11-12 02:58:25 +11:00
Niels Kristian Bech Jensen cea2461673 update package gstreamer and plugins 2013-09-07 23:19:28 +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 84e5403f10 update package gstreamer and plugins 2013-06-23 20:44:23 +10:00
Niels Kristian Bech Jensen b6cfcf3b14 update package gstreamer and plugins 2013-04-28 15:41:37 +10:00
Tony Theodore 8161ff02c9 update package gstreamer and plugins 2013-03-29 16:01:45 +11:00
Tony Theodore 7f80a86850 update package gstreamer and plugins 2013-02-14 22:08:36 +11:00
Tony Theodore bbaa2d5fdc update package gstreamer and plugins 2013-01-05 23:27:47 +11:00
Tony Theodore 5b8a11f1e5 update package gstreamer and plugins 2012-12-08 23:29:03 +11:00
Mark Brand 664374d83f packages gstreamer gst-plugins-base gst-plugins-good: revert to stable versions 2012-06-18 22:23:26 +02:00
Mark Brand 7b732afca3 update packages gstreamer gst-plugins-base gst-plugins-good 2012-06-18 22:06:56 +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 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 ae147aea99 update package gst-plugins-base 2011-05-14 18:03:32 +02:00
Mark Brand 47e4da7d06 update packages: cairomm glibmm gst* x264 2011-05-10 13:45:38 +02:00
Mark de Wever 20ba0ddb87 fix missing dependencies 2011-02-14 20:26:33 +11:00
Mark Brand 31b20a7914 packages gstreamer gst-plugins-base gst-plugins-good: tidy up 2011-01-22 23:31:41 +01:00
Mark Brand 05bfe422c0 upgrade packages gstreamer gst-plugins-base gst-plugins-good 2011-01-22 22:30:13 +01:00
Tony Theodore e059b07427 portability fix for package gstreamer and plugins using upstream patches 2010-12-05 22:14:01 +11:00
Tony Theodore c36416c900 revert previous portability hack 2010-12-05 22:08:16 +11:00
Tony Theodore fbaa48ad44 portability fix for package gstreamer and plugins
Recent autotools macro (or gstreamer specific?)
AG_GST_SET_PACKAGE_RELEASE_DATETIME_WITH_NANO
introduces an extraneous dot that fails on FreeBSD.

Use $(SED) replacement to fix ./configure as a proper fix requires
too much knowledge of autotools/gstreamer internals.
2010-12-04 03:32:59 +11:00
Volker Grabsch e088e4c390 upgrade packages: freetype gst-plugins-base gst-plugins-good gstreamer imagemagick lcms libusb openssl x264 2010-12-03 00:13:55 +01:00
Mark Brand ab12b85a67 upgrade packages curl freetype gcc glew gnutls gst* libarchive libevent libgcrypt pcre sqlite w32api
New requirement XZ Utils for unpacking w32api lzma archive.
2010-08-29 11:40:18 +02:00
Mark Brand 00e3644e47 removed invalid configure options in packages gst-plugins-base, gst-plugins-good and liboil 2010-05-31 09:17:00 +02:00
Mark Brand c25a0e0ccf upgrade packages boost gdal glew gst-plugins-base gstreamer gtk libgpg_error libgsf libpng librsvg libunistring taglib 2010-05-12 01:48:28 +02:00
Mark Brand 2bee7dde9c upgrade packages gstreamer gst-plugins-base gst-plugins-good
previously used patch is now in gst-plugins-good
2010-04-16 02:11:18 +02:00
Volker Grabsch cb64a061d1 bugfix: disable X11 support in package gst-plugins-base (by Tony Theodore) 2010-04-08 11:22:39 +02:00
Volker Grabsch 4a6b6d0945 bugfix: use the correct glib-* tools in packages gstreamer, gst-plugins-base and gst-plugins-good 2010-02-23 17:01:11 +01:00
Volker Grabsch d07d2e93b7 implemented version recognition and corrected website URLs for packages gst-plugins-base, gst-plugins-good, gstreamer, liboil and libshout 2010-02-23 14:08:36 +01:00
Mark Brand 02e00fc493 new packages: liboil, libshout, gstreamer, gst-plugins-base and gst-plugins-good 2010-02-21 21:52:21 +01:00