[arch-commits] Commit in python-cheroot/repos/community-any (6 files)

Thore Bödecker foxxx0 at archlinux.org
Mon Jan 25 11:46:06 UTC 2021


    Date: Monday, January 25, 2021 @ 11:46:05
  Author: foxxx0
Revision: 829677

archrelease: copy trunk to community-any

Added:
  python-cheroot/repos/community-any/LICENSE
    (from rev 829676, python-cheroot/trunk/LICENSE)
  python-cheroot/repos/community-any/PKGBUILD
    (from rev 829676, python-cheroot/trunk/PKGBUILD)
  python-cheroot/repos/community-any/disable-broken-tests.patch
    (from rev 829676, python-cheroot/trunk/disable-broken-tests.patch)
Deleted:
  python-cheroot/repos/community-any/LICENSE
  python-cheroot/repos/community-any/PKGBUILD
  python-cheroot/repos/community-any/disable-broken-tests.patch

----------------------------+
 LICENSE                    |   14 +--
 PKGBUILD                   |  182 +++++++++++++++++++++----------------------
 disable-broken-tests.patch |   22 ++---
 3 files changed, 109 insertions(+), 109 deletions(-)

Deleted: LICENSE
===================================================================
--- LICENSE	2021-01-25 11:45:57 UTC (rev 829676)
+++ LICENSE	2021-01-25 11:46:05 UTC (rev 829677)
@@ -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-cheroot/repos/community-any/LICENSE (from rev 829676, python-cheroot/trunk/LICENSE)
===================================================================
--- LICENSE	                        (rev 0)
+++ LICENSE	2021-01-25 11:46:05 UTC (rev 829677)
@@ -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	2021-01-25 11:45:57 UTC (rev 829676)
+++ PKGBUILD	2021-01-25 11:46:05 UTC (rev 829677)
@@ -1,91 +0,0 @@
-# Maintainer: Thore Bödecker <foxxx0 at archlinux.org>
-# Contributor: wangjiezhe <wangjiezhe AT yandex DOT com>
-
-pkgbase='python-cheroot'
-_pkgbase="${pkgbase//python-/}"
-pkgname=('python-cheroot' 'python2-cheroot')
-pkgdesc="Highly-optimized, pure-python HTTP server"
-pkgver=8.5.1
-pkgrel=1
-arch=('any')
-url="https://github.com/cherrypy/cheroot"
-license=('MIT')
-makedepends=('python-six' 'python2-six' 'python-setuptools-scm'
-  'python2-setuptools-scm' 'python2-backports.functools_lru_cache'
-  'python2-backports.unittest_mock' 'tree' 'python-tox' 'python2-tox'
-  'python-jaraco' 'python2-jaraco' 'git')
-checkdepends=('python-pytest' 'python-pytest-xdist'
-              'python-requests' 'python-pyopenssl' 'python-trustme'
-              'python2-pytest' 'python2-pytest-xdist'
-              'python2-requests' 'python2-pyopenssl')
-source=("https://files.pythonhosted.org/packages/source/${_pkgbase:0:1}/${_pkgbase}/${_pkgbase}-${pkgver}.tar.gz"
-        "LICENSE"
-        "disable-broken-tests.patch")
-sha512sums=('bab812237a2c1996c0308812ecf8a7a9686a71a752bf321f252234d689208da85450002583aa325f14b150f1d81ea45710ac4a197bd5585c1cedf0c23ef40a22'
-            '1106afed483b7258e4ae89c5d9459c3834412b31aac90169725ed62d2ab44f61f6f79e894d4c9e4d8bd99e14530ab778df2187784f0b25eaab86d312fad68944'
-            '488766eeb0ce4e1c95e1848a4d89aeb190317c634b2894dcc696cb4af64bae748554154ea76cc34cf0b666d507c42e631d0e8759a6ed7669fe49bf7f8ef5b9a9')
-
-prepare() {
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  patch -p1 -N -i "${srcdir}/disable-broken-tests.patch"
-  # don't use python-coverage
-  sed -i '/^    --cov/d' pytest.ini
-
-  # git-archive support is not needed since we use PyPI tarballs
-  sed -i '/setuptools_scm_git_archive/d' setup.cfg
-
-  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 doesn't really provide any meaningful results for downstream packaging
-  # TODO: properly run the tests with distro packages
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  # tox doesn't really provide any meaningful results for downstream packaging
-  # TODO: properly run the tests with distro packages
-}
-
-package_python-cheroot() {
-  depends=('python-six' 'python-jaraco')
-
-  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-cheroot() {
-  depends=('python2-six' 'python2-backports.functools_lru_cache'
-           'python2-backports.unittest_mock' 'python2-selectors2'
-           'python2-jaraco')
-
-  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"
-
-  mv "${pkgdir}/usr/bin/cheroot" "${pkgdir}/usr/bin/cheroot2"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-cheroot/repos/community-any/PKGBUILD (from rev 829676, python-cheroot/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2021-01-25 11:46:05 UTC (rev 829677)
@@ -0,0 +1,91 @@
+# Maintainer: Thore Bödecker <foxxx0 at archlinux.org>
+# Contributor: wangjiezhe <wangjiezhe AT yandex DOT com>
+
+pkgbase='python-cheroot'
+_pkgbase="${pkgbase//python-/}"
+pkgname=('python-cheroot' 'python2-cheroot')
+pkgdesc="Highly-optimized, pure-python HTTP server"
+pkgver=8.5.2
+pkgrel=1
+arch=('any')
+url="https://github.com/cherrypy/cheroot"
+license=('MIT')
+makedepends=('python-six' 'python2-six' 'python-setuptools-scm'
+  'python2-setuptools-scm' 'python2-backports.functools_lru_cache'
+  'python2-backports.unittest_mock' 'tree' 'python-tox' 'python2-tox'
+  'python-jaraco' 'python2-jaraco' 'git')
+checkdepends=('python-pytest' 'python-pytest-xdist'
+              'python-requests' 'python-pyopenssl' 'python-trustme'
+              'python2-pytest' 'python2-pytest-xdist'
+              'python2-requests' 'python2-pyopenssl')
+source=("https://files.pythonhosted.org/packages/source/${_pkgbase:0:1}/${_pkgbase}/${_pkgbase}-${pkgver}.tar.gz"
+        "LICENSE"
+        "disable-broken-tests.patch")
+sha512sums=('245c4157f5e11741d94375099878ef5b31945412a2b02961502e762b9770fd968f4f977fe2d74744aa6596c668079d7f07b6f129fa11438783a95d3a5ee088fa'
+            '1106afed483b7258e4ae89c5d9459c3834412b31aac90169725ed62d2ab44f61f6f79e894d4c9e4d8bd99e14530ab778df2187784f0b25eaab86d312fad68944'
+            '488766eeb0ce4e1c95e1848a4d89aeb190317c634b2894dcc696cb4af64bae748554154ea76cc34cf0b666d507c42e631d0e8759a6ed7669fe49bf7f8ef5b9a9')
+
+prepare() {
+  cd "${srcdir}/${_pkgbase}-${pkgver}"
+  patch -p1 -N -i "${srcdir}/disable-broken-tests.patch"
+  # don't use python-coverage
+  sed -i '/^    --cov/d' pytest.ini
+
+  # git-archive support is not needed since we use PyPI tarballs
+  sed -i '/setuptools_scm_git_archive/d' setup.cfg
+
+  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 doesn't really provide any meaningful results for downstream packaging
+  # TODO: properly run the tests with distro packages
+
+  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
+  # tox doesn't really provide any meaningful results for downstream packaging
+  # TODO: properly run the tests with distro packages
+}
+
+package_python-cheroot() {
+  depends=('python-six' 'python-jaraco')
+
+  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-cheroot() {
+  depends=('python2-six' 'python2-backports.functools_lru_cache'
+           'python2-backports.unittest_mock' 'python2-selectors2'
+           'python2-jaraco')
+
+  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"
+
+  mv "${pkgdir}/usr/bin/cheroot" "${pkgdir}/usr/bin/cheroot2"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: disable-broken-tests.patch
===================================================================
--- disable-broken-tests.patch	2021-01-25 11:45:57 UTC (rev 829676)
+++ disable-broken-tests.patch	2021-01-25 11:46:05 UTC (rev 829677)
@@ -1,11 +0,0 @@
-diff -upr a/cheroot/test/test_ssl.py b/cheroot/test/test_ssl.py
---- a/cheroot/test/test_ssl.py	2020-07-13 16:43:42.000000000 +0200
-+++ b/cheroot/test/test_ssl.py	2020-07-13 18:53:44.015966639 +0200
-@@ -212,7 +212,6 @@ def test_ssl_adapters(
- @pytest.mark.parametrize(
-     'adapter_type',
-     (
--        'builtin',
-         'pyopenssl',
-     ),
- )

Copied: python-cheroot/repos/community-any/disable-broken-tests.patch (from rev 829676, python-cheroot/trunk/disable-broken-tests.patch)
===================================================================
--- disable-broken-tests.patch	                        (rev 0)
+++ disable-broken-tests.patch	2021-01-25 11:46:05 UTC (rev 829677)
@@ -0,0 +1,11 @@
+diff -upr a/cheroot/test/test_ssl.py b/cheroot/test/test_ssl.py
+--- a/cheroot/test/test_ssl.py	2020-07-13 16:43:42.000000000 +0200
++++ b/cheroot/test/test_ssl.py	2020-07-13 18:53:44.015966639 +0200
+@@ -212,7 +212,6 @@ def test_ssl_adapters(
+ @pytest.mark.parametrize(
+     'adapter_type',
+     (
+-        'builtin',
+         'pyopenssl',
+     ),
+ )



More information about the arch-commits mailing list