Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/acme/
Date: Fri, 03 May 2019 17:00:35
Message-Id: 1556902441.8b15ef6cd3b6e55286e14c4b9e8a194a5c87f2dd.prometheanfire@gentoo
1 commit: 8b15ef6cd3b6e55286e14c4b9e8a194a5c87f2dd
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 3 16:54:01 2019 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Fri May 3 16:54:01 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b15ef6c
7
8 app-crypt/acme: 0.34.0 bump
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 app-crypt/acme/Manifest | 1 +
14 app-crypt/acme/acme-0.34.0.ebuild | 68 +++++++++++++++++++++++++++++++++++++++
15 2 files changed, 69 insertions(+)
16
17 diff --git a/app-crypt/acme/Manifest b/app-crypt/acme/Manifest
18 index 6b792e7d043..f729567660b 100644
19 --- a/app-crypt/acme/Manifest
20 +++ b/app-crypt/acme/Manifest
21 @@ -1,2 +1,3 @@
22 DIST certbot-0.32.0.tar.gz 1284873 BLAKE2B c3fa538de87b67680a7bc7465d77ab2947606aec4def3717b5d942c83254ff758d751e137bfe33cb6f9362a11a9bad7fba0337927b638f3af7ddf304d408c447 SHA512 fa61e975d2ce09efa3570118f220cd9f9d2fc8d5ab408feb4c4e50bfa795cb28be6c7a78497fb10bc91e577e908126988197ae5d016be4823c5c4ddb68cbf5a4
23 DIST certbot-0.33.1.tar.gz 1304071 BLAKE2B 400c12ce254780fc0f336bbcff7917ba1ef4c6a0a708fb9607b79f8e966720a77adea9e56dc110c9424978d18eff15bd372141a0fc79edfb9f8fcc41f5f09f2b SHA512 055030e1ab1d3eb57b980c44732c8ec623d99de2d797a2b825bd2b816fce5b4c4d63d09178eb0a79fb83d991d63f00a149cc043067a2ae42a0ddcaa4fd329979
24 +DIST certbot-0.34.0.tar.gz 1346939 BLAKE2B db0d7bc716206ff9bebcf953b72e29f46e335209d70e518eeb11d944bab26e2fbe15c6bbe448861cbd71c744dfc22aa8cb54b96dfc5d15d497af8a91cfbc6e45 SHA512 24d4a58bcc220451532b1b7d1ddaa90ef773935ff65c2b06e121f044b5575d159555a757660abebd72ff4134a257394dbc99c981729d846d565c75f692317a30
25
26 diff --git a/app-crypt/acme/acme-0.34.0.ebuild b/app-crypt/acme/acme-0.34.0.ebuild
27 new file mode 100644
28 index 00000000000..bfa507fa149
29 --- /dev/null
30 +++ b/app-crypt/acme/acme-0.34.0.ebuild
31 @@ -0,0 +1,68 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +PYTHON_COMPAT=(python{2_7,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 ~arm64 ~ppc64 ~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="doc test"
56 +
57 +RDEPEND="
58 + >=dev-python/cryptography-1.3.4[${PYTHON_USEDEP}]
59 + >=dev-python/idna-2.0.0[${PYTHON_USEDEP}]
60 + >=dev-python/josepy-1.1.0[${PYTHON_USEDEP}]
61 + dev-python/mock[${PYTHON_USEDEP}]
62 + >=dev-python/pyopenssl-0.13.1[${PYTHON_USEDEP}]
63 + dev-python/pyrfc3339[${PYTHON_USEDEP}]
64 + dev-python/pytz[${PYTHON_USEDEP}]
65 + >=dev-python/requests-2.10[${PYTHON_USEDEP}]
66 + >=dev-python/requests-toolbelt-0.3.0[${PYTHON_USEDEP}]
67 + >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
68 +"
69 +DEPEND="
70 + doc? (
71 + dev-python/sphinx[${PYTHON_USEDEP}]
72 + dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
73 + )
74 + test? (
75 + ${RDEPEND}
76 + dev-python/pytest[${PYTHON_USEDEP}]
77 + dev-python/pytest-xdist[${PYTHON_USEDEP}]
78 + dev-python/tox[${PYTHON_USEDEP}]
79 + )
80 + >=dev-python/setuptools-1.0[${PYTHON_USEDEP}]
81 +"
82 +
83 +src_compile() {
84 + python_foreach_impl run_in_build_dir default
85 + if use doc ; then
86 + cd docs || die
87 + sphinx-build -b html -d _build/doctrees . _build/html
88 + fi
89 +}
90 +
91 +python_test() {
92 + nosetests -w ${PN} || die
93 +}
94 +
95 +python_install_all() {
96 + use doc && local HTML_DOCS=( docs/_build/html/. )
97 +
98 + distutils-r1_python_install_all
99 +}