summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2023-12-07 17:14:38 +0100
committerMichał Górny <mgorny@gentoo.org>2023-12-07 18:23:07 +0100
commitbec2b9a179ca4571339608af4a7411de017c9fb1 (patch)
treeccc6a3c54e8640dbf647db913d9e893e98cf00dc /net-news
parentnet-news/rssguard: Bump to 4.6.1 (diff)
downloadgentoo-bec2b9a179ca4571339608af4a7411de017c9fb1.tar.gz
gentoo-bec2b9a179ca4571339608af4a7411de017c9fb1.tar.bz2
gentoo-bec2b9a179ca4571339608af4a7411de017c9fb1.zip
net-news/rssguard: Remove 4.6.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'net-news')
-rw-r--r--net-news/rssguard/Manifest1
-rw-r--r--net-news/rssguard/rssguard-4.6.0.ebuild81
2 files changed, 0 insertions, 82 deletions
diff --git a/net-news/rssguard/Manifest b/net-news/rssguard/Manifest
index a25c0e8f47b8..5dc8eb09782c 100644
--- a/net-news/rssguard/Manifest
+++ b/net-news/rssguard/Manifest
@@ -1,3 +1,2 @@
DIST rssguard-4.5.5.gh.tar.gz 23236465 BLAKE2B b650826169f42983799af04c044922b9ad0e2f6d7656df93ca1b9529a359daeb91556dfd65e9a8b7a2a97119c2f9d5b10ce6c594f6f958669f4c8c765160d7e0 SHA512 c0fd179052d26a354b6ca053725ef59ae1db6587c3bc4a92aedce36de1ecfbfd06fde387960dade22fca195fa9568e5714939113833e058dbae0d8056158d010
-DIST rssguard-4.6.0.gh.tar.gz 60426983 BLAKE2B 82c7b0dea84c5750578fbc284ea2b5fec052e3eb49646520ed390620ef1b0833994179c3583af17d79da29f8e833ff8f9f1ef2ff3df1ff3903a5ebaebd8313e0 SHA512 147ed789124acfb5038a68141e0257ed316fc25ce94406c8dbe5495f3f42761a1445bfe73eada9a17ca4b0177d0744217810a03667281e643e3a18b5f8a4d675
DIST rssguard-4.6.1.gh.tar.gz 60427864 BLAKE2B 68e72c3fe9095a4939568a49053851ad3959e772042ed975a86479e2ea429d4db02938ab069f630edcdf5704e6c8faa7e19f6aef52f3d988c0e7373f59764d22 SHA512 070c395940ffe7d93c38c7087da59be1c4af7722399d091583bdf4feea3c87fde2d28823c1bef2e9ac88db1d003dbaa483cfc09caa337f47946830ea15a35fa2
diff --git a/net-news/rssguard/rssguard-4.6.0.ebuild b/net-news/rssguard/rssguard-4.6.0.ebuild
deleted file mode 100644
index fd27e62a275e..000000000000
--- a/net-news/rssguard/rssguard-4.6.0.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake optfeature xdg
-
-DESCRIPTION="Simple (yet powerful) news feed reader"
-HOMEPAGE="https://github.com/martinrotter/rssguard/"
-SRC_URI="
- https://github.com/martinrotter/rssguard/archive/${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="|| ( LGPL-3 GPL-2+ ) AGPL-3+ BSD GPL-3+ MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="libmpv mysql qt6 qtmultimedia +sqlite webengine"
-REQUIRED_USE="
- || ( mysql sqlite )
- ?? ( libmpv qtmultimedia )
-"
-
-BDEPEND="
- !qt6? ( dev-qt/linguist-tools:5 )
- qt6? ( dev-qt/qttools:6[linguist] )
-"
-DEPEND="
- sys-libs/zlib:=
- libmpv? ( media-video/mpv:= )
- !qt6? (
- dev-qt/qtconcurrent:5
- dev-qt/qtcore:5
- dev-qt/qtdbus:5
- dev-qt/qtdeclarative:5
- dev-qt/qtgui:5
- dev-qt/qtmultimedia:5[gstreamer]
- dev-qt/qtnetwork:5[ssl]
- dev-qt/qtsql:5[mysql?,sqlite?]
- dev-qt/qtwidgets:5
- dev-qt/qtxml:5
- qtmultimedia? (
- dev-qt/qtmultimedia:5
- dev-qt/qtopengl:5
- )
- webengine? ( dev-qt/qtwebengine:5[widgets(+)] )
- )
- qt6? (
- dev-qt/qtbase:6[concurrent,dbus,gui,mysql?,network,sql,sqlite?,ssl,widgets]
- dev-qt/qtdeclarative:6
- dev-qt/qtmultimedia:6[gstreamer]
- dev-qt/qt5compat:6
- media-libs/libglvnd
- qtmultimedia? (
- dev-qt/qtbase:6[opengl]
- dev-qt/qtmultimedia:6
- )
- webengine? ( dev-qt/qtwebengine:6[widgets(+)] )
- )
-"
-RDEPEND="${DEPEND}"
-
-src_configure() {
- local mycmakeargs=(
- -DBUILD_WITH_QT6=$(usex qt6)
- -DNO_LITE=$(usex webengine)
- -DREVISION_FROM_GIT=OFF
- -DNO_UPDATE_CHECK=ON
- -DENABLE_COMPRESSED_SITEMAP=ON
- -DENABLE_MEDIAPLAYER_QTMULTIMEDIA=$(usex qtmultimedia)
- -DENABLE_MEDIAPLAYER_LIBMPV=$(usex libmpv)
- )
-
- cmake_src_configure
-}
-
-pkg_postinst() {
- xdg_pkg_postinst
-
- optfeature "ad blocking functionality" "net-libs/nodejs[npm]"
-}