From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 0EF08138359 for ; Mon, 31 Aug 2020 03:44:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 995D9E0835; Mon, 31 Aug 2020 03:44:24 +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 61BBAE0835 for ; Mon, 31 Aug 2020 03:44:24 +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 EEEA8340E69 for ; Mon, 31 Aug 2020 03:44:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7883033A for ; Mon, 31 Aug 2020 03:44:21 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1598845455.905ead6a1e099c52257334b354e890d49f6ffe59.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-news/rsstail/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-news/rsstail/Manifest net-news/rsstail/rsstail-2.1.ebuild X-VCS-Directories: net-news/rsstail/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 905ead6a1e099c52257334b354e890d49f6ffe59 X-VCS-Branch: master Date: Mon, 31 Aug 2020 03:44:21 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9855c613-cdfd-4cfb-b76a-b8272321f268 X-Archives-Hash: 410c82a0aa4613f2d988571fc6df0312 commit: 905ead6a1e099c52257334b354e890d49f6ffe59 Author: Sam James gentoo org> AuthorDate: Mon Aug 31 03:40:40 2020 +0000 Commit: Sam James gentoo org> CommitDate: Mon Aug 31 03:44:15 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=905ead6a net-news/rsstail: bump to 2.1 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Sam James gentoo.org> net-news/rsstail/Manifest | 1 + net-news/rsstail/rsstail-2.1.ebuild | 31 +++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/net-news/rsstail/Manifest b/net-news/rsstail/Manifest index 37ad4718db6..fb4785df6ee 100644 --- a/net-news/rsstail/Manifest +++ b/net-news/rsstail/Manifest @@ -1 +1,2 @@ DIST rsstail-1.8.tgz 5085 BLAKE2B 0d149db2bbdfc55664c79c007cef24b2964533b9867fe42a5448d9d2cf8de0871348da70f1e5c16be76c8dc98fff0338764e36aee7ddcf8ac99c1afd5e032bb7 SHA512 9a603b384f866fec55ea57572f15aadc467133e12509ec36fe034e1bce89fd1ff3d4982a34d44621413d374ebb17f30e7192c4f1e463f0b05ee2d9537f2a8dbc +DIST rsstail-2.1.tgz 5940 BLAKE2B 3d047aba02bbc09a52ce5ce911b029e42d245cd283dd7460ac8f77b62c0e79633a41cd71cd7c57cfafb2bccdf0c19509e02c2c68ab5a116f4c4e1a426bcd5be9 SHA512 61eec722e4c519b5ccebae93849f3f88810a1ff2e70dc311ad55fd15b7751d3d4dedf65e1c0ff875bee58df998f48aba7337a20bcebd2121dcead4ab1ac7ff1f diff --git a/net-news/rsstail/rsstail-2.1.ebuild b/net-news/rsstail/rsstail-2.1.ebuild new file mode 100644 index 00000000000..626c4b85543 --- /dev/null +++ b/net-news/rsstail/rsstail-2.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="A tail-like RSS-reader" +HOMEPAGE="http://www.vanheusden.com/rsstail/ https://github.com/flok99/rsstail" +SRC_URI="http://www.vanheusden.com/${PN}/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +BDEPEND="virtual/pkgconfig" +DEPEND=">=net-libs/libmrss-0.17.1" +RDEPEND="${DEPEND}" + +src_compile() { + emake \ + CC="$(tc-getCC)" \ + CFLAGS="${CFLAGS} -DVERSION=\\\"\$(VERSION)\\\"" \ + LDFLAGS="${LDFLAGS} $(pkg-config --libs mrss)" +} + +src_install() { + dobin rsstail + doman rsstail.1 + dodoc README.md +}