commit: 36c867f82127c775231e5200caa0551f661aa866 Author: Aaron Bauman <bman <AT> gentoo <DOT> org> AuthorDate: Wed Dec 2 20:46:06 2020 +0000 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org> CommitDate: Wed Dec 2 20:47:36 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36c867f8
dev-python/flask-cors: bump to 3.0.9 and add more py compats Bug: https://bugs.gentoo.org/743256 Bug: https://bugs.gentoo.org/743646 Closes: https://bugs.gentoo.org/696640 Closes: https://bugs.gentoo.org/718834 Suggested-by: Guillaume Seren <guillaumeseren <AT> gmail.com> Signed-off-by: Aaron Bauman <bman <AT> gentoo.org> dev-python/flask-cors/Manifest | 1 + dev-python/flask-cors/flask-cors-3.0.9.ebuild | 32 +++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/dev-python/flask-cors/Manifest b/dev-python/flask-cors/Manifest index d948a71a84e..18d676bfb5a 100644 --- a/dev-python/flask-cors/Manifest +++ b/dev-python/flask-cors/Manifest @@ -1 +1,2 @@ DIST flask-cors-2.1.0.tar.gz 28038 BLAKE2B ecba951b0bac645088658ea5dc4947c0eaf9d0adb8f0f70e3a3f68337e008cb04a5efab3cb8139aaddf380f9b59c2524d33a5c5ac851b98446dadff9aa82fc92 SHA512 235162749485588e9112a52a833a43e68ad1737997628dc51cc30358d01837f427ba33872ecb1fff8e821b84c3de0a15a1c89c57f2407ef0cacafae9ca354640 +DIST flask-cors-3.0.9.tar.gz 29222 BLAKE2B 5c13218728c1741c455efedcf46af0b7e2c765e41ad256eb52413f06544d6d0d1d755ab336bc4a2a44627665b1252246073acfd201622604db825dbd7e2501ed SHA512 1b80b4dbc928e076c8c415f4514877c2e44e5b658b200178dc9a63b3342e46a7da62eba80d6703cdfd6ac74302aae2ff072531a587e7f04e5c1715d8b7592654 diff --git a/dev-python/flask-cors/flask-cors-3.0.9.ebuild b/dev-python/flask-cors/flask-cors-3.0.9.ebuild new file mode 100644 index 00000000000..c66a9478374 --- /dev/null +++ b/dev-python/flask-cors/flask-cors-3.0.9.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} ) + +inherit distutils-r1 + +if [[ "${PV}" == "9999" ]]; then + EGIT_REPO_URI="https://github.com/wcdolphin/${PN}.git" + inherit git-r3 +else + SRC_URI="https://github.com/corydolphin/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +DESCRIPTION="A Flask extension for Cross Origin Resource Sharing (CORS)" +HOMEPAGE="https://github.com/wcdolphin/flask-cors https://pypi.org/project/Flask-Cors/" + +LICENSE="MIT" +SLOT="0" + +BDEPEND="test? ( dev-python/packaging[${PYTHON_USEDEP}] )" +RDEPEND=" + dev-python/flask[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] +" + +distutils_enable_tests nose +distutils_enable_sphinx docs \ + dev-python/sphinx_rtd_theme
