* [gentoo-commits] repo/gentoo:master commit in: kde-apps/k3b/
@ 2017-08-02 21:32 Andreas Sturmlechner
0 siblings, 0 replies; 20+ messages in thread
From: Andreas Sturmlechner @ 2017-08-02 21:32 UTC (permalink / raw
To: gentoo-commits
commit: d0166185b0adb7df0a7d22a321751c9f3d646f1f
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 2 21:30:59 2017 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Aug 2 21:32:19 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0166185
kde-apps/k3b: Fix USE-deps and REQUIRED_USE
If taglib is not enabled, projects adding mp3 and flac files will hang.
Package-Manager: Portage-2.3.6, Repoman-2.3.1
kde-apps/k3b/k3b-17.04.3-r1.ebuild | 117 +++++++++++++++++++++++++++++++++++++
1 file changed, 117 insertions(+)
diff --git a/kde-apps/k3b/k3b-17.04.3-r1.ebuild b/kde-apps/k3b/k3b-17.04.3-r1.ebuild
new file mode 100644
index 00000000000..845c9aa65ca
--- /dev/null
+++ b/kde-apps/k3b/k3b-17.04.3-r1.ebuild
@@ -0,0 +1,117 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+KDE_HANDBOOK="forceoptional"
+KDE_TEST="true"
+inherit kde5
+
+DESCRIPTION="Full-featured burning and ripping application based on KDE Frameworks"
+HOMEPAGE="http://www.k3b.org/"
+
+LICENSE="GPL-2 FDL-1.2"
+KEYWORDS="~amd64 ~x86"
+IUSE="dvd emovix encode ffmpeg flac libav mad mp3 musepack sndfile sox taglib vcd vorbis webkit"
+
+DEPEND="
+ $(add_frameworks_dep karchive)
+ $(add_frameworks_dep kbookmarks)
+ $(add_frameworks_dep kcmutils)
+ $(add_frameworks_dep kcompletion)
+ $(add_frameworks_dep kconfig)
+ $(add_frameworks_dep kconfigwidgets)
+ $(add_frameworks_dep kcoreaddons)
+ $(add_frameworks_dep kfilemetadata 'taglib?')
+ $(add_frameworks_dep ki18n)
+ $(add_frameworks_dep kiconthemes)
+ $(add_frameworks_dep kio)
+ $(add_frameworks_dep kjobwidgets)
+ $(add_frameworks_dep knewstuff)
+ $(add_frameworks_dep knotifications)
+ $(add_frameworks_dep knotifyconfig)
+ $(add_frameworks_dep kservice)
+ $(add_frameworks_dep kwidgetsaddons)
+ $(add_frameworks_dep kxmlgui)
+ $(add_frameworks_dep solid)
+ $(add_kdeapps_dep libkcddb)
+ $(add_qt_dep qtdbus)
+ $(add_qt_dep qtgui)
+ $(add_qt_dep qtnetwork)
+ $(add_qt_dep qtwidgets)
+ $(add_qt_dep qtxml)
+ media-libs/libsamplerate
+ dvd? ( media-libs/libdvdread )
+ ffmpeg? (
+ libav? ( media-video/libav:= )
+ !libav? ( media-video/ffmpeg:0= )
+ )
+ flac? ( >=media-libs/flac-1.2[cxx] )
+ mp3? ( media-sound/lame )
+ mad? ( media-libs/libmad )
+ musepack? ( >=media-sound/musepack-tools-444 )
+ sndfile? ( media-libs/libsndfile )
+ taglib? ( >=media-libs/taglib-1.5 )
+ vorbis? ( media-libs/libvorbis )
+ webkit? ( $(add_qt_dep qtwebkit) )
+"
+RDEPEND="${DEPEND}
+ app-cdr/cdrdao
+ dev-libs/libburn
+ media-sound/cdparanoia
+ virtual/cdrtools
+ dvd? (
+ >=app-cdr/dvd+rw-tools-7
+ encode? ( media-video/transcode[dvd] )
+ )
+ emovix? ( media-video/emovix )
+ sox? ( media-sound/sox )
+ vcd? ( media-video/vcdimager )
+"
+
+REQUIRED_USE="
+ mp3? ( encode taglib )
+ sox? ( encode taglib )
+"
+
+DOCS+=( ChangeLog {FAQ,PERMISSIONS,README}.txt )
+
+src_configure() {
+ local mycmakeargs=(
+ -DK3B_BUILD_API_DOCS=OFF
+ -DK3B_BUILD_WAVE_DECODER_PLUGIN=ON
+ -DK3B_ENABLE_HAL_SUPPORT=OFF
+ -DK3B_ENABLE_MUSICBRAINZ=OFF
+ -DK3B_DEBUG=$(usex debug)
+ -DK3B_ENABLE_DVD_RIPPING=$(usex dvd)
+ -DK3B_BUILD_EXTERNAL_ENCODER_PLUGIN=$(usex encode)
+ -DK3B_BUILD_FFMPEG_DECODER_PLUGIN=$(usex ffmpeg)
+ -DK3B_BUILD_FLAC_DECODER_PLUGIN=$(usex flac)
+ -DK3B_BUILD_LAME_ENCODER_PLUGIN=$(usex mp3)
+ -DK3B_BUILD_MAD_DECODER_PLUGIN=$(usex mad)
+ -DK3B_BUILD_MUSE_DECODER_PLUGIN=$(usex musepack)
+ -DK3B_BUILD_SNDFILE_DECODER_PLUGIN=$(usex sndfile)
+ -DK3B_BUILD_SOX_ENCODER_PLUGIN=$(usex sox)
+ -DK3B_ENABLE_TAGLIB=$(usex taglib)
+ -DK3B_BUILD_OGGVORBIS_DECODER_PLUGIN=$(usex vorbis)
+ -DK3B_BUILD_OGGVORBIS_ENCODER_PLUGIN=$(usex vorbis)
+ $(cmake-utils_use_find_package webkit Qt5WebKitWidgets)
+ )
+
+ kde5_src_configure
+}
+
+pkg_postinst() {
+ kde5_pkg_postinst
+
+ echo
+ elog "If you get warnings on start-up, uncheck the \"Check system"
+ elog "configuration\" option in the \"Misc\" settings window."
+ echo
+
+ local group=cdrom
+ use kernel_linux || group=operator
+ elog "Make sure you have proper read/write permissions on optical device(s)."
+ elog "Usually, it is sufficient to be in the ${group} group."
+ echo
+}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: kde-apps/k3b/
@ 2017-08-02 21:32 Andreas Sturmlechner
0 siblings, 0 replies; 20+ messages in thread
From: Andreas Sturmlechner @ 2017-08-02 21:32 UTC (permalink / raw
To: gentoo-commits
commit: bd622ea7d3668252369b0f3560df7bf6c89ad390
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 2 21:31:51 2017 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Aug 2 21:32:19 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd622ea7
kde-apps/k3b: Drop 17.04.3 (r0)
Package-Manager: Portage-2.3.6, Repoman-2.3.1
kde-apps/k3b/k3b-17.04.3.ebuild | 116 ----------------------------------------
1 file changed, 116 deletions(-)
diff --git a/kde-apps/k3b/k3b-17.04.3.ebuild b/kde-apps/k3b/k3b-17.04.3.ebuild
deleted file mode 100644
index 08c23b934fe..00000000000
--- a/kde-apps/k3b/k3b-17.04.3.ebuild
+++ /dev/null
@@ -1,116 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDE_HANDBOOK="forceoptional"
-KDE_TEST="true"
-inherit kde5
-
-DESCRIPTION="Full-featured burning and ripping application based on KDE Frameworks"
-HOMEPAGE="http://www.k3b.org/"
-LICENSE="GPL-2 FDL-1.2"
-KEYWORDS="~amd64 ~x86"
-IUSE="dvd emovix encode ffmpeg flac libav mad mp3 musepack sndfile sox taglib vcd vorbis webkit"
-
-DEPEND="
- $(add_frameworks_dep karchive)
- $(add_frameworks_dep kbookmarks)
- $(add_frameworks_dep kcmutils)
- $(add_frameworks_dep kcompletion)
- $(add_frameworks_dep kconfig)
- $(add_frameworks_dep kconfigwidgets)
- $(add_frameworks_dep kcoreaddons)
- $(add_frameworks_dep kfilemetadata)
- $(add_frameworks_dep ki18n)
- $(add_frameworks_dep kiconthemes)
- $(add_frameworks_dep kio)
- $(add_frameworks_dep kjobwidgets)
- $(add_frameworks_dep knewstuff)
- $(add_frameworks_dep knotifications)
- $(add_frameworks_dep knotifyconfig)
- $(add_frameworks_dep kservice)
- $(add_frameworks_dep kwidgetsaddons)
- $(add_frameworks_dep kxmlgui)
- $(add_frameworks_dep solid)
- $(add_kdeapps_dep libkcddb)
- $(add_qt_dep qtdbus)
- $(add_qt_dep qtgui)
- $(add_qt_dep qtnetwork)
- $(add_qt_dep qtwidgets)
- $(add_qt_dep qtxml)
- media-libs/libsamplerate
- dvd? ( media-libs/libdvdread )
- ffmpeg? (
- libav? ( media-video/libav:= )
- !libav? ( media-video/ffmpeg:0= )
- )
- flac? ( >=media-libs/flac-1.2[cxx] )
- mp3? ( media-sound/lame )
- mad? ( media-libs/libmad )
- musepack? ( >=media-sound/musepack-tools-444 )
- sndfile? ( media-libs/libsndfile )
- taglib? ( >=media-libs/taglib-1.5 )
- vorbis? ( media-libs/libvorbis )
- webkit? ( $(add_qt_dep qtwebkit) )
-"
-RDEPEND="${DEPEND}
- app-cdr/cdrdao
- dev-libs/libburn
- media-sound/cdparanoia
- virtual/cdrtools
- dvd? (
- >=app-cdr/dvd+rw-tools-7
- encode? ( media-video/transcode[dvd] )
- )
- emovix? ( media-video/emovix )
- sox? ( media-sound/sox )
- vcd? ( media-video/vcdimager )
-"
-
-REQUIRED_USE="
- mp3? ( encode )
- sox? ( encode )
-"
-
-DOCS+=( ChangeLog {FAQ,PERMISSIONS,README}.txt )
-
-src_configure() {
- local mycmakeargs=(
- -DK3B_BUILD_API_DOCS=OFF
- -DK3B_BUILD_WAVE_DECODER_PLUGIN=ON
- -DK3B_ENABLE_HAL_SUPPORT=OFF
- -DK3B_ENABLE_MUSICBRAINZ=OFF
- -DK3B_DEBUG=$(usex debug)
- -DK3B_ENABLE_DVD_RIPPING=$(usex dvd)
- -DK3B_BUILD_EXTERNAL_ENCODER_PLUGIN=$(usex encode)
- -DK3B_BUILD_FFMPEG_DECODER_PLUGIN=$(usex ffmpeg)
- -DK3B_BUILD_FLAC_DECODER_PLUGIN=$(usex flac)
- -DK3B_BUILD_LAME_ENCODER_PLUGIN=$(usex mp3)
- -DK3B_BUILD_MAD_DECODER_PLUGIN=$(usex mad)
- -DK3B_BUILD_MUSE_DECODER_PLUGIN=$(usex musepack)
- -DK3B_BUILD_SNDFILE_DECODER_PLUGIN=$(usex sndfile)
- -DK3B_BUILD_SOX_ENCODER_PLUGIN=$(usex sox)
- -DK3B_ENABLE_TAGLIB=$(usex taglib)
- -DK3B_BUILD_OGGVORBIS_DECODER_PLUGIN=$(usex vorbis)
- -DK3B_BUILD_OGGVORBIS_ENCODER_PLUGIN=$(usex vorbis)
- $(cmake-utils_use_find_package webkit Qt5WebKitWidgets)
- )
-
- kde5_src_configure
-}
-
-pkg_postinst() {
- kde5_pkg_postinst
-
- echo
- elog "If you get warnings on start-up, uncheck the \"Check system"
- elog "configuration\" option in the \"Misc\" settings window."
- echo
-
- local group=cdrom
- use kernel_linux || group=operator
- elog "Make sure you have proper read/write permissions on optical device(s)."
- elog "Usually, it is sufficient to be in the ${group} group."
- echo
-}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: kde-apps/k3b/
@ 2017-08-02 21:37 Andreas Sturmlechner
0 siblings, 0 replies; 20+ messages in thread
From: Andreas Sturmlechner @ 2017-08-02 21:37 UTC (permalink / raw
To: gentoo-commits
commit: 68972ebcc47ad1025c3900cbe2e62c5836045937
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 2 21:36:56 2017 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Aug 2 21:36:56 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68972ebc
kde-apps/k3b: Add missing flac REQUIRED_USE
Package-Manager: Portage-2.3.6, Repoman-2.3.1
kde-apps/k3b/k3b-17.04.3-r1.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/kde-apps/k3b/k3b-17.04.3-r1.ebuild b/kde-apps/k3b/k3b-17.04.3-r1.ebuild
index 845c9aa65ca..e0f4fb461bd 100644
--- a/kde-apps/k3b/k3b-17.04.3-r1.ebuild
+++ b/kde-apps/k3b/k3b-17.04.3-r1.ebuild
@@ -70,6 +70,7 @@ RDEPEND="${DEPEND}
"
REQUIRED_USE="
+ flac? ( taglib )
mp3? ( encode taglib )
sox? ( encode taglib )
"
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: kde-apps/k3b/
@ 2017-08-12 11:59 Andreas Sturmlechner
0 siblings, 0 replies; 20+ messages in thread
From: Andreas Sturmlechner @ 2017-08-12 11:59 UTC (permalink / raw
To: gentoo-commits
commit: b1cd661cd6f80d4559817534fda14fa69ec29732
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 12 11:06:48 2017 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Aug 12 11:54:25 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1cd661c
kde-apps/k3b: Restrict tests
One test is failing in case we stabilise this version.
Gentoo-bug: 616880
Package-Manager: Portage-2.3.6, Repoman-2.3.3
kde-apps/k3b/k3b-17.04.3-r1.ebuild | 2 ++
1 file changed, 2 insertions(+)
diff --git a/kde-apps/k3b/k3b-17.04.3-r1.ebuild b/kde-apps/k3b/k3b-17.04.3-r1.ebuild
index e0f4fb461bd..3f1a5c8bda0 100644
--- a/kde-apps/k3b/k3b-17.04.3-r1.ebuild
+++ b/kde-apps/k3b/k3b-17.04.3-r1.ebuild
@@ -77,6 +77,8 @@ REQUIRED_USE="
DOCS+=( ChangeLog {FAQ,PERMISSIONS,README}.txt )
+RESTRICT+=" test"
+
src_configure() {
local mycmakeargs=(
-DK3B_BUILD_API_DOCS=OFF
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: kde-apps/k3b/
@ 2017-08-18 20:58 Andreas Sturmlechner
0 siblings, 0 replies; 20+ messages in thread
From: Andreas Sturmlechner @ 2017-08-18 20:58 UTC (permalink / raw
To: gentoo-commits
commit: 14bce45dc96826ccf9233003caa631ade73549c3
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 18 20:54:37 2017 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri Aug 18 20:57:56 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14bce45d
kde-apps/k3b: Disable broken test
Gentoo-bug: 628166
Package-Manager: Portage-2.3.8, Repoman-2.3.3
kde-apps/k3b/k3b-17.08.0.ebuild | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/kde-apps/k3b/k3b-17.08.0.ebuild b/kde-apps/k3b/k3b-17.08.0.ebuild
index e0f4fb461bd..8c9730fc833 100644
--- a/kde-apps/k3b/k3b-17.08.0.ebuild
+++ b/kde-apps/k3b/k3b-17.08.0.ebuild
@@ -102,6 +102,15 @@ src_configure() {
kde5_src_configure
}
+src_test() {
+ # 628166
+ local myctestargs=(
+ -E "(k3bdeviceglobalstest)"
+ )
+
+ kde5_src_test
+}
+
pkg_postinst() {
kde5_pkg_postinst
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: kde-apps/k3b/
@ 2018-12-01 17:00 Mikle Kolyada
0 siblings, 0 replies; 20+ messages in thread
From: Mikle Kolyada @ 2018-12-01 17:00 UTC (permalink / raw
To: gentoo-commits
commit: 527b9fe3f9bd6f97f01bade5dbf0a3a1864b7374
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 1 16:15:43 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Dec 1 17:00:25 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=527b9fe3
kde-apps/k3b: amd64 stable wrt bug 670862
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
kde-apps/k3b/k3b-18.08.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kde-apps/k3b/k3b-18.08.3.ebuild b/kde-apps/k3b/k3b-18.08.3.ebuild
index ca07f5b8b2f..ca4d83290a3 100644
--- a/kde-apps/k3b/k3b-18.08.3.ebuild
+++ b/kde-apps/k3b/k3b-18.08.3.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Full-featured burning and ripping application based on KDE Framewor
HOMEPAGE="https://userbase.kde.org/K3b"
LICENSE="GPL-2 FDL-1.2"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="dvd emovix encode ffmpeg flac libav mad mp3 musepack sndfile sox taglib vcd vorbis webkit"
DEPEND="
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: kde-apps/k3b/
@ 2020-01-09 18:20 Andreas Sturmlechner
0 siblings, 0 replies; 20+ messages in thread
From: Andreas Sturmlechner @ 2020-01-09 18:20 UTC (permalink / raw
To: gentoo-commits
commit: 999425cab7722abee8615e4bf1b2e6a11a68b81a
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 9 17:36:03 2020 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Jan 9 18:19:59 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=999425ca
kde-apps/k3b: Drop USE emovix
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
kde-apps/k3b/k3b-19.12.1.ebuild | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/kde-apps/k3b/k3b-19.12.1.ebuild b/kde-apps/k3b/k3b-19.12.1.ebuild
index 27b7b84bfc6..133fad51c62 100644
--- a/kde-apps/k3b/k3b-19.12.1.ebuild
+++ b/kde-apps/k3b/k3b-19.12.1.ebuild
@@ -17,7 +17,7 @@ https://userbase.kde.org/K3b"
LICENSE="GPL-2 FDL-1.2"
SLOT="5"
KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="dvd emovix encode ffmpeg flac libav mad mp3 musepack sndfile sox taglib vcd vorbis webkit"
+IUSE="dvd encode ffmpeg flac libav mad mp3 musepack sndfile sox taglib vcd vorbis webkit"
REQUIRED_USE="
flac? ( taglib )
@@ -78,7 +78,6 @@ RDEPEND="${DEPEND}
>=app-cdr/dvd+rw-tools-7
encode? ( media-video/transcode[dvd] )
)
- emovix? ( media-video/emovix )
sox? ( media-sound/sox )
vcd? ( media-video/vcdimager )
"
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: kde-apps/k3b/
@ 2020-04-25 17:21 Mikle Kolyada
0 siblings, 0 replies; 20+ messages in thread
From: Mikle Kolyada @ 2020-04-25 17:21 UTC (permalink / raw
To: gentoo-commits
commit: 344ef7b1a3da57ce5c97e58ea464b56ef403fba0
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 25 17:21:15 2020 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Apr 25 17:21:41 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=344ef7b1
kde-apps/k3b: migrate from libav
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
kde-apps/k3b/k3b-19.12.3.ebuild | 7 ++-----
kde-apps/k3b/k3b-20.04.0.ebuild | 7 ++-----
2 files changed, 4 insertions(+), 10 deletions(-)
diff --git a/kde-apps/k3b/k3b-19.12.3.ebuild b/kde-apps/k3b/k3b-19.12.3.ebuild
index 154711497a7..0b6e9c0f13a 100644
--- a/kde-apps/k3b/k3b-19.12.3.ebuild
+++ b/kde-apps/k3b/k3b-19.12.3.ebuild
@@ -17,7 +17,7 @@ https://userbase.kde.org/K3b"
LICENSE="GPL-2 FDL-1.2"
SLOT="5"
KEYWORDS="amd64 arm64 x86"
-IUSE="dvd encode ffmpeg flac libav mad mp3 musepack sndfile sox taglib vcd vorbis webkit"
+IUSE="dvd encode ffmpeg flac mad mp3 musepack sndfile sox taglib vcd vorbis webkit"
REQUIRED_USE="
flac? ( taglib )
@@ -53,10 +53,7 @@ DEPEND="
>=dev-qt/qtxml-${QTMIN}:5
media-libs/libsamplerate
dvd? ( media-libs/libdvdread:= )
- ffmpeg? (
- libav? ( media-video/libav:= )
- !libav? ( media-video/ffmpeg:0= )
- )
+ ffmpeg? ( media-video/ffmpeg:0= )
flac? ( >=media-libs/flac-1.2[cxx] )
mp3? ( media-sound/lame )
mad? ( media-libs/libmad )
diff --git a/kde-apps/k3b/k3b-20.04.0.ebuild b/kde-apps/k3b/k3b-20.04.0.ebuild
index 76f61aeb976..68fe0dac27b 100644
--- a/kde-apps/k3b/k3b-20.04.0.ebuild
+++ b/kde-apps/k3b/k3b-20.04.0.ebuild
@@ -17,7 +17,7 @@ https://userbase.kde.org/K3b"
LICENSE="GPL-2 FDL-1.2"
SLOT="5"
KEYWORDS="~amd64"
-IUSE="dvd encode ffmpeg flac libav mad mp3 musepack sndfile sox taglib vcd vorbis webkit"
+IUSE="dvd encode ffmpeg flac mad mp3 musepack sndfile sox taglib vcd vorbis webkit"
REQUIRED_USE="
flac? ( taglib )
@@ -53,10 +53,7 @@ DEPEND="
>=dev-qt/qtxml-${QTMIN}:5
media-libs/libsamplerate
dvd? ( media-libs/libdvdread:= )
- ffmpeg? (
- libav? ( media-video/libav:= )
- !libav? ( media-video/ffmpeg:0= )
- )
+ ffmpeg? ( media-video/ffmpeg:0= )
flac? ( >=media-libs/flac-1.2[cxx] )
mp3? ( media-sound/lame )
mad? ( media-libs/libmad )
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: kde-apps/k3b/
@ 2020-10-16 17:46 Georgy Yakovlev
0 siblings, 0 replies; 20+ messages in thread
From: Georgy Yakovlev @ 2020-10-16 17:46 UTC (permalink / raw
To: gentoo-commits
commit: 9c70008efa900f1f504ac2e6ed4e3343aaaaaa2c
Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 16 10:33:21 2020 +0000
Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
CommitDate: Fri Oct 16 17:45:14 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c70008e
kde-apps/k3b: add ~ppc64 keyword
100% tests passed, 0 tests failed out of 6
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
kde-apps/k3b/k3b-20.08.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kde-apps/k3b/k3b-20.08.2.ebuild b/kde-apps/k3b/k3b-20.08.2.ebuild
index 7807ff5baa3..7ea3751146d 100644
--- a/kde-apps/k3b/k3b-20.08.2.ebuild
+++ b/kde-apps/k3b/k3b-20.08.2.ebuild
@@ -16,7 +16,7 @@ https://userbase.kde.org/K3b"
LICENSE="GPL-2 FDL-1.2"
SLOT="5"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
IUSE="dvd encode ffmpeg flac mad mp3 musepack sndfile sox taglib vcd vorbis"
REQUIRED_USE="
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: kde-apps/k3b/
@ 2020-12-18 9:00 Michał Górny
0 siblings, 0 replies; 20+ messages in thread
From: Michał Górny @ 2020-12-18 9:00 UTC (permalink / raw
To: gentoo-commits
commit: 89d259771b2df024f1134c666de802dd87e8affd
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 18 08:57:28 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Dec 18 09:00:24 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89d25977
kde-apps/k3b: Inline virtual/cdrtools
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
kde-apps/k3b/k3b-20.08.3.ebuild | 2 +-
kde-apps/k3b/k3b-20.12.0.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/kde-apps/k3b/k3b-20.08.3.ebuild b/kde-apps/k3b/k3b-20.08.3.ebuild
index 7187e896a88..cfe5805e133 100644
--- a/kde-apps/k3b/k3b-20.08.3.ebuild
+++ b/kde-apps/k3b/k3b-20.08.3.ebuild
@@ -66,9 +66,9 @@ DEPEND="
"
RDEPEND="${DEPEND}
app-cdr/cdrdao
+ app-cdr/cdrtools
dev-libs/libburn
media-sound/cdparanoia
- virtual/cdrtools
dvd? (
>=app-cdr/dvd+rw-tools-7
encode? ( media-video/transcode[dvd] )
diff --git a/kde-apps/k3b/k3b-20.12.0.ebuild b/kde-apps/k3b/k3b-20.12.0.ebuild
index 2b788559cf7..dac793b6801 100644
--- a/kde-apps/k3b/k3b-20.12.0.ebuild
+++ b/kde-apps/k3b/k3b-20.12.0.ebuild
@@ -66,9 +66,9 @@ DEPEND="
"
RDEPEND="${DEPEND}
app-cdr/cdrdao
+ app-cdr/cdrtools
dev-libs/libburn
media-sound/cdparanoia
- virtual/cdrtools
dvd? (
>=app-cdr/dvd+rw-tools-7
encode? ( media-video/transcode[dvd] )
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: kde-apps/k3b/
@ 2021-09-27 14:14 Yixun Lan
0 siblings, 0 replies; 20+ messages in thread
From: Yixun Lan @ 2021-09-27 14:14 UTC (permalink / raw
To: gentoo-commits
commit: 5f3b9752fb04cf2e08eae806d3fdb5e40fbbdced
Author: Alex Fan <alexfanqi <AT> yahoo <DOT> com>
AuthorDate: Mon Sep 27 09:22:49 2021 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Mon Sep 27 14:04:36 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f3b9752
kde-apps/k3b: keyword 21.08.1 for ~riscv
Signed-off-by: Alex Fan <alexfanqi <AT> yahoo.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
kde-apps/k3b/k3b-21.08.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kde-apps/k3b/k3b-21.08.1.ebuild b/kde-apps/k3b/k3b-21.08.1.ebuild
index a9d464b2324..75c6a9253a3 100644
--- a/kde-apps/k3b/k3b-21.08.1.ebuild
+++ b/kde-apps/k3b/k3b-21.08.1.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://apps.kde.org/k3b/ https://userbase.kde.org/K3b"
LICENSE="GPL-2 FDL-1.2"
SLOT="5"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
IUSE="dvd encode ffmpeg flac mad mp3 musepack sndfile sox taglib vcd vorbis"
REQUIRED_USE="
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: kde-apps/k3b/
@ 2023-04-23 11:42 Andreas Sturmlechner
0 siblings, 0 replies; 20+ messages in thread
From: Andreas Sturmlechner @ 2023-04-23 11:42 UTC (permalink / raw
To: gentoo-commits
commit: 628dd1818e157aa1bcb61f345750943974a65c80
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 23 11:12:22 2023 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Apr 23 11:41:50 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=628dd181
kde-apps/k3b: Re-add IUSE (rename mp3 => lame), sox
Remaining *_ENCODER_PLUGIN flags appear to still work fine without
external encoder, just like ogg which had not been dropped.
This partially reverts commit 922fbdd8be012b4d8c9c936a0fdcfa8cd48058b8.
Closes: https://bugs.gentoo.org/904010
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
kde-apps/k3b/{k3b-22.12.3.ebuild => k3b-22.12.3-r1.ebuild} | 10 ++++++----
kde-apps/k3b/{k3b-23.04.0.ebuild => k3b-23.04.0-r1.ebuild} | 10 ++++++----
2 files changed, 12 insertions(+), 8 deletions(-)
diff --git a/kde-apps/k3b/k3b-22.12.3.ebuild b/kde-apps/k3b/k3b-22.12.3-r1.ebuild
similarity index 91%
rename from kde-apps/k3b/k3b-22.12.3.ebuild
rename to kde-apps/k3b/k3b-22.12.3-r1.ebuild
index 3b480cf39c26..e2d10e921f7e 100644
--- a/kde-apps/k3b/k3b-22.12.3.ebuild
+++ b/kde-apps/k3b/k3b-22.12.3-r1.ebuild
@@ -16,9 +16,9 @@ HOMEPAGE="https://apps.kde.org/k3b/ https://userbase.kde.org/K3b"
LICENSE="GPL-2 FDL-1.2"
SLOT="5"
KEYWORDS="amd64 arm64 ~ppc64 ~riscv x86"
-IUSE="dvd ffmpeg flac mad musepack sndfile taglib vcd vorbis"
+IUSE="dvd ffmpeg flac lame mad musepack sndfile sox taglib vcd vorbis"
-REQUIRED_USE="flac? ( taglib )"
+REQUIRED_USE="flac? ( taglib ) lame? ( taglib ) sox? ( taglib )"
DEPEND="
>=dev-qt/qtdbus-${QTMIN}:5
@@ -50,6 +50,7 @@ DEPEND="
dvd? ( media-libs/libdvdread:= )
ffmpeg? ( media-video/ffmpeg:0= )
flac? ( >=media-libs/flac-1.2:=[cxx] )
+ lame? ( media-sound/lame )
mad? ( media-libs/libmad )
musepack? ( >=media-sound/musepack-tools-444 )
sndfile? ( media-libs/libsndfile )
@@ -65,6 +66,7 @@ RDEPEND="${DEPEND}
dev-libs/libburn
media-sound/cdparanoia
dvd? ( >=app-cdr/dvd+rw-tools-7 )
+ sox? ( media-sound/sox )
vcd? ( media-video/vcdimager )
"
@@ -74,8 +76,6 @@ src_configure() {
local mycmakeargs=(
-DK3B_BUILD_API_DOCS=OFF
-DK3B_BUILD_EXTERNAL_ENCODER_PLUGIN=OFF
- -DK3B_BUILD_LAME_ENCODER_PLUGIN=OFF
- -DK3B_BUILD_SOX_ENCODER_PLUGIN=OFF
-DK3B_BUILD_WAVE_DECODER_PLUGIN=ON
-DK3B_ENABLE_HAL_SUPPORT=OFF
-DK3B_ENABLE_MUSICBRAINZ=OFF
@@ -84,9 +84,11 @@ src_configure() {
-DK3B_ENABLE_DVD_RIPPING=$(usex dvd)
-DK3B_BUILD_FFMPEG_DECODER_PLUGIN=$(usex ffmpeg)
-DK3B_BUILD_FLAC_DECODER_PLUGIN=$(usex flac)
+ -DK3B_BUILD_LAME_ENCODER_PLUGIN=$(usex lame)
-DK3B_BUILD_MAD_DECODER_PLUGIN=$(usex mad)
-DK3B_BUILD_MUSE_DECODER_PLUGIN=$(usex musepack)
-DK3B_BUILD_SNDFILE_DECODER_PLUGIN=$(usex sndfile)
+ -DK3B_BUILD_SOX_ENCODER_PLUGIN=$(usex sox)
-DK3B_ENABLE_TAGLIB=$(usex taglib)
-DK3B_BUILD_OGGVORBIS_DECODER_PLUGIN=$(usex vorbis)
-DK3B_BUILD_OGGVORBIS_ENCODER_PLUGIN=$(usex vorbis)
diff --git a/kde-apps/k3b/k3b-23.04.0.ebuild b/kde-apps/k3b/k3b-23.04.0-r1.ebuild
similarity index 91%
rename from kde-apps/k3b/k3b-23.04.0.ebuild
rename to kde-apps/k3b/k3b-23.04.0-r1.ebuild
index f3a010b8b1e8..27165eb02634 100644
--- a/kde-apps/k3b/k3b-23.04.0.ebuild
+++ b/kde-apps/k3b/k3b-23.04.0-r1.ebuild
@@ -16,9 +16,9 @@ HOMEPAGE="https://apps.kde.org/k3b/ https://userbase.kde.org/K3b"
LICENSE="GPL-2 FDL-1.2"
SLOT="5"
KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
-IUSE="dvd ffmpeg flac mad musepack sndfile taglib vcd vorbis"
+IUSE="dvd ffmpeg flac lame mad musepack sndfile sox taglib vcd vorbis"
-REQUIRED_USE="flac? ( taglib )"
+REQUIRED_USE="flac? ( taglib ) lame? ( taglib ) sox? ( taglib )"
DEPEND="
>=dev-qt/qtdbus-${QTMIN}:5
@@ -50,6 +50,7 @@ DEPEND="
dvd? ( media-libs/libdvdread:= )
ffmpeg? ( media-video/ffmpeg:0= )
flac? ( >=media-libs/flac-1.2:=[cxx] )
+ lame? ( media-sound/lame )
mad? ( media-libs/libmad )
musepack? ( >=media-sound/musepack-tools-444 )
sndfile? ( media-libs/libsndfile )
@@ -65,6 +66,7 @@ RDEPEND="${DEPEND}
dev-libs/libburn
media-sound/cdparanoia
dvd? ( >=app-cdr/dvd+rw-tools-7 )
+ sox? ( media-sound/sox )
vcd? ( media-video/vcdimager )
"
@@ -74,8 +76,6 @@ src_configure() {
local mycmakeargs=(
-DK3B_BUILD_API_DOCS=OFF
-DK3B_BUILD_EXTERNAL_ENCODER_PLUGIN=OFF
- -DK3B_BUILD_LAME_ENCODER_PLUGIN=OFF
- -DK3B_BUILD_SOX_ENCODER_PLUGIN=OFF
-DK3B_BUILD_WAVE_DECODER_PLUGIN=ON
-DK3B_ENABLE_HAL_SUPPORT=OFF
-DK3B_ENABLE_MUSICBRAINZ=OFF
@@ -84,9 +84,11 @@ src_configure() {
-DK3B_ENABLE_DVD_RIPPING=$(usex dvd)
-DK3B_BUILD_FFMPEG_DECODER_PLUGIN=$(usex ffmpeg)
-DK3B_BUILD_FLAC_DECODER_PLUGIN=$(usex flac)
+ -DK3B_BUILD_LAME_ENCODER_PLUGIN=$(usex lame)
-DK3B_BUILD_MAD_DECODER_PLUGIN=$(usex mad)
-DK3B_BUILD_MUSE_DECODER_PLUGIN=$(usex musepack)
-DK3B_BUILD_SNDFILE_DECODER_PLUGIN=$(usex sndfile)
+ -DK3B_BUILD_SOX_ENCODER_PLUGIN=$(usex sox)
-DK3B_ENABLE_TAGLIB=$(usex taglib)
-DK3B_BUILD_OGGVORBIS_DECODER_PLUGIN=$(usex vorbis)
-DK3B_BUILD_OGGVORBIS_ENCODER_PLUGIN=$(usex vorbis)
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: kde-apps/k3b/
@ 2024-04-23 5:26 Arthur Zamarin
0 siblings, 0 replies; 20+ messages in thread
From: Arthur Zamarin @ 2024-04-23 5:26 UTC (permalink / raw
To: gentoo-commits
commit: c805d0cdd76e9e00ba4c24394b5967f5d91146be
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 23 05:25:43 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Apr 23 05:25:57 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c805d0cd
kde-apps/k3b: Stabilize 24.02.2 arm64, #930370
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
kde-apps/k3b/k3b-24.02.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kde-apps/k3b/k3b-24.02.2.ebuild b/kde-apps/k3b/k3b-24.02.2.ebuild
index 7cdfb30b7613..e35c574f0eaa 100644
--- a/kde-apps/k3b/k3b-24.02.2.ebuild
+++ b/kde-apps/k3b/k3b-24.02.2.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://apps.kde.org/k3b/ https://userbase.kde.org/K3b"
LICENSE="GPL-2 FDL-1.2"
SLOT="5"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 arm64 ~ppc64 ~riscv ~x86"
IUSE="dvd ffmpeg flac lame mad musepack sndfile sox taglib vcd vorbis webengine"
REQUIRED_USE="flac? ( taglib ) lame? ( taglib ) sox? ( taglib )"
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: kde-apps/k3b/
@ 2024-04-23 6:25 Arthur Zamarin
0 siblings, 0 replies; 20+ messages in thread
From: Arthur Zamarin @ 2024-04-23 6:25 UTC (permalink / raw
To: gentoo-commits
commit: fe4efd3542bb079cecbcbcac426c8b8237d470ee
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 23 06:24:26 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Apr 23 06:24:26 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe4efd35
kde-apps/k3b: Stabilize 24.02.2 x86, #930370
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
kde-apps/k3b/k3b-24.02.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kde-apps/k3b/k3b-24.02.2.ebuild b/kde-apps/k3b/k3b-24.02.2.ebuild
index e35c574f0eaa..fb00b3b10436 100644
--- a/kde-apps/k3b/k3b-24.02.2.ebuild
+++ b/kde-apps/k3b/k3b-24.02.2.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://apps.kde.org/k3b/ https://userbase.kde.org/K3b"
LICENSE="GPL-2 FDL-1.2"
SLOT="5"
-KEYWORDS="~amd64 arm64 ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 arm64 ~ppc64 ~riscv x86"
IUSE="dvd ffmpeg flac lame mad musepack sndfile sox taglib vcd vorbis webengine"
REQUIRED_USE="flac? ( taglib ) lame? ( taglib ) sox? ( taglib )"
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: kde-apps/k3b/
@ 2024-04-23 6:33 Arthur Zamarin
0 siblings, 0 replies; 20+ messages in thread
From: Arthur Zamarin @ 2024-04-23 6:33 UTC (permalink / raw
To: gentoo-commits
commit: 6ea6fdcb68e2f3ebce6350b138e1e75e2bcbf91a
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 23 06:31:57 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Apr 23 06:31:57 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ea6fdcb
kde-apps/k3b: Stabilize 24.02.2 amd64, #930370
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
kde-apps/k3b/k3b-24.02.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kde-apps/k3b/k3b-24.02.2.ebuild b/kde-apps/k3b/k3b-24.02.2.ebuild
index fb00b3b10436..b55952931f5c 100644
--- a/kde-apps/k3b/k3b-24.02.2.ebuild
+++ b/kde-apps/k3b/k3b-24.02.2.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://apps.kde.org/k3b/ https://userbase.kde.org/K3b"
LICENSE="GPL-2 FDL-1.2"
SLOT="5"
-KEYWORDS="~amd64 arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 arm64 ~ppc64 ~riscv x86"
IUSE="dvd ffmpeg flac lame mad musepack sndfile sox taglib vcd vorbis webengine"
REQUIRED_USE="flac? ( taglib ) lame? ( taglib ) sox? ( taglib )"
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: kde-apps/k3b/
@ 2024-04-25 20:41 Andreas Sturmlechner
0 siblings, 0 replies; 20+ messages in thread
From: Andreas Sturmlechner @ 2024-04-25 20:41 UTC (permalink / raw
To: gentoo-commits
commit: cca066f13212bd2346758149ce25f72c1dc6f4cb
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 23 19:16:30 2024 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Apr 25 20:40:43 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cca066f1
kde-apps/k3b: drop 23.08.5
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
kde-apps/k3b/Manifest | 1 -
kde-apps/k3b/k3b-23.08.5.ebuild | 113 ----------------------------------------
2 files changed, 114 deletions(-)
diff --git a/kde-apps/k3b/Manifest b/kde-apps/k3b/Manifest
index b836111e0743..2c1fdcc6c03e 100644
--- a/kde-apps/k3b/Manifest
+++ b/kde-apps/k3b/Manifest
@@ -1,2 +1 @@
-DIST k3b-23.08.5.tar.xz 10967984 BLAKE2B 736ccb30e07f962b845e41a62a5556dfb005e3cb7aba4f4f5ac90aa66818383b5a6eeb465ce22144c299b9968e1a690a645c0cf77d98584324db2880ebf032b8 SHA512 d7e951d4aea07e8e55279b2a835e7b06e7fdec34a9accaedf1846db238eff215d7e56fc4c6fa8b80e2fa50f36795d8bad500c6ec4afa9ebfb34df86545a74156
DIST k3b-24.02.2.tar.xz 10968224 BLAKE2B 3520c6173eab8ad58a9c6d8d6c7baf0704ac90572382be12b0b2f68515dbc120755fec945415bc5a96dd1cf714a73f59a78e70769863f7e6174a0b8882a1895f SHA512 005c6a782d80e8365b65d2a6c2f5a609cd1b5bf805d010f6bbb85438423b840efb630219171d06ecd67d1c4c48e06fb1a0c794b8e6dcb7b2788fb68a07095ee6
diff --git a/kde-apps/k3b/k3b-23.08.5.ebuild b/kde-apps/k3b/k3b-23.08.5.ebuild
deleted file mode 100644
index 369081cec839..000000000000
--- a/kde-apps/k3b/k3b-23.08.5.ebuild
+++ /dev/null
@@ -1,113 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_HANDBOOK="forceoptional"
-ECM_TEST="true"
-PVCUT=$(ver_cut 1-3)
-KFMIN=5.106.0
-QTMIN=5.15.9
-inherit ecm gear.kde.org
-
-DESCRIPTION="Full-featured burning and ripping application based on KDE Frameworks"
-HOMEPAGE="https://apps.kde.org/k3b/ https://userbase.kde.org/K3b"
-
-LICENSE="GPL-2 FDL-1.2"
-SLOT="5"
-KEYWORDS="amd64 arm64 ~ppc64 ~riscv x86"
-IUSE="dvd ffmpeg flac lame mad musepack sndfile sox taglib vcd vorbis webengine"
-
-REQUIRED_USE="flac? ( taglib ) lame? ( taglib ) sox? ( taglib )"
-
-DEPEND="
- >=dev-qt/qtdbus-${QTMIN}:5
- >=dev-qt/qtgui-${QTMIN}:5
- >=dev-qt/qtnetwork-${QTMIN}:5
- >=dev-qt/qtwidgets-${QTMIN}:5
- >=dev-qt/qtxml-${QTMIN}:5
- >=kde-apps/libkcddb-${PVCUT}:5
- >=kde-frameworks/karchive-${KFMIN}:5
- >=kde-frameworks/kbookmarks-${KFMIN}:5
- >=kde-frameworks/kcmutils-${KFMIN}:5
- >=kde-frameworks/kcompletion-${KFMIN}:5
- >=kde-frameworks/kconfig-${KFMIN}:5
- >=kde-frameworks/kconfigwidgets-${KFMIN}:5
- >=kde-frameworks/kcoreaddons-${KFMIN}:5
- >=kde-frameworks/kfilemetadata-${KFMIN}:5[taglib?]
- >=kde-frameworks/ki18n-${KFMIN}:5
- >=kde-frameworks/kiconthemes-${KFMIN}:5
- >=kde-frameworks/kio-${KFMIN}:5
- >=kde-frameworks/kjobwidgets-${KFMIN}:5
- >=kde-frameworks/knewstuff-${KFMIN}:5
- >=kde-frameworks/knotifications-${KFMIN}:5
- >=kde-frameworks/knotifyconfig-${KFMIN}:5
- >=kde-frameworks/kservice-${KFMIN}:5
- >=kde-frameworks/kwidgetsaddons-${KFMIN}:5
- >=kde-frameworks/kxmlgui-${KFMIN}:5
- >=kde-frameworks/solid-${KFMIN}:5
- media-libs/libsamplerate
- dvd? ( media-libs/libdvdread:= )
- ffmpeg? ( media-video/ffmpeg:0= )
- flac? ( >=media-libs/flac-1.2:=[cxx] )
- lame? ( media-sound/lame )
- mad? ( media-libs/libmad )
- musepack? ( >=media-sound/musepack-tools-444 )
- sndfile? ( media-libs/libsndfile )
- taglib? ( >=media-libs/taglib-1.5:= )
- vorbis? (
- media-libs/libogg
- media-libs/libvorbis
- )
- webengine? ( >=dev-qt/qtwebengine-${QTMIN}:5[widgets] )
-"
-RDEPEND="${DEPEND}
- app-cdr/cdrdao
- app-cdr/cdrtools
- dev-libs/libburn
- media-sound/cdparanoia
- dvd? ( >=app-cdr/dvd+rw-tools-7 )
- sox? ( media-sound/sox )
- vcd? ( media-video/vcdimager )
-"
-
-DOCS+=( ChangeLog {FAQ,PERMISSIONS,README}.txt )
-
-PATCHES=( "${FILESDIR}/${PN}-23.04.2-disable-transcode.patch" ) # bugs 891585, 906526
-
-src_configure() {
- local mycmakeargs=(
- -DK3B_BUILD_API_DOCS=OFF
- -DK3B_BUILD_EXTERNAL_ENCODER_PLUGIN=ON
- -DK3B_BUILD_WAVE_DECODER_PLUGIN=ON
- -DK3B_ENABLE_HAL_SUPPORT=OFF
- -DK3B_ENABLE_MUSICBRAINZ=OFF
- -DK3B_DEBUG=$(usex debug)
- -DK3B_ENABLE_DVD_RIPPING=$(usex dvd)
- -DK3B_BUILD_FFMPEG_DECODER_PLUGIN=$(usex ffmpeg)
- -DK3B_BUILD_FLAC_DECODER_PLUGIN=$(usex flac)
- -DK3B_BUILD_LAME_ENCODER_PLUGIN=$(usex lame)
- -DK3B_BUILD_MAD_DECODER_PLUGIN=$(usex mad)
- -DK3B_BUILD_MUSE_DECODER_PLUGIN=$(usex musepack)
- -DK3B_BUILD_SNDFILE_DECODER_PLUGIN=$(usex sndfile)
- -DK3B_BUILD_SOX_ENCODER_PLUGIN=$(usex sox)
- -DK3B_ENABLE_TAGLIB=$(usex taglib)
- -DK3B_BUILD_OGGVORBIS_DECODER_PLUGIN=$(usex vorbis)
- -DK3B_BUILD_OGGVORBIS_ENCODER_PLUGIN=$(usex vorbis)
- $(cmake_use_find_package webengine Qt5WebEngineWidgets)
- )
-
- ecm_src_configure
-}
-
-pkg_postinst() {
- ecm_pkg_postinst
-
- elog "If you get warnings on start-up, uncheck the \"Check system"
- elog "configuration\" option in the \"Misc\" settings window."
- elog
- local group=cdrom
- use kernel_linux || group=operator
- elog "Make sure you have proper read/write permissions on optical device(s)."
- elog "Usually, it is sufficient to be in the ${group} group."
-}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: kde-apps/k3b/
@ 2024-06-17 18:49 Andreas Sturmlechner
0 siblings, 0 replies; 20+ messages in thread
From: Andreas Sturmlechner @ 2024-06-17 18:49 UTC (permalink / raw
To: gentoo-commits
commit: 324c51298a3b213b9f74e6f455eda0511eb0580e
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 17 18:12:32 2024 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Jun 17 18:49:43 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=324c5129
kde-apps/k3b: drop 24.02.2
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
kde-apps/k3b/Manifest | 1 -
kde-apps/k3b/k3b-24.02.2.ebuild | 110 ----------------------------------------
2 files changed, 111 deletions(-)
diff --git a/kde-apps/k3b/Manifest b/kde-apps/k3b/Manifest
index 3ecdc9870a41..14660dc32351 100644
--- a/kde-apps/k3b/Manifest
+++ b/kde-apps/k3b/Manifest
@@ -1,2 +1 @@
-DIST k3b-24.02.2.tar.xz 10968224 BLAKE2B 3520c6173eab8ad58a9c6d8d6c7baf0704ac90572382be12b0b2f68515dbc120755fec945415bc5a96dd1cf714a73f59a78e70769863f7e6174a0b8882a1895f SHA512 005c6a782d80e8365b65d2a6c2f5a609cd1b5bf805d010f6bbb85438423b840efb630219171d06ecd67d1c4c48e06fb1a0c794b8e6dcb7b2788fb68a07095ee6
DIST k3b-24.05.1.tar.xz 10691324 BLAKE2B 8e62ff69dc0984936ff326020ec392a30e4b1d531abc51f7024ebbf406128031fe9b5ccfb00c797ac64bb7fa15bbae679d6d3e2ff478c83c2225af70eaff706d SHA512 2a8a8d3be7e07c5b29b4b26fa3fd6df5657d05abd25d4b8adf36197e937aeb856563b91701cf2a2a410f5a8c8ba82c2d89727bf3fc003cc0be9947ce9d401c1b
diff --git a/kde-apps/k3b/k3b-24.02.2.ebuild b/kde-apps/k3b/k3b-24.02.2.ebuild
deleted file mode 100644
index b55952931f5c..000000000000
--- a/kde-apps/k3b/k3b-24.02.2.ebuild
+++ /dev/null
@@ -1,110 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_HANDBOOK="forceoptional"
-ECM_TEST="true"
-PVCUT=$(ver_cut 1-3)
-KFMIN=5.115.0
-QTMIN=5.15.12
-inherit ecm gear.kde.org
-
-DESCRIPTION="Full-featured burning and ripping application based on KDE Frameworks"
-HOMEPAGE="https://apps.kde.org/k3b/ https://userbase.kde.org/K3b"
-
-LICENSE="GPL-2 FDL-1.2"
-SLOT="5"
-KEYWORDS="amd64 arm64 ~ppc64 ~riscv x86"
-IUSE="dvd ffmpeg flac lame mad musepack sndfile sox taglib vcd vorbis webengine"
-
-REQUIRED_USE="flac? ( taglib ) lame? ( taglib ) sox? ( taglib )"
-
-DEPEND="
- >=dev-qt/qtdbus-${QTMIN}:5
- >=dev-qt/qtgui-${QTMIN}:5
- >=dev-qt/qtnetwork-${QTMIN}:5
- >=dev-qt/qtwidgets-${QTMIN}:5
- >=dev-qt/qtxml-${QTMIN}:5
- >=kde-apps/libkcddb-23.08.4:5
- >=kde-frameworks/karchive-${KFMIN}:5
- >=kde-frameworks/kbookmarks-${KFMIN}:5
- >=kde-frameworks/kcmutils-${KFMIN}:5
- >=kde-frameworks/kcompletion-${KFMIN}:5
- >=kde-frameworks/kconfig-${KFMIN}:5
- >=kde-frameworks/kconfigwidgets-${KFMIN}:5
- >=kde-frameworks/kcoreaddons-${KFMIN}:5
- >=kde-frameworks/kfilemetadata-${KFMIN}:5[taglib?]
- >=kde-frameworks/ki18n-${KFMIN}:5
- >=kde-frameworks/kiconthemes-${KFMIN}:5
- >=kde-frameworks/kio-${KFMIN}:5
- >=kde-frameworks/kjobwidgets-${KFMIN}:5
- >=kde-frameworks/knewstuff-${KFMIN}:5
- >=kde-frameworks/knotifications-${KFMIN}:5
- >=kde-frameworks/knotifyconfig-${KFMIN}:5
- >=kde-frameworks/kwidgetsaddons-${KFMIN}:5
- >=kde-frameworks/kxmlgui-${KFMIN}:5
- >=kde-frameworks/solid-${KFMIN}:5
- media-libs/libsamplerate
- dvd? ( media-libs/libdvdread:= )
- ffmpeg? ( media-video/ffmpeg:0= )
- flac? ( >=media-libs/flac-1.2:=[cxx] )
- lame? ( media-sound/lame )
- mad? ( media-libs/libmad )
- musepack? ( >=media-sound/musepack-tools-444 )
- sndfile? ( media-libs/libsndfile )
- taglib? ( >=media-libs/taglib-1.5:= )
- vorbis? (
- media-libs/libogg
- media-libs/libvorbis
- )
- webengine? ( >=dev-qt/qtwebengine-${QTMIN}:5[widgets] )
-"
-RDEPEND="${DEPEND}
- app-cdr/cdrdao
- app-cdr/cdrtools
- dev-libs/libburn
- media-sound/cdparanoia
- dvd? ( >=app-cdr/dvd+rw-tools-7 )
- sox? ( media-sound/sox )
- vcd? ( media-video/vcdimager )
-"
-
-DOCS+=( ChangeLog {FAQ,PERMISSIONS,README}.txt )
-
-src_configure() {
- local mycmakeargs=(
- -DK3B_BUILD_API_DOCS=OFF
- -DK3B_BUILD_EXTERNAL_ENCODER_PLUGIN=ON
- -DK3B_BUILD_WAVE_DECODER_PLUGIN=ON
- -DK3B_ENABLE_HAL_SUPPORT=OFF
- -DK3B_ENABLE_MUSICBRAINZ=OFF
- -DK3B_DEBUG=$(usex debug)
- -DK3B_ENABLE_DVD_RIPPING=$(usex dvd)
- -DK3B_BUILD_FFMPEG_DECODER_PLUGIN=$(usex ffmpeg)
- -DK3B_BUILD_FLAC_DECODER_PLUGIN=$(usex flac)
- -DK3B_BUILD_LAME_ENCODER_PLUGIN=$(usex lame)
- -DK3B_BUILD_MAD_DECODER_PLUGIN=$(usex mad)
- -DK3B_BUILD_MUSE_DECODER_PLUGIN=$(usex musepack)
- -DK3B_BUILD_SNDFILE_DECODER_PLUGIN=$(usex sndfile)
- -DK3B_BUILD_SOX_ENCODER_PLUGIN=$(usex sox)
- -DK3B_ENABLE_TAGLIB=$(usex taglib)
- -DK3B_BUILD_OGGVORBIS_DECODER_PLUGIN=$(usex vorbis)
- -DK3B_BUILD_OGGVORBIS_ENCODER_PLUGIN=$(usex vorbis)
- $(cmake_use_find_package webengine Qt5WebEngineWidgets)
- )
-
- ecm_src_configure
-}
-
-pkg_postinst() {
- ecm_pkg_postinst
-
- elog "If you get warnings on start-up, uncheck the \"Check system"
- elog "configuration\" option in the \"Misc\" settings window."
- elog
- local group=cdrom
- use kernel_linux || group=operator
- elog "Make sure you have proper read/write permissions on optical device(s)."
- elog "Usually, it is sufficient to be in the ${group} group."
-}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: kde-apps/k3b/
@ 2024-07-13 22:44 Sam James
0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2024-07-13 22:44 UTC (permalink / raw
To: gentoo-commits
commit: 8df882e0b83e6033fe93cc9853c82b7f353b72ec
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 13 22:43:19 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 13 22:43:19 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8df882e0
kde-apps/k3b: Stabilize 24.05.2 arm64, #935994
Signed-off-by: Sam James <sam <AT> gentoo.org>
kde-apps/k3b/k3b-24.05.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kde-apps/k3b/k3b-24.05.2.ebuild b/kde-apps/k3b/k3b-24.05.2.ebuild
index 7cdfb30b7613..e35c574f0eaa 100644
--- a/kde-apps/k3b/k3b-24.05.2.ebuild
+++ b/kde-apps/k3b/k3b-24.05.2.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://apps.kde.org/k3b/ https://userbase.kde.org/K3b"
LICENSE="GPL-2 FDL-1.2"
SLOT="5"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 arm64 ~ppc64 ~riscv ~x86"
IUSE="dvd ffmpeg flac lame mad musepack sndfile sox taglib vcd vorbis webengine"
REQUIRED_USE="flac? ( taglib ) lame? ( taglib ) sox? ( taglib )"
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: kde-apps/k3b/
@ 2024-07-14 5:59 Arthur Zamarin
0 siblings, 0 replies; 20+ messages in thread
From: Arthur Zamarin @ 2024-07-14 5:59 UTC (permalink / raw
To: gentoo-commits
commit: 11a697980a73fd95b102599066e10caa541f7150
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 14 05:58:49 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Jul 14 05:58:49 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11a69798
kde-apps/k3b: Stabilize 24.05.2 x86, #935994
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
kde-apps/k3b/k3b-24.05.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kde-apps/k3b/k3b-24.05.2.ebuild b/kde-apps/k3b/k3b-24.05.2.ebuild
index f6c01c9cd8a9..b55952931f5c 100644
--- a/kde-apps/k3b/k3b-24.05.2.ebuild
+++ b/kde-apps/k3b/k3b-24.05.2.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://apps.kde.org/k3b/ https://userbase.kde.org/K3b"
LICENSE="GPL-2 FDL-1.2"
SLOT="5"
-KEYWORDS="amd64 arm64 ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 arm64 ~ppc64 ~riscv x86"
IUSE="dvd ffmpeg flac lame mad musepack sndfile sox taglib vcd vorbis webengine"
REQUIRED_USE="flac? ( taglib ) lame? ( taglib ) sox? ( taglib )"
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: kde-apps/k3b/
@ 2024-09-03 5:29 Eli Schwartz
0 siblings, 0 replies; 20+ messages in thread
From: Eli Schwartz @ 2024-09-03 5:29 UTC (permalink / raw
To: gentoo-commits
commit: 9ff7ec20e0c061edec9bd6864b66c034c6b0d6d9
Author: Eli Schwartz <eschwartz <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 3 04:00:56 2024 +0000
Commit: Eli Schwartz <eschwartz <AT> gentoo <DOT> org>
CommitDate: Tue Sep 3 05:29:22 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ff7ec20
kde-apps/k3b: mark as LTO-unsafe
Closes: https://bugs.gentoo.org/924376
Acked-by: Sam James <sam <AT> gentoo.org>
Signed-off-by: Eli Schwartz <eschwartz <AT> gentoo.org>
kde-apps/k3b/k3b-24.05.2.ebuild | 7 ++++++-
kde-apps/k3b/k3b-24.08.0.ebuild | 7 ++++++-
2 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/kde-apps/k3b/k3b-24.05.2.ebuild b/kde-apps/k3b/k3b-24.05.2.ebuild
index b55952931f5c..6394a318a2a1 100644
--- a/kde-apps/k3b/k3b-24.05.2.ebuild
+++ b/kde-apps/k3b/k3b-24.05.2.ebuild
@@ -8,7 +8,7 @@ ECM_TEST="true"
PVCUT=$(ver_cut 1-3)
KFMIN=5.115.0
QTMIN=5.15.12
-inherit ecm gear.kde.org
+inherit ecm flag-o-matic gear.kde.org
DESCRIPTION="Full-featured burning and ripping application based on KDE Frameworks"
HOMEPAGE="https://apps.kde.org/k3b/ https://userbase.kde.org/K3b"
@@ -73,6 +73,11 @@ RDEPEND="${DEPEND}
DOCS+=( ChangeLog {FAQ,PERMISSIONS,README}.txt )
src_configure() {
+ # -Werror=odr, -Werror=lto-type-mismatch
+ # https://bugs.gentoo.org/924376
+ # https://bugs.kde.org/show_bug.cgi?id=492571
+ filter-lto
+
local mycmakeargs=(
-DK3B_BUILD_API_DOCS=OFF
-DK3B_BUILD_EXTERNAL_ENCODER_PLUGIN=ON
diff --git a/kde-apps/k3b/k3b-24.08.0.ebuild b/kde-apps/k3b/k3b-24.08.0.ebuild
index a9f20c82d9b6..9107708962eb 100644
--- a/kde-apps/k3b/k3b-24.08.0.ebuild
+++ b/kde-apps/k3b/k3b-24.08.0.ebuild
@@ -8,7 +8,7 @@ ECM_TEST="true"
PVCUT=$(ver_cut 1-3)
KFMIN=6.5.0
QTMIN=6.7.2
-inherit ecm gear.kde.org
+inherit ecm flag-o-matic gear.kde.org
DESCRIPTION="Full-featured burning and ripping application based on KDE Frameworks"
HOMEPAGE="https://apps.kde.org/k3b/ https://userbase.kde.org/K3b"
@@ -69,6 +69,11 @@ RDEPEND="${DEPEND}
DOCS+=( ChangeLog {FAQ,PERMISSIONS,README}.txt )
src_configure() {
+ # -Werror=odr, -Werror=lto-type-mismatch
+ # https://bugs.gentoo.org/924376
+ # https://bugs.kde.org/show_bug.cgi?id=492571
+ filter-lto
+
local mycmakeargs=(
-DK3B_BUILD_API_DOCS=OFF
-DK3B_BUILD_EXTERNAL_ENCODER_PLUGIN=ON
^ permalink raw reply related [flat|nested] 20+ messages in thread
end of thread, other threads:[~2024-09-03 5:29 UTC | newest]
Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-09-27 14:14 [gentoo-commits] repo/gentoo:master commit in: kde-apps/k3b/ Yixun Lan
-- strict thread matches above, loose matches on Subject: below --
2024-09-03 5:29 Eli Schwartz
2024-07-14 5:59 Arthur Zamarin
2024-07-13 22:44 Sam James
2024-06-17 18:49 Andreas Sturmlechner
2024-04-25 20:41 Andreas Sturmlechner
2024-04-23 6:33 Arthur Zamarin
2024-04-23 6:25 Arthur Zamarin
2024-04-23 5:26 Arthur Zamarin
2023-04-23 11:42 Andreas Sturmlechner
2020-12-18 9:00 Michał Górny
2020-10-16 17:46 Georgy Yakovlev
2020-04-25 17:21 Mikle Kolyada
2020-01-09 18:20 Andreas Sturmlechner
2018-12-01 17:00 Mikle Kolyada
2017-08-18 20:58 Andreas Sturmlechner
2017-08-12 11:59 Andreas Sturmlechner
2017-08-02 21:37 Andreas Sturmlechner
2017-08-02 21:32 Andreas Sturmlechner
2017-08-02 21:32 Andreas Sturmlechner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox