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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AD4FD13835A for ; Fri, 4 Sep 2020 23:46:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F415EE08BF; Fri, 4 Sep 2020 23:46:40 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DEB97E08BF for ; Fri, 4 Sep 2020 23:46:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E9B6E335DC6 for ; Fri, 4 Sep 2020 23:46:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9258333B for ; Fri, 4 Sep 2020 23:46:38 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1599263195.67893194b1f1b7de3e027d6b369dc337721634dd.sbraz@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-r1.ebuild X-VCS-Directories: net-p2p/torrentinfo/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: 67893194b1f1b7de3e027d6b369dc337721634dd X-VCS-Branch: master Date: Fri, 4 Sep 2020 23:46:38 +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: 030c03df-510e-4acf-82fb-0f47bdce3599 X-Archives-Hash: f7d17e7dbb5b70b4558b098428ee3774 commit: 67893194b1f1b7de3e027d6b369dc337721634dd Author: Louis Sautier gentoo org> AuthorDate: Fri Sep 4 23:45:05 2020 +0000 Commit: Louis Sautier gentoo org> CommitDate: Fri Sep 4 23:46:35 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67893194 net-p2p/torrentinfo: remove old Package-Manager: Portage-3.0.3, Repoman-2.3.23 Signed-off-by: Louis Sautier gentoo.org> net-p2p/torrentinfo/torrentinfo-1.8.6-r1.ebuild | 28 ------------------------- 1 file changed, 28 deletions(-) diff --git a/net-p2p/torrentinfo/torrentinfo-1.8.6-r1.ebuild b/net-p2p/torrentinfo/torrentinfo-1.8.6-r1.ebuild deleted file mode 100644 index 21dd1324842..00000000000 --- a/net-p2p/torrentinfo/torrentinfo-1.8.6-r1.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python3_6 pypy3 ) - -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" -IUSE="test" -RESTRICT="!test? ( test )" - -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( dev-python/nose[${PYTHON_USEDEP}] ) -" - -PATCHES=( "${FILESDIR}/${P}-fix-tests.patch" ) - -python_test() { - nosetests test/tests.py || die "tests failed with ${EPYTHON}" -}