Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-gnupg/
Date: Sat, 28 Oct 2017 21:28:52
Message-Id: 1509226122.e363e427e8f7a291e8b1ec886682e5cb7d7c9ed6.monsieurp@gentoo
1 commit: e363e427e8f7a291e8b1ec886682e5cb7d7c9ed6
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 28 21:28:30 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 28 21:28:42 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e363e427
7
8 dev-python/python-gnupg: version bump.
9
10 Closes: https://bugs.gentoo.org/622224
11 Package-Manager: Portage-2.3.8, Repoman-2.3.3
12
13 dev-python/python-gnupg/Manifest | 1 +
14 dev-python/python-gnupg/python-gnupg-0.4.0.ebuild | 27 +++++++++++++++++++++++
15 2 files changed, 28 insertions(+)
16
17 diff --git a/dev-python/python-gnupg/Manifest b/dev-python/python-gnupg/Manifest
18 index 87f7c5e9c76..00e1e45c230 100644
19 --- a/dev-python/python-gnupg/Manifest
20 +++ b/dev-python/python-gnupg/Manifest
21 @@ -1 +1,2 @@
22 DIST python-gnupg-0.3.8.tar.gz 38993 SHA256 3872ced77d69203f31817107b324b0dd33d4437a330dc58eca140c8758d26b5a SHA512 128ba1f89e8baf0d1ae53153d7cbe73bfc99617a1aadfd9a02e2e2e2c5f0bb9c7482023bf54f32989e92cc14a9eb32325e4c358c63bce48a70a78d068103ed4f WHIRLPOOL 9080ceeade7e4c614a532eccbd4e9818d62233a6d1751acb159e8e0f13c71edf177d2c1592f0685c7e4139ba59826b8cb13864c11c37e33445a176c693d84f52
23 +DIST python-gnupg-0.4.0.tar.gz 43987 SHA256 e6aaf344852fa11824e4151ab63326a07dd0ef977dddffcce43669a79842a8f9 SHA512 f486ec97aee01cf46d055421211ff5704093a382155043b7ced6f809dc15d7669d5869038a1b26c5f1831076d85c929d781bc22e35ab293a14bc6e2f5f27fa32 WHIRLPOOL cdb34fe95f147fab286d1bcf0574ed186a4557f6cd866a10a1a37076a218e586b4b66cdd3dba754acfc7cad140c583b93e3779986d3408b4148c84f89e8ca85a
24
25 diff --git a/dev-python/python-gnupg/python-gnupg-0.4.0.ebuild b/dev-python/python-gnupg/python-gnupg-0.4.0.ebuild
26 new file mode 100644
27 index 00000000000..72c13fabebb
28 --- /dev/null
29 +++ b/dev-python/python-gnupg/python-gnupg-0.4.0.ebuild
30 @@ -0,0 +1,27 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +PYTHON_COMPAT=( python{2_7,3_4,3_5} pypy )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Python wrapper for GNU Privacy Guard"
41 +HOMEPAGE="http://pythonhosted.org/python-gnupg/ https://github.com/vsajip/python-gnupg/"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="BSD"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
47 +
48 +RDEPEND="app-crypt/gnupg"
49 +DEPEND="${RDEPEND}"
50 +
51 +# They hung. We haven't figured out why yet.
52 +RESTRICT="test"
53 +
54 +python_test() {
55 + # Note; 1 test fails under pypy only
56 + "${PYTHON}" test_gnupg.py || die "Tests fail with ${EPYTHON}"
57 +}