[arch-commits] Commit in python-portend/repos/community-staging-any (4 files)

Felix Yan felixonmars at archlinux.org
Sun Nov 3 20:03:30 UTC 2019


    Date: Sunday, November 3, 2019 @ 20:03:29
  Author: felixonmars
Revision: 522583

archrelease: copy trunk to community-staging-any

Added:
  python-portend/repos/community-staging-any/LICENSE
    (from rev 522582, python-portend/trunk/LICENSE)
  python-portend/repos/community-staging-any/PKGBUILD
    (from rev 522582, python-portend/trunk/PKGBUILD)
Deleted:
  python-portend/repos/community-staging-any/LICENSE
  python-portend/repos/community-staging-any/PKGBUILD

----------+
 LICENSE  |   14 +++---
 PKGBUILD |  130 ++++++++++++++++++++++++++++++-------------------------------
 2 files changed, 72 insertions(+), 72 deletions(-)

Deleted: LICENSE
===================================================================
--- LICENSE	2019-11-03 20:03:11 UTC (rev 522582)
+++ LICENSE	2019-11-03 20:03:29 UTC (rev 522583)
@@ -1,7 +0,0 @@
-Copyright Jason R. Coombs
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Copied: python-portend/repos/community-staging-any/LICENSE (from rev 522582, python-portend/trunk/LICENSE)
===================================================================
--- LICENSE	                        (rev 0)
+++ LICENSE	2019-11-03 20:03:29 UTC (rev 522583)
@@ -0,0 +1,7 @@
+Copyright Jason R. Coombs
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2019-11-03 20:03:11 UTC (rev 522582)
+++ PKGBUILD	2019-11-03 20:03:29 UTC (rev 522583)
@@ -1,65 +0,0 @@
-# Maintainer: Thore Bödecker <foxxx0 at archlinux.org>
-# Contributor: Laurent Soest <laurent.soest(at)gmail.com>
-
-pkgbase='python-portend'
-_pkgbase="${pkgbase//python-/}"
-pkgname=('python-portend' 'python2-portend')
-pkgver=2.5
-pkgrel=2
-pkgdesc="Use portend to monitor TCP ports for bound or unbound states."
-arch=('any')
-url="https://github.com/jaraco/portend"
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
-  'python2-setuptools-scm' 'python-tox' 'python2-tox' 'python-tempora'
-  'python2-tempora')
-source=("https://files.pythonhosted.org/packages/source/${_pkgbase:0:1}/${_pkgbase}/${_pkgbase}-${pkgver}.tar.gz"
-        'LICENSE')
-sha512sums=('c842a3c60c7cd44aa058ed598f5af09024537bf6820921c6f4fc062a24983f562a5b9c60a83052046a0811aaae005543c22067f8704b3018f011f275bd4abae4'
-            '1106afed483b7258e4ae89c5d9459c3834412b31aac90169725ed62d2ab44f61f6f79e894d4c9e4d8bd99e14530ab778df2187784f0b25eaab86d312fad68944')
-
-prepare() {
-    cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
-}
-
-build() {
-    # setuptools wont find version from git tag
-    export SETUPTOOLS_SCM_PRETEND_VERSION="${pkgver}"
-    cd "${srcdir}/${_pkgbase}-${pkgver}"
-    python ./setup.py build
-
-    cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-    python2 ./setup.py build
-}
-
-check() {
-    cd "${srcdir}/${_pkgbase}-${pkgver}"
-    tox
-
-    cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-    tox2
-}
-
-package_python-portend() {
-    depends=('python' 'python-tempora')
-    cd "${srcdir}/${_pkgbase}-${pkgver}"
-    python ./setup.py install --root="${pkgdir}" --optimize=1
-
-    # the author has promised to include a LICENSE file in future releases:
-    # https://github.com/jaraco/skeleton/issues/1
-    # for now the LICENSE file has been taken from:
-    # https://github.com/jaraco/skeleton/blob/skeleton/LICENSE
-    install -D -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_python2-portend() {
-    depends=('python2' 'python2-tempora')
-    cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-    python2 ./setup.py install --root="${pkgdir}" --optimize=1
-
-    # the author has promised to include a LICENSE file in future releases:
-    # https://github.com/jaraco/skeleton/issues/1
-    # for now the LICENSE file has been taken from:
-    # https://github.com/jaraco/skeleton/blob/skeleton/LICENSE
-    install -D -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: python-portend/repos/community-staging-any/PKGBUILD (from rev 522582, python-portend/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2019-11-03 20:03:29 UTC (rev 522583)
@@ -0,0 +1,65 @@
+# Maintainer: Thore Bödecker <foxxx0 at archlinux.org>
+# Contributor: Laurent Soest <laurent.soest(at)gmail.com>
+
+pkgbase='python-portend'
+_pkgbase="${pkgbase//python-/}"
+pkgname=('python-portend' 'python2-portend')
+pkgver=2.5
+pkgrel=3
+pkgdesc="Use portend to monitor TCP ports for bound or unbound states."
+arch=('any')
+url="https://github.com/jaraco/portend"
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
+  'python2-setuptools-scm' 'python-tox' 'python2-tox' 'python-tempora'
+  'python2-tempora')
+source=("https://files.pythonhosted.org/packages/source/${_pkgbase:0:1}/${_pkgbase}/${_pkgbase}-${pkgver}.tar.gz"
+        'LICENSE')
+sha512sums=('c842a3c60c7cd44aa058ed598f5af09024537bf6820921c6f4fc062a24983f562a5b9c60a83052046a0811aaae005543c22067f8704b3018f011f275bd4abae4'
+            '1106afed483b7258e4ae89c5d9459c3834412b31aac90169725ed62d2ab44f61f6f79e894d4c9e4d8bd99e14530ab778df2187784f0b25eaab86d312fad68944')
+
+prepare() {
+    cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
+}
+
+build() {
+    # setuptools wont find version from git tag
+    export SETUPTOOLS_SCM_PRETEND_VERSION="${pkgver}"
+    cd "${srcdir}/${_pkgbase}-${pkgver}"
+    python ./setup.py build
+
+    cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
+    python2 ./setup.py build
+}
+
+check() {
+    cd "${srcdir}/${_pkgbase}-${pkgver}"
+    tox
+
+    cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
+    tox2
+}
+
+package_python-portend() {
+    depends=('python' 'python-tempora')
+    cd "${srcdir}/${_pkgbase}-${pkgver}"
+    python ./setup.py install --root="${pkgdir}" --optimize=1
+
+    # the author has promised to include a LICENSE file in future releases:
+    # https://github.com/jaraco/skeleton/issues/1
+    # for now the LICENSE file has been taken from:
+    # https://github.com/jaraco/skeleton/blob/skeleton/LICENSE
+    install -D -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-portend() {
+    depends=('python2' 'python2-tempora')
+    cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
+    python2 ./setup.py install --root="${pkgdir}" --optimize=1
+
+    # the author has promised to include a LICENSE file in future releases:
+    # https://github.com/jaraco/skeleton/issues/1
+    # for now the LICENSE file has been taken from:
+    # https://github.com/jaraco/skeleton/blob/skeleton/LICENSE
+    install -D -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}



More information about the arch-commits mailing list