Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-nntp/suck/
Date: Thu, 15 Feb 2018 13:47:31
Message-Id: 1518702426.2d5a81976870d1c59e1e66626e7956c33819e53a.asturm@gentoo
1 commit: 2d5a81976870d1c59e1e66626e7956c33819e53a
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 15 13:30:59 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 15 13:47:06 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d5a8197
7
8 net-nntp/suck: Drop old
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 net-nntp/suck/Manifest | 1 -
13 net-nntp/suck/suck-4.3.2.ebuild | 47 -----------------------------------------
14 2 files changed, 48 deletions(-)
15
16 diff --git a/net-nntp/suck/Manifest b/net-nntp/suck/Manifest
17 index 4cf4288161b..108ca28c5e7 100644
18 --- a/net-nntp/suck/Manifest
19 +++ b/net-nntp/suck/Manifest
20 @@ -1,2 +1 @@
21 -DIST suck-4.3.2.tar.gz 187560 BLAKE2B fd8e7ebb8e00f4ef060f72b12eae5001268399267914a617c3de73ed323a58cc87770a4ecf1eb5991c36a7f74f2475f3cd9076c60aec52bc8c05ae89cd0b32a4 SHA512 704559ea54daabc6ef7b205431e587a90de20d8a5648e60910e4bc1a1493eebc8a3497c308a9de34febf6b26eda13785cf9f1f5ae034ee7fb0a9230173d13d4f
22 DIST suck-4.3.3.tar.gz 153624 BLAKE2B 434bdb21ba37deefcba4c0fa9ec3cdf14bc49e1295533ae3c7fb298f49819113ad05e26b3ca72e20ebdd498b0514155f8d79e7c82e95f423521586de889c2371 SHA512 629ecbd7e8d070fc9c1175be6dd10d49fe71b59b8694f32a81cc2dd5ec46e32d64463d221052922a7e21fcac1c9a330f56399bad7c64fa653d68127cd16dbfdc
23
24 diff --git a/net-nntp/suck/suck-4.3.2.ebuild b/net-nntp/suck/suck-4.3.2.ebuild
25 deleted file mode 100644
26 index 5a7f05bff60..00000000000
27 --- a/net-nntp/suck/suck-4.3.2.ebuild
28 +++ /dev/null
29 @@ -1,47 +0,0 @@
30 -# Copyright 1999-2014 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -DESCRIPTION="Grab news from a remote NNTP server and feed them to another"
34 -HOMEPAGE="http://home.comcast.net/~bobyetman/"
35 -SRC_URI="http://home.comcast.net/~bobyetman/${P}.tar.gz"
36 -LICENSE="public-domain"
37 -SLOT="0"
38 -KEYWORDS="~amd64 ~ppc x86"
39 -IUSE="ssl perl"
40 -
41 -DEPEND="sys-libs/db
42 - perl? ( dev-lang/perl )
43 - ssl? ( dev-libs/openssl )"
44 -
45 -src_unpack() {
46 - unpack ${A}
47 - cd "${S}"
48 -
49 - # Fix paths to the locations in Gentoo
50 - sed -i \
51 - -e 's:/usr/lib/news/rnews:/usr/lib/news/bin/rnews:' \
52 - -e 's:/usr/news/db/history:/var/spool/news/db/history:' \
53 - suck_config.h
54 -}
55 -
56 -src_compile() {
57 - use ssl || sed -i -e 's/^SSL_/#SSL_/' Makefile.in
58 - use perl || sed -i -e 's/^PERL_/#PERL_/' Makefile.in
59 -
60 - econf || die "econf failed"
61 -
62 - emake phrases.h || die "emake phrases.h failed"
63 - emake all lpost || die "emake failed"
64 -}
65 -
66 -src_install() {
67 - dobin lmove lpost rpost suck testhost
68 - doman man/*
69 - dodoc CHANGELOG CONTENTS README*
70 - docinto java
71 - dodoc java/*
72 - docinto perl
73 - dodoc perl/*
74 - docinto sample
75 - dodoc sample/*
76 -}