Date: Thursday, December 17, 2020 @ 13:51:22
Author: foxxx0
Revision: 777422
archrelease: copy trunk to community-any
Added:
python-cheroot/repos/community-any/LICENSE
(from rev 777421, python-cheroot/trunk/LICENSE)
python-cheroot/repos/community-any/PKGBUILD
(from rev 777421, python-cheroot/trunk/PKGBUILD)
python-cheroot/repos/community-any/disable-broken-tests.patch
(from rev 777421, 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 2020-12-17 13:51:17 UTC (rev 777421)
+++ LICENSE 2020-12-17 13:51:22 UTC (rev 777422)
@@ -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 777421,
python-cheroot/trunk/LICENSE)
===================================================================
--- LICENSE (rev 0)
+++ LICENSE 2020-12-17 13:51:22 UTC (rev 777422)
@@ -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 2020-12-17 13:51:17 UTC (rev 777421)
+++ PKGBUILD 2020-12-17 13:51:22 UTC (rev 777422)
@@ -1,91 +0,0 @@
-# Maintainer: Thore Bödecker <[email protected]>
-# 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.0
-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=('3e781bfaea0b1d0b339ddb1ef871505c7eb0f4a67873f3207ec3cbb703392f579de90785c196d77f7a484b675de1438def4ad91109e70ad5894d26e55c645a01'
-
'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 777421,
python-cheroot/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2020-12-17 13:51:22 UTC (rev 777422)
@@ -0,0 +1,91 @@
+# Maintainer: Thore Bödecker <[email protected]>
+# 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:
Deleted: disable-broken-tests.patch
===================================================================
--- disable-broken-tests.patch 2020-12-17 13:51:17 UTC (rev 777421)
+++ disable-broken-tests.patch 2020-12-17 13:51:22 UTC (rev 777422)
@@ -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
777421, python-cheroot/trunk/disable-broken-tests.patch)
===================================================================
--- disable-broken-tests.patch (rev 0)
+++ disable-broken-tests.patch 2020-12-17 13:51:22 UTC (rev 777422)
@@ -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',
+ ),
+ )