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: Tue, 07 Feb 2017 23:24:32
Message-Id: 1486509851.ecc78a3218a26ccef6920594ea5eaabaf8242e4a.mrueg@gentoo
1 commit: ecc78a3218a26ccef6920594ea5eaabaf8242e4a
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 7 23:23:16 2017 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 7 23:24:11 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecc78a32
7
8 app-crypt/acme: Version bump to 0.11.1
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 app-crypt/acme/Manifest | 1 +
13 app-crypt/acme/acme-0.11.1.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
14 2 files changed, 40 insertions(+)
15
16 diff --git a/app-crypt/acme/Manifest b/app-crypt/acme/Manifest
17 index f810c9d..f47da48 100644
18 --- a/app-crypt/acme/Manifest
19 +++ b/app-crypt/acme/Manifest
20 @@ -1,2 +1,3 @@
21 DIST certbot-0.10.1.tar.gz 823669 SHA256 c91b5fddb50dfd46545c12c1e96d1bb5e2794652c11421a6f5d9dad2bbca4d52 SHA512 4e45280b9cb6db3f8dcecfbf0cf64c990ea58d8607ed1aea9853c7248f8830301cc8685126eeb0d0c2ef0e23298c9070b291110d733e72867967bc9506900702 WHIRLPOOL ae08a9236adf69915c4a141106aa104563b1298f9fd3a32491ed8c45fddc9f32243154ba5bde9af7a8b74a95a1d2b7d337e4cbcc37f35ba997a7a50eb2f15200
22 +DIST certbot-0.11.1.tar.gz 817693 SHA256 89c45639746a79a22e32d86dbf9352cda1a4ea218aa1433d3aa61d90c715f52c SHA512 77ab66be8e9e16c3588f9a822db553c3ba8caf5bda91a810c0bccfd2bed144ccab06dae33551df474dba05a679045dc02966bc6f8facecdcba3f00c7b9773f0a WHIRLPOOL 5514e471ef9f7fd75321da7828927c34bec757bcd0c7477814da953286f6a0a414b5cf5969243df41100f172bb2f0b451019f7e1130123a2fac9fcd88a0abd99
23 DIST letsencrypt-0.1.0.tar.gz 524821 SHA256 1c1ac7b41e5e0fc0e41a7ef159ac9147a4aafff54453d57b519eb05bf52ade14 SHA512 6a786290362741ac97dcb4b59bc4cba56f3e8b5193bbc10be19086d462f76e6124259c42bac36afe9eb818f4bb9edec34f8e2a02bd8c855e3b35404f4ee81f96 WHIRLPOOL cdc41a3466de54ab8ddfeedea9935205d78383028769dcfbc876be0c2ef80c2d14f5d0e4a9c56a751163718f5ababb07848822989a060de7031ea8ebdf6424a0
24
25 diff --git a/app-crypt/acme/acme-0.11.1.ebuild b/app-crypt/acme/acme-0.11.1.ebuild
26 new file mode 100644
27 index 00000000..62ac4a9
28 --- /dev/null
29 +++ b/app-crypt/acme/acme-0.11.1.ebuild
30 @@ -0,0 +1,39 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=6
36 +PYTHON_COMPAT=(python{2_7,3_4,3_5})
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.4.1[${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 +}