From 71deace00d1a2b091313fe137ab7092418c6f87c Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 10 Feb 2020 21:05:55 +0000 Subject: gentoo resync : 10.02.2020 --- dev-python/flask-login/Manifest | 2 +- dev-python/flask-login/flask-login-0.4.1-r1.ebuild | 53 ++++++++++++++++++++++ dev-python/flask-login/flask-login-0.4.1.ebuild | 50 -------------------- 3 files changed, 54 insertions(+), 51 deletions(-) create mode 100644 dev-python/flask-login/flask-login-0.4.1-r1.ebuild delete mode 100644 dev-python/flask-login/flask-login-0.4.1.ebuild (limited to 'dev-python/flask-login') diff --git a/dev-python/flask-login/Manifest b/dev-python/flask-login/Manifest index 535f7f2f855e..03cedff65091 100644 --- a/dev-python/flask-login/Manifest +++ b/dev-python/flask-login/Manifest @@ -2,5 +2,5 @@ AUX flask-login-0.3.2-fix-tests-python2.patch 1115 BLAKE2B 138cab48cbf144a3d4d47 DIST flask-login-0.3.2.tar.gz 38626 BLAKE2B fbcac55e4a8dc5fe78b4b5b3cb8acbe7293bfcc30ce5323ebe992c92407238198d34724179ac12e688875356e54f85f21a2870249ccafb48499df3880a6c2062 SHA512 c42af6ed7902145cc4778815f247ed88de6df7c929abe0a1f22aca0515495a54d298b2af2b74ba7d5e0ce9b453eee4c4ce03802a3e9ab531137e117e9dcdfc1b DIST flask-login-0.4.1.tar.gz 43679 BLAKE2B f30df1cc84289bc2dd1e59a30284d7152cee0731daf8b6e58b8203007c0ba74eb512bf9f2e41608d9656138038f5b5c752509ef5a203ef1e8bdba9182912b133 SHA512 c87a2948ac37439ddd76f3f11584bdd5910cb00e96a7400343cf4dadc5a0f9bc84d40bdc068d2e8c05bd5a510046e18473e9ad71502c5039a5f05b371ce9bb4c EBUILD flask-login-0.3.2-r1.ebuild 903 BLAKE2B bd299a49488d3617ec9b5b3fac545e5b2cc38ef15a6d1bed37183449abb6075da1f2a5680b2f6f5317c3433029bc1e5144cfc5d77d3a4590ced8e4b08fd04c3f SHA512 9af0dcf13b0f5148185e49155cd99480cf186afbbbd0c0af99a8fbf5d732b024de848e4961724048ebb534b24172a118c6647991e0cd12e6c2bf68c5ec59ef86 -EBUILD flask-login-0.4.1.ebuild 1205 BLAKE2B 596161a6700310d710287ee787bdc5354e6bfb074109215588c29188b093db73f7fbf1f21a5b9b0bc91995bc9ca24c79213ddbbf70e5e81eace2f01fec3875ed SHA512 46e0a834f43108e3990b4cfdb1b6d4ed1e30bfad494b371d889922228fdab9ac91cde02a9cee0b65878f02cb7626cf7e35b6cb306645a5bcca5944ec67323ab2 +EBUILD flask-login-0.4.1-r1.ebuild 1341 BLAKE2B 6697a7136c5259a1d12875813c48103b49ae6d332d72b928ab2c87563ee2bf12a51ca55f13cd044d459a6db3dfe06d65295ae1521d178f1c63675bbe611fc675 SHA512 0c96c13422097fc5173c2b57960701f9bd458330272aa57f6c093a2c56e39c53fd09d8c3ca5fbac32e4c52868f579af84e828603d6100607c0fe29081279f13e MISC metadata.xml 379 BLAKE2B 0dd211944ab3c15c51198cfbd6a6bebfacbe3cc84c3f5bacb9d942c68ab1567399c5dac987bc8ba2e6c9a96eba063168689edd67563dec49946df346c38bc4cf SHA512 fdce43f3694a2e027fd12ca87bd0c964e243dac37a2d31a93c034cf7881097985402f9dc6ac45f02a157914705ddeb77965486506e94f67e0f868cb77a81f6fe diff --git a/dev-python/flask-login/flask-login-0.4.1-r1.ebuild b/dev-python/flask-login/flask-login-0.4.1-r1.ebuild new file mode 100644 index 000000000000..716ad8877a69 --- /dev/null +++ b/dev-python/flask-login/flask-login-0.4.1-r1.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( pypy3 python3_{6,7,8} ) +inherit distutils-r1 + +DESCRIPTION="Login session support for Flask" +HOMEPAGE="https://pypi.org/project/Flask-Login/" +# Should be replaced with the PyPi URI for the next release, if possible +# See https://github.com/maxcountryman/flask-login/pull/393 +SRC_URI="https://github.com/maxcountryman/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="doc test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-python/flask-0.10[${PYTHON_USEDEP}] + dev-python/werkzeug[${PYTHON_USEDEP}] +" +DEPEND=" + doc? ( + dev-python/sphinx[${PYTHON_USEDEP}] + ) + test? ( + ${RDEPEND} + dev-python/blinker[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + dev-python/nose[${PYTHON_USEDEP}] + dev-python/semantic_version[${PYTHON_USEDEP}] + )" + +python_prepare_all() { + sed -i "s/'sphinx.ext.intersphinx', //" docs/conf.py || die + distutils-r1_python_prepare_all +} + +python_compile_all() { + if use doc; then + emake -C docs html + HTML_DOCS=( docs/_build/html/. ) + fi +} + +python_test() { + # test is broken upstream with >=dev-python/werkzeug-0.15, bug 701546 + nosetests -v -e test_unauthorized_uses_host_from_x_forwarded_for_header \ + || die "Tests fail with ${EPYTHON}" +} diff --git a/dev-python/flask-login/flask-login-0.4.1.ebuild b/dev-python/flask-login/flask-login-0.4.1.ebuild deleted file mode 100644 index 33f04a0329f3..000000000000 --- a/dev-python/flask-login/flask-login-0.4.1.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( pypy3 python3_{6,7} ) - -inherit distutils-r1 - -DESCRIPTION="Login session support for Flask" -HOMEPAGE="https://pypi.org/project/Flask-Login/" -# Should be replaced with the PyPi URI for the next release, if possible -# See https://github.com/maxcountryman/flask-login/pull/393 -SRC_URI="https://github.com/maxcountryman/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="doc test" -RESTRICT="!test? ( test )" - -RDEPEND=">=dev-python/flask-0.10[${PYTHON_USEDEP}]" -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - doc? ( - dev-python/sphinx[${PYTHON_USEDEP}] - ) - test? ( - ${RDEPEND} - dev-python/blinker[${PYTHON_USEDEP}] - dev-python/mock[${PYTHON_USEDEP}] - dev-python/nose[${PYTHON_USEDEP}] - dev-python/semantic_version[${PYTHON_USEDEP}] - )" - -python_prepare_all() { - sed -i "s/'sphinx.ext.intersphinx', //" docs/conf.py || die - distutils-r1_python_prepare_all -} - -python_compile_all() { - if use doc; then - emake -C docs html - HTML_DOCS=( docs/_build/html/. ) - fi -} - -python_test() { - nosetests -v || die "Tests fail with ${EPYTHON}" -} -- cgit v1.2.3