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 3403513835A for ; Wed, 9 Sep 2020 01:03:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 32B54E08A0; Wed, 9 Sep 2020 01:03:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 1998CE08A0 for ; Wed, 9 Sep 2020 01:03:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 9290D340F3A for ; Wed, 9 Sep 2020 01:03:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 18D3233F for ; Wed, 9 Sep 2020 01:03:10 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1599613385.1de3f18466379593f24c382f66e069dc9ba1b181.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cram/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/cram/cram-0.7-r1.ebuild X-VCS-Directories: dev-util/cram/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1de3f18466379593f24c382f66e069dc9ba1b181 X-VCS-Branch: master Date: Wed, 9 Sep 2020 01:03:10 +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: 2718b8ff-e709-4e2d-a7a8-19dd5180e7da X-Archives-Hash: 86704050e03e5eae96710ef0a3fea728 commit: 1de3f18466379593f24c382f66e069dc9ba1b181 Author: Tomáš Mózes gmail com> AuthorDate: Wed Sep 2 11:55:29 2020 +0000 Commit: Sam James gentoo org> CommitDate: Wed Sep 9 01:03:05 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1de3f184 dev-util/cram: add python3.9 support Signed-off-by: Tomáš Mózes gmail.com> Signed-off-by: Sam James gentoo.org> dev-util/cram/cram-0.7-r1.ebuild | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/dev-util/cram/cram-0.7-r1.ebuild b/dev-util/cram/cram-0.7-r1.ebuild new file mode 100644 index 00000000000..008e8aa0cfd --- /dev/null +++ b/dev-util/cram/cram-0.7-r1.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Functional testing framework for command line applications" +HOMEPAGE="https://bitheap.org/cram/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~x86" + +python_test() { + distutils_install_for_testing + "${EPYTHON}" "${TEST_DIR}"/scripts/cram tests || die "Tests fail with ${EPYTHON}" +}