Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-gnupg/
Date: Sun, 04 Feb 2018 04:11:58
Message-Id: 1517717509.b11999d9269c2fc924839e95f0834e64d0fec9c6.blueness@gentoo
1 commit: b11999d9269c2fc924839e95f0834e64d0fec9c6
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 4 04:11:30 2018 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 4 04:11:49 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b11999d9
7
8 dev-python/python-gnupg: version bump to 0.4.1
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 dev-python/python-gnupg/Manifest | 1 +
13 dev-python/python-gnupg/python-gnupg-0.4.1.ebuild | 27 +++++++++++++++++++++++
14 2 files changed, 28 insertions(+)
15
16 diff --git a/dev-python/python-gnupg/Manifest b/dev-python/python-gnupg/Manifest
17 index c9c71e40830..0e43d665518 100644
18 --- a/dev-python/python-gnupg/Manifest
19 +++ b/dev-python/python-gnupg/Manifest
20 @@ -1 +1,2 @@
21 DIST python-gnupg-0.4.0.tar.gz 43987 BLAKE2B 59e72f894c5d554ba2a7c348ad3625500798ad6ac18332a3bb668b42559f52b58e3cd0f8b79ef1a99f37e796b48169d0bf36414e938e9039784cede4303cbb03 SHA512 f486ec97aee01cf46d055421211ff5704093a382155043b7ced6f809dc15d7669d5869038a1b26c5f1831076d85c929d781bc22e35ab293a14bc6e2f5f27fa32
22 +DIST python-gnupg-0.4.1.tar.gz 44534 BLAKE2B 0b58312b9f094b29f7009bb7a44ea3607be826ae2fda958dae0ba9dd5a2d7f81843fe23a6fe336b9df85c059e5b114787dab372df42b14b83cb73fb02abee919 SHA512 0920a1de4d98a745f7747280672975db04c40b59ea4436745cdbefa86a0c88bfdc086d6dd312c82a0a9e9f8cafb5651f8e17d86e0ee37282b5fc36e7ac8d1a1e
23
24 diff --git a/dev-python/python-gnupg/python-gnupg-0.4.1.ebuild b/dev-python/python-gnupg/python-gnupg-0.4.1.ebuild
25 new file mode 100644
26 index 00000000000..505d46b3c06
27 --- /dev/null
28 +++ b/dev-python/python-gnupg/python-gnupg-0.4.1.ebuild
29 @@ -0,0 +1,27 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +PYTHON_COMPAT=( python{2_7,3_4,3_5} pypy )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Python wrapper for GNU Privacy Guard"
40 +HOMEPAGE="http://pythonhosted.org/python-gnupg/ https://github.com/vsajip/python-gnupg/"
41 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 +
43 +LICENSE="BSD"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
46 +
47 +RDEPEND="app-crypt/gnupg"
48 +DEPEND="${RDEPEND}"
49 +
50 +# Tests are still hanging.
51 +RESTRICT="test"
52 +
53 +python_test() {
54 + # Note; 1 test fails under pypy only
55 + "${PYTHON}" test_gnupg.py || die "Tests fail with ${EPYTHON}"
56 +}