[arch-commits] Commit in miniupnpc/trunk (PKGBUILD)

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 22:22:58
  Author: anthraxx
Revision: 664232

upgpkg: miniupnpc 2.1.20191224-1

Modified:
  miniupnpc/trunk/PKGBUILD

--+
 PKGBUILD |   20 ++--
 1 file changed, 10 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 22:06:38 UTC (rev 664231)
+++ PKGBUILD2020-07-16 22:22:58 UTC (rev 664232)
@@ -4,20 +4,18 @@
 
 pkgbase=miniupnpc
 pkgname=(miniupnpc python-miniupnpc)
-pkgver=2.1.20190408
-pkgrel=4
+pkgver=2.1.20191224
+pkgrel=1
 pkgdesc='Small UPnP client library/tool to access Internet Gateway Devices'
 url='https://miniupnp.tuxfamily.org/'
 arch=('x86_64')
 license=('BSD')
-depends=('sh')
-makedepends=('lsb-release' 'python-setuptools')
-provides=('libminiupnpc.so')
+makedepends=('sh' 'glibc' 'lsb-release' 'python' 'python-setuptools')
 
source=(https://miniupnp.tuxfamily.org/files/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('a0c46bcf6065d6351a8fa6a0a18dc57d10a16908dbb470908fd2e423511514ec'
+sha512sums=('d362f914ce9177c1bc46f1f3ae59069c61c0c9c1b6ea7e78003d6b46445d3550835ffc541c2649b5fbc997d035357b461148edb3648135f33d0ce98b54961917'
 'SKIP')
-sha512sums=('faa0f1363ebb59ca636b6c974188c52903ad07652f8268563c9c1a5826fafc2458d9f521efd3546fbbd4b71b3b14a50ba89dda52757adad1db81c31d9ba0987a'
-'SKIP')
+b2sums=('85c0b3eb678685bc7192dbee9440ec5f5be80cbac4d6a4e0a6473662c66f05ef512322cd535a142ffe16d3099a86f78ea70645a7eb2979c373e7a486aeab0cd5'
+'SKIP')
 validpgpkeys=('BEB7EA42900FF505B7907AE50FF11B67A5C0863C') # miniupnp (miniupnp 
!) 
 
 build() {
@@ -32,6 +30,9 @@
 }
 
 package_miniupnpc() {
+  depends=(sh glibc)
+  provides=(libminiupnpc.so)
+
   cd ${pkgname}-${pkgver}
   make DESTDIR="${pkgdir}" install
   install -Dm 644 man3/miniupnpc.3 -t "${pkgdir}/usr/share/man/man3"
@@ -40,8 +41,7 @@
 
 package_python-miniupnpc() {
   pkgdesc='Python bindings for miniupnpc'
-  depends=(python)
-  provides=()
+  depends=(python glibc)
 
   cd ${pkgbase}-${pkgver}
   python setup.py install --optimize=1 --skip-build --root="$pkgdir"


[arch-commits] Commit in miniupnpc/trunk (PKGBUILD)

2020-07-15 Thread Antonio Rojas via arch-commits
Date: Thursday, July 16, 2020 @ 06:19:04
  Author: arojas
Revision: 664036

Bump for release

Modified:
  miniupnpc/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 06:17:52 UTC (rev 664035)
+++ PKGBUILD2020-07-16 06:19:04 UTC (rev 664036)
@@ -5,7 +5,7 @@
 pkgbase=miniupnpc
 pkgname=(miniupnpc python-miniupnpc)
 pkgver=2.1.20190408
-pkgrel=3
+pkgrel=4
 pkgdesc='Small UPnP client library/tool to access Internet Gateway Devices'
 url='https://miniupnp.tuxfamily.org/'
 arch=('x86_64')


[arch-commits] Commit in miniupnpc/trunk (PKGBUILD)

2020-07-15 Thread Antonio Rojas via arch-commits
Date: Thursday, July 16, 2020 @ 06:17:41
  Author: arojas
Revision: 664034

Add python package, needed for nicotine+

Modified:
  miniupnpc/trunk/PKGBUILD

--+
 PKGBUILD |   18 +++---
 1 file changed, 15 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 05:54:33 UTC (rev 664033)
+++ PKGBUILD2020-07-16 06:17:41 UTC (rev 664034)
@@ -2,7 +2,8 @@
 # Contributor: Timothy Redaelli 
 # Contributor: Florian Loitsch 
 
-pkgname=miniupnpc
+pkgbase=miniupnpc
+pkgname=(miniupnpc python-miniupnpc)
 pkgver=2.1.20190408
 pkgrel=3
 pkgdesc='Small UPnP client library/tool to access Internet Gateway Devices'
@@ -10,7 +11,7 @@
 arch=('x86_64')
 license=('BSD')
 depends=('sh')
-makedepends=('lsb-release')
+makedepends=('lsb-release' 'python-setuptools')
 provides=('libminiupnpc.so')
 
source=(https://miniupnp.tuxfamily.org/files/${pkgname}-${pkgver}.tar.gz{,.sig})
 sha256sums=('a0c46bcf6065d6351a8fa6a0a18dc57d10a16908dbb470908fd2e423511514ec'
@@ -22,6 +23,7 @@
 build() {
   cd ${pkgname}-${pkgver}
   make
+  python setup.py build
 }
 
 check() {
@@ -29,7 +31,7 @@
   make test
 }
 
-package() {
+package_miniupnpc() {
   cd ${pkgname}-${pkgver}
   make DESTDIR="${pkgdir}" install
   install -Dm 644 man3/miniupnpc.3 -t "${pkgdir}/usr/share/man/man3"
@@ -36,4 +38,14 @@
   install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
 }
 
+package_python-miniupnpc() {
+  pkgdesc='Python bindings for miniupnpc'
+  depends=(python)
+  provides=()
+
+  cd ${pkgbase}-${pkgver}
+  python setup.py install --optimize=1 --skip-build --root="$pkgdir"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
 # vim: ts=2 sw=2 et:


[arch-commits] Commit in miniupnpc/trunk (PKGBUILD)

2020-07-12 Thread Jonas Witschel via arch-commits
Date: Sunday, July 12, 2020 @ 14:12:32
  Author: diabonas
Revision: 663331

upgpkg: miniupnpc 2.1.20190408-3: avoid embedding unreproducible uname -r in 
binary

When lsb_release is not available, updateminiupnpcstrings.sh falls back to using
"uname -r" for MINIUPNPC_VERSION_STRING (which is used e.g. in the user agent),
making the build unreproducible between different kernel versions. With
lsb_release available, the version string is fixed to "Arch/rolling" instead.

Modified:
  miniupnpc/trunk/PKGBUILD

--+
 PKGBUILD |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 13:54:07 UTC (rev 663330)
+++ PKGBUILD2020-07-12 14:12:32 UTC (rev 663331)
@@ -4,12 +4,13 @@
 
 pkgname=miniupnpc
 pkgver=2.1.20190408
-pkgrel=2
+pkgrel=3
 pkgdesc='Small UPnP client library/tool to access Internet Gateway Devices'
 url='https://miniupnp.tuxfamily.org/'
 arch=('x86_64')
 license=('BSD')
 depends=('sh')
+makedepends=('lsb-release')
 provides=('libminiupnpc.so')
 
source=(https://miniupnp.tuxfamily.org/files/${pkgname}-${pkgver}.tar.gz{,.sig})
 sha256sums=('a0c46bcf6065d6351a8fa6a0a18dc57d10a16908dbb470908fd2e423511514ec'


[arch-commits] Commit in miniupnpc/trunk (PKGBUILD)

2020-07-07 Thread Evangelos Foutras via arch-commits
Date: Tuesday, July 7, 2020 @ 19:32:34
  Author: foutrelis
Revision: 660168

upgpkg: miniupnpc 2.1.20190408-2: reproducibility rebuild

Modified:
  miniupnpc/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-07 19:31:58 UTC (rev 660167)
+++ PKGBUILD2020-07-07 19:32:34 UTC (rev 660168)
@@ -4,7 +4,7 @@
 
 pkgname=miniupnpc
 pkgver=2.1.20190408
-pkgrel=1
+pkgrel=2
 pkgdesc='Small UPnP client library/tool to access Internet Gateway Devices'
 url='https://miniupnp.tuxfamily.org/'
 arch=('x86_64')


[arch-commits] Commit in miniupnpc/trunk (PKGBUILD)

2019-06-02 Thread Levente Polyak via arch-commits
Date: Sunday, June 2, 2019 @ 19:01:37
  Author: anthraxx
Revision: 476664

upgpkg: miniupnpc 2.1.20190408-1

Modified:
  miniupnpc/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-06-02 18:58:13 UTC (rev 476663)
+++ PKGBUILD2019-06-02 19:01:37 UTC (rev 476664)
@@ -3,8 +3,8 @@
 # Contributor: Florian Loitsch 
 
 pkgname=miniupnpc
-pkgver=2.1
-pkgrel=2
+pkgver=2.1.20190408
+pkgrel=1
 pkgdesc='Small UPnP client library/tool to access Internet Gateway Devices'
 url='https://miniupnp.tuxfamily.org/'
 arch=('x86_64')
@@ -12,9 +12,9 @@
 depends=('sh')
 provides=('libminiupnpc.so')
 
source=(https://miniupnp.tuxfamily.org/files/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('e19fb5e01ea5a707e2a8cb96f537fbd9f3a913d53d804a3265e3aeab3d2064c6'
+sha256sums=('a0c46bcf6065d6351a8fa6a0a18dc57d10a16908dbb470908fd2e423511514ec'
 'SKIP')
-sha512sums=('0af5c573206e0147f8e20cd84c394164a784cf385f3978b7ca414cc2b2e530d6af40a21de5c9d8459d31db249e06667757e723767b1d4cd0a4ec5497ad239c23'
+sha512sums=('faa0f1363ebb59ca636b6c974188c52903ad07652f8268563c9c1a5826fafc2458d9f521efd3546fbbd4b71b3b14a50ba89dda52757adad1db81c31d9ba0987a'
 'SKIP')
 validpgpkeys=('BEB7EA42900FF505B7907AE50FF11B67A5C0863C') # miniupnp (miniupnp 
!) 
 


[arch-commits] Commit in miniupnpc/trunk (PKGBUILD)

2018-05-09 Thread Levente Polyak via arch-commits
Date: Wednesday, May 9, 2018 @ 22:56:15
  Author: anthraxx
Revision: 319914

upgpkg: miniupnpc 2.1-2 (add signature)

Modified:
  miniupnpc/trunk/PKGBUILD

--+
 PKGBUILD |   16 
 1 file changed, 12 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-05-09 21:20:27 UTC (rev 319913)
+++ PKGBUILD2018-05-09 22:56:15 UTC (rev 319914)
@@ -4,7 +4,7 @@
 
 pkgname=miniupnpc
 pkgver=2.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Small UPnP client library/tool to access Internet Gateway Devices'
 url='https://miniupnp.tuxfamily.org/'
 arch=('x86_64')
@@ -11,9 +11,12 @@
 license=('BSD')
 depends=('sh')
 provides=('libminiupnpc.so')
-source=(https://miniupnp.tuxfamily.org/files/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('e19fb5e01ea5a707e2a8cb96f537fbd9f3a913d53d804a3265e3aeab3d2064c6')
-sha512sums=('0af5c573206e0147f8e20cd84c394164a784cf385f3978b7ca414cc2b2e530d6af40a21de5c9d8459d31db249e06667757e723767b1d4cd0a4ec5497ad239c23')
+source=(https://miniupnp.tuxfamily.org/files/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha256sums=('e19fb5e01ea5a707e2a8cb96f537fbd9f3a913d53d804a3265e3aeab3d2064c6'
+'SKIP')
+sha512sums=('0af5c573206e0147f8e20cd84c394164a784cf385f3978b7ca414cc2b2e530d6af40a21de5c9d8459d31db249e06667757e723767b1d4cd0a4ec5497ad239c23'
+'SKIP')
+validpgpkeys=('BEB7EA42900FF505B7907AE50FF11B67A5C0863C') # miniupnp (miniupnp 
!) 
 
 build() {
   cd ${pkgname}-${pkgver}
@@ -20,6 +23,11 @@
   make
 }
 
+check() {
+  cd ${pkgname}-${pkgver}
+  make test
+}
+
 package() {
   cd ${pkgname}-${pkgver}
   make DESTDIR="${pkgdir}" install


[arch-commits] Commit in miniupnpc/trunk (PKGBUILD)

2018-05-08 Thread Levente Polyak via arch-commits
Date: Wednesday, May 9, 2018 @ 00:31:18
  Author: anthraxx
Revision: 319741

upgpkg: miniupnpc 2.1-1

Modified:
  miniupnpc/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-05-09 00:29:29 UTC (rev 319740)
+++ PKGBUILD2018-05-09 00:31:18 UTC (rev 319741)
@@ -3,7 +3,7 @@
 # Contributor: Florian Loitsch 
 
 pkgname=miniupnpc
-pkgver=2.0.20180410
+pkgver=2.1
 pkgrel=1
 pkgdesc='Small UPnP client library/tool to access Internet Gateway Devices'
 url='https://miniupnp.tuxfamily.org/'
@@ -12,8 +12,8 @@
 depends=('sh')
 provides=('libminiupnpc.so')
 source=(https://miniupnp.tuxfamily.org/files/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('0e4c6d6ebc8b75eb636df7d3f3370c98713545acc3694b5ae40daa2502487a23')
-sha512sums=('08e19fa6f7c9015fefa2c5bf1c007f0c2c1b8c90c1901bd2be2ccbfd19f2fd6a13190a3b5f752bfdc9cefd8e9ca535b584be561a3aa17eec5967b9cebfb28879')
+sha256sums=('e19fb5e01ea5a707e2a8cb96f537fbd9f3a913d53d804a3265e3aeab3d2064c6')
+sha512sums=('0af5c573206e0147f8e20cd84c394164a784cf385f3978b7ca414cc2b2e530d6af40a21de5c9d8459d31db249e06667757e723767b1d4cd0a4ec5497ad239c23')
 
 build() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in miniupnpc/trunk (PKGBUILD)

2018-04-18 Thread Levente Polyak via arch-commits
Date: Wednesday, April 18, 2018 @ 20:48:15
  Author: anthraxx
Revision: 316921

upgpkg: miniupnpc 2.0.20180410-1

Modified:
  miniupnpc/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-04-18 20:47:02 UTC (rev 316920)
+++ PKGBUILD2018-04-18 20:48:15 UTC (rev 316921)
@@ -3,7 +3,7 @@
 # Contributor: Florian Loitsch 
 
 pkgname=miniupnpc
-pkgver=2.0.20180406
+pkgver=2.0.20180410
 pkgrel=1
 pkgdesc='Small UPnP client library/tool to access Internet Gateway Devices'
 url='https://miniupnp.tuxfamily.org/'
@@ -12,8 +12,8 @@
 depends=('sh')
 provides=('libminiupnpc.so')
 source=(https://miniupnp.tuxfamily.org/files/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('8c7226bd47a6e4a46ffa14b8cdef940a8a5c4f721ab33bc72a217371a4a72996')
-sha512sums=('8aa96021757d1086d2cdb7017520eed00f4887f7b5c9edf1fd172e4ab1ce6b7627fe00cadd786e77dda84e7a0b4cc8d438f921630481ac44c2c1a578b0c8d791')
+sha256sums=('0e4c6d6ebc8b75eb636df7d3f3370c98713545acc3694b5ae40daa2502487a23')
+sha512sums=('08e19fa6f7c9015fefa2c5bf1c007f0c2c1b8c90c1901bd2be2ccbfd19f2fd6a13190a3b5f752bfdc9cefd8e9ca535b584be561a3aa17eec5967b9cebfb28879')
 
 build() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in miniupnpc/trunk (PKGBUILD)

2018-04-07 Thread Levente Polyak via arch-commits
Date: Saturday, April 7, 2018 @ 17:52:39
  Author: anthraxx
Revision: 314882

upgpkg: miniupnpc 2.0.20180406-1

Modified:
  miniupnpc/trunk/PKGBUILD

--+
 PKGBUILD |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-04-07 17:43:04 UTC (rev 314881)
+++ PKGBUILD2018-04-07 17:52:39 UTC (rev 314882)
@@ -3,7 +3,7 @@
 # Contributor: Florian Loitsch 
 
 pkgname=miniupnpc
-pkgver=2.0.20180222
+pkgver=2.0.20180406
 pkgrel=1
 pkgdesc='Small UPnP client library/tool to access Internet Gateway Devices'
 url='https://miniupnp.tuxfamily.org/'
@@ -10,9 +10,10 @@
 arch=('x86_64')
 license=('BSD')
 depends=('sh')
+provides=('libminiupnpc.so')
 source=(https://miniupnp.tuxfamily.org/files/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('587944686469d09f739744b3aed70c7ce753a79c40d6f1227f68a3e962665b75')
-sha512sums=('0cceeedff6c584d2d7037ff91fbba0fe580fabfda810b9a9ed7c8d8495445339e3ff115d63d4429bcd3eff2b13b123e1bd5855ff1bc9dcd986b968a82c368591')
+sha256sums=('8c7226bd47a6e4a46ffa14b8cdef940a8a5c4f721ab33bc72a217371a4a72996')
+sha512sums=('8aa96021757d1086d2cdb7017520eed00f4887f7b5c9edf1fd172e4ab1ce6b7627fe00cadd786e77dda84e7a0b4cc8d438f921630481ac44c2c1a578b0c8d791')
 
 build() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in miniupnpc/trunk (PKGBUILD)

2018-03-12 Thread Levente Polyak via arch-commits
Date: Tuesday, March 13, 2018 @ 01:04:18
  Author: anthraxx
Revision: 306744

upgpkg: miniupnpc 2.0.20180222-1

Modified:
  miniupnpc/trunk/PKGBUILD

--+
 PKGBUILD |   30 +-
 1 file changed, 17 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-03-13 01:00:04 UTC (rev 306743)
+++ PKGBUILD2018-03-13 01:04:18 UTC (rev 306744)
@@ -1,25 +1,29 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
+# Maintainer: Levente Polyak 
+# Contributor: Timothy Redaelli 
 # Contributor: Florian Loitsch 
+
 pkgname=miniupnpc
-pkgver=2.0.20170509
-pkgrel=2
-pkgdesc="A small UPnP client library/tool to access Internet Gateway Devices"
+pkgver=2.0.20180222
+pkgrel=1
+pkgdesc='Small UPnP client library/tool to access Internet Gateway Devices'
+url='https://miniupnp.tuxfamily.org/'
 arch=('x86_64')
-url="http://miniupnp.free.fr";
 license=('BSD')
 depends=('sh')
-source=("http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz";)
-sha256sums=('d3c368627f5cdfb66d3ebd64ca39ba54d6ff14a61966dbecb8dd296b7039f16a')
+source=(https://miniupnp.tuxfamily.org/files/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('587944686469d09f739744b3aed70c7ce753a79c40d6f1227f68a3e962665b75')
+sha512sums=('0cceeedff6c584d2d7037ff91fbba0fe580fabfda810b9a9ed7c8d8495445339e3ff115d63d4429bcd3eff2b13b123e1bd5855ff1bc9dcd986b968a82c368591')
 
 build() {
-  cd "$pkgname-$pkgver"
+  cd ${pkgname}-${pkgver}
   make
 }
 
 package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
-  install -Dm644 man3/miniupnpc.3 "${pkgdir}"/usr/share/man/man3/miniupnpc.3
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 man3/miniupnpc.3 -t "${pkgdir}/usr/share/man/man3"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
 }
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in miniupnpc/trunk (PKGBUILD)

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 19:40:27
  Author: jelle
Revision: 257005

upgpkg: miniupnpc 2.0.20170509-2

rebuild for key removal

Modified:
  miniupnpc/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 19:38:30 UTC (rev 257004)
+++ PKGBUILD2017-09-11 19:40:27 UTC (rev 257005)
@@ -3,7 +3,7 @@
 # Contributor: Florian Loitsch 
 pkgname=miniupnpc
 pkgver=2.0.20170509
-pkgrel=1
+pkgrel=2
 pkgdesc="A small UPnP client library/tool to access Internet Gateway Devices"
 arch=('i686' 'x86_64')
 url="http://miniupnp.free.fr";


[arch-commits] Commit in miniupnpc/trunk (PKGBUILD)

2017-06-08 Thread Timothy Redaelli
Date: Thursday, June 8, 2017 @ 11:42:45
  Author: tredaelli
Revision: 235424

upgpkg: miniupnpc 2.0.20170509-1

Fix for CVE-2017-8798

Modified:
  miniupnpc/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-06-08 11:40:51 UTC (rev 235423)
+++ PKGBUILD2017-06-08 11:42:45 UTC (rev 235424)
@@ -2,7 +2,7 @@
 # Maintainer: Timothy Redaelli 
 # Contributor: Florian Loitsch 
 pkgname=miniupnpc
-pkgver=2.0
+pkgver=2.0.20170509
 pkgrel=1
 pkgdesc="A small UPnP client library/tool to access Internet Gateway Devices"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 license=('BSD')
 depends=('sh')
 source=("http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz";)
-sha256sums=('d434ceb8986efbe199c5ca53f90ed53eab290b1e6d0530b717eb6fa49d61f93b')
+sha256sums=('d3c368627f5cdfb66d3ebd64ca39ba54d6ff14a61966dbecb8dd296b7039f16a')
 
 build() {
   cd "$pkgname-$pkgver"
@@ -19,7 +19,7 @@
 
 package() {
   cd "$pkgname-$pkgver"
-  make PREFIX="$pkgdir/" install
+  make DESTDIR="$pkgdir/" install
   install -Dm644 man3/miniupnpc.3 "${pkgdir}"/usr/share/man/man3/miniupnpc.3
   install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
 }


[arch-commits] Commit in miniupnpc/trunk (PKGBUILD)

2016-06-30 Thread Timothy Redaelli
Date: Thursday, June 30, 2016 @ 13:26:31
  Author: tredaelli
Revision: 181638

upgpkg: miniupnpc 2.0-1

Modified:
  miniupnpc/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-06-30 13:21:17 UTC (rev 181637)
+++ PKGBUILD2016-06-30 13:26:31 UTC (rev 181638)
@@ -2,7 +2,7 @@
 # Maintainer: Timothy Redaelli 
 # Contributor: Florian Loitsch 
 pkgname=miniupnpc
-pkgver=1.9.20151026
+pkgver=2.0
 pkgrel=1
 pkgdesc="A small UPnP client library/tool to access Internet Gateway Devices"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 license=('BSD')
 depends=('sh')
 source=("http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz";)
-sha256sums=('f3cf9a5a31588a917d4d9237e5bc50f84d00c5aa48e27ed50d9b88dfa6a25d47')
+sha256sums=('d434ceb8986efbe199c5ca53f90ed53eab290b1e6d0530b717eb6fa49d61f93b')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in miniupnpc/trunk (PKGBUILD)

2015-11-18 Thread Timothy Redaelli
Date: Wednesday, November 18, 2015 @ 18:43:48
  Author: tredaelli
Revision: 147096

upgpkg: miniupnpc 1.9.20151026-1

Modified:
  miniupnpc/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-11-18 17:40:25 UTC (rev 147095)
+++ PKGBUILD2015-11-18 17:43:48 UTC (rev 147096)
@@ -2,7 +2,7 @@
 # Maintainer: Timothy Redaelli 
 # Contributor: Florian Loitsch 
 pkgname=miniupnpc
-pkgver=1.9.20151008
+pkgver=1.9.20151026
 pkgrel=1
 pkgdesc="A small UPnP client library/tool to access Internet Gateway Devices"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 license=('BSD')
 depends=('sh')
 source=("http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz";)
-sha256sums=('e444ac3b587ce82709c4d0cfca1fe71f44f9fc433e9f946b12b9e1bfe667a633')
+sha256sums=('f3cf9a5a31588a917d4d9237e5bc50f84d00c5aa48e27ed50d9b88dfa6a25d47')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in miniupnpc/trunk (PKGBUILD)

2015-10-09 Thread Timothy Redaelli
Date: Friday, October 9, 2015 @ 12:24:49
  Author: tredaelli
Revision: 143491

upgpkg: miniupnpc 1.9.20151008-1

FS#46612

Modified:
  miniupnpc/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-10-09 09:23:32 UTC (rev 143490)
+++ PKGBUILD2015-10-09 10:24:49 UTC (rev 143491)
@@ -2,7 +2,7 @@
 # Maintainer: Timothy Redaelli 
 # Contributor: Florian Loitsch 
 pkgname=miniupnpc
-pkgver=1.9.20150730
+pkgver=1.9.20151008
 pkgrel=1
 pkgdesc="A small UPnP client library/tool to access Internet Gateway Devices"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 license=('BSD')
 depends=('sh')
 source=("http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz";)
-sha256sums=('1d64fab1fd3b4c8545139341ba197f19329a863f4f21b578fc2a228ab586a604')
+sha256sums=('e444ac3b587ce82709c4d0cfca1fe71f44f9fc433e9f946b12b9e1bfe667a633')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in miniupnpc/trunk (PKGBUILD)

2015-09-08 Thread Timothy Redaelli
Date: Tuesday, September 8, 2015 @ 16:16:19
  Author: tredaelli
Revision: 139615

upgpkg: miniupnpc 1.9.20150730-1

Modified:
  miniupnpc/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-08 14:09:55 UTC (rev 139614)
+++ PKGBUILD2015-09-08 14:16:19 UTC (rev 139615)
@@ -2,7 +2,7 @@
 # Maintainer: Timothy Redaelli 
 # Contributor: Florian Loitsch 
 pkgname=miniupnpc
-pkgver=1.9.20150430
+pkgver=1.9.20150730
 pkgrel=1
 pkgdesc="A small UPnP client library/tool to access Internet Gateway Devices"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 license=('BSD')
 depends=('sh')
 source=("http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz";)
-sha256sums=('76d707434833bd1114a17e339dfe89515feb80d648028d7cfd5750a0e8df7647')
+sha256sums=('1d64fab1fd3b4c8545139341ba197f19329a863f4f21b578fc2a228ab586a604')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in miniupnpc/trunk (PKGBUILD)

2015-05-21 Thread Timothy Redaelli
Date: Thursday, May 21, 2015 @ 15:00:05
  Author: tredaelli
Revision: 133909

upgpkg: miniupnpc 1.9.20150430-1

Modified:
  miniupnpc/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-21 12:56:08 UTC (rev 133908)
+++ PKGBUILD2015-05-21 13:00:05 UTC (rev 133909)
@@ -2,7 +2,7 @@
 # Maintainer: Timothy Redaelli 
 # Contributor: Florian Loitsch 
 pkgname=miniupnpc
-pkgver=1.9.20150206
+pkgver=1.9.20150430
 pkgrel=1
 pkgdesc="A small UPnP client library/tool to access Internet Gateway Devices"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 license=('BSD')
 depends=('sh')
 source=("http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz";)
-sha256sums=('230d3ad5a3047daa77f99602503d798f720428207217ebfbfe2a4f7762b029e7')
+sha256sums=('76d707434833bd1114a17e339dfe89515feb80d648028d7cfd5750a0e8df7647')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in miniupnpc/trunk (PKGBUILD)

2015-03-30 Thread Timothy Redaelli
Date: Monday, March 30, 2015 @ 17:29:17
  Author: tredaelli
Revision: 130310

upgpkg: miniupnpc 1.9.20150206-1

Modified:
  miniupnpc/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-03-30 15:24:24 UTC (rev 130309)
+++ PKGBUILD2015-03-30 15:29:17 UTC (rev 130310)
@@ -2,7 +2,7 @@
 # Maintainer: Timothy Redaelli 
 # Contributor: Florian Loitsch 
 pkgname=miniupnpc
-pkgver=1.9.20141027
+pkgver=1.9.20150206
 pkgrel=1
 pkgdesc="A small UPnP client library/tool to access Internet Gateway Devices"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 license=('BSD')
 depends=('sh')
 source=("http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz";)
-sha256sums=('763a3ebed0c3267b8605247b38f46e99bfe54c96a9ca2882aa9abb5485407540')
+sha256sums=('230d3ad5a3047daa77f99602503d798f720428207217ebfbfe2a4f7762b029e7')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in miniupnpc/trunk (PKGBUILD)

2014-11-04 Thread Timothy Redaelli
Date: Tuesday, November 4, 2014 @ 16:42:52
  Author: tredaelli
Revision: 121830

upgpkg: miniupnpc 1.9.20141027-1

Modified:
  miniupnpc/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-11-04 15:40:15 UTC (rev 121829)
+++ PKGBUILD2014-11-04 15:42:52 UTC (rev 121830)
@@ -2,7 +2,7 @@
 # Maintainer: Timothy Redaelli 
 # Contributor: Florian Loitsch 
 pkgname=miniupnpc
-pkgver=1.9.20140401
+pkgver=1.9.20141027
 pkgrel=1
 pkgdesc="A small UPnP client library/tool to access Internet Gateway Devices"
 arch=('i686' 'x86_64')
@@ -10,15 +10,15 @@
 license=('BSD')
 depends=('sh')
 source=("http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz";)
-sha256sums=('d02670112125300f7a3d61421714d99105edd90190bf12542d16785f16f017aa')
+sha256sums=('763a3ebed0c3267b8605247b38f46e99bfe54c96a9ca2882aa9abb5485407540')
 
 build() {
-  cd "$srcdir/$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
   make
 }
 
 package() {
-  cd "$srcdir/$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
   make PREFIX="$pkgdir/" install
   install -Dm644 man3/miniupnpc.3 "${pkgdir}"/usr/share/man/man3/miniupnpc.3
   install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE


[arch-commits] Commit in miniupnpc/trunk (PKGBUILD)

2014-04-09 Thread Timothy Redaelli
Date: Wednesday, April 9, 2014 @ 12:59:33
  Author: tredaelli
Revision: 109005

upgpkg: miniupnpc 1.9.20140401-1

Modified:
  miniupnpc/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 10:32:53 UTC (rev 109004)
+++ PKGBUILD2014-04-09 10:59:33 UTC (rev 109005)
@@ -2,7 +2,7 @@
 # Maintainer: Timothy Redaelli 
 # Contributor: Florian Loitsch 
 pkgname=miniupnpc
-pkgver=1.9
+pkgver=1.9.20140401
 pkgrel=1
 pkgdesc="A small UPnP client library/tool to access Internet Gateway Devices"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 license=('BSD')
 depends=('sh')
 source=("http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz";)
-sha256sums=('2923e453e880bb949e3d4da9f83dd3cb6f08946d35de0b864d0339cf70934464')
+sha256sums=('d02670112125300f7a3d61421714d99105edd90190bf12542d16785f16f017aa')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"



[arch-commits] Commit in miniupnpc/trunk (PKGBUILD)

2014-02-14 Thread Timothy Redaelli
Date: Friday, February 14, 2014 @ 16:45:06
  Author: tredaelli
Revision: 105734

upgpkg: miniupnpc 1.9-1

Modified:
  miniupnpc/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-02-14 15:40:11 UTC (rev 105733)
+++ PKGBUILD2014-02-14 15:45:06 UTC (rev 105734)
@@ -2,7 +2,7 @@
 # Maintainer: Timothy Redaelli 
 # Contributor: Florian Loitsch 
 pkgname=miniupnpc
-pkgver=1.8.20131209
+pkgver=1.9
 pkgrel=1
 pkgdesc="A small UPnP client library/tool to access Internet Gateway Devices"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 license=('BSD')
 depends=('sh')
 source=("http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz";)
-sha256sums=('4fb429d74c9955d8c4a8c9b34ddd0fb8efce16266ee66200e7af135fedb998e7')
+sha256sums=('2923e453e880bb949e3d4da9f83dd3cb6f08946d35de0b864d0339cf70934464')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"



[arch-commits] Commit in miniupnpc/trunk (PKGBUILD)

2014-01-22 Thread Timothy Redaelli
Date: Wednesday, January 22, 2014 @ 16:25:51
  Author: tredaelli
Revision: 104541

upgpkg: miniupnpc 1.8.20131209-1

Modified:
  miniupnpc/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-01-22 15:25:26 UTC (rev 104540)
+++ PKGBUILD2014-01-22 15:25:51 UTC (rev 104541)
@@ -2,8 +2,8 @@
 # Maintainer: Timothy Redaelli 
 # Contributor: Florian Loitsch 
 pkgname=miniupnpc
-pkgver=1.8
-pkgrel=2
+pkgver=1.8.20131209
+pkgrel=1
 pkgdesc="A small UPnP client library/tool to access Internet Gateway Devices"
 arch=('i686' 'x86_64')
 url="http://miniupnp.free.fr";
@@ -10,7 +10,7 @@
 license=('BSD')
 depends=('sh')
 source=("http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz";)
-md5sums=('065bf20a20ebe605c675b7a5aaef340a')
+sha256sums=('4fb429d74c9955d8c4a8c9b34ddd0fb8efce16266ee66200e7af135fedb998e7')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"



[arch-commits] Commit in miniupnpc/trunk (PKGBUILD)

2013-10-28 Thread Timothy Redaelli
Date: Monday, October 28, 2013 @ 12:21:24
  Author: tredaelli
Revision: 99403

upgpkg: miniupnpc 1.8-2

Todo List: Remove static libraries

Modified:
  miniupnpc/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-10-28 11:10:04 UTC (rev 99402)
+++ PKGBUILD2013-10-28 11:21:24 UTC (rev 99403)
@@ -3,7 +3,7 @@
 # Contributor: Florian Loitsch 
 pkgname=miniupnpc
 pkgver=1.8
-pkgrel=1
+pkgrel=2
 pkgdesc="A small UPnP client library/tool to access Internet Gateway Devices"
 arch=('i686' 'x86_64')
 url="http://miniupnp.free.fr";



[arch-commits] Commit in miniupnpc/trunk (PKGBUILD)

2013-06-19 Thread Timothy Redaelli
Date: Wednesday, June 19, 2013 @ 16:28:38
  Author: tredaelli
Revision: 92932

upgpkg: miniupnpc 1.8-1

Modified:
  miniupnpc/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-06-19 14:22:24 UTC (rev 92931)
+++ PKGBUILD2013-06-19 14:28:38 UTC (rev 92932)
@@ -2,15 +2,15 @@
 # Maintainer: Timothy Redaelli 
 # Contributor: Florian Loitsch 
 pkgname=miniupnpc
-pkgver=1.6
-pkgrel=2
+pkgver=1.8
+pkgrel=1
 pkgdesc="A small UPnP client library/tool to access Internet Gateway Devices"
 arch=('i686' 'x86_64')
 url="http://miniupnp.free.fr";
 license=('BSD')
 depends=('sh')
 source=("http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz";)
-md5sums=('88055f2d4a061cfd4cfe25a9eae22f67')
+md5sums=('065bf20a20ebe605c675b7a5aaef340a')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"