From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1055519-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 63667138335 for <garchives@archives.gentoo.org>; Sun, 4 Nov 2018 13:50:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0C17CE0B94; Sun, 4 Nov 2018 13:50:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D6A1DE0B94 for <gentoo-commits@lists.gentoo.org>; Sun, 4 Nov 2018 13:50:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C2428335C5A for <gentoo-commits@lists.gentoo.org>; Sun, 4 Nov 2018 13:50:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8A7AD457 for <gentoo-commits@lists.gentoo.org>; Sun, 4 Nov 2018 13:50:17 +0000 (UTC) From: "Pacho Ramos" <pacho@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" <pacho@gentoo.org> Message-ID: <1541339409.0683984c3574aa2f18f97f7231e21fe63bde437c.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-nntp/suck/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-nntp/suck/suck-4.3.3.ebuild X-VCS-Directories: net-nntp/suck/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 0683984c3574aa2f18f97f7231e21fe63bde437c X-VCS-Branch: master Date: Sun, 4 Nov 2018 13:50:17 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b07e4095-96da-43b9-a746-275d609200f6 X-Archives-Hash: 3ed551d34fb1c45da6973e0976720b5e commit: 0683984c3574aa2f18f97f7231e21fe63bde437c Author: Pacho Ramos <pacho <AT> gentoo <DOT> org> AuthorDate: Sun Nov 4 13:48:52 2018 +0000 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org> CommitDate: Sun Nov 4 13:50:09 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0683984c net-nntp/suck: Drop old Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 net-nntp/suck/suck-4.3.3.ebuild | 61 ----------------------------------------- 1 file changed, 61 deletions(-) diff --git a/net-nntp/suck/suck-4.3.3.ebuild b/net-nntp/suck/suck-4.3.3.ebuild deleted file mode 100644 index 684bae61e05..00000000000 --- a/net-nntp/suck/suck-4.3.3.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -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" - -COMMON_DEPEND="sys-libs/gdbm:= - ssl? ( dev-libs/openssl:0= )" - -DEPEND="${COMMON_DEPEND} - sys-libs/db - perl? ( dev-lang/perl )" - -RDEPEND="${COMMON_DEPEND} - net-nntp/inn" - -PATCHES=( "${FILESDIR}/${PV}-fputs.patch" ) - -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() { - use ssl || sed -i -e 's/^SSL_/#SSL_/' Makefile.in || die "ssl sed failed" - use perl || sed -i -e 's/^PERL_/#PERL_/' Makefile.in || die "perl sed failed" - - econf -} - -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/* -}