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 0BB9C158021 for ; Wed, 12 Oct 2022 20:44:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D97A2E082B; Wed, 12 Oct 2022 20:44:50 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 C4DA6E08FB for ; Wed, 12 Oct 2022 20:44:50 +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 E1F2634127C for ; Wed, 12 Oct 2022 20:44:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 09CF6617 for ; Wed, 12 Oct 2022 20:44:48 +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: <1665607460.f5e17b540ea03f4c84a5240c8ba42ccc5b3c84e8.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tavalidate/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/tavalidate/Manifest dev-python/tavalidate/metadata.xml dev-python/tavalidate/tavalidate-0.0.6.ebuild X-VCS-Directories: dev-python/tavalidate/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f5e17b540ea03f4c84a5240c8ba42ccc5b3c84e8 X-VCS-Branch: master Date: Wed, 12 Oct 2022 20:44:48 +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: 926869aa-556f-43ad-8bbe-b03cbfb596f2 X-Archives-Hash: 4e0058ab3514ccd0c985a7743991a40a commit: f5e17b540ea03f4c84a5240c8ba42ccc5b3c84e8 Author: Matt Jolly footclan ninja> AuthorDate: Wed Sep 28 13:27:23 2022 +0000 Commit: Sam James gentoo org> CommitDate: Wed Oct 12 20:44:20 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5e17b54 dev-python/tavalidate: new package, add 0.0.6 Signed-off-by: Matt Jolly footclan.ninja> Signed-off-by: Sam James gentoo.org> dev-python/tavalidate/Manifest | 1 + dev-python/tavalidate/metadata.xml | 16 ++++++++++++++++ dev-python/tavalidate/tavalidate-0.0.6.ebuild | 18 ++++++++++++++++++ 3 files changed, 35 insertions(+) diff --git a/dev-python/tavalidate/Manifest b/dev-python/tavalidate/Manifest new file mode 100644 index 000000000000..5f7c460f4188 --- /dev/null +++ b/dev-python/tavalidate/Manifest @@ -0,0 +1 @@ +DIST tavalidate-0.0.6.tar.gz 4561 BLAKE2B 85e923888cf419e7c58f864e1f651d822ee1d52711f12730831d95fe71efc3a7549963983239ef3f7d2babd5c8a624f2b6a55361732e6ef6401c0df654096bb1 SHA512 7651ba2e28d5ff74ce506e1184c20b149c018ba75c5e02631da5b0efa8c48800a3315d74f48d7ba4b5368cf4be445f589099f0d788005c61161a31047c464103 diff --git a/dev-python/tavalidate/metadata.xml b/dev-python/tavalidate/metadata.xml new file mode 100644 index 000000000000..9656208a7595 --- /dev/null +++ b/dev-python/tavalidate/metadata.xml @@ -0,0 +1,16 @@ + + + + + Matt.Jolly@footclan.ninja + Matt Jolly + + + proxy-maint@gentoo.org + Proxy Maintainers + + + sohoffice/tavalidate + tavalidate + + diff --git a/dev-python/tavalidate/tavalidate-0.0.6.ebuild b/dev-python/tavalidate/tavalidate-0.0.6.ebuild new file mode 100644 index 000000000000..628bb3e90add --- /dev/null +++ b/dev-python/tavalidate/tavalidate-0.0.6.ebuild @@ -0,0 +1,18 @@ +# 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..11} ) +inherit distutils-r1 + +DESCRIPTION="Utities to validate Tavern responses" +HOMEPAGE="https://github.com/sohoffice/tavalidate" +SRC_URI="https://files.pythonhosted.org/packages/source/t/tavalidate/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +distutils_enable_tests pytest