[arch-commits] Commit in miniupnpc/repos/community-x86_64 (PKGBUILD PKGBUILD)

Antonio Rojas arojas at gemini.archlinux.org
Wed Mar 30 19:01:18 UTC 2022


    Date: Wednesday, March 30, 2022 @ 19:01:17
  Author: arojas
Revision: 1177841

archrelease: copy trunk to community-x86_64

Added:
  miniupnpc/repos/community-x86_64/PKGBUILD
    (from rev 1177840, miniupnpc/trunk/PKGBUILD)
Deleted:
  miniupnpc/repos/community-x86_64/PKGBUILD

----------+
 PKGBUILD |  114 ++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 61 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2022-03-30 19:01:07 UTC (rev 1177840)
+++ PKGBUILD	2022-03-30 19:01:17 UTC (rev 1177841)
@@ -1,53 +0,0 @@
-# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
-# Contributor: Timothy Redaelli <timothy.redaelli at gmail.com>
-# Contributor: Florian Loitsch <archlinux at florian.loitsch.com>
-
-pkgbase=miniupnpc
-pkgname=(miniupnpc python-miniupnpc)
-pkgver=2.2.2
-pkgrel=2
-pkgdesc='Small UPnP client library/tool to access Internet Gateway Devices'
-url='https://miniupnp.tuxfamily.org/'
-arch=('x86_64')
-license=('BSD')
-makedepends=('sh' 'glibc' 'lsb-release' 'python' 'python-setuptools')
-source=(https://miniupnp.tuxfamily.org/files/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha512sums=('d322ae2a99faf01bee52f50a40d4bc2150c67a2f7e15b6078fe92faf2aecfe7ce10bd98cef3d94a77f6f7d1f7d8451cf4cdbf6fe11c9e7c1854ee066300b0116'
-            'SKIP')
-b2sums=('76bd18ad455be91a2b7680f59f59828a592077f3694ea5ed0f42222370d9e3d0e328dac1a6d530abcf28586384369d7c858c32fc3105f79cacad762ac5bc70fc'
-        'SKIP')
-validpgpkeys=(
-  '751E9FF6944A3B36A5432216DB511043A31ACAAF' # miniupnp (miniupnp !) <miniupnp at free.fr>
-)
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make
-  python setup.py build
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make test
-}
-
-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"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-package_python-miniupnpc() {
-  pkgdesc='Python bindings for miniupnpc'
-  depends=(python glibc)
-
-  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:

Copied: miniupnpc/repos/community-x86_64/PKGBUILD (from rev 1177840, miniupnpc/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2022-03-30 19:01:17 UTC (rev 1177841)
@@ -0,0 +1,61 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: Timothy Redaelli <timothy.redaelli at gmail.com>
+# Contributor: Florian Loitsch <archlinux at florian.loitsch.com>
+
+pkgbase=miniupnpc
+pkgname=(miniupnpc python-miniupnpc)
+pkgver=2.2.3
+pkgrel=1
+pkgdesc='Small UPnP client library/tool to access Internet Gateway Devices'
+url='https://miniupnp.tuxfamily.org/'
+arch=('x86_64')
+license=('BSD')
+makedepends=('sh' 'glibc' 'lsb-release' 'python' 'python-setuptools')
+source=(https://miniupnp.tuxfamily.org/files/${pkgname}-${pkgver}.tar.gz{,.sig}
+        https://github.com/miniupnp/miniupnp/commit/ed1dc4bb.patch)
+sha512sums=('8b9555d336d5dfe8017a16727f964cddacb3f2bf3528fe3dd2416480da5763b24e1740345e470f2123c170d79d88444e41dbbce4536e6069590925e4805bc5ee'
+            'SKIP'
+            'a1ade8a50d65dcf9da0127893c915d931154c3398063a3d49973647f0c39fb7326c2bf7c49dbc19db254b85093d1ab2b2bc9e5ad53d6999fc0d74b3192d015a2')
+b2sums=('d2a7f64d56be524c5c4aadfecd40da4e1ad040fd7eab64be5b5716cb06047e86e3ed6a9c17f697fd3210af0fb0a6ae032b6ef0a5c1f0d96a2e185db97b0d06e8'
+        'SKIP'
+        '5c740007baf1deaf80b93ff882f9b6c972a8a74c05c388131c85b12914379ffe21b22ce7450b312bf662c020a090a96e504e85b3aca1fcd21bdc9c208da4290e')
+validpgpkeys=(
+  '751E9FF6944A3B36A5432216DB511043A31ACAAF' # miniupnp (miniupnp !) <miniupnp at free.fr>
+)
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -p2 -i ../ed1dc4bb.patch # Fix make install
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make
+  python setup.py build
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make test
+}
+
+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"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+package_python-miniupnpc() {
+  pkgdesc='Python bindings for miniupnpc'
+  depends=(python glibc)
+
+  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:



More information about the arch-commits mailing list