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 78142158091 for ; Thu, 9 Jun 2022 07:23:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6096CE087E; Thu, 9 Jun 2022 07:23:23 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4B0A0E087E for ; Thu, 9 Jun 2022 07:23:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 21F213412B0 for ; Thu, 9 Jun 2022 07:23:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7DD204FA for ; Thu, 9 Jun 2022 07:23:20 +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: <1654759393.1f050da9bd40bd77308190bf4fe42b412482f3d9.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jaraco-test/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jaraco-test/Manifest dev-python/jaraco-test/jaraco-test-5.1.0.ebuild dev-python/jaraco-test/metadata.xml X-VCS-Directories: dev-python/jaraco-test/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1f050da9bd40bd77308190bf4fe42b412482f3d9 X-VCS-Branch: master Date: Thu, 9 Jun 2022 07:23:20 +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: c3208b54-2c53-4af4-aab5-e77e0665fcd1 X-Archives-Hash: a719a6eaa1bfbc9e980d9c65af635775 commit: 1f050da9bd40bd77308190bf4fe42b412482f3d9 Author: Michał Górny gentoo org> AuthorDate: Thu Jun 9 06:39:13 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Jun 9 07:23:13 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f050da9 dev-python/jaraco-test: New package, v5.1.0 New dep of dev-python/cssutils. Signed-off-by: Michał Górny gentoo.org> dev-python/jaraco-test/Manifest | 1 + dev-python/jaraco-test/jaraco-test-5.1.0.ebuild | 32 +++++++++++++++++++++++++ dev-python/jaraco-test/metadata.xml | 13 ++++++++++ 3 files changed, 46 insertions(+) diff --git a/dev-python/jaraco-test/Manifest b/dev-python/jaraco-test/Manifest new file mode 100644 index 000000000000..1372386c1643 --- /dev/null +++ b/dev-python/jaraco-test/Manifest @@ -0,0 +1 @@ +DIST jaraco.test-5.1.0.tar.gz 6700 BLAKE2B 69ac08ab7e1c8aeff45d25483f2bb2648ad57a5977dbff8aab844f114a15f054b782ad5b424d9baa805ab80fc7483362dc97320965ef0abe86573b1e7f40b97b SHA512 d1d93eab85068fcba94530df50da9221b7f574e58b2c4ed519c8c4dec7231aa982d588e29137418226f23e0f94bd98f47c0859cf14d7a58c1683ac8ccc24d900 diff --git a/dev-python/jaraco-test/jaraco-test-5.1.0.ebuild b/dev-python/jaraco-test/jaraco-test-5.1.0.ebuild new file mode 100644 index 000000000000..a8d490201e4d --- /dev/null +++ b/dev-python/jaraco-test/jaraco-test-5.1.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..11} pypy3 ) + +inherit distutils-r1 + +MY_P=${P/-/.} +DESCRIPTION="Testing support by jaraco" +HOMEPAGE=" + https://github.com/jaraco/jaraco.test/ + https://pypi.org/project/jaraco.test/ +" +SRC_URI="mirror://pypi/${PN:0:1}/${PN/-/.}/${MY_P}.tar.gz" +S=${WORKDIR}/${MY_P} + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + dev-python/jaraco-collections[${PYTHON_USEDEP}] + dev-python/jaraco-context[${PYTHON_USEDEP}] + dev-python/jaraco-functools[${PYTHON_USEDEP}] + dev-python/more-itertools[${PYTHON_USEDEP}] + dev-python/toml[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest diff --git a/dev-python/jaraco-test/metadata.xml b/dev-python/jaraco-test/metadata.xml new file mode 100644 index 000000000000..4e41c7489006 --- /dev/null +++ b/dev-python/jaraco-test/metadata.xml @@ -0,0 +1,13 @@ + + + + + python@gentoo.org + Python + + + + jaraco.test + jaraco/jaraco.test + +