commit: 5842ef7f43b7dd05654eeaa7b05c9ab428b875c4 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Sat Mar 7 06:22:46 2026 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Sat Mar 7 07:06:30 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5842ef7f
net-news/rssguard: Bump to 5.0.3 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> net-news/rssguard/Manifest | 1 + net-news/rssguard/rssguard-5.0.3.ebuild | 66 +++++++++++++++++++++++++++++++++ 2 files changed, 67 insertions(+) diff --git a/net-news/rssguard/Manifest b/net-news/rssguard/Manifest index eb3151f177c6..f8873046ec77 100644 --- a/net-news/rssguard/Manifest +++ b/net-news/rssguard/Manifest @@ -2,3 +2,4 @@ DIST rssguard-4.8.6.gh.tar.gz 24055627 BLAKE2B f8ddf0cdfe5d495f9e76299397df8748b DIST rssguard-5.0.0-src.tar.gz 89670896 BLAKE2B 6b15163f7d4d7e98aee535432d53e675034831342f05ff5d0973c5271fd157f99665ad75414b0c45293a3df346c20c7c59e41379ae3cab685e364dfb144c9f45 SHA512 abd6d6b78ef70645b996a04163841062e58209b8b3c113a6a8d2c307d3e452837b8ffb240a1621159d295022e8367ee3b8b8c51c618ba02df53ed0422bee6943 DIST rssguard-5.0.1-src.tar.gz 90342601 BLAKE2B dc869f368b6a7cef0247988a5ddb2ee9cc622ded01ccf0bd8cef3031914e7c30e142f3112aed90714175ce0ee677c0162167db8ea8f601ecd512b11255997476 SHA512 3794e47e3cf8f7da36a700d7a27411b6c2cfc06dd2490240d588d84167953284d90978a3bfe36b49588c9ef25275d0c20e6a388e20a4f9b2bce089d3356054f1 DIST rssguard-5.0.2-src.tar.gz 90344663 BLAKE2B ceee732a68c267f671130455d5441ebf4ad81723424c6e32e8fbf1d699d1e281cdf296bc9ecd8c0b99900fdb3edfb96aa495bf83d52b14be4983323b0e8466cc SHA512 a16db67ba8e2fcd4bb2518af8b3d86cd86a322064f0cf5581fc9dcfb52372e23236fd06a513addb39e8fc6c0f8471bf6e34cdb9613effc282109543201b1119c +DIST rssguard-5.0.3-src.tar.gz 93146801 BLAKE2B 98b72a361de07fab8cb6b78f3beb751217156d74e0ef2988028111574b0acf068a13019f7bfffee301657f45587a239f5596cbc1d98e077cd6d02d45ac380e92 SHA512 d4dd6497bd38620525fd3ec0edf73e352802600a370cfcd10c3ac8c25cfdace66f3f591c5c5eac81f074c239080767ced2fbbe4305f7d1b4bba26494689d0f53 diff --git a/net-news/rssguard/rssguard-5.0.3.ebuild b/net-news/rssguard/rssguard-5.0.3.ebuild new file mode 100644 index 000000000000..931b5a58e57d --- /dev/null +++ b/net-news/rssguard/rssguard-5.0.3.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake xdg + +DESCRIPTION="Simple (yet powerful) news feed reader" +HOMEPAGE="https://github.com/martinrotter/rssguard/" +SRC_URI=" + https://github.com/martinrotter/rssguard/releases/download/${PV}/${P}-src.tar.gz +" + +LICENSE="|| ( LGPL-3 GPL-2+ ) AGPL-3+ BSD GPL-3+ MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="icu libmpv mysql qtmultimedia +sqlite" +REQUIRED_USE=" + || ( mysql sqlite ) + ?? ( libmpv qtmultimedia ) +" + +# go for article-extractor plugin +BDEPEND=" + dev-lang/go + dev-qt/qttools:6[linguist] +" +DEPEND=" + dev-qt/qtbase:6[concurrent,dbus,gui,mysql?,network,sql,sqlite?,ssl,widgets] + dev-qt/qtdeclarative:6 + dev-qt/qtmultimedia:6[gstreamer] + media-libs/libglvnd + virtual/zlib:= + icu? ( dev-libs/icu:= ) + libmpv? ( + dev-qt/qtbase:6[opengl] + media-video/mpv:= + ) + qtmultimedia? ( + dev-qt/qtbase:6[opengl] + dev-qt/qtmultimedia:6 + ) +" +RDEPEND="${DEPEND}" + +# go +QA_FLAGS_IGNORED="/usr/bin/rssguard-article-extractor" + +src_configure() { + local mycmakeargs=( + -DBUILD_WITH_QT6=ON + -DREVISION_FROM_GIT=OFF + -DNO_UPDATE_CHECK=ON + -DENABLE_COMPRESSED_SITEMAP=ON + -DENABLE_ICU=$(usex icu) + -DENABLE_MEDIAPLAYER_QTMULTIMEDIA=$(usex qtmultimedia) + -DENABLE_MEDIAPLAYER_LIBMPV=$(usex libmpv) + # recommended + -DMEDIAPLAYER_FORCE_OPENGL=ON + # TODO: unbundle gumbo? unfortunately upstream is inlining it + # into their CMakeLists rather than using litehtml CMakeLists + # that support external gumbo + ) + + cmake_src_configure +}
