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: Thu, 23 Apr 2020 05:49:04
Message-Id: 1587620898.95c16107739e71bc5934f354f3c76dda7306b980.grozin@gentoo
1 commit: 95c16107739e71bc5934f354f3c76dda7306b980
2 Author: Andrey Grozin <grozin <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 23 05:48:18 2020 +0000
4 Commit: Andrey Grozin <grozin <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 23 05:48:18 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95c16107
7
8 dev-python/pygpgme: add python3_8
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Andrey Grozin <grozin <AT> gentoo.org>
12
13 dev-python/pygpgme/pygpgme-0.3-r2.ebuild | 24 ++++++++++++++++++++++++
14 1 file changed, 24 insertions(+)
15
16 diff --git a/dev-python/pygpgme/pygpgme-0.3-r2.ebuild b/dev-python/pygpgme/pygpgme-0.3-r2.ebuild
17 new file mode 100644
18 index 00000000000..feeddfd94ea
19 --- /dev/null
20 +++ b/dev-python/pygpgme/pygpgme-0.3-r2.ebuild
21 @@ -0,0 +1,24 @@
22 +# Copyright 1999-2020 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +PYTHON_COMPAT=( python{2_7,3_6,3_7,3_8} )
28 +
29 +inherit distutils-r1 flag-o-matic
30 +
31 +DESCRIPTION="A Python wrapper for the GPGME library"
32 +HOMEPAGE="https://launchpad.net/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 +}