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 98546158020 for ; Fri, 23 Dec 2022 14:38:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DB7A4E0866; Fri, 23 Dec 2022 14:38:48 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 C48B5E0866 for ; Fri, 23 Dec 2022 14:38:48 +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 07B6C340EA8 for ; Fri, 23 Dec 2022 14:38:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9B42977C for ; Fri, 23 Dec 2022 14:38:46 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1671806227.ed2e4ddf39dadb0a32e1c35d1503bc47716cb52d.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/torrentinfo/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-p2p/torrentinfo/torrentinfo-1.8.6-r2.ebuild X-VCS-Directories: net-p2p/torrentinfo/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: ed2e4ddf39dadb0a32e1c35d1503bc47716cb52d X-VCS-Branch: master Date: Fri, 23 Dec 2022 14:38:46 +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: e3de2b87-bff2-4e6f-a814-14785434e5b3 X-Archives-Hash: 99f1cf81cd59d292026cc5ccde8b0e84 commit: ed2e4ddf39dadb0a32e1c35d1503bc47716cb52d Author: Michał Górny gentoo org> AuthorDate: Fri Dec 23 14:37:07 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Dec 23 14:37:07 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed2e4ddf net-p2p/torrentinfo: Remove old Signed-off-by: Michał Górny gentoo.org> net-p2p/torrentinfo/torrentinfo-1.8.6-r2.ebuild | 27 ------------------------- 1 file changed, 27 deletions(-) diff --git a/net-p2p/torrentinfo/torrentinfo-1.8.6-r2.ebuild b/net-p2p/torrentinfo/torrentinfo-1.8.6-r2.ebuild deleted file mode 100644 index e07d37d49483..000000000000 --- a/net-p2p/torrentinfo/torrentinfo-1.8.6-r2.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( pypy3 python3_{7..10} ) -# The package uses distutils -DISTUTILS_USE_SETUPTOOLS=no - -inherit distutils-r1 - -DESCRIPTION="A torrent file parser" -HOMEPAGE="https://github.com/Fuuzetsu/torrentinfo" -SRC_URI="https://github.com/Fuuzetsu/torrentinfo/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 x86" - -PATCHES=( "${FILESDIR}/${P}-fix-tests.patch" ) - -distutils_enable_tests nose - -# distutils_enable_tests nose doesn't work here, -# probably because the test file has a non-standard name -python_test() { - nosetests test/tests.py || die "tests failed with ${EPYTHON}" -}