From 8b4ace9c50842c5b83401ea7b179dcab940387e1 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 23 Sep 2020 10:22:15 +0100 Subject: gentoo resync : 23.09.2020 --- dev-python/werkzeug/Manifest | 2 +- dev-python/werkzeug/werkzeug-1.0.1-r1.ebuild | 48 ++++++++++++++++++++++++++++ dev-python/werkzeug/werkzeug-1.0.1.ebuild | 48 ---------------------------- 3 files changed, 49 insertions(+), 49 deletions(-) create mode 100644 dev-python/werkzeug/werkzeug-1.0.1-r1.ebuild delete mode 100644 dev-python/werkzeug/werkzeug-1.0.1.ebuild (limited to 'dev-python/werkzeug') diff --git a/dev-python/werkzeug/Manifest b/dev-python/werkzeug/Manifest index 224c6c289a96..582ad798182c 100644 --- a/dev-python/werkzeug/Manifest +++ b/dev-python/werkzeug/Manifest @@ -1,3 +1,3 @@ DIST werkzeug-1.0.1.gh.tar.gz 907482 BLAKE2B d2dcdce8b1bcbb177b52b0915f2c0ac17d235dee3c77b23e81e4b35412d1f53a194d3c7c7f2a5c065ade99797effe72cc464cf6980b12c761a8a919338021660 SHA512 ba82120fb3e96e3a1334c6452d5ba1950fc016d2d147d643bbc2168ccec496f1dea799982ae8c578167155082c0bdbda5d56a23f64b4b6865f97e90e22df022e -EBUILD werkzeug-1.0.1.ebuild 1375 BLAKE2B a8c1e27872a28ab39babc47b8b1e4b3f8a5f4918c97512fab6bd74d0480039ed84807c6a815659559cadd8c1ef79c971fcac7553d1b25e04acf85126640283f1 SHA512 c5133c6231f229f245c1b5acd274f7f7cb03a6eec178c50b7e648d958dc3ce7e913293a09e5c4373ecc2ab8791a727d8fb01e5d6342f7139a367ab267a51ea16 +EBUILD werkzeug-1.0.1-r1.ebuild 1365 BLAKE2B 9a766d922117e30cbad2a429fb36eaeaeafd3ca1a8b87906da14294384231cff3b041a35d41ae32447271c6db691bb30f11e82b96cc03a853c543f743cd38917 SHA512 cde8a3f9efe564db81d1926603a06602962ed791417054aa8120249718f3043e979870bb08e4b5673a6dba0795a76dce7c9571225983dce0d28929d38c53267c MISC metadata.xml 321 BLAKE2B f2d43f339f0bc82cbc2b0081d1c571cba47744e59bceb960e0a9708d3401445e5d416fc3fd956f6bafc6d8e1d9309eaf5bdfc28e938f5450a9acc1b80cc88b9c SHA512 8c4768582ab693e8a95ad3cfb28b7ed6d7b926700393739c05b50a0297a31a37bad4b2b3ee388a963820258410dc8e2af2a40436821009c746916d0969b1d97a diff --git a/dev-python/werkzeug/werkzeug-1.0.1-r1.ebuild b/dev-python/werkzeug/werkzeug-1.0.1-r1.ebuild new file mode 100644 index 000000000000..7007dcc90676 --- /dev/null +++ b/dev-python/werkzeug/werkzeug-1.0.1-r1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 ) + +inherit distutils-r1 + +MY_PN="Werkzeug" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Collection of various utilities for WSGI applications" +HOMEPAGE=" + https://werkzeug.palletsprojects.com/ + https://pypi.org/project/Werkzeug/ + https://github.com/pallets/werkzeug" +#SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" +SRC_URI="https://github.com/pallets/werkzeug/archive/${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" + +RDEPEND="dev-python/simplejson[${PYTHON_USEDEP}]" +DEPEND=" + test? ( + dev-python/click[${PYTHON_USEDEP}] + dev-python/cryptography[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + dev-python/pytest-timeout[${PYTHON_USEDEP}] + dev-python/pytest-xprocess[${PYTHON_USEDEP}] + )" + +distutils_enable_tests pytest + +src_prepare() { + # this test is very unreliable; it may fail randomly depending + # on installed packages + sed -i -e 's:test_no_memory_leak_from_Rule_builder:_&:' \ + tests/test_routing.py || die + + distutils-r1_src_prepare +} + +python_test() { + pytest -vv -x -p no:httpbin tests/test_routing.py || die "Tests fail with ${EPYTHON}" +} diff --git a/dev-python/werkzeug/werkzeug-1.0.1.ebuild b/dev-python/werkzeug/werkzeug-1.0.1.ebuild deleted file mode 100644 index 15ef06ed2227..000000000000 --- a/dev-python/werkzeug/werkzeug-1.0.1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python2_7 python3_{6,7,8,9} pypy3 ) - -inherit distutils-r1 - -MY_PN="Werkzeug" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="Collection of various utilities for WSGI applications" -HOMEPAGE=" - https://werkzeug.palletsprojects.com/ - https://pypi.org/project/Werkzeug/ - https://github.com/pallets/werkzeug" -#SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" -SRC_URI="https://github.com/pallets/werkzeug/archive/${PV}.tar.gz -> ${P}.gh.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" - -RDEPEND="dev-python/simplejson[${PYTHON_USEDEP}]" -DEPEND=" - test? ( - dev-python/click[${PYTHON_USEDEP}] - dev-python/cryptography[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] - dev-python/pytest-timeout[${PYTHON_USEDEP}] - dev-python/pytest-xprocess[${PYTHON_USEDEP}] - )" - -distutils_enable_tests pytest - -src_prepare() { - # this test is very unreliable; it may fail randomly depending - # on installed packages - sed -i -e 's:test_no_memory_leak_from_Rule_builder:_&:' \ - tests/test_routing.py || die - - distutils-r1_src_prepare -} - -python_test() { - pytest -vv -x -p no:httpbin tests/test_routing.py || die "Tests fail with ${EPYTHON}" -} -- cgit v1.2.3