Gentoo Archives: gentoo-commits

From: Matt Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/certbot-apache/, app-crypt/certbot/, app-crypt/certbot-nginx/, ...
Date: Thu, 05 Apr 2018 05:00:32
Message-Id: 1522904362.2b5e0c95f6393acdf25683dea6ef7c797721cde3.prometheanfire@gentoo
1 commit: 2b5e0c95f6393acdf25683dea6ef7c797721cde3
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 5 04:59:22 2018 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 5 04:59:22 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b5e0c95
7
8 app-crypt/{acme,certbot,certbot-apache,certbot-nginx}: 0.20.0 cleanup
9
10 app-crypt/acme/acme-0.20.0.ebuild | 47 -------------------
11 .../certbot-apache/certbot-apache-0.20.0.ebuild | 38 ---------------
12 .../certbot-nginx/certbot-nginx-0.20.0.ebuild | 34 --------------
13 app-crypt/certbot/certbot-0.20.0.ebuild | 54 ----------------------
14 4 files changed, 173 deletions(-)
15
16 diff --git a/app-crypt/acme/acme-0.20.0.ebuild b/app-crypt/acme/acme-0.20.0.ebuild
17 deleted file mode 100644
18 index 91d9aa0f2d6..00000000000
19 --- a/app-crypt/acme/acme-0.20.0.ebuild
20 +++ /dev/null
21 @@ -1,47 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
27 -
28 -if [[ ${PV} == 9999* ]]; then
29 - EGIT_REPO_URI="https://github.com/certbot/certbot.git"
30 - inherit git-r3
31 - S=${WORKDIR}/${P}/${PN}
32 -else
33 - SRC_URI="https://github.com/certbot/certbot/archive/v${PV}.tar.gz -> certbot-${PV}.tar.gz"
34 - KEYWORDS="amd64 ~arm ~ppc64 x86"
35 - S=${WORKDIR}/certbot-${PV}/acme
36 -fi
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="An implementation of the ACME protocol"
41 -HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/"
42 -
43 -LICENSE="Apache-2.0"
44 -SLOT="0"
45 -IUSE="test"
46 -
47 -RDEPEND="
48 - >=dev-python/cryptography-0.8[${PYTHON_USEDEP}]
49 - dev-python/mock[${PYTHON_USEDEP}]
50 - >=dev-python/pyopenssl-0.13[${PYTHON_USEDEP}]
51 - dev-python/pyrfc3339[${PYTHON_USEDEP}]
52 - dev-python/pytz[${PYTHON_USEDEP}]
53 - >=dev-python/requests-2.10[${PYTHON_USEDEP}]
54 - >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
55 - !dev-python/josepy[${PYTHON_USEDEP}]
56 -"
57 -DEPEND="
58 - test? (
59 - ${RDEPEND}
60 - dev-python/pytest[${PYTHON_USEDEP}]
61 - dev-python/pytest-xdist[${PYTHON_USEDEP}]
62 - )
63 - >=dev-python/setuptools-1.0[${PYTHON_USEDEP}]
64 -"
65 -
66 -python_test() {
67 - nosetests -w ${PN} || die
68 -}
69
70 diff --git a/app-crypt/certbot-apache/certbot-apache-0.20.0.ebuild b/app-crypt/certbot-apache/certbot-apache-0.20.0.ebuild
71 deleted file mode 100644
72 index d49cea75397..00000000000
73 --- a/app-crypt/certbot-apache/certbot-apache-0.20.0.ebuild
74 +++ /dev/null
75 @@ -1,38 +0,0 @@
76 -# Copyright 1999-2018 Gentoo Foundation
77 -# Distributed under the terms of the GNU General Public License v2
78 -
79 -EAPI=6
80 -PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
81 -
82 -if [[ ${PV} == 9999* ]]; then
83 - EGIT_REPO_URI="https://github.com/certbot/certbot.git"
84 - inherit git-r3
85 - S=${WORKDIR}/${P}/${PN}
86 -else
87 - SRC_URI="https://github.com/${PN%-apache}/${PN%-apache}/archive/v${PV}.tar.gz -> ${PN%-apache}-${PV}.tar.gz"
88 - KEYWORDS="amd64 x86"
89 - S=${WORKDIR}/${PN%-apache}-${PV}/${PN}
90 -fi
91 -
92 -inherit distutils-r1
93 -
94 -DESCRIPTION="Apache plugin for certbot (Let's Encrypt Client)"
95 -HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/"
96 -
97 -LICENSE="Apache-2.0"
98 -SLOT="0"
99 -IUSE="test"
100 -
101 -RDEPEND="~app-crypt/certbot-${PV}[${PYTHON_USEDEP}]
102 - ~app-crypt/acme-${PV}[${PYTHON_USEDEP}]
103 - dev-python/mock[${PYTHON_USEDEP}]
104 - dev-python/python-augeas[${PYTHON_USEDEP}]
105 - dev-python/zope-component[${PYTHON_USEDEP}]
106 - dev-python/zope-interface[${PYTHON_USEDEP}]"
107 -DEPEND="test? ( ${RDEPEND}
108 - dev-python/nose[${PYTHON_USEDEP}] )
109 - dev-python/setuptools[${PYTHON_USEDEP}]"
110 -
111 -python_test() {
112 - nosetests || die
113 -}
114
115 diff --git a/app-crypt/certbot-nginx/certbot-nginx-0.20.0.ebuild b/app-crypt/certbot-nginx/certbot-nginx-0.20.0.ebuild
116 deleted file mode 100644
117 index d8d4c6b6a24..00000000000
118 --- a/app-crypt/certbot-nginx/certbot-nginx-0.20.0.ebuild
119 +++ /dev/null
120 @@ -1,34 +0,0 @@
121 -# Copyright 1999-2018 Gentoo Foundation
122 -# Distributed under the terms of the GNU General Public License v2
123 -
124 -EAPI=6
125 -PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
126 -
127 -if [[ ${PV} == 9999* ]]; then
128 - EGIT_REPO_URI="https://github.com/certbot/certbot.git"
129 - inherit git-r3
130 - S=${WORKDIR}/${P}/${PN}
131 -else
132 - SRC_URI="https://github.com/${PN%-nginx}/${PN%-nginx}/archive/v${PV}.tar.gz -> ${PN%-nginx}-${PV}.tar.gz"
133 - KEYWORDS="amd64 ~arm x86"
134 - S=${WORKDIR}/${PN%-nginx}-${PV}/${PN}
135 -fi
136 -
137 -inherit distutils-r1
138 -
139 -DESCRIPTION="Nginx plugin for certbot (Let's Encrypt Client)"
140 -HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/"
141 -
142 -LICENSE="Apache-2.0"
143 -SLOT="0"
144 -IUSE=""
145 -
146 -CDEPEND=">=dev-python/setuptools-1.0[${PYTHON_USEDEP}]"
147 -RDEPEND="${CDEPEND}
148 - ~app-crypt/certbot-${PV}[${PYTHON_USEDEP}]
149 - ~app-crypt/acme-${PV}[${PYTHON_USEDEP}]
150 - dev-python/mock[${PYTHON_USEDEP}]
151 - dev-python/pyopenssl[${PYTHON_USEDEP}]
152 - >=dev-python/pyparsing-1.5.5[${PYTHON_USEDEP}]
153 - dev-python/zope-interface[${PYTHON_USEDEP}]"
154 -DEPEND="${CDEPEND}"
155
156 diff --git a/app-crypt/certbot/certbot-0.20.0.ebuild b/app-crypt/certbot/certbot-0.20.0.ebuild
157 deleted file mode 100644
158 index f67006191db..00000000000
159 --- a/app-crypt/certbot/certbot-0.20.0.ebuild
160 +++ /dev/null
161 @@ -1,54 +0,0 @@
162 -# Copyright 1999-2018 Gentoo Foundation
163 -# Distributed under the terms of the GNU General Public License v2
164 -
165 -EAPI=6
166 -PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
167 -
168 -if [[ ${PV} == 9999* ]]; then
169 - EGIT_REPO_URI="https://github.com/certbot/certbot.git"
170 - inherit git-r3
171 -else
172 - SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
173 - KEYWORDS="amd64 ~arm ~ppc64 x86"
174 -fi
175 -
176 -inherit distutils-r1
177 -
178 -DESCRIPTION="Let's encrypt client to automate deployment of X.509 certificates"
179 -HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/"
180 -
181 -LICENSE="Apache-2.0"
182 -SLOT="0"
183 -IUSE="test"
184 -
185 -CDEPEND=">=dev-python/setuptools-1.0[${PYTHON_USEDEP}]"
186 -RDEPEND="
187 - ${CDEPEND}
188 - ~app-crypt/acme-${PV}[${PYTHON_USEDEP}]
189 - >=dev-python/configargparse-0.9.3[${PYTHON_USEDEP}]
190 - dev-python/configobj[${PYTHON_USEDEP}]
191 - >=dev-python/cryptography-1.2[${PYTHON_USEDEP}]
192 - dev-python/mock[${PYTHON_USEDEP}]
193 - >=dev-python/parsedatetime-1.3[${PYTHON_USEDEP}]
194 - dev-python/pyopenssl[${PYTHON_USEDEP}]
195 - dev-python/pyrfc3339[${PYTHON_USEDEP}]
196 - dev-python/pytz[${PYTHON_USEDEP}]
197 - dev-python/six[${PYTHON_USEDEP}]
198 - dev-python/zope-component[${PYTHON_USEDEP}]
199 - dev-python/zope-interface[${PYTHON_USEDEP}]"
200 -DEPEND="
201 - ${CDEPEND}
202 - test? (
203 - >=dev-python/astroid-1.3.5[${PYTHON_USEDEP}]
204 - dev-python/coverage[${PYTHON_USEDEP}]
205 - dev-python/ipdb[${PYTHON_USEDEP}]
206 - dev-python/pytest[${PYTHON_USEDEP}]
207 - dev-python/pytest-cov[${PYTHON_USEDEP}]
208 - dev-python/pytest-xdist[${PYTHON_USEDEP}]
209 - >=dev-python/pylint-1.4.2[${PYTHON_USEDEP}]
210 - dev-python/wheel[${PYTHON_USEDEP}]
211 - )"
212 -
213 -python_test() {
214 - nosetests -v ${PN} || die
215 -}