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, 26 Feb 2022 21:03:13
Message-Id: 1645909384.f4e2ca98d5bd21e36e0604c7432490cc24adbefb.monsieurp@gentoo
1 commit: f4e2ca98d5bd21e36e0604c7432490cc24adbefb
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 26 20:52:55 2022 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 26 21:03:04 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4e2ca98
7
8 net-misc/spiped: add 1.6.2
9
10 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
11
12 net-misc/spiped/Manifest | 1 +
13 net-misc/spiped/spiped-1.6.2.ebuild | 52 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 53 insertions(+)
15
16 diff --git a/net-misc/spiped/Manifest b/net-misc/spiped/Manifest
17 index 9946dbce1cca..f45facce2784 100644
18 --- a/net-misc/spiped/Manifest
19 +++ b/net-misc/spiped/Manifest
20 @@ -1,2 +1,3 @@
21 DIST spiped-1.6.0.tgz 94431 BLAKE2B e994115d5080e4f41d57d3ef88223c7dca373320266a3fe4f0420fb7aef6ecf329fad5a409ec31f53caaeb22d86d0c3a48060758ceee28d011676a12124fc057 SHA512 9bca8e7da31b86f956a653279f9346d8270a7e28a07d30b4a7104b21fbfbd1a81410e6a7dc0827127331a8f10226d5b8d2ddaacb94c9f76ecc6d15d728ead27a
22 DIST spiped-1.6.1.tgz 115055 BLAKE2B d9ee65c10b183cc8d5451adeb65a728052378811e71ee40d7e6f121c00b6003d4b21cc9402b424aac15d115cdbdc158207ef3e6c60b93fab2a4ba63257fd2f1d SHA512 ec69cb49a19e4e5705526ec74ee683ac3923412bc5ca3a45fc8268699367421cd37354ccc03c18c2d48f06cdb8a4c4bce3ef3b60934997c6770547e02e6f66ae
23 +DIST spiped-1.6.2.tgz 142332 BLAKE2B ce9fe45223eec8bbb741eb3106b17a395347de2766c289def9897321cce9907e104b55752ff3b2c9c7deafd178aaeef1e8fa8afe82c2d25582004c8c92982df6 SHA512 d16262a3e8be876ca1ef1aac8bb38fae91f523a9af0d488eb0dfa23e0b9db795d2a021e55f31095d92f5b94e4516e30ea23f537c3b14a2f1b9871297e26cda76
24
25 diff --git a/net-misc/spiped/spiped-1.6.2.ebuild b/net-misc/spiped/spiped-1.6.2.ebuild
26 new file mode 100644
27 index 000000000000..3ec7e11ae171
28 --- /dev/null
29 +++ b/net-misc/spiped/spiped-1.6.2.ebuild
30 @@ -0,0 +1,52 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +inherit toolchain-funcs
37 +
38 +DESCRIPTION="secure pipe daemon"
39 +HOMEPAGE="http://www.tarsnap.com/spiped.html"
40 +SRC_URI="http://www.tarsnap.com/${PN}/${P}.tgz"
41 +
42 +LICENSE="BSD"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +
46 +MY_PN="${PN/d/}"
47 +
48 +DEPEND="
49 + dev-libs/openssl:0="
50 +
51 +# Blocker added due to #548126
52 +RDEPEND="
53 + ${DEPEND}
54 + !net-mail/qlogtools"
55 +
56 +# Some tests fail.
57 +RESTRICT="test"
58 +
59 +src_compile() {
60 + emake CC=$(tc-getCC) CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
61 +}
62 +
63 +src_install() {
64 + dobin "${MY_PN}/${MY_PN}"
65 + dosbin "${PN}/${PN}"
66 +
67 + doman "${MY_PN}/${MY_PN}.1" "${PN}/${PN}.1"
68 +
69 + newinitd "${FILESDIR}/${PN}.initd" "${PN}"
70 + newconfd "${FILESDIR}/${PN}.confd" "${PN}"
71 +
72 + dodir "etc/${PN}"
73 +}
74 +
75 +pkg_postinst() {
76 + elog
77 + elog "You will need to configure spiped via its"
78 + elog "configuration file located in /etc/conf.d/."
79 + elog
80 + elog "Please have a look at this file prior to starting up spiped!"
81 + elog
82 +}