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: Sat, 10 Oct 2020 19:32:43
Message-Id: 1602358344.4ebe7f41748251f4baf5b153c4f7f74d65443657.prometheanfire@gentoo
1 commit: 4ebe7f41748251f4baf5b153c4f7f74d65443657
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 10 19:29:07 2020 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 10 19:32:24 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ebe7f41
7
8 app-crypt/acme: 1.8.0 stable amd64/x86 with cleanup
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 app-crypt/acme/Manifest | 1 -
14 app-crypt/acme/acme-1.7.0.ebuild | 69 ----------------------------------------
15 app-crypt/acme/acme-1.8.0.ebuild | 2 +-
16 3 files changed, 1 insertion(+), 71 deletions(-)
17
18 diff --git a/app-crypt/acme/Manifest b/app-crypt/acme/Manifest
19 index 78ffc8fd6ea..5c68a71d2a2 100644
20 --- a/app-crypt/acme/Manifest
21 +++ b/app-crypt/acme/Manifest
22 @@ -1,3 +1,2 @@
23 -DIST certbot-1.7.0.tar.gz 1416764 BLAKE2B de678a222e8c8e3e7834470f87763763671bfae37a5c8320a4c1a2552ec979b5391094713e7e13526f73fdf8cd32f70f8c4350f422505892c4fdd0ae77742c80 SHA512 f81242e68b7e261bbb6294ffe92e47bc1687128344816d71a495a94a2646e209e46c147bc76eedce0c477cc140dc6ae0fba76d2d5d01b828fce78875f5a2886a
24 DIST certbot-1.8.0.tar.gz 1425620 BLAKE2B 9cc0443fd067bf594f02a79c99defa250e656dbee00cd2717a4a747abfe80511ffcb800b6ac63e484a918192dad9465dc45335f358267fa998af16e966b8e2a6 SHA512 c6559fe1e5db6269942bda3738c00b1b550ec448288eaf911ba9c3967c7e949b34bdd8b77742398f0a512ce07929fa2f227c1202e40900151762f1db6ff9de56
25 DIST certbot-1.9.0.tar.gz 1425703 BLAKE2B 9bf78824649870b3e1fc3175aae551cbfaa675a8930a89f35ba2330647d86798e4fc43011c617be2d278ab20c43dd05b02e8e61956dd7f9d10d444181874346e SHA512 098d8c077f5760c1f40f7d673820488ad7643c8b9c12561a58921cd95f60ae76515cefc19f822747f3385a68eba6f49fe5484b20142994ef67a26b0b16293ce8
26
27 diff --git a/app-crypt/acme/acme-1.7.0.ebuild b/app-crypt/acme/acme-1.7.0.ebuild
28 deleted file mode 100644
29 index da638d5ba96..00000000000
30 --- a/app-crypt/acme/acme-1.7.0.ebuild
31 +++ /dev/null
32 @@ -1,69 +0,0 @@
33 -# Copyright 1999-2020 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -PYTHON_COMPAT=(python{3_6,3_7,3_8})
38 -DISTUTILS_USE_SETUPTOOLS=rdepend
39 -
40 -if [[ ${PV} == 9999* ]]; then
41 - EGIT_REPO_URI="https://github.com/certbot/certbot.git"
42 - inherit git-r3
43 - S=${WORKDIR}/${P}/${PN}
44 -else
45 - SRC_URI="https://github.com/certbot/certbot/archive/v${PV}.tar.gz -> certbot-${PV}.tar.gz"
46 - KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
47 - S=${WORKDIR}/certbot-${PV}/acme
48 -fi
49 -
50 -inherit distutils-r1
51 -
52 -DESCRIPTION="An implementation of the ACME protocol"
53 -HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/"
54 -
55 -LICENSE="Apache-2.0"
56 -SLOT="0"
57 -IUSE="doc test"
58 -RESTRICT="!test? ( test )"
59 -
60 -RDEPEND="
61 - >=dev-python/cryptography-1.3.4[${PYTHON_USEDEP}]
62 - >=dev-python/idna-2.0.0[${PYTHON_USEDEP}]
63 - >=dev-python/josepy-1.1.0[${PYTHON_USEDEP}]
64 - >=dev-python/pyopenssl-0.15.1[${PYTHON_USEDEP}]
65 - dev-python/pyrfc3339[${PYTHON_USEDEP}]
66 - dev-python/pytz[${PYTHON_USEDEP}]
67 - >=dev-python/requests-2.10[${PYTHON_USEDEP}]
68 - >=dev-python/requests-toolbelt-0.3.0[${PYTHON_USEDEP}]
69 - >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
70 -"
71 -DEPEND="
72 - doc? (
73 - dev-python/sphinx[${PYTHON_USEDEP}]
74 - dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
75 - )
76 - test? (
77 - ${RDEPEND}
78 - dev-python/nose[${PYTHON_USEDEP}]
79 - dev-python/pytest[${PYTHON_USEDEP}]
80 - dev-python/pytest-xdist[${PYTHON_USEDEP}]
81 - )
82 -"
83 -
84 -src_compile() {
85 - python_foreach_impl run_in_build_dir default
86 - distutils-r1_src_compile
87 - if use doc ; then
88 - cd docs || die
89 - sphinx-build -b html -d _build/doctrees . _build/html
90 - fi
91 -}
92 -
93 -python_test() {
94 - nosetests -w ${PN} || die
95 -}
96 -
97 -python_install_all() {
98 - use doc && local HTML_DOCS=( docs/_build/html/. )
99 -
100 - distutils-r1_python_install_all
101 -}
102
103 diff --git a/app-crypt/acme/acme-1.8.0.ebuild b/app-crypt/acme/acme-1.8.0.ebuild
104 index 9c58fbb71ad..da638d5ba96 100644
105 --- a/app-crypt/acme/acme-1.8.0.ebuild
106 +++ b/app-crypt/acme/acme-1.8.0.ebuild
107 @@ -11,7 +11,7 @@ if [[ ${PV} == 9999* ]]; then
108 S=${WORKDIR}/${P}/${PN}
109 else
110 SRC_URI="https://github.com/certbot/certbot/archive/v${PV}.tar.gz -> certbot-${PV}.tar.gz"
111 - KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
112 + KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
113 S=${WORKDIR}/certbot-${PV}/acme
114 fi