Gentoo Archives: gentoo-commits

From: Andrey Grozin <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pygpgme/
Date: Mon, 08 Feb 2021 06:39:17
Message-Id: 1612766336.fd5a2df7fb5ade9bb41b49f85bf2b4244a748a78.grozin@gentoo
1 commit: fd5a2df7fb5ade9bb41b49f85bf2b4244a748a78
2 Author: Andrey Grozin <grozin <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 8 06:38:31 2021 +0000
4 Commit: Andrey Grozin <grozin <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 8 06:38:56 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd5a2df7
7
8 dev-python/pygpgme: python3_9 added
9
10 Package-Manager: Portage-3.0.14, Repoman-3.0.2
11 Signed-off-by: Andrey Grozin <grozin <AT> gentoo.org>
12
13 dev-python/pygpgme/pygpgme-0.3-r3.ebuild | 24 ++++++++++++++++++++++++
14 1 file changed, 24 insertions(+)
15
16 diff --git a/dev-python/pygpgme/pygpgme-0.3-r3.ebuild b/dev-python/pygpgme/pygpgme-0.3-r3.ebuild
17 new file mode 100644
18 index 00000000000..0f5f53075db
19 --- /dev/null
20 +++ b/dev-python/pygpgme/pygpgme-0.3-r3.ebuild
21 @@ -0,0 +1,24 @@
22 +# Copyright 1999-2021 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +PYTHON_COMPAT=( python3_{7..9} )
28 +
29 +inherit distutils-r1 flag-o-matic
30 +
31 +DESCRIPTION="A Python wrapper for the GPGME library"
32 +HOMEPAGE="https://launchpad.net/pygpgme https://pypi.org/project/pygpgme/"
33 +SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz"
34 +
35 +LICENSE="LGPL-2.1"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~arm64 ~x86"
38 +IUSE=""
39 +
40 +DEPEND="app-crypt/gpgme"
41 +RDEPEND="${DEPEND}"
42 +
43 +python_configure_all() {
44 + append-cflags $(gpgme-config --cflags)
45 +}