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 8B25115808B for ; Wed, 6 Apr 2022 21:10:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 93F83E0D83; Wed, 6 Apr 2022 21:10:02 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 AAE41E0D83 for ; Wed, 6 Apr 2022 21:10:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 40BDA34123C for ; Wed, 6 Apr 2022 21:10:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CFECE388 for ; Wed, 6 Apr 2022 21:09:57 +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: <1649279374.329171cbd549ed8c5114bff742b2820738428606.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/reedsolomon/reedsolomon-1.5.4.ebuild X-VCS-Directories: dev-python/reedsolomon/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 329171cbd549ed8c5114bff742b2820738428606 X-VCS-Branch: master Date: Wed, 6 Apr 2022 21:09:57 +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: 4c011e34-62d4-4acf-a4dd-4c762fb280d8 X-Archives-Hash: 161bcd79aec32a06f798bad257d4fcaa commit: 329171cbd549ed8c5114bff742b2820738428606 Author: Michał Górny gentoo org> AuthorDate: Wed Apr 6 21:09:34 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Apr 6 21:09:34 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=329171cb dev-python/reedsolomon: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/reedsolomon/reedsolomon-1.5.4.ebuild | 26 ------------------------- 1 file changed, 26 deletions(-) diff --git a/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild b/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild deleted file mode 100644 index 93597cac24f4..000000000000 --- a/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 2020-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..9} ) -inherit distutils-r1 - -DESCRIPTION="Pure-Python Reed Solomon encoder/decoder" -HOMEPAGE="https://github.com/tomerfiliba/reedsolomon https://pypi.org/project/reedsolo/" -SRC_URI="https://github.com/tomerfiliba/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="public-domain" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 x86" -IUSE="test" -RESTRICT="!test? ( test )" - -BDEPEND=" - dev-python/cython[${PYTHON_USEDEP}] -" - -python_test() { - ${EPYTHON} tests/test_creedsolo.py || die "creedsolo test failed with ${EPYTHON}" - ${EPYTHON} tests/test_reedsolo.py || die "reedsolo test failed with ${EPYTHON}" -}