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 BACFB138239 for ; Sun, 5 Jan 2020 17:00:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CED34E0ABA; Sun, 5 Jan 2020 17:00: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 B6605E0ABA for ; Sun, 5 Jan 2020 17:00: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 49ADD34DDCD for ; Sun, 5 Jan 2020 17:00:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9647CB3 for ; Sun, 5 Jan 2020 17:00:05 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1578243580.5e2a7052bbbc75ee1e31a1f9692fc93201a09a80.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-news/rssguard/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-news/rssguard/rssguard-9999.ebuild X-VCS-Directories: net-news/rssguard/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 5e2a7052bbbc75ee1e31a1f9692fc93201a09a80 X-VCS-Branch: master Date: Sun, 5 Jan 2020 17:00:05 +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: 46f90ee2-4a38-406c-aabd-cb197a5bb60d X-Archives-Hash: 2e184d26cc35e1e430415aeabad1c2b4 commit: 5e2a7052bbbc75ee1e31a1f9692fc93201a09a80 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jan 5 15:10:56 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jan 5 16:59:40 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e2a7052 net-news/rssguard: Drop unmaintained live ebuild Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner gentoo.org> net-news/rssguard/rssguard-9999.ebuild | 46 ---------------------------------- 1 file changed, 46 deletions(-) diff --git a/net-news/rssguard/rssguard-9999.ebuild b/net-news/rssguard/rssguard-9999.ebuild deleted file mode 100644 index 06be77e74c1..00000000000 --- a/net-news/rssguard/rssguard-9999.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit flag-o-matic git-r3 qmake-utils - -DESCRIPTION="A tiny RSS and Atom feed reader" -HOMEPAGE="https://github.com/martinrotter/rssguard" -EGIT_REPO_URI="https://github.com/martinrotter/rssguard.git" -EGIT_SUBMODULES=() - -LICENSE="GPL-3" -SLOT="0" -IUSE="debug webengine" -MINQT="5.8:5" - -RDEPEND=" - >=dev-qt/qtcore-${MINQT} - >=dev-qt/qtgui-${MINQT} - >=dev-qt/qtnetwork-${MINQT} - >=dev-qt/qtsql-${MINQT} - >=dev-qt/qtwidgets-${MINQT} - >=dev-qt/qtxml-${MINQT} - webengine? ( >=dev-qt/qtwebengine-${MINQT}[widgets] ) -" -DEPEND="${RDEPEND} - >=dev-qt/linguist-tools-${MINQT} -" - -src_configure() { - # needed after 8eb640b6f2e140e7c5a1adbe5532cf3662d850b5 - "$(qt5_get_bindir)/lrelease" rssguard.pro || die "lrelease failed" - # CONFIG+=ltcg is needed because of https://github.com/martinrotter/rssguard/issues/156 - eqmake5 \ - CONFIG+=$(usex debug debug release) \ - $(is-flagq -flto* && echo "CONFIG+=ltcg") \ - USE_WEBENGINE=$(usex webengine true false) \ - LRELEASE_EXECUTABLE="$(qt5_get_bindir)/lrelease" \ - PREFIX="${EPREFIX}"/usr \ - INSTALL_ROOT=. -} - -src_install() { - emake install INSTALL_ROOT="${D}" -}