Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/acme-sh/
Date: Wed, 06 Oct 2021 20:27:04
Message-Id: 1633552004.494dbed8abc9cba4534f765650df47e3bb23eb4a.conikost@gentoo
1 commit: 494dbed8abc9cba4534f765650df47e3bb23eb4a
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 6 18:12:57 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 6 20:26:44 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=494dbed8
7
8 app-crypt/acme-sh: drop old version
9
10 Package-Manager: Portage-3.0.26, Repoman-3.0.3
11 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
12
13 app-crypt/acme-sh/Manifest | 1 -
14 app-crypt/acme-sh/acme-sh-3.0.0.ebuild | 51 ----------------------------------
15 2 files changed, 52 deletions(-)
16
17 diff --git a/app-crypt/acme-sh/Manifest b/app-crypt/acme-sh/Manifest
18 index 145fe53929d..713a25283ec 100644
19 --- a/app-crypt/acme-sh/Manifest
20 +++ b/app-crypt/acme-sh/Manifest
21 @@ -1,2 +1 @@
22 -DIST acme.sh-3.0.0.tar.gz 237047 BLAKE2B 4165cb8b5d6f7a6deda8149332c798f795e5c8cfc63953f2e30e28f1b7ec256a1f3e38596d33d075c7257921d9ffd27bc6add3ac8bb3b9c0ddf5861cb0d3a2d3 SHA512 e93e955100071fda9398131aad965fe6d5b51d9c496b1db0269744513baca4c8eb142d9a35a72b72d4919c004848696fdf9de1ae51edec835ae0f695a6cb14b1
23 DIST acme.sh-3.0.1.tar.gz 239311 BLAKE2B cbbaf6da068447c3400081889e249dc6f17f56df2038d75915eb990e417ecf5407c9c8272dfbd8403fac413357f30df552678ed27096de769ee5355f6343b6f4 SHA512 8bc5468fa70bf0a23f516b05e49f4c457cceb3ae0c12e963b538297912adce1f16fca200b116fc39a88ee0ba522e1757654ed231bebb6199ef7f5ad152511c71
24
25 diff --git a/app-crypt/acme-sh/acme-sh-3.0.0.ebuild b/app-crypt/acme-sh/acme-sh-3.0.0.ebuild
26 deleted file mode 100644
27 index a6b09a058aa..00000000000
28 --- a/app-crypt/acme-sh/acme-sh-3.0.0.ebuild
29 +++ /dev/null
30 @@ -1,51 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -MY_PN="${PN/-/.}"
37 -MY_P="${MY_PN}-${PV}"
38 -
39 -inherit optfeature
40 -
41 -DESCRIPTION="A pure Unix shell script implementing ACME client protocol"
42 -HOMEPAGE="https://github.com/acmesh-official/acme.sh"
43 -SRC_URI="https://github.com/acmesh-official/${MY_PN}/archive/${PV}.tar.gz -> ${MY_P}.tar.gz"
44 -S="${WORKDIR}/${MY_P}"
45 -
46 -LICENSE="GPL-3"
47 -SLOT="0"
48 -KEYWORDS="~amd64 ~arm ~arm64 ~x86"
49 -
50 -RDEPEND="
51 - dev-libs/openssl:0
52 - net-misc/curl
53 - net-misc/socat
54 -"
55 -
56 -src_install() {
57 - newdoc deploy/README.md README-deploy.md
58 - newdoc dnsapi/README.md README-dnsapi.md
59 - rm {deploy,dnsapi}/README.md || die
60 - einstalldocs
61 -
62 - exeinto /usr/share/acme.sh
63 - doexe acme.sh
64 -
65 - insinto /usr/share/acme.sh
66 - doins -r deploy dnsapi notify
67 -
68 - keepdir /etc/acme-sh
69 - doenvd "${FILESDIR}"/99acme-sh
70 -
71 - insinto /etc/bash/bashrc.d
72 - doins "${FILESDIR}"/acme.sh
73 -
74 - dosym ../share/acme.sh/acme.sh usr/bin/acme.sh
75 -}
76 -
77 -pkg_postinst() {
78 - optfeature_header "For webserver mode, install a supported web server:"
79 - optfeature "using apache2 webserver mode" www-servers/apache
80 - optfeature "using nginx webserver mode" www-servers/nginx
81 -}