From 8a4cce10f1378487090b7184442501694fdac6bb Mon Sep 17 00:00:00 2001 From: Sam James Date: Sun, 7 Sep 2025 22:13:55 +0100 Subject: [PATCH] net-nntp/suck: drop 4.3.4 Closes: https://bugs.gentoo.org/919021 Signed-off-by: Sam James --- net-nntp/suck/Manifest | 1 - net-nntp/suck/suck-4.3.4.ebuild | 66 --------------------------------- 2 files changed, 67 deletions(-) delete mode 100644 net-nntp/suck/suck-4.3.4.ebuild diff --git a/net-nntp/suck/Manifest b/net-nntp/suck/Manifest index 1cc682475499..54abbc71bd4b 100644 --- a/net-nntp/suck/Manifest +++ b/net-nntp/suck/Manifest @@ -1,2 +1 @@ -DIST suck-4.3.4.tar.gz 153774 BLAKE2B dc7943af43a305386872995a27b6e2faf34949813960314cbf85c4f2ad1658107480cdf77241394aa031270afc3faab5fbd30ec19559fb3d4d261fd8fa5e3416 SHA512 79892cfce1b569bbd5fb6468a919d77bce82a533c1b70369ab88a2066dc3d4396480b9a56b25e960d6e49cd0f9abad605d841693f086c9d07913798d7ac99730 DIST suck-4.3.5.tar.gz 153874 BLAKE2B ecc7d20f8844890acae94bb154583ace66b02c594514e925500cb9337aa1678622622286aaefedda066e73236d136e2383a846f0013f7e65f657757ae6cee818 SHA512 7bf7196db62416800c040ff9afd545c8a62e50a7f8dcb914aef1105d4bdc57ec4c198b1a42d5ad4e3c9455ddca3d516a55ca9cc62c88e010e8ba8eb4fcbeb275 diff --git a/net-nntp/suck/suck-4.3.4.ebuild b/net-nntp/suck/suck-4.3.4.ebuild deleted file mode 100644 index dc04e8bb5153..000000000000 --- a/net-nntp/suck/suck-4.3.4.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="Grab news from a remote NNTP server and feed them to another" -HOMEPAGE="https://lazarus-pkgs.github.io/lazarus-pkgs/suck.html" -SRC_URI="https://github.com/lazarus-pkgs/suck/archive/${PV}.tar.gz -> ${P}.tar.gz" -LICENSE="public-domain" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="perl ssl" - -RDEPEND=" - sys-libs/gdbm:= - ssl? ( - dev-libs/openssl:0= - ) -" -DEPEND="${RDEPEND} - sys-libs/db - perl? ( dev-lang/perl ) -" - -src_prepare() { - default - - # Fix paths to the locations in Gentoo - sed -i \ - -e 's:/usr/bin/rnews:/usr/$(get_libdir)/news/bin/rnews:' \ - -e 's:/var/lib/news/history:/var/spool/news/db/history:' \ - suck_config.h || die "path adaption sed failed" - - eautoreconf -} - -src_configure() { - if use ssl; then - sed -i -e 's/^SSL_/#SSL_/' Makefile.in || die "ssl sed failed" - fi - - if use perl; then - sed -i -e 's/^PERL_/#PERL_/' Makefile.in || die "perl sed failed" - fi - - econf --without-inn-lib --without-inn-include -} - -src_compile() { - emake phrases.h - emake all lpost -} - -src_install() { - dobin lmove lpost rpost suck testhost - doman man/* - dodoc CHANGELOG CONTENTS README* - docinto java - dodoc java/* - docinto perl - dodoc perl/* - docinto sample - dodoc sample/* -}