Commit Graph

86 Commits

Author SHA1 Message Date
Mark Brand 394d23ad0e update: gsoap, lzma, pcre 2019-02-24 19:51:55 +01:00
Mark Brand f856a8fc2b update: gsoap, libidn2, vmime 2019-02-11 01:03:22 +01:00
Mark Brand b9ea546e24 update: freetds, gnutls, gsoap 2019-01-25 21:07:38 +01:00
Mark Brand dceb21b133 update gsoap 2019-01-23 10:38:35 +01:00
Mark Brand 33f681c9c0 update: gsoap, libgpg_error, primesieve 2019-01-17 01:23:17 +01:00
Mark Brand c77852f129 update gsoap 2019-01-07 01:37:22 +01:00
Mark Brand 40abc54efa upgrade: freetds, gsoap, libevent, sqlcipher, subversion 2018-02-20 22:54:39 +01:00
Mark Brand f6b398bb13 update gsoap 2018-02-18 19:59:29 +01:00
Tony Theodore 01e2a64d00 cross packages: replace dependency gcc with cc 2017-12-23 08:19:00 +11:00
Viktor Szakats 45d34aaac7 more URL updates 2017-03-10 13:59:00 +00:00
Viktor Szakats e961e447fb URL updates 2017-03-04 10:33:47 +00:00
Tony Theodore 06191a0883 gsoap: fix build on newer macos version 2017-02-01 12:49:47 +11:00
Mark Brand f7fc9e330a gsoap: update source URL 2017-01-04 11:54:57 +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 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
Mark Brand 0604c164a9 gsoap: use openssl instead of gnutls
Gsoap uses deprecated gnutls calls that have been removed
in gnutls 3.4. To keep SSL support in gsoap, let's switch
to openssl.
2015-06-18 23:30:39 +02:00
Mark Brand 92230c00f7 gsoap: update checksum 2015-06-05 17:40:20 +02:00
Mark Brand d775f3ed1e gsoap: libgpg_error compatibility fix 2015-04-23 23:09:57 +02:00
Mark Brand 6007cfb64e gsoap: update 2015-04-18 11:07:09 +02:00
Mark Brand afd6f595ae gsoap: work around missing define when using gnutls 2015-04-18 11:07:00 +02:00
Mark Brand cea0725237 gsoap: update 2014-12-07 12:25:12 +01:00
Mark Brand 356c2c8415 gsoap: update 2014-12-01 11:27:15 +01:00
Mark Brand 5dd2bbc337 gsoap: update 2014-11-09 23:34:37 +01:00
Mark Brand 65531987f2 gsoap: update 2014-10-20 22:38:10 +02:00
Tony Theodore 8de0584a23 many packages: explicitly disable shared builds
closes #369
2014-04-06 23:18:24 +10:00
Mark Brand ee2f3566f1 package gsoap: update checksum 2013-12-29 02:05:01 +01:00
Niels Kristian Bech Jensen 26fede61b2 update package gsoap 2013-12-04 17:35:31 +11:00
Mark Brand 7596986076 update package gsoap 2013-08-26 20:12:30 +02: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 b2892f1012 remove explicit configure option --libdir
Unsetting CONFIG_SITE was the right way to solve the problem that
--libdir was working around.

This reverts commit 0b3240f9d8.
This reverts commit 3653eb6ec1.
This reverts commit 593ab5a706.
2013-06-02 19:40:12 +02:00
Mark Brand 0b3240f9d8 package gsoap: fix blunder 2013-06-02 12:35:04 +02:00
Mark Brand 3653eb6ec1 use --libdir to avoid <prefix>/<target>/lib64 confusion (more)
follow-up to commit 593ab5a706
2013-06-02 12:27:10 +02:00
Niels Kristian Bech Jensen ff07eeb664 package gsoap: update checksum 2013-05-15 18:16:17 +10:00
Mark Brand 5f093bfefe update package gsoap 2013-05-13 10:38:24 +02:00
Mark Brand 68142e520a update package gsoap 2013-02-04 05:58:13 +01:00
Mark Brand dcf0baaeff update package gsoap 2013-01-22 11:19:40 +01:00
Mark Brand c35fc3fd7c package gsoap: update checksum for replaced tarball 2012-12-11 09:06:22 +01:00
Mark Brand 6b8a95c449 update package gsoap 2012-12-10 10:13:08 +01:00
Mark Brand c5fc7e3267 update package gsoap 2012-10-13 23:43:01 +02:00
Mark Brand 265514be94 update package gsoap 2012-08-20 13:28:12 +02:00
Mark Brand a44893e465 update package gsoap 2012-06-09 22:18:13 +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 ee794819b0 update package gsoap 2012-02-20 08:52:12 +01:00
Mark Brand 22a1cbc10f update package gsoap 2012-02-10 03:20:29 +01:00