Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-news/rsstail/
Date: Mon, 31 Aug 2020 03:44:27
Message-Id: 1598845455.905ead6a1e099c52257334b354e890d49f6ffe59.sam@gentoo
1 commit: 905ead6a1e099c52257334b354e890d49f6ffe59
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 31 03:40:40 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 31 03:44:15 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=905ead6a
7
8 net-news/rsstail: bump to 2.1
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 net-news/rsstail/Manifest | 1 +
14 net-news/rsstail/rsstail-2.1.ebuild | 31 +++++++++++++++++++++++++++++++
15 2 files changed, 32 insertions(+)
16
17 diff --git a/net-news/rsstail/Manifest b/net-news/rsstail/Manifest
18 index 37ad4718db6..fb4785df6ee 100644
19 --- a/net-news/rsstail/Manifest
20 +++ b/net-news/rsstail/Manifest
21 @@ -1 +1,2 @@
22 DIST rsstail-1.8.tgz 5085 BLAKE2B 0d149db2bbdfc55664c79c007cef24b2964533b9867fe42a5448d9d2cf8de0871348da70f1e5c16be76c8dc98fff0338764e36aee7ddcf8ac99c1afd5e032bb7 SHA512 9a603b384f866fec55ea57572f15aadc467133e12509ec36fe034e1bce89fd1ff3d4982a34d44621413d374ebb17f30e7192c4f1e463f0b05ee2d9537f2a8dbc
23 +DIST rsstail-2.1.tgz 5940 BLAKE2B 3d047aba02bbc09a52ce5ce911b029e42d245cd283dd7460ac8f77b62c0e79633a41cd71cd7c57cfafb2bccdf0c19509e02c2c68ab5a116f4c4e1a426bcd5be9 SHA512 61eec722e4c519b5ccebae93849f3f88810a1ff2e70dc311ad55fd15b7751d3d4dedf65e1c0ff875bee58df998f48aba7337a20bcebd2121dcead4ab1ac7ff1f
24
25 diff --git a/net-news/rsstail/rsstail-2.1.ebuild b/net-news/rsstail/rsstail-2.1.ebuild
26 new file mode 100644
27 index 00000000000..626c4b85543
28 --- /dev/null
29 +++ b/net-news/rsstail/rsstail-2.1.ebuild
30 @@ -0,0 +1,31 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit toolchain-funcs
37 +
38 +DESCRIPTION="A tail-like RSS-reader"
39 +HOMEPAGE="http://www.vanheusden.com/rsstail/ https://github.com/flok99/rsstail"
40 +SRC_URI="http://www.vanheusden.com/${PN}/${P}.tgz"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +
46 +BDEPEND="virtual/pkgconfig"
47 +DEPEND=">=net-libs/libmrss-0.17.1"
48 +RDEPEND="${DEPEND}"
49 +
50 +src_compile() {
51 + emake \
52 + CC="$(tc-getCC)" \
53 + CFLAGS="${CFLAGS} -DVERSION=\\\"\$(VERSION)\\\"" \
54 + LDFLAGS="${LDFLAGS} $(pkg-config --libs mrss)"
55 +}
56 +
57 +src_install() {
58 + dobin rsstail
59 + doman rsstail.1
60 + dodoc README.md
61 +}