Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/patatt/
Date: Sun, 05 Jun 2022 16:53:55
Message-Id: 1654448023.998d1ae41d7ee67322105d13d8d1fa5496d7812d.arthurzam@gentoo
1 commit: 998d1ae41d7ee67322105d13d8d1fa5496d7812d
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 5 16:15:44 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 5 16:53:43 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=998d1ae4
7
8 dev-python/patatt: Use PEP517
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/patatt/patatt-0.4.9-r1.ebuild | 19 +++++++++++++++++++
13 1 file changed, 19 insertions(+)
14
15 diff --git a/dev-python/patatt/patatt-0.4.9-r1.ebuild b/dev-python/patatt/patatt-0.4.9-r1.ebuild
16 new file mode 100644
17 index 000000000000..9d63be6a35cb
18 --- /dev/null
19 +++ b/dev-python/patatt/patatt-0.4.9-r1.ebuild
20 @@ -0,0 +1,19 @@
21 +# Copyright 2021-2022 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
25 +
26 +DISTUTILS_USE_PEP517=setuptools
27 +PYTHON_COMPAT=( python3_{8..10} )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="A simple library to add cryptographic attestation to patches sent via email"
32 +HOMEPAGE="https://pypi.org/project/patatt/"
33 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
34 +
35 +LICENSE="GPL-2+"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~x86"
38 +
39 +RDEPEND="dev-python/pynacl[${PYTHON_USEDEP}]"