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/flask/Manifest | 4 +-- dev-python/flask/flask-1.1.2-r1.ebuild | 51 ++++++++++++++++++++++++++++++++++ dev-python/flask/flask-1.1.2.ebuild | 51 ---------------------------------- dev-python/flask/flask-9999.ebuild | 2 +- 4 files changed, 54 insertions(+), 54 deletions(-) create mode 100644 dev-python/flask/flask-1.1.2-r1.ebuild delete mode 100644 dev-python/flask/flask-1.1.2.ebuild (limited to 'dev-python/flask') diff --git a/dev-python/flask/Manifest b/dev-python/flask/Manifest index 59041d63a0ed..1f4e947f4e32 100644 --- a/dev-python/flask/Manifest +++ b/dev-python/flask/Manifest @@ -1,4 +1,4 @@ DIST Flask-1.1.2.tar.gz 637516 BLAKE2B 90dffbb8faa48489d1c71ff2a064d41e97d2103c07532fd5b252dbe0b32e4babb815e31f0ceae201a66cead645b68149d13d4bb39a0df1b27b4002e613920493 SHA512 9feb6a9a8f34fadbea508d465f73c24b1d81b3f66243804dc3904d198c2fd78e2e1bef94df6a4940a7eec6b9b54abea06557a87de8b27b0a9497d18b3e071384 -EBUILD flask-1.1.2.ebuild 1337 BLAKE2B 89b4a21d676faf73edc173e24084c2547835e612f2a6e1bd345cfb8320fa448ec57b71115d87d082cd3f40d9c3e2d41afe377da630862511a671de39903dc4bc SHA512 a1bf5217cfc3bd606031c23ac10ec974a6ea78c19cf23408461553051aa17239ea5eda91778f05200521235735df5aa4a75dc6c7b432727d0ebf586d072eb945 -EBUILD flask-9999.ebuild 1306 BLAKE2B 624eabc5bd3dc1dc8470f04b49c65a3dfd9ea1ea72e75fbbdb4130cb5e5790e299f4309f4088ba3e9cd13a8c2400c6bac405515b7c3b01b3963b21d33fb6067d SHA512 af1a02401a2b305f0579dddbfa5f5430df4a04b9309e704ba9bab37449f06894a6c4f7b6f2e1c1e7e7d1a0330cc8d36b1dee8ac5a7baa8cb3aa22b910b742498 +EBUILD flask-1.1.2-r1.ebuild 1327 BLAKE2B 5660a55f7b7e05da677a7c2acfae524be9ce2752806b259c2c477cfc0c1b8ae9a6991f5b01cab217622c469320e1b377e7b0c26b2c374f4ee4aa1e934660bd8e SHA512 a2a75b8a5d939ff1447ef31ffc63298d1ab0f57864647612ce3cc01d2ef5914b257b6bdd409bf0c2c4474664c01b96df362645fe94ab6f2c2efad8e4f3d91d54 +EBUILD flask-9999.ebuild 1296 BLAKE2B 91a4a57d017a9b898be3999456cb017564aed62c1dd0ec0eb44f9b1d6782fe94417b4130bd175c3e16927b6cd5699c71860dde9afd58446dddce28305dbd3da3 SHA512 ef2e1d1126f0be3df197913a356a698448cb38e0ab9c179c867f2a1c81fcbfede1af8f938156c5778c1273aa619c0c9d77abfb5e264b5fd90816be25799fa2d6 MISC metadata.xml 387 BLAKE2B 32096cb4f4a2e7b3e484224a6253f7f0ee52d73b9419c8ea3f76aca7d782408fdf2917ef1797057b32d1dffb17522d23cc26011fdde938d9a47046d0e9794769 SHA512 f70179503fe0651fe6ff288731f10821cce3b19d020c3817db2f6d846f66d5f013f52c168d75e3fec8070b19bdbd9c3b08670d56d8aa6158ba3547a70ae39b84 diff --git a/dev-python/flask/flask-1.1.2-r1.ebuild b/dev-python/flask/flask-1.1.2-r1.ebuild new file mode 100644 index 000000000000..d2f498c7fbe3 --- /dev/null +++ b/dev-python/flask/flask-1.1.2-r1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS=rdepend +PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="A microframework based on Werkzeug, Jinja2 and good intentions" +HOMEPAGE="https://github.com/pallets/flask/" +MY_PN="Flask" +MY_P="${MY_PN}-${PV}" +if [[ ${PV} == *9999* ]]; then + EGIT_REPO_URI="https://github.com/mitsuhiko/flask.git" + inherit git-r3 +else + SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz" + KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" + S="${WORKDIR}/${MY_P}" +fi + +LICENSE="BSD" +SLOT="0" +IUSE="examples test" +RESTRICT="!test? ( test )" + +RDEPEND="dev-python/click[${PYTHON_USEDEP}] + dev-python/blinker[${PYTHON_USEDEP}] + dev-python/itsdangerous[${PYTHON_USEDEP}] + >=dev-python/jinja-2.10[${PYTHON_USEDEP}] + >=dev-python/werkzeug-0.15[${PYTHON_USEDEP}]" +DEPEND=" + test? ( + ${RDEPEND} + dev-python/pytest[${PYTHON_USEDEP}] + )" + +distutils_enable_sphinx docs + +python_test() { + PYTHONPATH=${S}/examples/flaskr:${S}/examples/minitwit${PYTHONPATH:+:${PYTHONPATH}} \ + pytest -vv -p no:httpbin || die "Testing failed with ${EPYTHON}" +} + +python_install_all() { + use examples && dodoc -r examples + + distutils-r1_python_install_all +} diff --git a/dev-python/flask/flask-1.1.2.ebuild b/dev-python/flask/flask-1.1.2.ebuild deleted file mode 100644 index 7644fa4e9eaf..000000000000 --- a/dev-python/flask/flask-1.1.2.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python2_7 python3_{6,7,8,9} pypy3 ) - -inherit distutils-r1 - -DESCRIPTION="A microframework based on Werkzeug, Jinja2 and good intentions" -HOMEPAGE="https://github.com/pallets/flask/" -MY_PN="Flask" -MY_P="${MY_PN}-${PV}" -if [[ ${PV} == *9999* ]]; then - EGIT_REPO_URI="https://github.com/mitsuhiko/flask.git" - inherit git-r3 -else - SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz" - KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" - S="${WORKDIR}/${MY_P}" -fi - -LICENSE="BSD" -SLOT="0" -IUSE="examples test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-python/click[${PYTHON_USEDEP}] - dev-python/blinker[${PYTHON_USEDEP}] - dev-python/itsdangerous[${PYTHON_USEDEP}] - >=dev-python/jinja-2.10[${PYTHON_USEDEP}] - >=dev-python/werkzeug-0.15[${PYTHON_USEDEP}]" -DEPEND=" - test? ( - ${RDEPEND} - dev-python/pytest[${PYTHON_USEDEP}] - )" - -distutils_enable_sphinx docs - -python_test() { - PYTHONPATH=${S}/examples/flaskr:${S}/examples/minitwit${PYTHONPATH:+:${PYTHONPATH}} \ - pytest -vv -p no:httpbin || die "Testing failed with ${EPYTHON}" -} - -python_install_all() { - use examples && dodoc -r examples - - distutils-r1_python_install_all -} diff --git a/dev-python/flask/flask-9999.ebuild b/dev-python/flask/flask-9999.ebuild index b6b56fdb7ec3..df68ac5656a7 100644 --- a/dev-python/flask/flask-9999.ebuild +++ b/dev-python/flask/flask-9999.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python2_7 python3_{6,7,8} pypy3 ) +PYTHON_COMPAT=( python3_{6,7,8} pypy3 ) inherit distutils-r1 -- cgit v1.2.3