Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/dehydrated/
Date: Mon, 26 Mar 2018 19:02:11
Message-Id: 1522090915.7c2ec6dedb9a29cc48092722f331bf651d0614a5.whissi@gentoo
1 commit: 7c2ec6dedb9a29cc48092722f331bf651d0614a5
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 26 19:00:12 2018 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 26 19:01:55 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c2ec6de
7
8 app-crypt/dehydrated: Bump to v0.6.1
9
10 Closes: https://bugs.gentoo.org/648928
11 Package-Manager: Portage-2.3.24, Repoman-2.3.6
12
13 app-crypt/dehydrated/Manifest | 1 +
14 app-crypt/dehydrated/dehydrated-0.6.1.ebuild | 64 ++++++++++++++++++++++++++++
15 2 files changed, 65 insertions(+)
16
17 diff --git a/app-crypt/dehydrated/Manifest b/app-crypt/dehydrated/Manifest
18 index 6906aa69809..13596883642 100644
19 --- a/app-crypt/dehydrated/Manifest
20 +++ b/app-crypt/dehydrated/Manifest
21 @@ -1,2 +1,3 @@
22 DIST dehydrated-0.3.1.tar.gz 71375 BLAKE2B 9ab014d0a4cc744081bd8aa134c460408da7f9936f1c41ef890bcebc70282fa61828620be3850cbb02f5b59b4e4fd32bdc41395340aa3673f906f154ca0877b9 SHA512 34b57edc6ab950c2c0163795ef45d6fa104dcf02978bbfa325da63f7d844176ecf20cb8d7604cfedc6b2f47d8c12ce1db5b37f532eda7fffa194b4603e4ee3b9
23 DIST dehydrated-0.4.0.tar.gz 74005 BLAKE2B ad55b7c53be0bc0c08ff372171638e9739a6213062b45c36e6ca5bce205b35d097bcffb6d1db6cd9c01f46a6ea31143cd2713bffb5e19f91041969e96a3cc337 SHA512 3c8c0f2fab57a432b69451f8372c02666dd953985679d12a2af9f6b917335b5b10a1196699106e317660039178ce1139a4d5455d4825a152b6911596fba16738
24 +DIST dehydrated-0.6.1.tar.gz 76693 BLAKE2B 5ecca2942aedc024e87e7b5aac05d836adbbc8bb1dfb38bfcd396a63e9d3e8637d625e279c4e5a47514c0b4f27006226dad7257a620da49c426c256e5267a33d SHA512 c3ef92da4e0e12100d267422eb2667607842f6fb0fe10cbc4d10aee9b5137d292db2348eca34b1f492e21c6c325dcbb595a9ab4de634e4d4a43346be1e2ce0ad
25
26 diff --git a/app-crypt/dehydrated/dehydrated-0.6.1.ebuild b/app-crypt/dehydrated/dehydrated-0.6.1.ebuild
27 new file mode 100644
28 index 00000000000..a04c83040fd
29 --- /dev/null
30 +++ b/app-crypt/dehydrated/dehydrated-0.6.1.ebuild
31 @@ -0,0 +1,64 @@
32 +# Copyright 1999-2018 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +inherit user
38 +
39 +DESCRIPTION="a client for signing certificates with an ACME-server"
40 +HOMEPAGE="https://github.com/lukas2511/dehydrated"
41 +SRC_URI="https://github.com/lukas2511/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="MIT"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +
47 +DEPEND="virtual/cron"
48 +RDEPEND="
49 + ${DEPEND}
50 + app-shells/bash
51 + net-misc/curl
52 +"
53 +
54 +src_configure() {
55 + default
56 + sed -i 's,^#CONFIG_D=.*,CONFIG_D="/etc/dehydrated/config.d",' docs/examples/config || die "could not set config (CONFIG_D)"
57 +}
58 +
59 +src_install() {
60 + dobin "${PN}"
61 + insinto "/etc/${PN}"
62 + doins docs/examples/{config,domains.txt,hook.sh}
63 + dodoc docs/*.md
64 +
65 + insinto /etc/"${PN}"/config.d
66 + doins "${FILESDIR}"/00_gentoo.sh
67 +
68 + insinto "/etc/cron.d"
69 + newins "${FILESDIR}"/cron "${PN}"
70 +
71 + dodir /etc/"${PN}"/config.d
72 + keepdir /etc/"${PN}"/config.d
73 +
74 + default
75 +}
76 +
77 +pkg_preinst() {
78 + enewgroup "${PN}"
79 + enewuser "${PN}" -1 -1 /var/lib/"${PN}" "${PN}"
80 +}
81 +
82 +pkg_postinst() {
83 + if [[ "${REPLACING_VERSIONS}" =~ (0\.3\.1|0\.4\.0) ]]; then
84 + ewarn ""
85 + ewarn "The new default BASEDIR is now '/var/lib/dehydrated'"
86 + ewarn "Please consider migrating your data with a command like"
87 + ewarn ""
88 + ewarn " 'mv -v /etc/dehydrated/{accounts,archive,certs,lock} /var/lib/dehydrated'"
89 + ewarn ""
90 + ewarn "and make sure BASEDIR is set to '/var/lib/dehydrated'"
91 + ewarn ""
92 + fi
93 + einfo "See /etc/dehydrated/config for configuration."
94 + einfo "After finishing setup you should enable the cronjob in /etc/cron.d/dehydrated."
95 +}