summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2021-01-10 15:49:05 +0100
committerMichał Górny <mgorny@gentoo.org>2021-01-10 15:50:07 +0100
commiteebef6d438771e78d96b95b809bb11064863ab5b (patch)
tree7b5685df0c7ee1036a5610e4452192f4ffcae323 /dev-python/setproctitle
parentprofiles/prefix/darwin/macos/package.mask: mask findutils-4.8.0 like wget (diff)
downloadgentoo-eebef6d438771e78d96b95b809bb11064863ab5b.tar.gz
gentoo-eebef6d438771e78d96b95b809bb11064863ab5b.tar.bz2
gentoo-eebef6d438771e78d96b95b809bb11064863ab5b.zip
dev-python/setproctitle: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/setproctitle')
-rw-r--r--dev-python/setproctitle/Manifest2
-rw-r--r--dev-python/setproctitle/files/setproctitle-1.2-pypy3.patch46
-rw-r--r--dev-python/setproctitle/setproctitle-1.1.10-r1.ebuild34
-rw-r--r--dev-python/setproctitle/setproctitle-1.2.ebuild21
4 files changed, 0 insertions, 103 deletions
diff --git a/dev-python/setproctitle/Manifest b/dev-python/setproctitle/Manifest
index dfbced9240ed..c5723b7e71e5 100644
--- a/dev-python/setproctitle/Manifest
+++ b/dev-python/setproctitle/Manifest
@@ -1,3 +1 @@
-DIST setproctitle-1.1.10.tar.gz 24042 BLAKE2B acd4ef33ab2a200b5d102fe5ceb78df03deeee47eb5a3c7b50f0a44e095953e5a4e2230278b6b4a5010472e4a5a18b81accbff0461e3a642be478b880d98114e SHA512 c976c5b86f59bc6d0f840f495b8256813169d3d7b9edae70207a24d62e1240bfec954fdc4f67b429ae124e3dc74efd7193404785643a52b2d57b55028bb3c533
DIST setproctitle-1.2.1.tar.gz 23628 BLAKE2B a50f078a08d2828b03b3cde261af419f88e08045fc18230be017c642c2d4e1b4fb6809e1e2230160d46ba24ba893beb1f95f125b93e7d1b9aacd4ed333bfea7e SHA512 c11f756a61501c4126e6bba5d931a3fb26294d2a55255c717f0e3c3b72184841452195ddf04fb6e8b686d26caa36cb5e13fbd66c66c151c54981a9edc620da1e
-DIST setproctitle-1.2.tar.gz 23454 BLAKE2B 4a69566e48a2985ae8add0341feba26f062d8345dd773570e0500795e43b349777d4bf557bd8b88d9cec37850c129009823a1f87ed6261a9709e84c8a6f56868 SHA512 7dc84ac0fc028ca71e786622aa6b649961feb816e0f03a3d52ab7b1a5d7edc0c932695687f1f5487d27104535a3db0c48d12fd69859478a604dbf60c615f4e01
diff --git a/dev-python/setproctitle/files/setproctitle-1.2-pypy3.patch b/dev-python/setproctitle/files/setproctitle-1.2-pypy3.patch
deleted file mode 100644
index 01d4b0e4dd53..000000000000
--- a/dev-python/setproctitle/files/setproctitle-1.2-pypy3.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-From b13b7254fa10b4ba461c03b0f1f03858a2368bdc Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <mgorny@gentoo.org>
-Date: Wed, 25 Nov 2020 09:29:18 +0100
-Subject: [PATCH] Fix skipping embedded tests with pypy
-
-Fix skipping embedded tests by using the 'skipif' decorator. The tests
-need to be skipped early, as otherwise they error out trying to
-initialize pyconfig fixture.
----
- tests/setproctitle_test.py | 8 ++------
- 1 file changed, 2 insertions(+), 6 deletions(-)
-
-diff --git a/tests/setproctitle_test.py b/tests/setproctitle_test.py
-index 5d73733..7b679df 100644
---- a/tests/setproctitle_test.py
-+++ b/tests/setproctitle_test.py
-@@ -340,12 +340,10 @@ print(os.popen("ps -x -o pid,command 2> /dev/null").read())
-
-
- @pytest.mark.embedded
-+@pytest.mark.skipif(IS_PYPY, reason="skip test, pypy")
- def test_embedded(pyrun, spt_directory):
- """Check the module works with embedded Python.
- """
-- if IS_PYPY:
-- pytest.skip("skip test, pypy")
--
- if not os.path.exists("/proc/%s/cmdline" % os.getpid()):
- pytest.skip("known failure: '/proc/PID/cmdline' not available")
-
-@@ -371,11 +369,9 @@ print(os.popen("ps -x -o pid,command 2> /dev/null").read())
-
-
- @pytest.mark.embedded
-+@pytest.mark.skipif(IS_PYPY, reason="skip test, pypy")
- def test_embedded_many_args(pyrun, spt_directory):
- """Check more complex cmdlines are handled in embedded env too."""
-- if IS_PYPY:
-- pytest.skip("skip test, pypy")
--
- if not os.path.exists("/proc/%s/cmdline" % os.getpid()):
- pytest.skip("known failure: '/proc/PID/cmdline' not available")
-
---
-2.29.2
-
diff --git a/dev-python/setproctitle/setproctitle-1.1.10-r1.ebuild b/dev-python/setproctitle/setproctitle-1.1.10-r1.ebuild
deleted file mode 100644
index 94e5e41b8029..000000000000
--- a/dev-python/setproctitle/setproctitle-1.1.10-r1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{6..9} pypy3 )
-
-inherit distutils-r1 toolchain-funcs
-
-DESCRIPTION="Allow customization of the process title"
-HOMEPAGE="https://github.com/dvarrazzo/py-setproctitle"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-
-python_configure_all() {
- 2to3 -w --no-diffs tests || die
-}
-
-python_test() {
- if [[ ${EPYTHON} != pypy* ]]; then
- # prepare executable for embedded interpreter test
- # (skipped with pypy)
- rm -f tests/pyrun3 || die
- emake \
- CC="$(tc-getCC)" \
- PYINC="$(python_get_CFLAGS)" \
- PYLIB="$(python_get_LIBS)" \
- tests/pyrun3
- fi
-
- "${EPYTHON}" tests/setproctitle_test.py -v || die "Tests failed with ${EPYTHON}"
-}
diff --git a/dev-python/setproctitle/setproctitle-1.2.ebuild b/dev-python/setproctitle/setproctitle-1.2.ebuild
deleted file mode 100644
index 052603c65556..000000000000
--- a/dev-python/setproctitle/setproctitle-1.2.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{6..9} pypy3 )
-
-inherit distutils-r1 toolchain-funcs
-
-DESCRIPTION="Allow customization of the process title"
-HOMEPAGE="https://github.com/dvarrazzo/py-setproctitle"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-
-distutils_enable_tests pytest
-
-PATCHES=(
- "${FILESDIR}"/${P}-pypy3.patch
-)