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:03:45
Message-Id: 1556902889.d833ca93b8b0aec085cf14b40bd7cb681dabfb82.prometheanfire@gentoo
1 commit: d833ca93b8b0aec085cf14b40bd7cb681dabfb82
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 3 17:01:29 2019 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Fri May 3 17:01:29 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d833ca93
7
8 app-crypt/acme: 0.33.1 stable amd64/x86
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/acme-0.33.1-r1.ebuild | 2 +-
14 app-crypt/acme/acme-0.33.1.ebuild | 48 ------------------------------------
15 2 files changed, 1 insertion(+), 49 deletions(-)
16
17 diff --git a/app-crypt/acme/acme-0.33.1-r1.ebuild b/app-crypt/acme/acme-0.33.1-r1.ebuild
18 index bfa507fa149..58b7f12c635 100644
19 --- a/app-crypt/acme/acme-0.33.1-r1.ebuild
20 +++ b/app-crypt/acme/acme-0.33.1-r1.ebuild
21 @@ -10,7 +10,7 @@ if [[ ${PV} == 9999* ]]; then
22 S=${WORKDIR}/${P}/${PN}
23 else
24 SRC_URI="https://github.com/certbot/certbot/archive/v${PV}.tar.gz -> certbot-${PV}.tar.gz"
25 - KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
26 + KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
27 S=${WORKDIR}/certbot-${PV}/acme
28 fi
29
30
31 diff --git a/app-crypt/acme/acme-0.33.1.ebuild b/app-crypt/acme/acme-0.33.1.ebuild
32 deleted file mode 100644
33 index 9df5e0dbdae..00000000000
34 --- a/app-crypt/acme/acme-0.33.1.ebuild
35 +++ /dev/null
36 @@ -1,48 +0,0 @@
37 -# Copyright 1999-2019 Gentoo Authors
38 -# Distributed under the terms of the GNU General Public License v2
39 -
40 -EAPI=6
41 -PYTHON_COMPAT=(python{2_7,3_5,3_6})
42 -
43 -if [[ ${PV} == 9999* ]]; then
44 - EGIT_REPO_URI="https://github.com/certbot/certbot.git"
45 - inherit git-r3
46 - S=${WORKDIR}/${P}/${PN}
47 -else
48 - SRC_URI="https://github.com/certbot/certbot/archive/v${PV}.tar.gz -> certbot-${PV}.tar.gz"
49 - KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
50 - S=${WORKDIR}/certbot-${PV}/acme
51 -fi
52 -
53 -inherit distutils-r1
54 -
55 -DESCRIPTION="An implementation of the ACME protocol"
56 -HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/"
57 -
58 -LICENSE="Apache-2.0"
59 -SLOT="0"
60 -IUSE="test"
61 -
62 -RDEPEND="
63 - >=dev-python/cryptography-1.2.3[${PYTHON_USEDEP}]
64 - >=dev-python/josepy-1.1.0[${PYTHON_USEDEP}]
65 - dev-python/mock[${PYTHON_USEDEP}]
66 - >=dev-python/pyopenssl-0.13.1[${PYTHON_USEDEP}]
67 - dev-python/pyrfc3339[${PYTHON_USEDEP}]
68 - dev-python/pytz[${PYTHON_USEDEP}]
69 - >=dev-python/requests-2.10[${PYTHON_USEDEP}]
70 - >=dev-python/requests-toolbelt-0.3.0[${PYTHON_USEDEP}]
71 - >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
72 -"
73 -DEPEND="
74 - test? (
75 - ${RDEPEND}
76 - dev-python/pytest[${PYTHON_USEDEP}]
77 - dev-python/pytest-xdist[${PYTHON_USEDEP}]
78 - )
79 - >=dev-python/setuptools-1.0[${PYTHON_USEDEP}]
80 -"
81 -
82 -python_test() {
83 - nosetests -w ${PN} || die
84 -}