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 6FF5F1395E2 for ; Fri, 9 Dec 2016 06:31:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2C8A2E0DE2; Fri, 9 Dec 2016 06:31:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0A15BE0DE2 for ; Fri, 9 Dec 2016 06:31:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EAFEC3414C1 for ; Fri, 9 Dec 2016 06:30:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6034824B6 for ; Fri, 9 Dec 2016 06:30:58 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1481265006.f8224630b7e80a85be6b386cba6411f67aafa201.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-news/newsbeuter/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-news/newsbeuter/newsbeuter-2.9.ebuild X-VCS-Directories: net-news/newsbeuter/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: f8224630b7e80a85be6b386cba6411f67aafa201 X-VCS-Branch: master Date: Fri, 9 Dec 2016 06:30:58 +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-Archives-Salt: 45e4e0fa-c7fe-4d5f-875e-00ab84a65793 X-Archives-Hash: 90df568e6448e86d7e833677f52b0dc8 commit: f8224630b7e80a85be6b386cba6411f67aafa201 Author: Tim Harder gentoo org> AuthorDate: Fri Dec 9 06:30:06 2016 +0000 Commit: Tim Harder gentoo org> CommitDate: Fri Dec 9 06:30:06 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8224630 net-news/newsbeuter: remove old net-news/newsbeuter/newsbeuter-2.9.ebuild | 59 ------------------------------- 1 file changed, 59 deletions(-) diff --git a/net-news/newsbeuter/newsbeuter-2.9.ebuild b/net-news/newsbeuter/newsbeuter-2.9.ebuild deleted file mode 100644 index 8b1862f..00000000 --- a/net-news/newsbeuter/newsbeuter-2.9.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" - -inherit eutils toolchain-funcs - -DESCRIPTION="A RSS/Atom feed reader for the text console" -HOMEPAGE="http://www.newsbeuter.org/index.html" -SRC_URI="http://www.${PN}.org/downloads/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~ppc x86" -IUSE="test" - -RDEPEND=">=dev-db/sqlite-3.5:3 - >=dev-libs/stfl-0.21 - >=net-misc/curl-7.18.0 - dev-libs/json-c:= - dev-libs/libxml2" - -DEPEND="${RDEPEND} - dev-lang/perl - virtual/pkgconfig - sys-devel/gettext - test? ( - dev-libs/boost - sys-devel/bc - )" - -# tests require network access -RESTRICT="test" - -src_prepare() { - epatch "${FILESDIR}"/${PN}-2.9-ncurses6.patch - sed -i 's:-ggdb::' Makefile || die -} - -src_configure() { - ./config.sh || die -} - -src_compile() { - emake CXX="$(tc-getCXX)" AR="$(tc-getAR)" RANLIB="$(tc-getRANLIB)" -} - -src_test() { - emake test - # Tests fail if in ${S} rather than in ${S}/test - cd "${S}"/test - ./test || die -} - -src_install() { - emake prefix="${D}/usr" docdir="${D}/usr/share/doc/${PF}" install - dodoc AUTHORS README CHANGES -}