commit: 6dabb02e6509f979ab8c5f805a00b2a1239872fb
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri May 30 14:46:55 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri May 30 14:50:21 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dabb02e
net-misc/spiped: add 1.6.4
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-misc/spiped/Manifest | 1 +
net-misc/spiped/spiped-1.6.4.ebuild | 52 +++++++++++++++++++++++++++++++++++++
2 files changed, 53 insertions(+)
diff --git a/net-misc/spiped/Manifest b/net-misc/spiped/Manifest
index 3d0735c745f5..7262265115b3 100644
--- a/net-misc/spiped/Manifest
+++ b/net-misc/spiped/Manifest
@@ -1 +1,2 @@
DIST spiped-1.6.2.tgz 142332 BLAKE2B
ce9fe45223eec8bbb741eb3106b17a395347de2766c289def9897321cce9907e104b55752ff3b2c9c7deafd178aaeef1e8fa8afe82c2d25582004c8c92982df6
SHA512
d16262a3e8be876ca1ef1aac8bb38fae91f523a9af0d488eb0dfa23e0b9db795d2a021e55f31095d92f5b94e4516e30ea23f537c3b14a2f1b9871297e26cda76
+DIST spiped-1.6.4.tgz 158844 BLAKE2B
1e12585cbea0b811ad4358460c196a41d28e45c01ca4a37cadf60bbb507f2f02f60602fe73763e4dd16e1b087008132479a7aee817b1a397ab383dbe50f6a599
SHA512
cfc606d34be9d9f130deef0d79b96ed6e0b69e537bca98e27b090c7b973c2a00d03963e53520e20870110681966acc627d07238f6d2a4855d10c4d545095de10
diff --git a/net-misc/spiped/spiped-1.6.4.ebuild
b/net-misc/spiped/spiped-1.6.4.ebuild
new file mode 100644
index 000000000000..8e54acf48928
--- /dev/null
+++ b/net-misc/spiped/spiped-1.6.4.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+MY_PN="${PN/d/}"
+DESCRIPTION="secure pipe daemon"
+HOMEPAGE="https://www.tarsnap.com/spiped.html"
+SRC_URI="https://www.tarsnap.com/${PN}/${P}.tgz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="
+ dev-libs/openssl:=
+"
+# Blocker added due to #548126
+RDEPEND="
+ ${DEPEND}
+ !net-mail/qlogtools
+"
+
+# Some tests fail because of too-long path for unix sockets.
+RESTRICT="test"
+
+src_compile() {
+ emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
+}
+
+src_install() {
+ dobin "${MY_PN}/${MY_PN}"
+ dosbin "${PN}/${PN}"
+
+ doman "${MY_PN}/${MY_PN}.1" "${PN}/${PN}.1"
+
+ newinitd "${FILESDIR}/${PN}.initd" "${PN}"
+ newconfd "${FILESDIR}/${PN}.confd" "${PN}"
+
+ dodir "etc/${PN}"
+}
+
+pkg_postinst() {
+ elog
+ elog "You will need to configure spiped via its"
+ elog "configuration file located in /etc/conf.d/."
+ elog
+ elog "Please have a look at this file prior to starting up spiped!"
+ elog
+}