From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C86A9158089 for ; Fri, 27 Oct 2023 03:20:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 262742BC0BD; Fri, 27 Oct 2023 03:20:46 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0EF6C2BC0BD for ; Fri, 27 Oct 2023 03:20:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 58465335CAF for ; Fri, 27 Oct 2023 03:20:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CEFB312D7 for ; Fri, 27 Oct 2023 03:20:41 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1698376716.c662d1877fb78b92984c7a316bd9155197a2739f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-ptrace/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-ptrace/python-ptrace-0.9.8.ebuild X-VCS-Directories: dev-python/python-ptrace/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c662d1877fb78b92984c7a316bd9155197a2739f X-VCS-Branch: master Date: Fri, 27 Oct 2023 03:20:41 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a931f33a-edaf-464b-9dab-dea29f952656 X-Archives-Hash: 652a5d17455717de732e2728d750fdc2 commit: c662d1877fb78b92984c7a316bd9155197a2739f Author: Mario Haustein hrz tu-chemnitz de> AuthorDate: Thu Oct 19 16:27:56 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri Oct 27 03:18:36 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c662d187 dev-python/python-ptrace: drop 0.9.8 Signed-off-by: Mario Haustein hrz.tu-chemnitz.de> Signed-off-by: Sam James gentoo.org> .../python-ptrace/python-ptrace-0.9.8.ebuild | 32 ---------------------- 1 file changed, 32 deletions(-) diff --git a/dev-python/python-ptrace/python-ptrace-0.9.8.ebuild b/dev-python/python-ptrace/python-ptrace-0.9.8.ebuild deleted file mode 100644 index 46d75cda355d..000000000000 --- a/dev-python/python-ptrace/python-ptrace-0.9.8.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) - -inherit distutils-r1 - -DESCRIPTION="A Python binding of ptrace library" -HOMEPAGE="https://github.com/vstinner/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/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz" - KEYWORDS="amd64 x86" -fi - -LICENSE="GPL-2" -SLOT="0" - -RDEPEND="${PYTHON_DEPS} - dev-python/six[${PYTHON_USEDEP}]" - -distutils_enable_tests pytest - -src_test() { - ./runtests.py --tests tests/ || die -}