* [gentoo-commits] repo/gentoo:master commit in: profiles/, net-news/rssguard/
@ 2023-12-07 12:45 Michał Górny
0 siblings, 0 replies; 2+ messages in thread
From: Michał Górny @ 2023-12-07 12:45 UTC (permalink / raw
To: gentoo-commits
commit: 75b5edfa4b08bc01b0a2f356920f9f3631bbfef3
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 7 12:31:29 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Dec 7 12:45:36 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75b5edfa
net-news/rssguard: Bump to 4.6.0
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
| 1 +
| 2 +
| 81 +++++++++++++++++++++++++++++++++
profiles/package.mask | 6 +++
4 files changed, 90 insertions(+)
--git a/net-news/rssguard/Manifest b/net-news/rssguard/Manifest
index 1b2226532b5f..9b0a9fbe3c21 100644
--- a/net-news/rssguard/Manifest
+++ b/net-news/rssguard/Manifest
@@ -1 +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
--git a/net-news/rssguard/metadata.xml b/net-news/rssguard/metadata.xml
index 30afe4afbbf3..2c01a147ab62 100644
--- a/net-news/rssguard/metadata.xml
+++ b/net-news/rssguard/metadata.xml
@@ -14,7 +14,9 @@
<bugs-to>https://github.com/martinrotter/rssguard/issues</bugs-to>
</upstream>
<use>
+ <flag name="libmpv">Enable media player support via libmpv from <pkg>media-video/mpv</pkg></flag>
<flag name="qt6">Build with Qt6 support instead of the default Qt5</flag>
+ <flag name="qtmultimedia">Enable media player support via <pkg>dev-qt/qtmultimedia</pkg></flag>
<flag name="webengine">Use <pkg>dev-qt/qtwebengine</pkg> for embedded web browser</flag>
</use>
<longdescription>
--git a/net-news/rssguard/rssguard-4.6.0.ebuild b/net-news/rssguard/rssguard-4.6.0.ebuild
new file mode 100644
index 000000000000..fd27e62a275e
--- /dev/null
+++ b/net-news/rssguard/rssguard-4.6.0.ebuild
@@ -0,0 +1,81 @@
+# 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]"
+}
diff --git a/profiles/package.mask b/profiles/package.mask
index 8feca43a4905..59224d8a0a6e 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -33,6 +33,12 @@
#--- END OF EXAMPLES ---
+# Michał Górny <mgorny@gentoo.org> (2023-11-30)
+# The new release fails to build if media player backend is disabled.
+# Masked pending a fix.
+# https://github.com/martinrotter/rssguard/issues/1237
+=net-news/rssguard-4.6.0
+
# Hans de Graaff <graaff@gentoo.org> (2023-12-06)
# Copy of dev-ruby/listen spefically for dev-ruby/sass. That package now
# uses dev-ruby/listen directly so there is no longer a need for
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: profiles/, net-news/rssguard/
@ 2023-12-07 17:24 Michał Górny
0 siblings, 0 replies; 2+ messages in thread
From: Michał Górny @ 2023-12-07 17:24 UTC (permalink / raw
To: gentoo-commits
commit: bec2b9a179ca4571339608af4a7411de017c9fb1
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 7 16:14:38 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Dec 7 17:23:07 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bec2b9a1
net-news/rssguard: Remove 4.6.0
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
| 1 -
| 81 ---------------------------------
profiles/package.mask | 6 ---
3 files changed, 88 deletions(-)
--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]"
-}
diff --git a/profiles/package.mask b/profiles/package.mask
index 59224d8a0a6e..8feca43a4905 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -33,12 +33,6 @@
#--- END OF EXAMPLES ---
-# Michał Górny <mgorny@gentoo.org> (2023-11-30)
-# The new release fails to build if media player backend is disabled.
-# Masked pending a fix.
-# https://github.com/martinrotter/rssguard/issues/1237
-=net-news/rssguard-4.6.0
-
# Hans de Graaff <graaff@gentoo.org> (2023-12-06)
# Copy of dev-ruby/listen spefically for dev-ruby/sass. That package now
# uses dev-ruby/listen directly so there is no longer a need for
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-12-07 17:25 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-07 12:45 [gentoo-commits] repo/gentoo:master commit in: profiles/, net-news/rssguard/ Michał Górny
-- strict thread matches above, loose matches on Subject: below --
2023-12-07 17:24 Michał Górny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox