diff options
author | Sebastian Pipping <sping@gentoo.org> | 2019-11-28 21:51:02 +0100 |
---|---|---|
committer | Sebastian Pipping <sping@gentoo.org> | 2019-11-28 21:55:17 +0100 |
commit | fa4a144b7d87efce43e613f94a9c871836f67612 (patch) | |
tree | f2f6d8f21198bab0123eb6bc0a4ccf407ba637e1 /dev-python/subprocess32 | |
parent | profiles: fix PHP 7.4 mask (diff) | |
download | gentoo-fa4a144b7d87efce43e613f94a9c871836f67612.tar.gz gentoo-fa4a144b7d87efce43e613f94a9c871836f67612.tar.bz2 gentoo-fa4a144b7d87efce43e613f94a9c871836f67612.zip |
dev-python/subprocess32: 3.5.4
Bug: https://bugs.gentoo.org/701394
Signed-off-by: Sebastian Pipping <sping@gentoo.org>
Package-Manager: Portage-2.3.78, Repoman-2.3.16
Diffstat (limited to 'dev-python/subprocess32')
-rw-r--r-- | dev-python/subprocess32/Manifest | 1 | ||||
-rw-r--r-- | dev-python/subprocess32/subprocess32-3.5.4.ebuild | 21 |
2 files changed, 22 insertions, 0 deletions
diff --git a/dev-python/subprocess32/Manifest b/dev-python/subprocess32/Manifest index 31a440303cad..d0e5475539b9 100644 --- a/dev-python/subprocess32/Manifest +++ b/dev-python/subprocess32/Manifest @@ -1 +1,2 @@ DIST subprocess32-3.2.7.tar.gz 54240 BLAKE2B 0f7fc0db765c809b29b5e0bed6e17da85884d7952d3cb546adc36cbec764f9b817f1a1c0219c6910d90d53f78038171e3e250b964bff3bfead0a54a580f2ff5f SHA512 d897d6a48824991e2a63ea417ca15222f28c3a4117c9bba8cbb4eceabfba9769acce1166aafa7aee8a025d6ebe7e133ce0dd617f90cb07e11bdb73dc1e21dec6 +DIST subprocess32-3.5.4.tar.gz 97373 BLAKE2B 712b6545684fc7908a24ffae94d0967e168773a3b52a0701828ee2741255919927d24972a3c0579dadb5b187a63429d2a24e089e535bd3c41d6f48adc27b1166 SHA512 c811bdb5842d9f5ed9e51df4d13ba39045fbe98ca6e90a2c8138e68e44c2a55a2f0f3eb3e77e26caa3f88c360584912b001a0ca37ba68ac6c946c68c7a37d29a diff --git a/dev-python/subprocess32/subprocess32-3.5.4.ebuild b/dev-python/subprocess32/subprocess32-3.5.4.ebuild new file mode 100644 index 000000000000..5a49351d75a4 --- /dev/null +++ b/dev-python/subprocess32/subprocess32-3.5.4.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="A backport of the subprocess module from Python 3.2/3.3 for use on 2.x" +HOMEPAGE="https://github.com/google/python-subprocess32" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="PSF-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +IUSE="test" + +python_test() { + "${PYTHON}" test_subprocess32.py || die "Tests fail with ${EPYTHON}" +} |