Commit Graph

38 Commits

Author SHA1 Message Date
Viktor Szakats 42cf496ae2 secure URLs
also apply minor updates to tools/mxe-get
2019-05-02 13:34:07 +10:00
Boris Pek 4dafd78418 exiv2: fix download URL 2019-02-04 17:23:11 +01:00
Tony Theodore 01e2a64d00 cross packages: replace dependency gcc with cc 2017-12-23 08:19:00 +11: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 6e50094684 exiv2: add missing mman-win32 dependency 2015-12-17 00:31:31 +11:00
Tony Theodore 18237df9b2 exiv2: fix missing mman lib
fixes #1039
2015-12-07 07:44:52 +11:00
Tony Theodore 03393209c5 exiv2: update 0.24 --> 0.25 2015-12-01 04:11:55 +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 f4202755f5 package exiv2: enable shared build 2014-06-10 20:46:12 +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 791dd8cc22 update package exiv2 2013-12-04 13:27:15 +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
Niels Kristian Bech Jensen 12c1f29089 package exiv2: add gettext dependency 2013-04-20 14:37:12 +10:00
Tony Theodore 4ed13a9f30 all packages: use $(WGET) portability variable 2012-05-16 17:49:40 +10:00
Mark Brand 11b75ecbe6 update package exiv2 2012-05-05 17:32:16 +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
Volker Grabsch 148931b4ae replaced $(BUILD) with a more direct and less brittle construct
For discussion, see the following email and its follow-ups:
http://lists.nongnu.org/archive/html/mingw-cross-env-list/2011-11/msg00112.html
2011-11-28 09:51:56 +01:00
Mark Brand 3cce3e9b58 many packages: use --build instead of wine cross_compiling hack 2011-11-26 16:30:36 +01:00
Mark Brand 9e943586ae update packages exiv2 gnutls imagemagick x264 2011-09-18 23:42:25 +02:00
Volker Grabsch 9a1cc4900c provide a clean solution for the pkg-config issue of package exiv2 2011-07-29 14:28:06 +02:00
Volker Grabsch c638794a74 bugfix for package exiv2: fix pkg-config linker flags by removing "-no-undefined" 2011-06-30 01:07:59 +02:00
Volker Grabsch b1b338dc87 don't remove the "-no-undefined" flag, but provide clean bugfixes instead for packages exiv2 and xine-lib 2011-03-27 18:14:08 +02:00
Volker Grabsch d29806fbe3 remove an old GCC workaround which is no longer needed 2011-03-27 15:53:15 +02:00
Mark Brand 123c5fd4b6 package exiv2: gcc 4.6 workaround 2011-03-25 23:06:29 +01:00
Mark Brand 8be2a6dd22 update package exiv2 2011-02-18 13:32:07 +01:00
Volker Grabsch fea1523d5a upgrade package: exiv2 2010-12-02 20:11:29 +01:00
Mark Brand f94a2193f3 upgrade packages: exiv2 gettext glib gst-plugins-good libevent libtool 2010-06-05 21:31: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 2b7c127391 update version of package exiv2
The "exiv2-improvements" patch is not needed anymore.
2010-01-04 13:22:50 +01:00
Volker Grabsch ff296f350e new package: exiv2 2009-12-21 18:16:39 +01:00