Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/spiped/
Date: Sat, 06 May 2017 21:55:17
Message-Id: 1494107700.21797678c5cc7ef415256b2abf9b1930caa216b2.monsieurp@gentoo
1 commit: 21797678c5cc7ef415256b2abf9b1930caa216b2
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 6 21:55:00 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sat May 6 21:55:00 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21797678
7
8 net-misc/spiped: version bump.
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 net-misc/spiped/Manifest | 1 +
13 net-misc/spiped/spiped-1.6.0.ebuild | 45 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 46 insertions(+)
15
16 diff --git a/net-misc/spiped/Manifest b/net-misc/spiped/Manifest
17 index cee6d4cfcbc..21b1c64b687 100644
18 --- a/net-misc/spiped/Manifest
19 +++ b/net-misc/spiped/Manifest
20 @@ -1 +1,2 @@
21 DIST spiped-1.5.0.tgz 68813 SHA256 b2f74b34fb62fd37d6e2bfc969a209c039b88847e853a49e91768dec625facd7 SHA512 55e9f18fc82415d28f44af538c6dd8c222798f6ac719a9ad43772357c0f05f281a883cf1189552deeb4b646abe3d060089d66b5f2ba66b5a2a82627dc62513cc WHIRLPOOL be07cfd67a21dfafc37a1d514193c3f45f9f9cb41a3009d50ad564f39fdde1342d2b716baca2b67040b0a75a9b3d469f372c6cc861c3376117d31d7ec4e4b0b3
22 +DIST spiped-1.6.0.tgz 94431 SHA256 e6f7f8f912172c3ad55638af8346ae7c4ecaa92aed6d3fb60f2bda4359cba1e4 SHA512 9bca8e7da31b86f956a653279f9346d8270a7e28a07d30b4a7104b21fbfbd1a81410e6a7dc0827127331a8f10226d5b8d2ddaacb94c9f76ecc6d15d728ead27a WHIRLPOOL 7fa1b30ba031b8214ae8fa64ac0d7b4586a9551869f76b16cc5b0d9b043abb79a12905802c34d87ef519183e940735cfdf8e8b7d2ed1bab144d013b2aa28aae9
23
24 diff --git a/net-misc/spiped/spiped-1.6.0.ebuild b/net-misc/spiped/spiped-1.6.0.ebuild
25 new file mode 100644
26 index 00000000000..ed4c445cb51
27 --- /dev/null
28 +++ b/net-misc/spiped/spiped-1.6.0.ebuild
29 @@ -0,0 +1,45 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +DESCRIPTION="secure pipe daemon"
36 +HOMEPAGE="http://www.tarsnap.com/spiped.html"
37 +SRC_URI="http://www.tarsnap.com/${PN}/${P}.tgz"
38 +
39 +LICENSE="BSD"
40 +SLOT="0"
41 +KEYWORDS="~amd64 ~x86"
42 +IUSE="libressl"
43 +
44 +MY_PN="${PN/d/}"
45 +
46 +DEPEND="
47 + !libressl? ( dev-libs/openssl:0= )
48 + libressl? ( dev-libs/libressl:0= )"
49 +
50 +# Blocker added due to #548126
51 +RDEPEND="
52 + ${DEPEND}
53 + !net-mail/qlogtools"
54 +
55 +src_install() {
56 + dobin "${MY_PN}/${MY_PN}"
57 + dosbin "${PN}/${PN}"
58 +
59 + doman "${MY_PN}/${MY_PN}.1" "${PN}/${PN}.1"
60 +
61 + newinitd "${FILESDIR}/${PN}.initd" "${PN}"
62 + newconfd "${FILESDIR}/${PN}.confd" "${PN}"
63 +
64 + dodir "etc/${PN}"
65 +}
66 +
67 +pkg_postinst() {
68 + elog
69 + elog "You will need to configure spiped via its"
70 + elog "configuration file located in /etc/conf.d/."
71 + elog
72 + elog "Please have a look at this file prior to starting up spiped!"
73 + elog
74 +}