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 9D82D158088 for ; Sat, 29 Jan 2022 12:35:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7F7F82BC00C; Sat, 29 Jan 2022 12:35:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4CC742BC00B for ; Sat, 29 Jan 2022 12:35:25 +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 216A6342DD5 for ; Sat, 29 Jan 2022 12:35:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 550F7275 for ; Sat, 29 Jan 2022 12:35:22 +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: <1643459708.f25e0ee7b9e533454b70fde9933bcd1638a103c5.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-r5.ebuild X-VCS-Directories: dev-python/crcmod/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: f25e0ee7b9e533454b70fde9933bcd1638a103c5 X-VCS-Branch: master Date: Sat, 29 Jan 2022 12:35:22 +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: fb887993-651c-437a-bd21-2b6b355c4b3e X-Archives-Hash: ebf89673e09cfd8b68a88d6b1aae8cf0 commit: f25e0ee7b9e533454b70fde9933bcd1638a103c5 Author: Michał Górny gentoo org> AuthorDate: Sat Jan 29 12:22:01 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jan 29 12:35:08 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f25e0ee7 dev-python/crcmod: Switch to PEP 517 build Signed-off-by: Michał Górny gentoo.org> dev-python/crcmod/crcmod-1.7-r5.ebuild | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/dev-python/crcmod/crcmod-1.7-r5.ebuild b/dev-python/crcmod/crcmod-1.7-r5.ebuild new file mode 100644 index 000000000000..0dbac02cd773 --- /dev/null +++ b/dev-python/crcmod/crcmod-1.7-r5.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +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}" +}