Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-nntp/slrn/
Date: Sat, 28 Nov 2020 16:44:58
Message-Id: 1606581888.05fc0b68e9e1829788acbebef9c7c8fd134ce92e.bman@gentoo
1 commit: 05fc0b68e9e1829788acbebef9c7c8fd134ce92e
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 28 16:33:29 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 28 16:44:48 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05fc0b68
7
8 net-nntp/slrn: drop old
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11
12 net-nntp/slrn/Manifest | 1 -
13 net-nntp/slrn/slrn-1.0.2.ebuild | 41 -----------------------------------------
14 2 files changed, 42 deletions(-)
15
16 diff --git a/net-nntp/slrn/Manifest b/net-nntp/slrn/Manifest
17 index e2f5112a5f1..027cfbef265 100644
18 --- a/net-nntp/slrn/Manifest
19 +++ b/net-nntp/slrn/Manifest
20 @@ -1,2 +1 @@
21 -DIST slrn-1.0.2.tar.bz2 995433 BLAKE2B e2812826252918547d5cfb810233b8e0d19bb7df44577cb118ff51064648579f90132c88b5872400cac70cca5b91731d1ede39c4e0521d75d989a5d4417d78c6 SHA512 264dce88622e544356782c483f3639252ba57408d79775b2cd3ea06962ea3ebc568bc45ed19f1690c66b5b71d82eadeebd62a0bad656b1339ab7b80eb3f3cc5f
22 DIST slrn-1.0.3a.tar.bz2 997138 BLAKE2B a349783edae24e0269ab1b8ddc328e578340e40e72285bbf070237b3724f475450f08bbc655d3b212684b8fffc495129008bde71a481fb3d2f4326bf396e5981 SHA512 11cef2dfe41f441af15acc22fb675cf607e932f0dd6d4a998e51ecda05c9a50d7abf10a3e693ffc857ad77e09634f460404e4d5b289169e7bbffdaf5d6d565a3
23
24 diff --git a/net-nntp/slrn/slrn-1.0.2.ebuild b/net-nntp/slrn/slrn-1.0.2.ebuild
25 deleted file mode 100644
26 index 8086fab4307..00000000000
27 --- a/net-nntp/slrn/slrn-1.0.2.ebuild
28 +++ /dev/null
29 @@ -1,41 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -inherit autotools-utils
35 -
36 -MY_P="${PN}_${PV/_/~}"
37 -
38 -DESCRIPTION="A s-lang based newsreader"
39 -HOMEPAGE="http://slrn.sourceforge.net/"
40 -SRC_URI="https://jedsoft.org/releases/${PN}/${P}.tar.bz2"
41 -
42 -LICENSE="GPL-2"
43 -SLOT="0"
44 -KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux"
45 -IUSE="canlock nls ssl uudeview"
46 -
47 -RDEPEND="virtual/mta
48 - app-arch/sharutils
49 - >=sys-libs/slang-2.1.3
50 - canlock? ( net-libs/canlock )
51 - ssl? ( dev-libs/openssl )
52 - uudeview? ( dev-libs/uulib )"
53 -DEPEND="${RDEPEND}
54 - nls? ( sys-devel/gettext )"
55 -
56 -AUTOTOOLS_IN_SOURCE_BUILD=1
57 -PATCHES=( "${FILESDIR}"/${P}-make.patch )
58 -
59 -src_configure() {
60 - local myeconfargs=(
61 - --with-docdir="${EPREFIX}"/usr/share/doc/${PF}
62 - --with-slrnpull
63 - $(use_with canlock)
64 - $(use_with uudeview uu)
65 - $(use_enable nls)
66 - $(use_with ssl)
67 - )
68 -
69 - autotools-utils_src_configure
70 -}