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 D1E91158086 for ; Thu, 2 Dec 2021 04:06:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 23778E08A0; Thu, 2 Dec 2021 04:06:39 +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 076A5E08A0 for ; Thu, 2 Dec 2021 04:06:39 +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 B3FB6342CEE for ; Thu, 2 Dec 2021 04:06:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C555F200 for ; Thu, 2 Dec 2021 04:06:35 +0000 (UTC) From: "Jason A. Donenfeld" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jason A. Donenfeld" Message-ID: <1638417980.a5545eedc0c8ccd79ef8a1ea4c6b5d8edb3ff8f2.zx2c4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/patatt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/patatt/Manifest dev-python/patatt/metadata.xml dev-python/patatt/patatt-0.4.9.ebuild X-VCS-Directories: dev-python/patatt/ X-VCS-Committer: zx2c4 X-VCS-Committer-Name: Jason A. Donenfeld X-VCS-Revision: a5545eedc0c8ccd79ef8a1ea4c6b5d8edb3ff8f2 X-VCS-Branch: master Date: Thu, 2 Dec 2021 04:06:35 +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: 3bffbf68-14d3-4f9a-945b-1c95eb3d9989 X-Archives-Hash: e9838d2ee68b7f550787c658efa49622 commit: a5545eedc0c8ccd79ef8a1ea4c6b5d8edb3ff8f2 Author: Jason A. Donenfeld gentoo org> AuthorDate: Thu Dec 2 02:44:11 2021 +0000 Commit: Jason A. Donenfeld gentoo org> CommitDate: Thu Dec 2 04:06:20 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5545eed dev-python/patatt: import patatt for use in b4 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Jason A. Donenfeld gentoo.org> dev-python/patatt/Manifest | 1 + dev-python/patatt/metadata.xml | 11 +++++++++++ dev-python/patatt/patatt-0.4.9.ebuild | 20 ++++++++++++++++++++ 3 files changed, 32 insertions(+) diff --git a/dev-python/patatt/Manifest b/dev-python/patatt/Manifest new file mode 100644 index 000000000000..b644ed8bd4db --- /dev/null +++ b/dev-python/patatt/Manifest @@ -0,0 +1 @@ +DIST patatt-0.4.9.tar.gz 34316 BLAKE2B fd731f4e8932da610f31e5176e4b9bcfe8433366b61691fc545d55fdd89675ddd17a695408391528fd213e755e1d421d21551ccbc4aa96ffccc9b62213c17aed SHA512 d4280dd944cc774fa34228a50aa1573a27df2da5cb3a22dba2c3cefe4797ae902810904da776dbd89ad343b3886b6a0015996082307f83577e6a46ac533ba0d8 diff --git a/dev-python/patatt/metadata.xml b/dev-python/patatt/metadata.xml new file mode 100644 index 000000000000..79cb22282e18 --- /dev/null +++ b/dev-python/patatt/metadata.xml @@ -0,0 +1,11 @@ + + + + + zx2c4@gentoo.org + Jason A. Donenfeld + + + patatt + + diff --git a/dev-python/patatt/patatt-0.4.9.ebuild b/dev-python/patatt/patatt-0.4.9.ebuild new file mode 100644 index 000000000000..daae688c710b --- /dev/null +++ b/dev-python/patatt/patatt-0.4.9.ebuild @@ -0,0 +1,20 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_SETUPTOOLS=rdepend +PYTHON_COMPAT=( python3_{7,8,9} ) + +inherit distutils-r1 + +DESCRIPTION="A simple library to add cryptographic attestation to patches sent via email" +HOMEPAGE="https://pypi.org/project/patatt/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-python/pynacl[${PYTHON_USEDEP}]"