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/certbot-apache/
Date: Sun, 02 Jul 2017 20:27:34
Message-Id: 1499027228.418bd36544480b78fbe24d7ccfe72bc387feecfe.mrueg@gentoo
1 commit: 418bd36544480b78fbe24d7ccfe72bc387feecfe
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 2 20:26:16 2017 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 2 20:27:08 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=418bd365
7
8 app-crypt/certbot-apache: Version bump to 0.15.0
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 app-crypt/certbot-apache/Manifest | 1 +
13 .../certbot-apache/certbot-apache-0.15.0.ebuild | 38 ++++++++++++++++++++++
14 2 files changed, 39 insertions(+)
15
16 diff --git a/app-crypt/certbot-apache/Manifest b/app-crypt/certbot-apache/Manifest
17 index b3219e14976..70a3f57dc7b 100644
18 --- a/app-crypt/certbot-apache/Manifest
19 +++ b/app-crypt/certbot-apache/Manifest
20 @@ -1 +1,2 @@
21 DIST certbot-0.14.1.tar.gz 851705 SHA256 7992fced742649e7b7668e4db7685de12248a4ffba66810cb336e9b6412e3567 SHA512 309e0e1d071960ae9a5cc4c9f965cc623b68d3d61f69282f21629514553a75af4d384d2c29fd3beee6eb8447c7b6651ce86c33c4f3916876fac7a91a08d2075d WHIRLPOOL f5a5be776f0a9bb9096a6e8dfa64942bd00583559cba64d3c1a5b991578bb8c7cac5076895e4291e1ec4c8fa767f026a90e0c1312c4f425ffcb5bf08bd0e9e40
22 +DIST certbot-0.15.0.tar.gz 942788 SHA256 87d306b1c013b472b8f548b38ccc476c125816435bb3b99e932fed09ac777296 SHA512 e884b34985a1128ce94d6b2be77af6ee86ded8b870e066f3f4bc22f78501f3f0a51060edcf75a11cd31dd525388adb8ccc4e2da0068b5b75be131d0fb0ca6844 WHIRLPOOL 01b172e8c7ac5d3678ee608b36d93f23943bf17f1e9c593cc1af3febcf0549b03961e69e537f099643dd9ee268497f76c2c18d8fa7a1d45753bc50e670375317
23
24 diff --git a/app-crypt/certbot-apache/certbot-apache-0.15.0.ebuild b/app-crypt/certbot-apache/certbot-apache-0.15.0.ebuild
25 new file mode 100644
26 index 00000000000..93bc9555195
27 --- /dev/null
28 +++ b/app-crypt/certbot-apache/certbot-apache-0.15.0.ebuild
29 @@ -0,0 +1,38 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
35 +
36 +if [[ ${PV} == 9999* ]]; then
37 + EGIT_REPO_URI="https://github.com/certbot/certbot.git"
38 + inherit git-r3
39 + S=${WORKDIR}/${P}/${PN}
40 +else
41 + SRC_URI="https://github.com/${PN%-apache}/${PN%-apache}/archive/v${PV}.tar.gz -> ${PN%-apache}-${PV}.tar.gz"
42 + KEYWORDS="~amd64"
43 + S=${WORKDIR}/${PN%-apache}-${PV}/${PN}
44 +fi
45 +
46 +inherit distutils-r1
47 +
48 +DESCRIPTION="Apache plugin for certbot (Let's Encrypt Client)"
49 +HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/"
50 +
51 +LICENSE="Apache-2.0"
52 +SLOT="0"
53 +IUSE="test"
54 +
55 +RDEPEND="~app-crypt/certbot-${PV}[${PYTHON_USEDEP}]
56 + ~app-crypt/acme-${PV}[${PYTHON_USEDEP}]
57 + dev-python/mock[${PYTHON_USEDEP}]
58 + dev-python/python-augeas[${PYTHON_USEDEP}]
59 + dev-python/zope-component[${PYTHON_USEDEP}]
60 + dev-python/zope-interface[${PYTHON_USEDEP}]"
61 +DEPEND="test? ( ${RDEPEND}
62 + dev-python/nose[${PYTHON_USEDEP}] )
63 + dev-python/setuptools[${PYTHON_USEDEP}]"
64 +
65 +python_test() {
66 + nosetests || die
67 +}