diff options
author | Mike Crute <mike@crute.us> | 2020-05-07 07:39:10 +0000 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-05-07 07:39:10 +0000 |
commit | 2bdaefb18fc55e7037fdb8e2a4449f26ab747add (patch) | |
tree | 90537915f866afac938d53ae5801cce75bb423f5 | |
parent | 6cc58ccd24b3776ddc09f7c4f4be10e1552b6f8f (diff) | |
download | aports-2bdaefb18fc55e7037fdb8e2a4449f26ab747add.tar.bz2 aports-2bdaefb18fc55e7037fdb8e2a4449f26ab747add.tar.xz |
testing/libupnp: upgrade to 1.12.1
-rw-r--r-- | testing/amule/APKBUILD | 2 | ||||
-rw-r--r-- | testing/libupnp/APKBUILD | 17 | ||||
-rw-r--r-- | testing/libupnp/disable-failing-test-init.patch | 15 |
3 files changed, 9 insertions, 25 deletions
diff --git a/testing/amule/APKBUILD b/testing/amule/APKBUILD index 58893f7edb..e8f5dec398 100644 --- a/testing/amule/APKBUILD +++ b/testing/amule/APKBUILD @@ -3,7 +3,7 @@ pkgname=amule _commit=314e62e87ff0481d3171f74751aaf0179e518765 pkgver=11025 -pkgrel=1 +pkgrel=2 pkgdesc="An eMule-like client for the eD2k and Kademlia networks" url="http://www.amule.org" arch="all" diff --git a/testing/libupnp/APKBUILD b/testing/libupnp/APKBUILD index 24c50cc720..b09a9280c6 100644 --- a/testing/libupnp/APKBUILD +++ b/testing/libupnp/APKBUILD @@ -1,7 +1,8 @@ -# Contributor: Francesco Colista <fcolista@alpinelinux.org> # Maintainer: Francesco Colista <fcolista@alpinelinux.org> +# Contributor: Francesco Colista <fcolista@alpinelinux.org> +# Contributor: Mike Crute <mike@crute.us> pkgname=libupnp -pkgver=1.8.4 +pkgver=1.12.1 pkgrel=0 pkgdesc="Portable Open Source UPnP Development Kit" url="http://pupnp.sourceforge.net" @@ -9,12 +10,10 @@ arch="all" license="BSD-3-Clause" makedepends="automake autoconf libtool" subpackages="$pkgname-dev" -source="https://downloads.sourceforge.net/sourceforge/pupnp/${pkgname}-${pkgver}.tar.bz2 - disable-failing-test-init.patch" -builddir="$srcdir/$pkgname-$pkgver" -options="!check" # tests fail on x86_64, assumed broken +source="https://github.com/pupnp/pupnp/releases/download/release-$pkgver/libupnp-$pkgver.tar.bz2" prepare() { + default_prepare autoreconf } @@ -22,7 +21,8 @@ build() { ./configure \ --prefix=/usr \ --enable-ipv6 \ - --enable-static=no + --enable-static=no \ + --enable-reuseaddr make } @@ -34,5 +34,4 @@ package() { make DESTDIR="$pkgdir" install } -sha512sums="403d7b6408a33330fc59fbe6284cc7bca10a675c41b323bba6b9c6461c8a82fbb39f4a1a07d1a3b55f049c637830ebf21bd825cd6c2f4eb17265018ccee9cbb6 libupnp-1.8.4.tar.bz2 -ca773d0f025fc2733bd48bec4534f668d1e40e148b4e7fdec8f98948ebafc8edaba6cece3d1b5dbc43a14a7ca37f12dd854eaddddfb50b2e0df2f625ff11d20a disable-failing-test-init.patch" +sha512sums="f13833118d08fc05273dc65a12596854b937c505b20d82e58eb1c2e1fa35dba0cafd5799475e030f3c698069046cc5256e6ef5afe398680e7ea881df953b95e6 libupnp-1.12.1.tar.bz2" diff --git a/testing/libupnp/disable-failing-test-init.patch b/testing/libupnp/disable-failing-test-init.patch deleted file mode 100644 index 3b13902df3..0000000000 --- a/testing/libupnp/disable-failing-test-init.patch +++ /dev/null @@ -1,15 +0,0 @@ -diff --git a/upnp/Makefile.am b/upnp/Makefile.am -index 133bd6a..4d8b9d0 100644 ---- a/upnp/Makefile.am -+++ b/upnp/Makefile.am -@@ -196,8 +196,8 @@ libupnp_la_SOURCES += \ - - - # check / distcheck tests --check_PROGRAMS = test_init test_url --TESTS = test_init test_url -+check_PROGRAMS = test_url -+TESTS = test_url - test_init_SOURCES = test/test_init.c - test_url_SOURCES = test/test_url.c - |