[arch-commits] Commit in python-zeroconf/repos (2 files)

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:11:30
  Author: felixonmars
Revision: 749352

archrelease: copy trunk to community-staging-any

Added:
  python-zeroconf/repos/community-staging-any/
  python-zeroconf/repos/community-staging-any/PKGBUILD
(from rev 749351, python-zeroconf/trunk/PKGBUILD)

--+
 PKGBUILD |   33 +
 1 file changed, 33 insertions(+)

Copied: python-zeroconf/repos/community-staging-any/PKGBUILD (from rev 749351, 
python-zeroconf/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:11:30 UTC (rev 749352)
@@ -0,0 +1,33 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Maxim Andersson 
+
+pkgname=python-zeroconf
+pkgver=0.28.6
+pkgrel=2
+pkgdesc="A pure python implementation of multicast DNS service discovery"
+arch=('any')
+url="https://github.com/jstasiak/python-zeroconf";
+license=('LGPL')
+depends=('python' 'python-netifaces' 'python-six' 'python-ifaddr')
+makedepends=('python-setuptools')
+checkdepends=('python-nose')
+source=($pkgname-$pkgver.tar.gz::https://github.com/jstasiak/${pkgname}/archive/${pkgver}.tar.gz)
+sha256sums=('9971344cb69132a68fac928522ca423c97db0f02310ee15b8551a6a63f8898a2')
+
+build() {
+  cd "${pkgbase}-${pkgver}"
+  python3 setup.py build
+}
+
+package() {
+  cd "${pkgbase}-${pkgver}"
+
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+}
+
+check() {
+  cd "${pkgbase}-${pkgver}"
+  nosetests --exclude test_integration_with_listener_ipv6 zeroconf/test.py
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in python-zeroconf/repos (2 files)

2019-11-03 Thread Felix Yan via arch-commits
Date: Monday, November 4, 2019 @ 01:51:28
  Author: felixonmars
Revision: 522922

archrelease: copy trunk to community-staging-any

Added:
  python-zeroconf/repos/community-staging-any/
  python-zeroconf/repos/community-staging-any/PKGBUILD
(from rev 522921, python-zeroconf/trunk/PKGBUILD)

--+
 PKGBUILD |   33 +
 1 file changed, 33 insertions(+)

Copied: python-zeroconf/repos/community-staging-any/PKGBUILD (from rev 522921, 
python-zeroconf/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2019-11-04 01:51:28 UTC (rev 522922)
@@ -0,0 +1,33 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Maxim Andersson 
+
+pkgname=python-zeroconf
+pkgver=0.23.0
+pkgrel=2
+pkgdesc="A pure python implementation of multicast DNS service discovery"
+arch=('any')
+url="https://github.com/jstasiak/python-zeroconf";
+license=('LGPL')
+depends=('python' 'python-netifaces' 'python-six' 'python-ifaddr')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=("https://github.com/jstasiak/${pkgname}/archive/${pkgver}.tar.gz";)
+sha256sums=('e194df93ae5d5158fd62434e395fe73ef9eb9580e5d326aad06d02c56031b31a')
+
+build() {
+  cd "${pkgbase}-${pkgver}"
+  python3 setup.py build
+}
+
+package() {
+  cd "${pkgbase}-${pkgver}"
+
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+}
+
+check() {
+  cd "${pkgbase}-${pkgver}"
+  py.test .
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in python-zeroconf/repos (2 files)

2018-07-08 Thread Evangelos Foutras via arch-commits
Date: Sunday, July 8, 2018 @ 12:57:21
  Author: foutrelis
Revision: 354855

archrelease: copy trunk to community-staging-any

Added:
  python-zeroconf/repos/community-staging-any/
  python-zeroconf/repos/community-staging-any/PKGBUILD
(from rev 354853, python-zeroconf/trunk/PKGBUILD)

--+
 PKGBUILD |   27 +++
 1 file changed, 27 insertions(+)

Copied: python-zeroconf/repos/community-staging-any/PKGBUILD (from rev 354853, 
python-zeroconf/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2018-07-08 12:57:21 UTC (rev 354855)
@@ -0,0 +1,27 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Maxim Andersson 
+
+pkgname=python-zeroconf
+pkgver=0.20.0
+pkgrel=3
+pkgdesc="A pure python implementation of multicast DNS service discovery"
+arch=('any')
+url="https://github.com/jstasiak/python-zeroconf";
+license=('LGPL')
+depends=('python' 'python-netifaces' 'python-six')
+makedepends=('python-setuptools')
+source=("https://github.com/jstasiak/${pkgname}/archive/${pkgver}.tar.gz";)
+sha256sums=('5829f2e68ca6ab06d25e661a7640cf1d215bf4167d952f81086f1fbfb4ef9dbb')
+
+build() {
+  cd "${pkgbase}-${pkgver}"
+  python3 setup.py build
+}
+
+package() {
+  cd "${pkgbase}-${pkgver}"
+
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et: