diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-10-18 07:23:00 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-10-18 08:36:25 +0200 |
commit | 7f72cb346d7b6dd026666cd48b575136177029c1 (patch) | |
tree | 37994179ec75e4690363fced96c5986f0749b8eb /dev-python | |
parent | dev-python/oauthlib: Bump to 3.2.2 (diff) | |
download | gentoo-7f72cb346d7b6dd026666cd48b575136177029c1.tar.gz gentoo-7f72cb346d7b6dd026666cd48b575136177029c1.tar.bz2 gentoo-7f72cb346d7b6dd026666cd48b575136177029c1.zip |
dev-python/pastedeploy: Bump to 3.0.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/pastedeploy/Manifest | 1 | ||||
-rw-r--r-- | dev-python/pastedeploy/pastedeploy-3.0.1.ebuild | 41 |
2 files changed, 42 insertions, 0 deletions
diff --git a/dev-python/pastedeploy/Manifest b/dev-python/pastedeploy/Manifest index a05022e30e5e..3c49b81829c8 100644 --- a/dev-python/pastedeploy/Manifest +++ b/dev-python/pastedeploy/Manifest @@ -1 +1,2 @@ DIST pastedeploy-2.1.1.tar.gz 32339 BLAKE2B d11affa480e5c9b7be53d0431090e4ec9d66f8862b1aadf6a993a09f9c952380d7698eaa7442614936a8316e2ac50404a096bf64bb3ef31f55cbee35b5982166 SHA512 0109e30cb5ae9bdd7f06a79f6236c90f96c3bcfe507258572b1329796a1821486d9762d954673ccbac76ee63c6a69e64fe5e2cae5402fecf4a5affe88cf46930 +DIST pastedeploy-3.0.1.gh.tar.gz 33420 BLAKE2B d96e9429852ce2f6b82aac834c3a1da069f02d542f7379935e42a9e663cdee807230bbede3acc03fb5cccc3b4462d3f3afaa84eec09225bbaffe6ece4534f3fe SHA512 2b06351b9104da1e0d30c90492ee31113aacf5cde7a66a34482c4625af902b855eab2af80073db4eb18805a192f858dac360062dadf58a161cc3cfabf5b67a1a diff --git a/dev-python/pastedeploy/pastedeploy-3.0.1.ebuild b/dev-python/pastedeploy/pastedeploy-3.0.1.ebuild new file mode 100644 index 000000000000..eb65cd769e0d --- /dev/null +++ b/dev-python/pastedeploy/pastedeploy-3.0.1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..11} pypy3 ) + +inherit distutils-r1 + +MY_PN="PasteDeploy" +MY_P="${MY_PN}-${PV}" +DESCRIPTION="Load, configure, and compose WSGI applications and servers" +HOMEPAGE=" + https://github.com/Pylons/pastedeploy/ + https://pypi.org/project/PasteDeploy/ +" +SRC_URI=" + https://github.com/Pylons/pastedeploy/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris" + +RDEPEND=" + !dev-python/namespace-paste +" + +distutils_enable_tests pytest + +src_prepare() { + sed -i -e 's:--cov::' pytest.ini || die + distutils-r1_src_prepare +} + +python_compile() { + distutils-r1_python_compile + find "${BUILD_DIR}" -name '*.pth' -delete || die +} |