Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/acme/
Date: Sun, 07 May 2017 01:02:20
Message-Id: 1494118846.3ca1a9b5d3a1a496dd8523c652754a7fecc839cf.mrueg@gentoo
1 commit: 3ca1a9b5d3a1a496dd8523c652754a7fecc839cf
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 7 01:00:46 2017 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Sun May 7 01:00:46 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ca1a9b5
7
8 app-crypt/acme: Version bump to 0.14.0
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.1
11
12 app-crypt/acme/Manifest | 1 +
13 app-crypt/acme/acme-0.14.0.ebuild | 38 ++++++++++++++++++++++++++++++++++++++
14 2 files changed, 39 insertions(+)
15
16 diff --git a/app-crypt/acme/Manifest b/app-crypt/acme/Manifest
17 index a3df57247df..9b3d1240163 100644
18 --- a/app-crypt/acme/Manifest
19 +++ b/app-crypt/acme/Manifest
20 @@ -1,3 +1,4 @@
21 DIST certbot-0.11.1.tar.gz 817693 SHA256 89c45639746a79a22e32d86dbf9352cda1a4ea218aa1433d3aa61d90c715f52c SHA512 77ab66be8e9e16c3588f9a822db553c3ba8caf5bda91a810c0bccfd2bed144ccab06dae33551df474dba05a679045dc02966bc6f8facecdcba3f00c7b9773f0a WHIRLPOOL 5514e471ef9f7fd75321da7828927c34bec757bcd0c7477814da953286f6a0a414b5cf5969243df41100f172bb2f0b451019f7e1130123a2fac9fcd88a0abd99
22 DIST certbot-0.13.0.tar.gz 827956 SHA256 ef23822043435261750e7a9c1211601b65f9f9a5e634cfbf5011632b0a62edd4 SHA512 c0bc38b48f0c9731236bba9f4c05da960bfc038be629c5f4c63e80812595c6e0fb679ff901a8bf160efa119b532b5a629435ed595e3b1049f7a15f2c2dd8eb40 WHIRLPOOL 9c0217042c9864b5b0a621aa9a478f1943eced10f68cb913d2b2874fd96774969266e424be08ea345167bb9994f9b0ae2c0557a5c63eb1d37f2b09171bd87b49
23 +DIST certbot-0.14.0.tar.gz 850922 SHA256 f5a7ade95303a39750db287ac039dd3ee806acdd5c3ee2403300dcfff9587b18 SHA512 da278e1ac75464c2dfe3d7d649c1010468f5c873f366fc308a9e2ba5b1210f2d03e07d84ffd7a499d9a39d3f66518e7ca87964c1ef121173d3172a0803ad02c5 WHIRLPOOL babb2a8ef69d48e75c053a030d85475f3c394f6897264f151f12436965f85753669541285ad68ab038d56d96cd5522ce21c20b34472781e0606b1892949a59fd
24 DIST letsencrypt-0.1.0.tar.gz 524821 SHA256 1c1ac7b41e5e0fc0e41a7ef159ac9147a4aafff54453d57b519eb05bf52ade14 SHA512 6a786290362741ac97dcb4b59bc4cba56f3e8b5193bbc10be19086d462f76e6124259c42bac36afe9eb818f4bb9edec34f8e2a02bd8c855e3b35404f4ee81f96 WHIRLPOOL cdc41a3466de54ab8ddfeedea9935205d78383028769dcfbc876be0c2ef80c2d14f5d0e4a9c56a751163718f5ababb07848822989a060de7031ea8ebdf6424a0
25
26 diff --git a/app-crypt/acme/acme-0.14.0.ebuild b/app-crypt/acme/acme-0.14.0.ebuild
27 new file mode 100644
28 index 00000000000..bf3eed8aaa7
29 --- /dev/null
30 +++ b/app-crypt/acme/acme-0.14.0.ebuild
31 @@ -0,0 +1,38 @@
32 +# Copyright 1999-2017 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
37 +
38 +if [[ ${PV} == 9999* ]]; then
39 + EGIT_REPO_URI="https://github.com/certbot/certbot.git"
40 + inherit git-r3
41 + S=${WORKDIR}/${P}/${PN}
42 +else
43 + SRC_URI="https://github.com/certbot/certbot/archive/v${PV}.tar.gz -> certbot-${PV}.tar.gz"
44 + KEYWORDS="~amd64 ~arm ~x86"
45 + S=${WORKDIR}/certbot-${PV}/acme
46 +fi
47 +
48 +inherit distutils-r1
49 +
50 +DESCRIPTION="An implementation of the ACME protocol"
51 +HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/"
52 +
53 +LICENSE="Apache-2.0"
54 +SLOT="0"
55 +IUSE="test"
56 +
57 +RDEPEND=">=dev-python/cryptography-0.8[${PYTHON_USEDEP}]
58 + dev-python/mock[${PYTHON_USEDEP}]
59 + >=dev-python/pyopenssl-0.13[${PYTHON_USEDEP}]
60 + dev-python/pyrfc3339[${PYTHON_USEDEP}]
61 + dev-python/pytz[${PYTHON_USEDEP}]
62 + >=dev-python/requests-2.10[${PYTHON_USEDEP}]
63 + dev-python/six[${PYTHON_USEDEP}]"
64 +DEPEND="test? ( ${RDEPEND} dev-python/nose[${PYTHON_USEDEP}] )
65 + >=dev-python/setuptools-1.0[${PYTHON_USEDEP}]"
66 +
67 +python_test() {
68 + nosetests -w ${PN} || die
69 +}