Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/dehydrated/
Date: Mon, 06 Feb 2017 23:18:02
Message-Id: 1486423064.5cabf06bad735fce12bc43a7144165bce5d805f3.monsieurp@gentoo
1 commit: 5cabf06bad735fce12bc43a7144165bce5d805f3
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 6 23:17:44 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 6 23:17:44 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cabf06b
7
8 app-crypt/dehydrated: version bump.
9
10 Gentoo-Bug: https://bugs.gentoo.org/608458
11
12 Package-Manager: portage-2.3.3
13
14 app-crypt/dehydrated/Manifest | 1 +
15 app-crypt/dehydrated/dehydrated-0.4.0.ebuild | 23 +++++++++++++++++++++++
16 2 files changed, 24 insertions(+)
17
18 diff --git a/app-crypt/dehydrated/Manifest b/app-crypt/dehydrated/Manifest
19 index 445ea82..0ff995f 100644
20 --- a/app-crypt/dehydrated/Manifest
21 +++ b/app-crypt/dehydrated/Manifest
22 @@ -1 +1,2 @@
23 DIST dehydrated-0.3.1.tar.gz 71375 SHA256 7c9b9475b442dd19dbc33a26426444054781e14a2f122d2a2405f81093484239 SHA512 34b57edc6ab950c2c0163795ef45d6fa104dcf02978bbfa325da63f7d844176ecf20cb8d7604cfedc6b2f47d8c12ce1db5b37f532eda7fffa194b4603e4ee3b9 WHIRLPOOL 4d96d8a2b8d09a5800b1bc4236d82632199860c64a29a1d49ea7a377611a98b90bd0b0059323e588d9a53a2168ceb1239d678514c39176da38286d349b201fc4
24 +DIST dehydrated-0.4.0.tar.gz 74005 SHA256 611da321330ffd43d1dc497990b486b2dec12c59149803ad7d156980c8527f48 SHA512 3c8c0f2fab57a432b69451f8372c02666dd953985679d12a2af9f6b917335b5b10a1196699106e317660039178ce1139a4d5455d4825a152b6911596fba16738 WHIRLPOOL 1fb07445673698e15af61fc94006d7ac712f7751a092d370816527b7d831befc55001b4c6b38a294de1c09ffbd5e94ca6fb384439cf3cb4f70b0988edfc68d0f
25
26 diff --git a/app-crypt/dehydrated/dehydrated-0.4.0.ebuild b/app-crypt/dehydrated/dehydrated-0.4.0.ebuild
27 new file mode 100644
28 index 00000000..11fa01c
29 --- /dev/null
30 +++ b/app-crypt/dehydrated/dehydrated-0.4.0.ebuild
31 @@ -0,0 +1,23 @@
32 +# Copyright 1999-2017 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=6
37 +
38 +DESCRIPTION="a client for signing certificates with an ACME-server"
39 +HOMEPAGE="https://github.com/lukas2511/dehydrated"
40 +SRC_URI="https://github.com/lukas2511/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="MIT"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +
46 +RDEPEND="app-shells/bash"
47 +
48 +src_install() {
49 + default
50 + dobin "${PN}"
51 + insinto "/etc/${PN}"
52 + doins docs/examples/{config,domains.txt,hook.sh}
53 + dodoc docs/*.md
54 +}