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 EE59E15808C for ; Fri, 18 Mar 2022 11:41:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8D3B2E0821; Fri, 18 Mar 2022 11:41:51 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CFED7E081E for ; Fri, 18 Mar 2022 11:41:50 +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 0BF4634362A for ; Fri, 18 Mar 2022 11:41:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7DA84AF for ; Fri, 18 Mar 2022 11:41:47 +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: <1647603059.5f50ca4f4d03780e75368168997af2f08ec52ff7.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/crcmod/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/crcmod/crcmod-1.7-r4.ebuild X-VCS-Directories: dev-python/crcmod/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5f50ca4f4d03780e75368168997af2f08ec52ff7 X-VCS-Branch: master Date: Fri, 18 Mar 2022 11:41:47 +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: 4a5073b1-be06-483f-8b05-a1bba18264f1 X-Archives-Hash: a6757d08b34d0bcc6634e6c1128e4fa7 commit: 5f50ca4f4d03780e75368168997af2f08ec52ff7 Author: Michał Górny gentoo org> AuthorDate: Fri Mar 18 11:30:59 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Mar 18 11:30:59 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f50ca4f dev-python/crcmod: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/crcmod/crcmod-1.7-r4.ebuild | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/dev-python/crcmod/crcmod-1.7-r4.ebuild b/dev-python/crcmod/crcmod-1.7-r4.ebuild deleted file mode 100644 index 2f430f58105b..000000000000 --- a/dev-python/crcmod/crcmod-1.7-r4.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_SETUPTOOLS=no -PYTHON_COMPAT=( python3_{8..10} ) - -inherit distutils-r1 - -DESCRIPTION="Python CRC Generator module" -HOMEPAGE="http://crcmod.sourceforge.net/" -SRC_URI="mirror://sourceforge/crcmod/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 arm x86" - -DOCS=( changelog test/examples.py ) - -python_test() { - "${EPYTHON}" test/test_crcmod.py -v || die "Tests fail with ${EPYTHON}" -}