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/certbot-nginx/
Date: Thu, 03 Dec 2020 03:24:30
Message-Id: 1606965860.35c0ac04cbed52793c46853fc7fa8d59af645024.prometheanfire@gentoo
1 commit: 35c0ac04cbed52793c46853fc7fa8d59af645024
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 3 03:04:49 2020 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 3 03:24:20 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35c0ac04
7
8 app-crypt/certbot-nginx: 1.10.0 bump
9
10 Package-Manager: Portage-3.0.9, Repoman-3.0.2
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 app-crypt/certbot-nginx/Manifest | 1 +
14 .../certbot-nginx/certbot-nginx-1.10.0.ebuild | 32 ++++++++++++++++++++++
15 2 files changed, 33 insertions(+)
16
17 diff --git a/app-crypt/certbot-nginx/Manifest b/app-crypt/certbot-nginx/Manifest
18 index 7c86ae3bafc..d66d65257c2 100644
19 --- a/app-crypt/certbot-nginx/Manifest
20 +++ b/app-crypt/certbot-nginx/Manifest
21 @@ -1 +1,2 @@
22 +DIST certbot-1.10.0.tar.gz 1432396 BLAKE2B eae502acdac712ac148a4a349b500db61a0c14fda0ae4dc57077222d33f967595c4434d0b197649c6d2614018bafaab2c7f94c1571162a200943732cc3c0109c SHA512 af31bfa1f3d6bc189d1b55ac91aab5b7fb35579170c253f0c0e98c5f63be9ad27f3ff73cb03a4f59765874c01e78ae1423f977426e081161ae5f845ebfb0d23a
23 DIST certbot-1.9.0.tar.gz 1425703 BLAKE2B 9bf78824649870b3e1fc3175aae551cbfaa675a8930a89f35ba2330647d86798e4fc43011c617be2d278ab20c43dd05b02e8e61956dd7f9d10d444181874346e SHA512 098d8c077f5760c1f40f7d673820488ad7643c8b9c12561a58921cd95f60ae76515cefc19f822747f3385a68eba6f49fe5484b20142994ef67a26b0b16293ce8
24
25 diff --git a/app-crypt/certbot-nginx/certbot-nginx-1.10.0.ebuild b/app-crypt/certbot-nginx/certbot-nginx-1.10.0.ebuild
26 new file mode 100644
27 index 00000000000..ad7e21e944e
28 --- /dev/null
29 +++ b/app-crypt/certbot-nginx/certbot-nginx-1.10.0.ebuild
30 @@ -0,0 +1,32 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +PYTHON_COMPAT=(python{3_6,3_7,3_8,3_9})
36 +DISTUTILS_USE_SETUPTOOLS=rdepend
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/${PN%-nginx}/${PN%-nginx}/archive/v${PV}.tar.gz -> ${PN%-nginx}-${PV}.tar.gz"
44 + KEYWORDS="~amd64 ~arm ~arm64 ~x86"
45 + S=${WORKDIR}/${PN%-nginx}-${PV}/${PN}
46 +fi
47 +
48 +inherit distutils-r1
49 +
50 +DESCRIPTION="Nginx plugin for certbot (Let's Encrypt Client)"
51 +HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/"
52 +
53 +LICENSE="Apache-2.0"
54 +SLOT="0"
55 +IUSE=""
56 +
57 +RDEPEND="
58 + >=app-crypt/acme-1.4.0[${PYTHON_USEDEP}]
59 + >=app-crypt/certbot-1.6.0[${PYTHON_USEDEP}]
60 + dev-python/pyopenssl[${PYTHON_USEDEP}]
61 + >=dev-python/pyparsing-1.5.5[${PYTHON_USEDEP}]
62 + dev-python/zope-interface[${PYTHON_USEDEP}]"