From f716a9fe6455d39eef01e718aae68dae61c19704 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 4 Jun 2026 05:35:26 -0500 Subject: Adding metadata --- dev-python/python-ptrace/Manifest | 1 - .../files/python-ptrace-0.9.9-py3.14.patch | 31 ----------------- dev-python/python-ptrace/metadata.xml | 20 ----------- .../python-ptrace/python-ptrace-0.9.9.ebuild | 39 ---------------------- dev-python/python-ptrace/python-ptrace-9999.ebuild | 35 ------------------- 5 files changed, 126 deletions(-) delete mode 100644 dev-python/python-ptrace/Manifest delete mode 100644 dev-python/python-ptrace/files/python-ptrace-0.9.9-py3.14.patch delete mode 100644 dev-python/python-ptrace/metadata.xml delete mode 100644 dev-python/python-ptrace/python-ptrace-0.9.9.ebuild delete mode 100644 dev-python/python-ptrace/python-ptrace-9999.ebuild (limited to 'dev-python/python-ptrace') diff --git a/dev-python/python-ptrace/Manifest b/dev-python/python-ptrace/Manifest deleted file mode 100644 index 68a8a7fa09ec..000000000000 --- a/dev-python/python-ptrace/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST python-ptrace-0.9.9.gh.tar.gz 106526 BLAKE2B ff9b85e17fd8d767c3fd1db13f1c69ad0b4e7d47379d6ee9468d9424702d34d7a7a7489590987213707829ab62e5eb83df277d3b60de6d2ad05ac99b93586ca3 SHA512 5f2291a4ca642ab99c49e853f12a3cd4ee911df45326fe077ef5df82b813b54a4351c3c23a195b65342af37aed8ecbc26968f65ce9b6a974863bee0ffd556039 diff --git a/dev-python/python-ptrace/files/python-ptrace-0.9.9-py3.14.patch b/dev-python/python-ptrace/files/python-ptrace-0.9.9-py3.14.patch deleted file mode 100644 index 98d8db561908..000000000000 --- a/dev-python/python-ptrace/files/python-ptrace-0.9.9-py3.14.patch +++ /dev/null @@ -1,31 +0,0 @@ -https://github.com/vstinner/python-ptrace/pull/91 - -From 324404a3d7ca7d329f1595f2520e779412d6fa98 Mon Sep 17 00:00:00 2001 -From: Stefano Rivera -Date: Sat, 11 Oct 2025 15:36:41 +0200 -Subject: [PATCH] Add support for Python 3.14 - -Python 3.14 now uses linkat() if it's available -https://github.com/python/cpython/issues/81793 - -I'm not quite sure why the ARM64 and RISC-V versions were using -linkat() there, previously, but that doesn't seem relevant to this -change :) ---- - tests/test_strace.py | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/tests/test_strace.py b/tests/test_strace.py -index 2020a3b..89f77b6 100755 ---- a/tests/test_strace.py -+++ b/tests/test_strace.py -@@ -86,7 +86,7 @@ def test_rename(self): - - def test_link(self): - pattern = br"^link\('oldpath', 'newpath'\)" -- if AARCH64 or RISCV: -+ if AARCH64 or RISCV or sys.version_info >= (3, 14): - pattern = br"^linkat\(.*'oldpath'.*'newpath'.*\)" - self.assert_syscall("import os; os.link('oldpath', 'newpath')", - pattern) - diff --git a/dev-python/python-ptrace/metadata.xml b/dev-python/python-ptrace/metadata.xml deleted file mode 100644 index 66c0372c347e..000000000000 --- a/dev-python/python-ptrace/metadata.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - mario.haustein@hrz.tu-chemnitz.de - Mario Haustein - - - sam@gentoo.org - Sam James - - - python-ptrace is a debugger using ptrace (Linux, BSD and Darwin system - call to trace processes) written in Python. - - - vstinner/python-ptrace - python-ptrace - - diff --git a/dev-python/python-ptrace/python-ptrace-0.9.9.ebuild b/dev-python/python-ptrace/python-ptrace-0.9.9.ebuild deleted file mode 100644 index 2bdaf077a122..000000000000 --- a/dev-python/python-ptrace/python-ptrace-0.9.9.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{13..14} ) - -inherit distutils-r1 - -DESCRIPTION="Python binding of ptrace library" -HOMEPAGE=" - https://github.com/vstinner/python-ptrace/ - https://pypi.org/project/python-ptrace/ -" - -if [[ ${PV} == 9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/vstinner/python-ptrace" -else - SRC_URI=" - https://github.com/vstinner/python-ptrace/archive/${PV}.tar.gz - -> ${P}.gh.tar.gz - " - KEYWORDS="amd64 x86" -fi - -LICENSE="GPL-2" -SLOT="0" - -PATCHES=( - "${FILESDIR}"/${PN}-0.9.9-py3.14.patch -) - -distutils_enable_tests pytest - -python_test() { - "${EPYTHON}" runtests.py -v --tests tests/ || die -} diff --git a/dev-python/python-ptrace/python-ptrace-9999.ebuild b/dev-python/python-ptrace/python-ptrace-9999.ebuild deleted file mode 100644 index 4c1708a52e24..000000000000 --- a/dev-python/python-ptrace/python-ptrace-9999.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{13..14} ) - -inherit distutils-r1 - -DESCRIPTION="Python binding of ptrace library" -HOMEPAGE=" - https://github.com/vstinner/python-ptrace/ - https://pypi.org/project/python-ptrace/ -" - -if [[ ${PV} == 9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/vstinner/python-ptrace" -else - SRC_URI=" - https://github.com/vstinner/python-ptrace/archive/${PV}.tar.gz - -> ${P}.gh.tar.gz - " - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="GPL-2" -SLOT="0" - -distutils_enable_tests pytest - -python_test() { - "${EPYTHON}" runtests.py -v --tests tests/ || die -} -- cgit v1.3.1