[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2024-03-13 Thread Miroslav Šulc
commit: 526ce204e4951b800ee8bf21732f208db2496042
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Mar 13 11:45:19 2024 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Mar 13 11:45:31 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=526ce204

media-sound/strawberry: added qt6 support + fixed deps

Closes: https://bugs.gentoo.org/920422
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/metadata.xml|   1 +
 media-sound/strawberry/strawberry-1.0.23-r1.ebuild | 129 +
 2 files changed, 130 insertions(+)

diff --git a/media-sound/strawberry/metadata.xml 
b/media-sound/strawberry/metadata.xml
index aab0f751f907..c5351200e084 100644
--- a/media-sound/strawberry/metadata.xml
+++ b/media-sound/strawberry/metadata.xml
@@ -8,6 +8,7 @@

Enable media-video/vlc 
backend
Enable moodbar support
+   Enable soup support


jonaski/strawberry

diff --git a/media-sound/strawberry/strawberry-1.0.23-r1.ebuild 
b/media-sound/strawberry/strawberry-1.0.23-r1.ebuild
new file mode 100644
index ..e074219d1e18
--- /dev/null
+++ b/media-sound/strawberry/strawberry-1.0.23-r1.ebuild
@@ -0,0 +1,129 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic plocale xdg
+
+PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
+
+DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
+HOMEPAGE="https://www.strawberrymusicplayer.org/;
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
+   KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="cdda debug +gstreamer icu ipod moodbar mtp pulseaudio qt6 soup +udisks 
vlc"
+
+BDEPEND="
+   !qt6? ( dev-qt/linguist-tools:5 )
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+COMMON_DEPEND="
+   dev-db/sqlite:=
+   dev-libs/glib:2
+   dev-libs/protobuf:=
+   media-libs/alsa-lib
+   media-libs/taglib
+   !qt6? (
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtsql:5[sqlite]
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   x11-libs/libX11
+   )
+   qt6? (
+   
dev-qt/qtbase[concurrent,dbus,gui,network,ssl,sql,sqlite,widgets]
+   dev-qt/kdsingleapplication[qt6]
+   )
+   cdda? ( dev-libs/libcdio:= )
+   gstreamer? (
+   media-libs/chromaprint:=
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   )
+   icu? ( dev-libs/icu:= )
+   ipod? ( media-libs/libgpod )
+   moodbar? ( sci-libs/fftw:3.0 )
+   mtp? ( media-libs/libmtp )
+   pulseaudio? ( media-libs/libpulse )
+   vlc? ( media-video/vlc )
+"
+# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
+RDEPEND="${COMMON_DEPEND}
+   gstreamer? (
+   media-plugins/gst-plugins-meta:1.0
+   soup? ( media-plugins/gst-plugins-soup:1.0 )
+   media-plugins/gst-plugins-taglib:1.0
+   )
+   mtp? ( gnome-base/gvfs[mtp] )
+   udisks? ( sys-fs/udisks:2 )
+"
+DEPEND="${COMMON_DEPEND}
+   dev-cpp/gtest
+   dev-libs/boost
+   !qt6? ( dev-qt/qttest:5 )
+"
+
+DOCS=( Changelog README.md )
+
+REQUIRED_USE="
+   cdda? ( gstreamer )
+   || ( gstreamer vlc )
+"
+
+src_prepare() {
+   plocale_find_changes "src/translations" "" ".po"
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   # spotify is not in portage
+   local mycmakeargs=(
+   -DBUILD_WERROR=OFF
+   # avoid automagically enabling of ccache (bug #611010)
+   -DCCACHE_EXECUTABLE=OFF
+   -DENABLE_GIO=ON
+   -DLINGUAS="$(plocale_get_locales)"
+   -DENABLE_AUDIOCD="$(usex cdda)"
+   -DENABLE_GSTREAMER="$(usex gstreamer)"
+   -DUSE_ICU="$(usex icu)"
+   -DENABLE_LIBGPOD="$(usex ipod)"
+   -DENABLE_LIBMTP="$(usex mtp)"
+   -DENABLE_LIBPULSE="$(usex pulseaudio)"
+   -DENABLE_MOODBAR="$(usex moodbar)"
+   -DENABLE_MUSICBRAINZ="$(usex gstreamer)"
+   -DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
+   -DENABLE_UDISKS2="$(usex udisks)"
+   -DENABLE_VLC="$(usex vlc)"
+   -DBUILD_WITH_QT6="$(usex qt6)"
+   -DBUILD_WITH_QT5="$(usex !qt6)"
+   

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2024-02-14 Thread Miroslav Šulc
commit: 04288f6910b739deddf4c3e75a023cf788a1ed55
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Feb 14 08:11:23 2024 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Feb 14 08:11:23 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04288f69

media-sound/strawberry: dropped obsolete 1.0.22

Bug: https://bugs.gentoo.org/924350
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest |   1 -
 media-sound/strawberry/strawberry-1.0.22.ebuild | 121 
 2 files changed, 122 deletions(-)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index 8b06769dda28..68eba5d693bc 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,2 +1 @@
-DIST strawberry-1.0.22.tar.xz 11279480 BLAKE2B 
a5f8909dd779b3dcd3bea91f28792eede604531be7d18a7e30503e7d0da737f75b570ee0b382613c848b72145b3b4534196deb20e3c9fe83b0716e454b4e686b
 SHA512 
d94c0b0f90ad404a62ad02ba1fc63090a043ab48dca3ca099dd72af29691bfa16ddf11cb62d540f8af51794270eda119cc0805d2204458ed8ce40164948486bd
 DIST strawberry-1.0.23.tar.xz 11297440 BLAKE2B 
4110a19ac27a254ec778bc46592f4b1b00ea8cb077a231d5dc0bb69c8ef78aca02a15339b12c7cb31540f61647e2c8b15d416c68c4da4690407ac851dec4
 SHA512 
f3249e97b2f0130dadf2a5fcfc128d7054accd6b86cf088a3a45549c584529aefbadaf09e9ed074af85c679495b03ad700e78f6952e913a40b38eaf7c77d5adb

diff --git a/media-sound/strawberry/strawberry-1.0.22.ebuild 
b/media-sound/strawberry/strawberry-1.0.22.ebuild
deleted file mode 100644
index fc81b1b29b2b..
--- a/media-sound/strawberry/strawberry-1.0.22.ebuild
+++ /dev/null
@@ -1,121 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic plocale xdg
-
-PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
-
-DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
-HOMEPAGE="https://www.strawberrymusicplayer.org/;
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
-   inherit git-r3
-else
-   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~arm64 ~ppc64 x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="cdda debug +gstreamer icu ipod moodbar mtp pulseaudio +udisks vlc"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-COMMON_DEPEND="
-   dev-db/sqlite:=
-   dev-libs/glib:2
-   dev-libs/protobuf:=
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5[ssl]
-   dev-qt/qtsql:5[sqlite]
-   dev-qt/qtwidgets:5
-   dev-qt/qtx11extras:5
-   media-libs/alsa-lib
-   media-libs/taglib
-   x11-libs/libX11
-   cdda? ( dev-libs/libcdio:= )
-   gstreamer? (
-   media-libs/chromaprint:=
-   media-libs/gstreamer:1.0
-   media-libs/gst-plugins-base:1.0
-   )
-   icu? ( dev-libs/icu:= )
-   ipod? ( media-libs/libgpod )
-   moodbar? ( sci-libs/fftw:3.0 )
-   mtp? ( media-libs/libmtp )
-   pulseaudio? ( media-libs/libpulse )
-   vlc? ( media-video/vlc )
-"
-# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
-RDEPEND="${COMMON_DEPEND}
-   gstreamer? (
-   media-plugins/gst-plugins-meta:1.0
-   media-plugins/gst-plugins-soup:1.0
-   media-plugins/gst-plugins-taglib:1.0
-   )
-   mtp? ( gnome-base/gvfs[mtp] )
-   udisks? ( sys-fs/udisks:2 )
-"
-DEPEND="${COMMON_DEPEND}
-   dev-cpp/gtest
-   dev-libs/boost
-   dev-qt/qttest:5
-"
-
-DOCS=( Changelog README.md )
-
-REQUIRED_USE="
-   cdda? ( gstreamer )
-   || ( gstreamer vlc )
-"
-
-src_prepare() {
-   plocale_find_changes "src/translations" "" ".po"
-
-   cmake_src_prepare
-}
-
-src_configure() {
-   # spotify is not in portage
-   local mycmakeargs=(
-   -DBUILD_WERROR=OFF
-   # avoid automagically enabling of ccache (bug #611010)
-   -DCCACHE_EXECUTABLE=OFF
-   -DENABLE_GIO=ON
-   -DLINGUAS="$(plocale_get_locales)"
-   -DENABLE_AUDIOCD="$(usex cdda)"
-   -DENABLE_GSTREAMER="$(usex gstreamer)"
-   -DUSE_ICU="$(usex icu)"
-   -DENABLE_LIBGPOD="$(usex ipod)"
-   -DENABLE_LIBMTP="$(usex mtp)"
-   -DENABLE_LIBPULSE="$(usex pulseaudio)"
-   -DENABLE_MOODBAR="$(usex moodbar)"
-   -DENABLE_MUSICBRAINZ="$(usex gstreamer)"
-   -DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
-   -DENABLE_UDISKS2="$(usex udisks)"
-   -DENABLE_VLC="$(usex vlc)"
-  

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2024-02-12 Thread Sam James
commit: e0185b6476d4a1dedc774986579a0e32c39c09b1
Author: Sam James  gentoo  org>
AuthorDate: Mon Feb 12 13:04:37 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Feb 12 13:04:37 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0185b64

media-sound/strawberry: Stabilize 1.0.23 amd64, #924350

Signed-off-by: Sam James  gentoo.org>

 media-sound/strawberry/strawberry-1.0.23.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.23.ebuild 
b/media-sound/strawberry/strawberry-1.0.23.ebuild
index f8b2ab43d52c..7eedcb053f27 100644
--- a/media-sound/strawberry/strawberry-1.0.23.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.23.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2024-02-12 Thread Sam James
commit: aecc12924ad3e465db4911474423a80022502bc6
Author: Sam James  gentoo  org>
AuthorDate: Mon Feb 12 13:04:38 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Feb 12 13:04:38 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aecc1292

media-sound/strawberry: Stabilize 1.0.23 x86, #924350

Signed-off-by: Sam James  gentoo.org>

 media-sound/strawberry/strawberry-1.0.23.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.23.ebuild 
b/media-sound/strawberry/strawberry-1.0.23.ebuild
index 7eedcb053f27..fc81b1b29b2b 100644
--- a/media-sound/strawberry/strawberry-1.0.23.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.23.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~arm64 ~ppc64 x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2024-01-12 Thread Miroslav Šulc
commit: 660171fbc9c035ff1f04d8c9a650ebdcb31979f7
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Fri Jan 12 14:05:35 2024 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Jan 12 14:05:57 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=660171fb

media-sound/strawberry: bump to 1.0.23

Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest |   1 +
 media-sound/strawberry/strawberry-1.0.23.ebuild | 121 
 2 files changed, 122 insertions(+)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index d82ad6691bf0..8b06769dda28 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1 +1,2 @@
 DIST strawberry-1.0.22.tar.xz 11279480 BLAKE2B 
a5f8909dd779b3dcd3bea91f28792eede604531be7d18a7e30503e7d0da737f75b570ee0b382613c848b72145b3b4534196deb20e3c9fe83b0716e454b4e686b
 SHA512 
d94c0b0f90ad404a62ad02ba1fc63090a043ab48dca3ca099dd72af29691bfa16ddf11cb62d540f8af51794270eda119cc0805d2204458ed8ce40164948486bd
+DIST strawberry-1.0.23.tar.xz 11297440 BLAKE2B 
4110a19ac27a254ec778bc46592f4b1b00ea8cb077a231d5dc0bb69c8ef78aca02a15339b12c7cb31540f61647e2c8b15d416c68c4da4690407ac851dec4
 SHA512 
f3249e97b2f0130dadf2a5fcfc128d7054accd6b86cf088a3a45549c584529aefbadaf09e9ed074af85c679495b03ad700e78f6952e913a40b38eaf7c77d5adb

diff --git a/media-sound/strawberry/strawberry-1.0.23.ebuild 
b/media-sound/strawberry/strawberry-1.0.23.ebuild
new file mode 100644
index ..f8b2ab43d52c
--- /dev/null
+++ b/media-sound/strawberry/strawberry-1.0.23.ebuild
@@ -0,0 +1,121 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic plocale xdg
+
+PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
+
+DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
+HOMEPAGE="https://www.strawberrymusicplayer.org/;
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
+   KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="cdda debug +gstreamer icu ipod moodbar mtp pulseaudio +udisks vlc"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+COMMON_DEPEND="
+   dev-db/sqlite:=
+   dev-libs/glib:2
+   dev-libs/protobuf:=
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtsql:5[sqlite]
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   media-libs/alsa-lib
+   media-libs/taglib
+   x11-libs/libX11
+   cdda? ( dev-libs/libcdio:= )
+   gstreamer? (
+   media-libs/chromaprint:=
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   )
+   icu? ( dev-libs/icu:= )
+   ipod? ( media-libs/libgpod )
+   moodbar? ( sci-libs/fftw:3.0 )
+   mtp? ( media-libs/libmtp )
+   pulseaudio? ( media-libs/libpulse )
+   vlc? ( media-video/vlc )
+"
+# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
+RDEPEND="${COMMON_DEPEND}
+   gstreamer? (
+   media-plugins/gst-plugins-meta:1.0
+   media-plugins/gst-plugins-soup:1.0
+   media-plugins/gst-plugins-taglib:1.0
+   )
+   mtp? ( gnome-base/gvfs[mtp] )
+   udisks? ( sys-fs/udisks:2 )
+"
+DEPEND="${COMMON_DEPEND}
+   dev-cpp/gtest
+   dev-libs/boost
+   dev-qt/qttest:5
+"
+
+DOCS=( Changelog README.md )
+
+REQUIRED_USE="
+   cdda? ( gstreamer )
+   || ( gstreamer vlc )
+"
+
+src_prepare() {
+   plocale_find_changes "src/translations" "" ".po"
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   # spotify is not in portage
+   local mycmakeargs=(
+   -DBUILD_WERROR=OFF
+   # avoid automagically enabling of ccache (bug #611010)
+   -DCCACHE_EXECUTABLE=OFF
+   -DENABLE_GIO=ON
+   -DLINGUAS="$(plocale_get_locales)"
+   -DENABLE_AUDIOCD="$(usex cdda)"
+   -DENABLE_GSTREAMER="$(usex gstreamer)"
+   -DUSE_ICU="$(usex icu)"
+   -DENABLE_LIBGPOD="$(usex ipod)"
+   -DENABLE_LIBMTP="$(usex mtp)"
+   -DENABLE_LIBPULSE="$(usex pulseaudio)"
+   -DENABLE_MOODBAR="$(usex moodbar)"
+   -DENABLE_MUSICBRAINZ="$(usex gstreamer)"
+   -DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
+   -DENABLE_UDISKS2="$(usex udisks)"
+   -DENABLE_VLC="$(usex vlc)"
+   -DQT_VERSION_MAJOR=5
+   )
+
+   

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2024-01-12 Thread Miroslav Šulc
commit: cd881deb2c454b030934137b72ea22eab4deae7b
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Fri Jan 12 13:46:17 2024 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Jan 12 13:46:17 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd881deb

media-sound/strawberry: dropped obsolete 1.0.21

Bug: https://bugs.gentoo.org/921697
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest |   1 -
 media-sound/strawberry/strawberry-1.0.21.ebuild | 121 
 2 files changed, 122 deletions(-)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index 41b0fa6e866d..d82ad6691bf0 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,2 +1 @@
-DIST strawberry-1.0.21.tar.xz 11240920 BLAKE2B 
8864d487dc1d097de8d9e98a5a271d33f05cfb00d4a66ab26aa1cf036b40bb6f595e8f23603e47174f9ef578369d9545b961fe5c5435a2bc3db1c6559968c4a5
 SHA512 
0378c80b662e9795271e2290c253e6ce523a136cd56a31e4475c02552979aef82f52676e3f66101cc01d6fab0284be6b006595d6c1a01ad05359714bf2574867
 DIST strawberry-1.0.22.tar.xz 11279480 BLAKE2B 
a5f8909dd779b3dcd3bea91f28792eede604531be7d18a7e30503e7d0da737f75b570ee0b382613c848b72145b3b4534196deb20e3c9fe83b0716e454b4e686b
 SHA512 
d94c0b0f90ad404a62ad02ba1fc63090a043ab48dca3ca099dd72af29691bfa16ddf11cb62d540f8af51794270eda119cc0805d2204458ed8ce40164948486bd

diff --git a/media-sound/strawberry/strawberry-1.0.21.ebuild 
b/media-sound/strawberry/strawberry-1.0.21.ebuild
deleted file mode 100644
index 3b9cb84b945d..
--- a/media-sound/strawberry/strawberry-1.0.21.ebuild
+++ /dev/null
@@ -1,121 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic plocale xdg
-
-PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
-
-DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
-HOMEPAGE="https://www.strawberrymusicplayer.org/;
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
-   inherit git-r3
-else
-   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~arm64 ~ppc64 x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="cdda debug +gstreamer icu ipod moodbar mtp pulseaudio +udisks vlc"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-COMMON_DEPEND="
-   dev-db/sqlite:=
-   dev-libs/glib:2
-   dev-libs/protobuf:=
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5[ssl]
-   dev-qt/qtsql:5[sqlite]
-   dev-qt/qtwidgets:5
-   dev-qt/qtx11extras:5
-   media-libs/alsa-lib
-   media-libs/taglib
-   x11-libs/libX11
-   cdda? ( dev-libs/libcdio:= )
-   gstreamer? (
-   media-libs/chromaprint:=
-   media-libs/gstreamer:1.0
-   media-libs/gst-plugins-base:1.0
-   )
-   icu? ( dev-libs/icu:= )
-   ipod? ( media-libs/libgpod )
-   moodbar? ( sci-libs/fftw:3.0 )
-   mtp? ( media-libs/libmtp )
-   pulseaudio? ( media-libs/libpulse )
-   vlc? ( media-video/vlc )
-"
-# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
-RDEPEND="${COMMON_DEPEND}
-   gstreamer? (
-   media-plugins/gst-plugins-meta:1.0
-   media-plugins/gst-plugins-soup:1.0
-   media-plugins/gst-plugins-taglib:1.0
-   )
-   mtp? ( gnome-base/gvfs[mtp] )
-   udisks? ( sys-fs/udisks:2 )
-"
-DEPEND="${COMMON_DEPEND}
-   dev-cpp/gtest
-   dev-libs/boost
-   dev-qt/qttest:5
-"
-
-DOCS=( Changelog README.md )
-
-REQUIRED_USE="
-   cdda? ( gstreamer )
-   || ( gstreamer vlc )
-"
-
-src_prepare() {
-   plocale_find_changes "src/translations" "" ".po"
-
-   cmake_src_prepare
-}
-
-src_configure() {
-   # spotify is not in portage
-   local mycmakeargs=(
-   -DBUILD_WERROR=OFF
-   # avoid automagically enabling of ccache (bug #611010)
-   -DCCACHE_EXECUTABLE=OFF
-   -DENABLE_GIO=ON
-   -DLINGUAS="$(plocale_get_locales)"
-   -DENABLE_AUDIOCD="$(usex cdda)"
-   -DENABLE_GSTREAMER="$(usex gstreamer)"
-   -DUSE_ICU="$(usex icu)"
-   -DENABLE_LIBGPOD="$(usex ipod)"
-   -DENABLE_LIBMTP="$(usex mtp)"
-   -DENABLE_LIBPULSE="$(usex pulseaudio)"
-   -DENABLE_MOODBAR="$(usex moodbar)"
-   -DENABLE_MUSICBRAINZ="$(usex gstreamer)"
-   -DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
-   -DENABLE_UDISKS2="$(usex udisks)"
-   -DENABLE_VLC="$(usex vlc)"
-  

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2024-01-12 Thread Arthur Zamarin
commit: 8e69cc5da1c039bcf8f3a012953a3606b7d3a848
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Jan 12 08:17:41 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Jan 12 08:17:41 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e69cc5d

media-sound/strawberry: Stabilize 1.0.22 amd64, #921697

Signed-off-by: Arthur Zamarin  gentoo.org>

 media-sound/strawberry/strawberry-1.0.22.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.22.ebuild 
b/media-sound/strawberry/strawberry-1.0.22.ebuild
index c2ff1d808cf4..fc81b1b29b2b 100644
--- a/media-sound/strawberry/strawberry-1.0.22.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.22.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~arm64 ~ppc64 x86"
+   KEYWORDS="amd64 ~arm64 ~ppc64 x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2024-01-12 Thread Arthur Zamarin
commit: 4d108353b4efeb82630a4fcd74ad7f0bbbc30d11
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Jan 12 08:17:40 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Jan 12 08:17:40 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d108353

media-sound/strawberry: Stabilize 1.0.22 x86, #921697

Signed-off-by: Arthur Zamarin  gentoo.org>

 media-sound/strawberry/strawberry-1.0.22.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-sound/strawberry/strawberry-1.0.22.ebuild 
b/media-sound/strawberry/strawberry-1.0.22.ebuild
index 3db9ec7c7628..c2ff1d808cf4 100644
--- a/media-sound/strawberry/strawberry-1.0.22.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.22.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~arm64 ~ppc64 x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-12-10 Thread Miroslav Šulc
commit: 26746cc67f98bb7e415eaed3e340f1cd52129d7a
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sun Dec 10 09:58:15 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sun Dec 10 09:58:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26746cc6

media-sound/strawberry: bump to 1.0.22

Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest |   1 +
 media-sound/strawberry/strawberry-1.0.22.ebuild | 121 
 2 files changed, 122 insertions(+)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index fbc878e8dee0..41b0fa6e866d 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1 +1,2 @@
 DIST strawberry-1.0.21.tar.xz 11240920 BLAKE2B 
8864d487dc1d097de8d9e98a5a271d33f05cfb00d4a66ab26aa1cf036b40bb6f595e8f23603e47174f9ef578369d9545b961fe5c5435a2bc3db1c6559968c4a5
 SHA512 
0378c80b662e9795271e2290c253e6ce523a136cd56a31e4475c02552979aef82f52676e3f66101cc01d6fab0284be6b006595d6c1a01ad05359714bf2574867
+DIST strawberry-1.0.22.tar.xz 11279480 BLAKE2B 
a5f8909dd779b3dcd3bea91f28792eede604531be7d18a7e30503e7d0da737f75b570ee0b382613c848b72145b3b4534196deb20e3c9fe83b0716e454b4e686b
 SHA512 
d94c0b0f90ad404a62ad02ba1fc63090a043ab48dca3ca099dd72af29691bfa16ddf11cb62d540f8af51794270eda119cc0805d2204458ed8ce40164948486bd

diff --git a/media-sound/strawberry/strawberry-1.0.22.ebuild 
b/media-sound/strawberry/strawberry-1.0.22.ebuild
new file mode 100644
index ..3db9ec7c7628
--- /dev/null
+++ b/media-sound/strawberry/strawberry-1.0.22.ebuild
@@ -0,0 +1,121 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic plocale xdg
+
+PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
+
+DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
+HOMEPAGE="https://www.strawberrymusicplayer.org/;
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
+   KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="cdda debug +gstreamer icu ipod moodbar mtp pulseaudio +udisks vlc"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+COMMON_DEPEND="
+   dev-db/sqlite:=
+   dev-libs/glib:2
+   dev-libs/protobuf:=
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtsql:5[sqlite]
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   media-libs/alsa-lib
+   media-libs/taglib
+   x11-libs/libX11
+   cdda? ( dev-libs/libcdio:= )
+   gstreamer? (
+   media-libs/chromaprint:=
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   )
+   icu? ( dev-libs/icu:= )
+   ipod? ( media-libs/libgpod )
+   moodbar? ( sci-libs/fftw:3.0 )
+   mtp? ( media-libs/libmtp )
+   pulseaudio? ( media-libs/libpulse )
+   vlc? ( media-video/vlc )
+"
+# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
+RDEPEND="${COMMON_DEPEND}
+   gstreamer? (
+   media-plugins/gst-plugins-meta:1.0
+   media-plugins/gst-plugins-soup:1.0
+   media-plugins/gst-plugins-taglib:1.0
+   )
+   mtp? ( gnome-base/gvfs[mtp] )
+   udisks? ( sys-fs/udisks:2 )
+"
+DEPEND="${COMMON_DEPEND}
+   dev-cpp/gtest
+   dev-libs/boost
+   dev-qt/qttest:5
+"
+
+DOCS=( Changelog README.md )
+
+REQUIRED_USE="
+   cdda? ( gstreamer )
+   || ( gstreamer vlc )
+"
+
+src_prepare() {
+   plocale_find_changes "src/translations" "" ".po"
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   # spotify is not in portage
+   local mycmakeargs=(
+   -DBUILD_WERROR=OFF
+   # avoid automagically enabling of ccache (bug #611010)
+   -DCCACHE_EXECUTABLE=OFF
+   -DENABLE_GIO=ON
+   -DLINGUAS="$(plocale_get_locales)"
+   -DENABLE_AUDIOCD="$(usex cdda)"
+   -DENABLE_GSTREAMER="$(usex gstreamer)"
+   -DUSE_ICU="$(usex icu)"
+   -DENABLE_LIBGPOD="$(usex ipod)"
+   -DENABLE_LIBMTP="$(usex mtp)"
+   -DENABLE_LIBPULSE="$(usex pulseaudio)"
+   -DENABLE_MOODBAR="$(usex moodbar)"
+   -DENABLE_MUSICBRAINZ="$(usex gstreamer)"
+   -DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
+   -DENABLE_UDISKS2="$(usex udisks)"
+   -DENABLE_VLC="$(usex vlc)"
+   -DQT_VERSION_MAJOR=5
+   )
+
+   

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-11-23 Thread Miroslav Šulc
commit: 2513a3e79a0195b2c5c6adeecdae42291ce44211
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Nov 23 09:51:41 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Nov 23 10:43:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2513a3e7

media-sound/strawberry: dropped obsolete 1.0.18-r1 & 1.0.20-r1

Bug: https://bugs.gentoo.org/917664
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest|   2 -
 media-sound/strawberry/strawberry-1.0.18-r1.ebuild | 121 -
 media-sound/strawberry/strawberry-1.0.20-r1.ebuild | 121 -
 3 files changed, 244 deletions(-)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index 267986ae583d..fbc878e8dee0 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,3 +1 @@
-DIST strawberry-1.0.18.tar.xz 11241608 BLAKE2B 
5fae022302bfba1ab9bf01e8af7bd8b18a7eb2bce536b965458a04056479541e24648aa9ed70177aca968acf68471cada06b7879db71d770b965d38e4b6f5dfa
 SHA512 
3a4c38198ac71384bfadb336b77fb316009836340fe763a7fc00c7d084ca219797512f30fe8487a086ca37860c707c661865eea00a89f6d8058c063380ed7a94
-DIST strawberry-1.0.20.tar.xz 11234412 BLAKE2B 
28e6c224f3d1da840be9527282ec3cfd543ec21c6b68e34de85bbb0dc5650e78e3b93b8a01f93034adb24f2b5d2faf9119b5ba11b7e1f3b27fde9dfeee15ff7b
 SHA512 
16f7e5fc62cc6286fc46c260341b9ab63a902c31190e4c6a7a56524a2c718949c1c82dbbf5b7803a2160a20b76ac8cc39d662b821136fa8a7fb56e8bd85e89cf
 DIST strawberry-1.0.21.tar.xz 11240920 BLAKE2B 
8864d487dc1d097de8d9e98a5a271d33f05cfb00d4a66ab26aa1cf036b40bb6f595e8f23603e47174f9ef578369d9545b961fe5c5435a2bc3db1c6559968c4a5
 SHA512 
0378c80b662e9795271e2290c253e6ce523a136cd56a31e4475c02552979aef82f52676e3f66101cc01d6fab0284be6b006595d6c1a01ad05359714bf2574867

diff --git a/media-sound/strawberry/strawberry-1.0.18-r1.ebuild 
b/media-sound/strawberry/strawberry-1.0.18-r1.ebuild
deleted file mode 100644
index 3b9cb84b945d..
--- a/media-sound/strawberry/strawberry-1.0.18-r1.ebuild
+++ /dev/null
@@ -1,121 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic plocale xdg
-
-PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
-
-DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
-HOMEPAGE="https://www.strawberrymusicplayer.org/;
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
-   inherit git-r3
-else
-   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~arm64 ~ppc64 x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="cdda debug +gstreamer icu ipod moodbar mtp pulseaudio +udisks vlc"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-COMMON_DEPEND="
-   dev-db/sqlite:=
-   dev-libs/glib:2
-   dev-libs/protobuf:=
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5[ssl]
-   dev-qt/qtsql:5[sqlite]
-   dev-qt/qtwidgets:5
-   dev-qt/qtx11extras:5
-   media-libs/alsa-lib
-   media-libs/taglib
-   x11-libs/libX11
-   cdda? ( dev-libs/libcdio:= )
-   gstreamer? (
-   media-libs/chromaprint:=
-   media-libs/gstreamer:1.0
-   media-libs/gst-plugins-base:1.0
-   )
-   icu? ( dev-libs/icu:= )
-   ipod? ( media-libs/libgpod )
-   moodbar? ( sci-libs/fftw:3.0 )
-   mtp? ( media-libs/libmtp )
-   pulseaudio? ( media-libs/libpulse )
-   vlc? ( media-video/vlc )
-"
-# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
-RDEPEND="${COMMON_DEPEND}
-   gstreamer? (
-   media-plugins/gst-plugins-meta:1.0
-   media-plugins/gst-plugins-soup:1.0
-   media-plugins/gst-plugins-taglib:1.0
-   )
-   mtp? ( gnome-base/gvfs[mtp] )
-   udisks? ( sys-fs/udisks:2 )
-"
-DEPEND="${COMMON_DEPEND}
-   dev-cpp/gtest
-   dev-libs/boost
-   dev-qt/qttest:5
-"
-
-DOCS=( Changelog README.md )
-
-REQUIRED_USE="
-   cdda? ( gstreamer )
-   || ( gstreamer vlc )
-"
-
-src_prepare() {
-   plocale_find_changes "src/translations" "" ".po"
-
-   cmake_src_prepare
-}
-
-src_configure() {
-   # spotify is not in portage
-   local mycmakeargs=(
-   -DBUILD_WERROR=OFF
-   # avoid automagically enabling of ccache (bug #611010)
-   -DCCACHE_EXECUTABLE=OFF
-   -DENABLE_GIO=ON
-   -DLINGUAS="$(plocale_get_locales)"
-   -DENABLE_AUDIOCD="$(usex cdda)"
-   -DENABLE_GSTREAMER="$(usex gstreamer)"
-   -DUSE_ICU="$(usex icu)"
- 

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-11-22 Thread Arthur Zamarin
commit: d4463df8108bc8e2ecdfc2f22003893d49596db8
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Nov 22 11:15:36 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Nov 22 11:15:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4463df8

media-sound/strawberry: Stabilize 1.0.21 x86, #917664

Signed-off-by: Arthur Zamarin  gentoo.org>

 media-sound/strawberry/strawberry-1.0.21.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.21.ebuild 
b/media-sound/strawberry/strawberry-1.0.21.ebuild
index f0c612031172..3b9cb84b945d 100644
--- a/media-sound/strawberry/strawberry-1.0.21.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.21.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~arm64 ~ppc64 x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-11-22 Thread Arthur Zamarin
commit: a175f8c3bf3cc35b9deae306acbe05929b73ea6d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Nov 22 11:15:35 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Nov 22 11:15:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a175f8c3

media-sound/strawberry: Stabilize 1.0.21 amd64, #917664

Signed-off-by: Arthur Zamarin  gentoo.org>

 media-sound/strawberry/strawberry-1.0.21.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.21.ebuild 
b/media-sound/strawberry/strawberry-1.0.21.ebuild
index 3db9ec7c7628..f0c612031172 100644
--- a/media-sound/strawberry/strawberry-1.0.21.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.21.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-11-01 Thread Arthur Zamarin
commit: d444102c9d9d0f5d9a5fcc8affcdf11e3dd6c6f5
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Nov  1 12:23:50 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Nov  1 12:23:50 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d444102c

media-sound/strawberry: Stabilize 1.0.20-r1 x86, #916616

Signed-off-by: Arthur Zamarin  gentoo.org>

 media-sound/strawberry/strawberry-1.0.20-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.20-r1.ebuild 
b/media-sound/strawberry/strawberry-1.0.20-r1.ebuild
index f0c612031172..3b9cb84b945d 100644
--- a/media-sound/strawberry/strawberry-1.0.20-r1.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.20-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~arm64 ~ppc64 x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-11-01 Thread Arthur Zamarin
commit: 1145e0d944f77b538f834909ee0e9660808f7e71
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Nov  1 12:23:49 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Nov  1 12:23:49 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1145e0d9

media-sound/strawberry: Stabilize 1.0.20-r1 amd64, #916616

Signed-off-by: Arthur Zamarin  gentoo.org>

 media-sound/strawberry/strawberry-1.0.20-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.20-r1.ebuild 
b/media-sound/strawberry/strawberry-1.0.20-r1.ebuild
index 3db9ec7c7628..f0c612031172 100644
--- a/media-sound/strawberry/strawberry-1.0.20-r1.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.20-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-10-21 Thread Miroslav Šulc
commit: a01b4e0a431d2b3834031688dc06c37c2eec4ca6
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sat Oct 21 08:00:30 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sat Oct 21 08:00:30 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a01b4e0a

media-sound/strawberry: bump to 1.0.21

Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest |   1 +
 media-sound/strawberry/strawberry-1.0.21.ebuild | 121 
 2 files changed, 122 insertions(+)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index 0419265e28b4..267986ae583d 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,2 +1,3 @@
 DIST strawberry-1.0.18.tar.xz 11241608 BLAKE2B 
5fae022302bfba1ab9bf01e8af7bd8b18a7eb2bce536b965458a04056479541e24648aa9ed70177aca968acf68471cada06b7879db71d770b965d38e4b6f5dfa
 SHA512 
3a4c38198ac71384bfadb336b77fb316009836340fe763a7fc00c7d084ca219797512f30fe8487a086ca37860c707c661865eea00a89f6d8058c063380ed7a94
 DIST strawberry-1.0.20.tar.xz 11234412 BLAKE2B 
28e6c224f3d1da840be9527282ec3cfd543ec21c6b68e34de85bbb0dc5650e78e3b93b8a01f93034adb24f2b5d2faf9119b5ba11b7e1f3b27fde9dfeee15ff7b
 SHA512 
16f7e5fc62cc6286fc46c260341b9ab63a902c31190e4c6a7a56524a2c718949c1c82dbbf5b7803a2160a20b76ac8cc39d662b821136fa8a7fb56e8bd85e89cf
+DIST strawberry-1.0.21.tar.xz 11240920 BLAKE2B 
8864d487dc1d097de8d9e98a5a271d33f05cfb00d4a66ab26aa1cf036b40bb6f595e8f23603e47174f9ef578369d9545b961fe5c5435a2bc3db1c6559968c4a5
 SHA512 
0378c80b662e9795271e2290c253e6ce523a136cd56a31e4475c02552979aef82f52676e3f66101cc01d6fab0284be6b006595d6c1a01ad05359714bf2574867

diff --git a/media-sound/strawberry/strawberry-1.0.21.ebuild 
b/media-sound/strawberry/strawberry-1.0.21.ebuild
new file mode 100644
index ..3db9ec7c7628
--- /dev/null
+++ b/media-sound/strawberry/strawberry-1.0.21.ebuild
@@ -0,0 +1,121 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic plocale xdg
+
+PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
+
+DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
+HOMEPAGE="https://www.strawberrymusicplayer.org/;
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
+   KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="cdda debug +gstreamer icu ipod moodbar mtp pulseaudio +udisks vlc"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+COMMON_DEPEND="
+   dev-db/sqlite:=
+   dev-libs/glib:2
+   dev-libs/protobuf:=
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtsql:5[sqlite]
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   media-libs/alsa-lib
+   media-libs/taglib
+   x11-libs/libX11
+   cdda? ( dev-libs/libcdio:= )
+   gstreamer? (
+   media-libs/chromaprint:=
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   )
+   icu? ( dev-libs/icu:= )
+   ipod? ( media-libs/libgpod )
+   moodbar? ( sci-libs/fftw:3.0 )
+   mtp? ( media-libs/libmtp )
+   pulseaudio? ( media-libs/libpulse )
+   vlc? ( media-video/vlc )
+"
+# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
+RDEPEND="${COMMON_DEPEND}
+   gstreamer? (
+   media-plugins/gst-plugins-meta:1.0
+   media-plugins/gst-plugins-soup:1.0
+   media-plugins/gst-plugins-taglib:1.0
+   )
+   mtp? ( gnome-base/gvfs[mtp] )
+   udisks? ( sys-fs/udisks:2 )
+"
+DEPEND="${COMMON_DEPEND}
+   dev-cpp/gtest
+   dev-libs/boost
+   dev-qt/qttest:5
+"
+
+DOCS=( Changelog README.md )
+
+REQUIRED_USE="
+   cdda? ( gstreamer )
+   || ( gstreamer vlc )
+"
+
+src_prepare() {
+   plocale_find_changes "src/translations" "" ".po"
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   # spotify is not in portage
+   local mycmakeargs=(
+   -DBUILD_WERROR=OFF
+   # avoid automagically enabling of ccache (bug #611010)
+   -DCCACHE_EXECUTABLE=OFF
+   -DENABLE_GIO=ON
+   -DLINGUAS="$(plocale_get_locales)"
+   -DENABLE_AUDIOCD="$(usex cdda)"
+   -DENABLE_GSTREAMER="$(usex gstreamer)"
+   -DUSE_ICU="$(usex icu)"
+   -DENABLE_LIBGPOD="$(usex ipod)"
+   -DENABLE_LIBMTP="$(usex mtp)"
+   -DENABLE_LIBPULSE="$(usex pulseaudio)"
+   

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-10-01 Thread Miroslav Šulc
commit: 1378bf2991b29cd8e691009d628b310a5079b3b0
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sun Oct  1 08:21:31 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sun Oct  1 08:22:37 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1378bf29

media-sound/strawberry: fixed linking against qt

Closes: https://bugs.gentoo.org/914985
Thanks-to: Jason A. Donenfeld  gentoo.org>
Signed-off-by: Miroslav Šulc  gentoo.org>

 .../{strawberry-1.0.18.ebuild => strawberry-1.0.18-r1.ebuild}  | 3 +--
 .../{strawberry-1.0.20.ebuild => strawberry-1.0.20-r1.ebuild}  | 3 +--
 media-sound/strawberry/strawberry-.ebuild  | 3 +--
 3 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/media-sound/strawberry/strawberry-1.0.18.ebuild 
b/media-sound/strawberry/strawberry-1.0.18-r1.ebuild
similarity index 98%
rename from media-sound/strawberry/strawberry-1.0.18.ebuild
rename to media-sound/strawberry/strawberry-1.0.18-r1.ebuild
index e7b15325921c..3b9cb84b945d 100644
--- a/media-sound/strawberry/strawberry-1.0.18.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.18-r1.ebuild
@@ -102,8 +102,7 @@ src_configure() {
-DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
-DENABLE_UDISKS2="$(usex udisks)"
-DENABLE_VLC="$(usex vlc)"
-   # Disable until we have qt6 in the tree
-   -DWITH_QT6=OFF
+   -DQT_VERSION_MAJOR=5
)
 
use !debug && append-cppflags -DQT_NO_DEBUG_OUTPUT

diff --git a/media-sound/strawberry/strawberry-1.0.20.ebuild 
b/media-sound/strawberry/strawberry-1.0.20-r1.ebuild
similarity index 98%
rename from media-sound/strawberry/strawberry-1.0.20.ebuild
rename to media-sound/strawberry/strawberry-1.0.20-r1.ebuild
index d228a9e4d370..3db9ec7c7628 100644
--- a/media-sound/strawberry/strawberry-1.0.20.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.20-r1.ebuild
@@ -102,8 +102,7 @@ src_configure() {
-DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
-DENABLE_UDISKS2="$(usex udisks)"
-DENABLE_VLC="$(usex vlc)"
-   # Disable until we have qt6 in the tree
-   -DWITH_QT6=OFF
+   -DQT_VERSION_MAJOR=5
)
 
use !debug && append-cppflags -DQT_NO_DEBUG_OUTPUT

diff --git a/media-sound/strawberry/strawberry-.ebuild 
b/media-sound/strawberry/strawberry-.ebuild
index d228a9e4d370..3db9ec7c7628 100644
--- a/media-sound/strawberry/strawberry-.ebuild
+++ b/media-sound/strawberry/strawberry-.ebuild
@@ -102,8 +102,7 @@ src_configure() {
-DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
-DENABLE_UDISKS2="$(usex udisks)"
-DENABLE_VLC="$(usex vlc)"
-   # Disable until we have qt6 in the tree
-   -DWITH_QT6=OFF
+   -DQT_VERSION_MAJOR=5
)
 
use !debug && append-cppflags -DQT_NO_DEBUG_OUTPUT



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-09-25 Thread Miroslav Šulc
commit: 61307755a206a66675b06226be18a35099f4bf71
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Mon Sep 25 07:45:46 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Mon Sep 25 07:45:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61307755

media-sound/strawberry: bump to 1.0.20

Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest |   1 +
 media-sound/strawberry/strawberry-1.0.20.ebuild | 122 
 2 files changed, 123 insertions(+)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index c9981c1cf042..0419265e28b4 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1 +1,2 @@
 DIST strawberry-1.0.18.tar.xz 11241608 BLAKE2B 
5fae022302bfba1ab9bf01e8af7bd8b18a7eb2bce536b965458a04056479541e24648aa9ed70177aca968acf68471cada06b7879db71d770b965d38e4b6f5dfa
 SHA512 
3a4c38198ac71384bfadb336b77fb316009836340fe763a7fc00c7d084ca219797512f30fe8487a086ca37860c707c661865eea00a89f6d8058c063380ed7a94
+DIST strawberry-1.0.20.tar.xz 11234412 BLAKE2B 
28e6c224f3d1da840be9527282ec3cfd543ec21c6b68e34de85bbb0dc5650e78e3b93b8a01f93034adb24f2b5d2faf9119b5ba11b7e1f3b27fde9dfeee15ff7b
 SHA512 
16f7e5fc62cc6286fc46c260341b9ab63a902c31190e4c6a7a56524a2c718949c1c82dbbf5b7803a2160a20b76ac8cc39d662b821136fa8a7fb56e8bd85e89cf

diff --git a/media-sound/strawberry/strawberry-1.0.20.ebuild 
b/media-sound/strawberry/strawberry-1.0.20.ebuild
new file mode 100644
index ..d228a9e4d370
--- /dev/null
+++ b/media-sound/strawberry/strawberry-1.0.20.ebuild
@@ -0,0 +1,122 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic plocale xdg
+
+PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
+
+DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
+HOMEPAGE="https://www.strawberrymusicplayer.org/;
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
+   KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="cdda debug +gstreamer icu ipod moodbar mtp pulseaudio +udisks vlc"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+COMMON_DEPEND="
+   dev-db/sqlite:=
+   dev-libs/glib:2
+   dev-libs/protobuf:=
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtsql:5[sqlite]
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   media-libs/alsa-lib
+   media-libs/taglib
+   x11-libs/libX11
+   cdda? ( dev-libs/libcdio:= )
+   gstreamer? (
+   media-libs/chromaprint:=
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   )
+   icu? ( dev-libs/icu:= )
+   ipod? ( media-libs/libgpod )
+   moodbar? ( sci-libs/fftw:3.0 )
+   mtp? ( media-libs/libmtp )
+   pulseaudio? ( media-libs/libpulse )
+   vlc? ( media-video/vlc )
+"
+# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
+RDEPEND="${COMMON_DEPEND}
+   gstreamer? (
+   media-plugins/gst-plugins-meta:1.0
+   media-plugins/gst-plugins-soup:1.0
+   media-plugins/gst-plugins-taglib:1.0
+   )
+   mtp? ( gnome-base/gvfs[mtp] )
+   udisks? ( sys-fs/udisks:2 )
+"
+DEPEND="${COMMON_DEPEND}
+   dev-cpp/gtest
+   dev-libs/boost
+   dev-qt/qttest:5
+"
+
+DOCS=( Changelog README.md )
+
+REQUIRED_USE="
+   cdda? ( gstreamer )
+   || ( gstreamer vlc )
+"
+
+src_prepare() {
+   plocale_find_changes "src/translations" "" ".po"
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   # spotify is not in portage
+   local mycmakeargs=(
+   -DBUILD_WERROR=OFF
+   # avoid automagically enabling of ccache (bug #611010)
+   -DCCACHE_EXECUTABLE=OFF
+   -DENABLE_GIO=ON
+   -DLINGUAS="$(plocale_get_locales)"
+   -DENABLE_AUDIOCD="$(usex cdda)"
+   -DENABLE_GSTREAMER="$(usex gstreamer)"
+   -DUSE_ICU="$(usex icu)"
+   -DENABLE_LIBGPOD="$(usex ipod)"
+   -DENABLE_LIBMTP="$(usex mtp)"
+   -DENABLE_LIBPULSE="$(usex pulseaudio)"
+   -DENABLE_MOODBAR="$(usex moodbar)"
+   -DENABLE_MUSICBRAINZ="$(usex gstreamer)"
+   -DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
+   -DENABLE_UDISKS2="$(usex udisks)"
+   -DENABLE_VLC="$(usex vlc)"
+   # Disable until we have qt6 in the tree

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-08-01 Thread Miroslav Šulc
commit: bfcc541365b84194dd9276bb1acbd614c1b57ac0
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Aug  2 05:49:56 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Aug  2 05:49:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfcc5413

media-sound/strawberry: dropped obsolete 1.0.17

Bug: https://bugs.gentoo.org/911547
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest |   1 -
 media-sound/strawberry/strawberry-1.0.17.ebuild | 122 
 2 files changed, 123 deletions(-)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index c07af7f6edc2..c9981c1cf042 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,2 +1 @@
-DIST strawberry-1.0.17.tar.xz 11244908 BLAKE2B 
ad838be23bbf441e1617ccc45e48e54baa829f327fccfc8f3070fd211e00d690cecef36858f91b59a1114c4df84c9b72b98ec3affb56f9516167d6fb8484
 SHA512 
7629997f1734b537057b8e49ed443c48733ce5787ebf79939c77aa07f193d36e5ced15df62c03b784644fc058b3067d46e192a0de0cc9fb0a2338dc76d738973
 DIST strawberry-1.0.18.tar.xz 11241608 BLAKE2B 
5fae022302bfba1ab9bf01e8af7bd8b18a7eb2bce536b965458a04056479541e24648aa9ed70177aca968acf68471cada06b7879db71d770b965d38e4b6f5dfa
 SHA512 
3a4c38198ac71384bfadb336b77fb316009836340fe763a7fc00c7d084ca219797512f30fe8487a086ca37860c707c661865eea00a89f6d8058c063380ed7a94

diff --git a/media-sound/strawberry/strawberry-1.0.17.ebuild 
b/media-sound/strawberry/strawberry-1.0.17.ebuild
deleted file mode 100644
index 42c18571d132..
--- a/media-sound/strawberry/strawberry-1.0.17.ebuild
+++ /dev/null
@@ -1,122 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic plocale xdg
-
-PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
-
-DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
-HOMEPAGE="https://www.strawberrymusicplayer.org/;
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
-   inherit git-r3
-else
-   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~arm64 ~ppc64 x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="cdda debug +gstreamer icu ipod moodbar mtp pulseaudio +udisks vlc"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-COMMON_DEPEND="
-   dev-db/sqlite:=
-   dev-libs/glib:2
-   dev-libs/protobuf:=
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5[ssl]
-   dev-qt/qtsql:5[sqlite]
-   dev-qt/qtwidgets:5
-   dev-qt/qtx11extras:5
-   media-libs/alsa-lib
-   media-libs/taglib
-   x11-libs/libX11
-   cdda? ( dev-libs/libcdio:= )
-   gstreamer? (
-   media-libs/chromaprint:=
-   media-libs/gstreamer:1.0
-   media-libs/gst-plugins-base:1.0
-   )
-   icu? ( dev-libs/icu:= )
-   ipod? ( media-libs/libgpod )
-   moodbar? ( sci-libs/fftw:3.0 )
-   mtp? ( media-libs/libmtp )
-   pulseaudio? ( media-sound/pulseaudio )
-   vlc? ( media-video/vlc )
-"
-# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
-RDEPEND="${COMMON_DEPEND}
-   gstreamer? (
-   media-plugins/gst-plugins-meta:1.0
-   media-plugins/gst-plugins-soup:1.0
-   media-plugins/gst-plugins-taglib:1.0
-   )
-   mtp? ( gnome-base/gvfs[mtp] )
-   udisks? ( sys-fs/udisks:2 )
-"
-DEPEND="${COMMON_DEPEND}
-   dev-cpp/gtest
-   dev-libs/boost
-   dev-qt/qttest:5
-"
-
-DOCS=( Changelog README.md )
-
-REQUIRED_USE="
-   cdda? ( gstreamer )
-   || ( gstreamer vlc )
-"
-
-src_prepare() {
-   plocale_find_changes "src/translations" "" ".po"
-
-   cmake_src_prepare
-}
-
-src_configure() {
-   # spotify is not in portage
-   local mycmakeargs=(
-   -DBUILD_WERROR=OFF
-   # avoid automagically enabling of ccache (bug #611010)
-   -DCCACHE_EXECUTABLE=OFF
-   -DENABLE_GIO=ON
-   -DLINGUAS="$(plocale_get_locales)"
-   -DENABLE_AUDIOCD="$(usex cdda)"
-   -DENABLE_GSTREAMER="$(usex gstreamer)"
-   -DUSE_ICU="$(usex icu)"
-   -DENABLE_LIBGPOD="$(usex ipod)"
-   -DENABLE_LIBMTP="$(usex mtp)"
-   -DENABLE_LIBPULSE="$(usex pulseaudio)"
-   -DENABLE_MOODBAR="$(usex moodbar)"
-   -DENABLE_MUSICBRAINZ="$(usex gstreamer)"
-   -DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
-   -DENABLE_UDISKS2="$(usex udisks)"
-   -DENABLE_VLC="$(usex vlc)"
-   

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-08-01 Thread Sam James
commit: dcc0e7e671072e4da2d70040983d5fd34ad80e45
Author: Sam James  gentoo  org>
AuthorDate: Tue Aug  1 11:22:38 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Aug  1 11:22:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcc0e7e6

media-sound/strawberry: Stabilize 1.0.18 x86, #911547

Signed-off-by: Sam James  gentoo.org>

 media-sound/strawberry/strawberry-1.0.18.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.18.ebuild 
b/media-sound/strawberry/strawberry-1.0.18.ebuild
index d228a9e4d370..adc325748276 100644
--- a/media-sound/strawberry/strawberry-1.0.18.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.18.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~arm64 ~ppc64 x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-08-01 Thread Sam James
commit: c40b99ab7ff11d9eb6b116b4cf54f3a5b081986a
Author: Sam James  gentoo  org>
AuthorDate: Tue Aug  1 11:22:39 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Aug  1 11:22:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c40b99ab

media-sound/strawberry: Stabilize 1.0.18 amd64, #911547

Signed-off-by: Sam James  gentoo.org>

 media-sound/strawberry/strawberry-1.0.18.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.18.ebuild 
b/media-sound/strawberry/strawberry-1.0.18.ebuild
index adc325748276..e7b15325921c 100644
--- a/media-sound/strawberry/strawberry-1.0.18.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.18.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~arm64 ~ppc64 x86"
+   KEYWORDS="amd64 ~arm64 ~ppc64 x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-07-02 Thread Miroslav Šulc
commit: 97470c478e38519071f32ae30d477fbafbc54234
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sun Jul  2 06:53:31 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sun Jul  2 06:53:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97470c47

media-sound/strawberry: bump to 1.0.18 + added ~arm64 to live

Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest | 1 +
 .../strawberry/{strawberry-.ebuild => strawberry-1.0.18.ebuild} | 2 +-
 media-sound/strawberry/strawberry-.ebuild   | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index deec8da7dc22..c07af7f6edc2 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1 +1,2 @@
 DIST strawberry-1.0.17.tar.xz 11244908 BLAKE2B 
ad838be23bbf441e1617ccc45e48e54baa829f327fccfc8f3070fd211e00d690cecef36858f91b59a1114c4df84c9b72b98ec3affb56f9516167d6fb8484
 SHA512 
7629997f1734b537057b8e49ed443c48733ce5787ebf79939c77aa07f193d36e5ced15df62c03b784644fc058b3067d46e192a0de0cc9fb0a2338dc76d738973
+DIST strawberry-1.0.18.tar.xz 11241608 BLAKE2B 
5fae022302bfba1ab9bf01e8af7bd8b18a7eb2bce536b965458a04056479541e24648aa9ed70177aca968acf68471cada06b7879db71d770b965d38e4b6f5dfa
 SHA512 
3a4c38198ac71384bfadb336b77fb316009836340fe763a7fc00c7d084ca219797512f30fe8487a086ca37860c707c661865eea00a89f6d8058c063380ed7a94

diff --git a/media-sound/strawberry/strawberry-.ebuild 
b/media-sound/strawberry/strawberry-1.0.18.ebuild
similarity index 98%
copy from media-sound/strawberry/strawberry-.ebuild
copy to media-sound/strawberry/strawberry-1.0.18.ebuild
index bb7e0e2f1956..d228a9e4d370 100644
--- a/media-sound/strawberry/strawberry-.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.18.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
 fi
 
 LICENSE="GPL-3"

diff --git a/media-sound/strawberry/strawberry-.ebuild 
b/media-sound/strawberry/strawberry-.ebuild
index bb7e0e2f1956..d228a9e4d370 100644
--- a/media-sound/strawberry/strawberry-.ebuild
+++ b/media-sound/strawberry/strawberry-.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-06-02 Thread Sam James
commit: 69141ed7acfdbbab436cb22786ea344377bcc7f9
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun  3 03:23:04 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun  3 03:23:04 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69141ed7

media-sound/strawberry: Keyword 1.0.17 arm64, #907300

Signed-off-by: Sam James  gentoo.org>

 media-sound/strawberry/strawberry-1.0.17.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.17.ebuild 
b/media-sound/strawberry/strawberry-1.0.17.ebuild
index 52c17b9c7573..42c18571d132 100644
--- a/media-sound/strawberry/strawberry-1.0.17.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.17.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~ppc64 x86"
+   KEYWORDS="amd64 ~arm64 ~ppc64 x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-05-29 Thread Andreas Sturmlechner
commit: dd6b0edbed19b4f3d245f295eee769fcf8df2805
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon May 29 09:28:38 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon May 29 13:10:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd6b0edb

media-sound/strawberry: Switch IUSE=pulseaudio to media-libs/libpulse

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-sound/strawberry/strawberry-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-.ebuild 
b/media-sound/strawberry/strawberry-.ebuild
index 640a70a1fe25..bb7e0e2f1956 100644
--- a/media-sound/strawberry/strawberry-.ebuild
+++ b/media-sound/strawberry/strawberry-.ebuild
@@ -51,7 +51,7 @@ COMMON_DEPEND="
ipod? ( media-libs/libgpod )
moodbar? ( sci-libs/fftw:3.0 )
mtp? ( media-libs/libmtp )
-   pulseaudio? ( media-sound/pulseaudio )
+   pulseaudio? ( media-libs/libpulse )
vlc? ( media-video/vlc )
 "
 # Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-05-03 Thread Miroslav Šulc
commit: bf607f495816552d0ca155479abe764fdfe54c49
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed May  3 06:13:03 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed May  3 06:13:12 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf607f49

media-sound/strawberry: dropped obsolete 1.0.17

Bug: https://bugs.gentoo.org/905360
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest |   1 -
 media-sound/strawberry/strawberry-1.0.15.ebuild | 122 
 2 files changed, 123 deletions(-)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index dc334249d141..deec8da7dc22 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,2 +1 @@
-DIST strawberry-1.0.15.tar.xz 11230148 BLAKE2B 
a6ee4dac23dc3c4707a6b31f39bd794975e2c8aeab438419cf2972a1a7f3b9bf54837550db542e2c19bcf08346b04ec9d952e84529865e067c5e7df0a9e0189d
 SHA512 
074b3da1dea22e1e21fcb1039d77e9edf898953ff0a16b28d4ad36052b454e669a4a92e988f1091e7987104149764e411ca68bd95b5f1e18f3e744d2c7dd3625
 DIST strawberry-1.0.17.tar.xz 11244908 BLAKE2B 
ad838be23bbf441e1617ccc45e48e54baa829f327fccfc8f3070fd211e00d690cecef36858f91b59a1114c4df84c9b72b98ec3affb56f9516167d6fb8484
 SHA512 
7629997f1734b537057b8e49ed443c48733ce5787ebf79939c77aa07f193d36e5ced15df62c03b784644fc058b3067d46e192a0de0cc9fb0a2338dc76d738973

diff --git a/media-sound/strawberry/strawberry-1.0.15.ebuild 
b/media-sound/strawberry/strawberry-1.0.15.ebuild
deleted file mode 100644
index 52c17b9c7573..
--- a/media-sound/strawberry/strawberry-1.0.15.ebuild
+++ /dev/null
@@ -1,122 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic plocale xdg
-
-PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
-
-DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
-HOMEPAGE="https://www.strawberrymusicplayer.org/;
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
-   inherit git-r3
-else
-   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~ppc64 x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="cdda debug +gstreamer icu ipod moodbar mtp pulseaudio +udisks vlc"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-COMMON_DEPEND="
-   dev-db/sqlite:=
-   dev-libs/glib:2
-   dev-libs/protobuf:=
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5[ssl]
-   dev-qt/qtsql:5[sqlite]
-   dev-qt/qtwidgets:5
-   dev-qt/qtx11extras:5
-   media-libs/alsa-lib
-   media-libs/taglib
-   x11-libs/libX11
-   cdda? ( dev-libs/libcdio:= )
-   gstreamer? (
-   media-libs/chromaprint:=
-   media-libs/gstreamer:1.0
-   media-libs/gst-plugins-base:1.0
-   )
-   icu? ( dev-libs/icu:= )
-   ipod? ( media-libs/libgpod )
-   moodbar? ( sci-libs/fftw:3.0 )
-   mtp? ( media-libs/libmtp )
-   pulseaudio? ( media-sound/pulseaudio )
-   vlc? ( media-video/vlc )
-"
-# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
-RDEPEND="${COMMON_DEPEND}
-   gstreamer? (
-   media-plugins/gst-plugins-meta:1.0
-   media-plugins/gst-plugins-soup:1.0
-   media-plugins/gst-plugins-taglib:1.0
-   )
-   mtp? ( gnome-base/gvfs[mtp] )
-   udisks? ( sys-fs/udisks:2 )
-"
-DEPEND="${COMMON_DEPEND}
-   dev-cpp/gtest
-   dev-libs/boost
-   dev-qt/qttest:5
-"
-
-DOCS=( Changelog README.md )
-
-REQUIRED_USE="
-   cdda? ( gstreamer )
-   || ( gstreamer vlc )
-"
-
-src_prepare() {
-   plocale_find_changes "src/translations" "" ".po"
-
-   cmake_src_prepare
-}
-
-src_configure() {
-   # spotify is not in portage
-   local mycmakeargs=(
-   -DBUILD_WERROR=OFF
-   # avoid automagically enabling of ccache (bug #611010)
-   -DCCACHE_EXECUTABLE=OFF
-   -DENABLE_GIO=ON
-   -DLINGUAS="$(plocale_get_locales)"
-   -DENABLE_AUDIOCD="$(usex cdda)"
-   -DENABLE_GSTREAMER="$(usex gstreamer)"
-   -DUSE_ICU="$(usex icu)"
-   -DENABLE_LIBGPOD="$(usex ipod)"
-   -DENABLE_LIBMTP="$(usex mtp)"
-   -DENABLE_LIBPULSE="$(usex pulseaudio)"
-   -DENABLE_MOODBAR="$(usex moodbar)"
-   -DENABLE_MUSICBRAINZ="$(usex gstreamer)"
-   -DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
-   -DENABLE_UDISKS2="$(usex udisks)"
-   -DENABLE_VLC="$(usex vlc)"
-  

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-05-02 Thread Arthur Zamarin
commit: a43f6105c927ba1a6b622f8702df475ab17e450b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue May  2 17:46:20 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue May  2 17:46:20 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a43f6105

media-sound/strawberry: Stabilize 1.0.17 amd64, #905360

Signed-off-by: Arthur Zamarin  gentoo.org>

 media-sound/strawberry/strawberry-1.0.17.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.17.ebuild 
b/media-sound/strawberry/strawberry-1.0.17.ebuild
index 8bd64c79755e..52c17b9c7573 100644
--- a/media-sound/strawberry/strawberry-1.0.17.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.17.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~ppc64 x86"
+   KEYWORDS="amd64 ~ppc64 x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-04-30 Thread Sam James
commit: eb21817ffaac689bd721f90de017dc4eb73b4829
Author: Sam James  gentoo  org>
AuthorDate: Sun Apr 30 07:46:37 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Apr 30 07:46:42 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb21817f

media-sound/strawberry: Stabilize 1.0.17 x86, #905360

Signed-off-by: Sam James  gentoo.org>

 media-sound/strawberry/strawberry-1.0.17.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.17.ebuild 
b/media-sound/strawberry/strawberry-1.0.17.ebuild
index 640a70a1fe25..8bd64c79755e 100644
--- a/media-sound/strawberry/strawberry-1.0.17.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.17.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~ppc64 x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-04-06 Thread Miroslav Šulc
commit: 2bb7d9edbf631c1cd2a130237ec21f2ae9d09948
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Apr  6 07:14:39 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Apr  6 07:14:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bb7d9ed

media-sound/strawberry: dropped obsolete 1.0.14-r1

Bug: https://bugs.gentoo.org/903865
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest|   1 -
 media-sound/strawberry/strawberry-1.0.14-r1.ebuild | 122 -
 2 files changed, 123 deletions(-)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index 8b49cf76a057..dc334249d141 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,3 +1,2 @@
-DIST strawberry-1.0.14.tar.xz 11234760 BLAKE2B 
2dc0d1cee93ffa130da403c986c147f5d3eb59689079a0450183edc53947f7472ea5ff69c57c8ce971f03e89896d06c51bf22bcf57f97adb97067c8a35cf0e15
 SHA512 
bf667cb93b8f0ffdb8dc625df821bc4355e3845629ff25ed57d7999e19072edffab05f27dbea90adf0bb9a9cbe478856a292a1a6f7ed2c5f37442548699a4c02
 DIST strawberry-1.0.15.tar.xz 11230148 BLAKE2B 
a6ee4dac23dc3c4707a6b31f39bd794975e2c8aeab438419cf2972a1a7f3b9bf54837550db542e2c19bcf08346b04ec9d952e84529865e067c5e7df0a9e0189d
 SHA512 
074b3da1dea22e1e21fcb1039d77e9edf898953ff0a16b28d4ad36052b454e669a4a92e988f1091e7987104149764e411ca68bd95b5f1e18f3e744d2c7dd3625
 DIST strawberry-1.0.17.tar.xz 11244908 BLAKE2B 
ad838be23bbf441e1617ccc45e48e54baa829f327fccfc8f3070fd211e00d690cecef36858f91b59a1114c4df84c9b72b98ec3affb56f9516167d6fb8484
 SHA512 
7629997f1734b537057b8e49ed443c48733ce5787ebf79939c77aa07f193d36e5ced15df62c03b784644fc058b3067d46e192a0de0cc9fb0a2338dc76d738973

diff --git a/media-sound/strawberry/strawberry-1.0.14-r1.ebuild 
b/media-sound/strawberry/strawberry-1.0.14-r1.ebuild
deleted file mode 100644
index 52c17b9c7573..
--- a/media-sound/strawberry/strawberry-1.0.14-r1.ebuild
+++ /dev/null
@@ -1,122 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic plocale xdg
-
-PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
-
-DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
-HOMEPAGE="https://www.strawberrymusicplayer.org/;
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
-   inherit git-r3
-else
-   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~ppc64 x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="cdda debug +gstreamer icu ipod moodbar mtp pulseaudio +udisks vlc"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-COMMON_DEPEND="
-   dev-db/sqlite:=
-   dev-libs/glib:2
-   dev-libs/protobuf:=
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5[ssl]
-   dev-qt/qtsql:5[sqlite]
-   dev-qt/qtwidgets:5
-   dev-qt/qtx11extras:5
-   media-libs/alsa-lib
-   media-libs/taglib
-   x11-libs/libX11
-   cdda? ( dev-libs/libcdio:= )
-   gstreamer? (
-   media-libs/chromaprint:=
-   media-libs/gstreamer:1.0
-   media-libs/gst-plugins-base:1.0
-   )
-   icu? ( dev-libs/icu:= )
-   ipod? ( media-libs/libgpod )
-   moodbar? ( sci-libs/fftw:3.0 )
-   mtp? ( media-libs/libmtp )
-   pulseaudio? ( media-sound/pulseaudio )
-   vlc? ( media-video/vlc )
-"
-# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
-RDEPEND="${COMMON_DEPEND}
-   gstreamer? (
-   media-plugins/gst-plugins-meta:1.0
-   media-plugins/gst-plugins-soup:1.0
-   media-plugins/gst-plugins-taglib:1.0
-   )
-   mtp? ( gnome-base/gvfs[mtp] )
-   udisks? ( sys-fs/udisks:2 )
-"
-DEPEND="${COMMON_DEPEND}
-   dev-cpp/gtest
-   dev-libs/boost
-   dev-qt/qttest:5
-"
-
-DOCS=( Changelog README.md )
-
-REQUIRED_USE="
-   cdda? ( gstreamer )
-   || ( gstreamer vlc )
-"
-
-src_prepare() {
-   plocale_find_changes "src/translations" "" ".po"
-
-   cmake_src_prepare
-}
-
-src_configure() {
-   # spotify is not in portage
-   local mycmakeargs=(
-   -DBUILD_WERROR=OFF
-   # avoid automagically enabling of ccache (bug #611010)
-   -DCCACHE_EXECUTABLE=OFF
-   -DENABLE_GIO=ON
-   -DLINGUAS="$(plocale_get_locales)"
-   -DENABLE_AUDIOCD="$(usex cdda)"
-   -DENABLE_GSTREAMER="$(usex gstreamer)"
-   -DUSE_ICU="$(usex icu)"
-   -DENABLE_LIBGPOD="$(usex ipod)"
-   -DENABLE_LIBMTP="$(usex mtp)"
- 

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-04-05 Thread Arthur Zamarin
commit: 07eac67d2d8598415711088518748d8cd37893b2
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Apr  5 14:18:40 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Apr  5 14:18:40 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07eac67d

media-sound/strawberry: Stabilize 1.0.15 amd64, #903865

Signed-off-by: Arthur Zamarin  gentoo.org>

 media-sound/strawberry/strawberry-1.0.15.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.15.ebuild 
b/media-sound/strawberry/strawberry-1.0.15.ebuild
index 640a70a1fe25..3fcaf82a1833 100644
--- a/media-sound/strawberry/strawberry-1.0.15.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.15.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~ppc64 ~x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-04-05 Thread Arthur Zamarin
commit: 293364d46390efdf6b6a54cf02119cb390bf3b4c
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Apr  5 14:18:41 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Apr  5 14:18:41 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=293364d4

media-sound/strawberry: Stabilize 1.0.15 x86, #903865

Signed-off-by: Arthur Zamarin  gentoo.org>

 media-sound/strawberry/strawberry-1.0.15.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.15.ebuild 
b/media-sound/strawberry/strawberry-1.0.15.ebuild
index 3fcaf82a1833..52c17b9c7573 100644
--- a/media-sound/strawberry/strawberry-1.0.15.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.15.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~ppc64 x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-03-30 Thread Miroslav Šulc
commit: c32752bb657f9af25d84ee10e914476e946806a1
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Mar 30 07:16:32 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Mar 30 07:16:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c32752bb

media-sound/strawberry: bump to 1.0.17, dropped 1.0.16

Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest | 2 +-
 .../strawberry/{strawberry-1.0.16.ebuild => strawberry-1.0.17.ebuild}   | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index d9e43c3a3376..8b49cf76a057 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,3 +1,3 @@
 DIST strawberry-1.0.14.tar.xz 11234760 BLAKE2B 
2dc0d1cee93ffa130da403c986c147f5d3eb59689079a0450183edc53947f7472ea5ff69c57c8ce971f03e89896d06c51bf22bcf57f97adb97067c8a35cf0e15
 SHA512 
bf667cb93b8f0ffdb8dc625df821bc4355e3845629ff25ed57d7999e19072edffab05f27dbea90adf0bb9a9cbe478856a292a1a6f7ed2c5f37442548699a4c02
 DIST strawberry-1.0.15.tar.xz 11230148 BLAKE2B 
a6ee4dac23dc3c4707a6b31f39bd794975e2c8aeab438419cf2972a1a7f3b9bf54837550db542e2c19bcf08346b04ec9d952e84529865e067c5e7df0a9e0189d
 SHA512 
074b3da1dea22e1e21fcb1039d77e9edf898953ff0a16b28d4ad36052b454e669a4a92e988f1091e7987104149764e411ca68bd95b5f1e18f3e744d2c7dd3625
-DIST strawberry-1.0.16.tar.xz 11248508 BLAKE2B 
cd44e116251eee869151598a576b61de8f2ddb664dd6790250570ef7ad19399223c3ccc2fb0bca79325dfa49abfd5bbbe4dd3eedff20ef32637f9b003b762959
 SHA512 
6048ef22287a11882c015d7de7405cece64382a65289edd635bde4c20c87c00f96231e3335f77cf62849ceaa33e62115784e43cbe8d638d3c6918b1b1948a1ac
+DIST strawberry-1.0.17.tar.xz 11244908 BLAKE2B 
ad838be23bbf441e1617ccc45e48e54baa829f327fccfc8f3070fd211e00d690cecef36858f91b59a1114c4df84c9b72b98ec3affb56f9516167d6fb8484
 SHA512 
7629997f1734b537057b8e49ed443c48733ce5787ebf79939c77aa07f193d36e5ced15df62c03b784644fc058b3067d46e192a0de0cc9fb0a2338dc76d738973

diff --git a/media-sound/strawberry/strawberry-1.0.16.ebuild 
b/media-sound/strawberry/strawberry-1.0.17.ebuild
similarity index 100%
rename from media-sound/strawberry/strawberry-1.0.16.ebuild
rename to media-sound/strawberry/strawberry-1.0.17.ebuild



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-03-27 Thread Miroslav Šulc
commit: a44e5272c9b6b7197d7d90201584380b39adbd82
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Tue Mar 28 05:41:04 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Tue Mar 28 05:41:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a44e5272

media-sound/strawberry: bump to 1.0.16

Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest |   1 +
 media-sound/strawberry/strawberry-1.0.16.ebuild | 122 
 2 files changed, 123 insertions(+)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index 165645844095..d9e43c3a3376 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,2 +1,3 @@
 DIST strawberry-1.0.14.tar.xz 11234760 BLAKE2B 
2dc0d1cee93ffa130da403c986c147f5d3eb59689079a0450183edc53947f7472ea5ff69c57c8ce971f03e89896d06c51bf22bcf57f97adb97067c8a35cf0e15
 SHA512 
bf667cb93b8f0ffdb8dc625df821bc4355e3845629ff25ed57d7999e19072edffab05f27dbea90adf0bb9a9cbe478856a292a1a6f7ed2c5f37442548699a4c02
 DIST strawberry-1.0.15.tar.xz 11230148 BLAKE2B 
a6ee4dac23dc3c4707a6b31f39bd794975e2c8aeab438419cf2972a1a7f3b9bf54837550db542e2c19bcf08346b04ec9d952e84529865e067c5e7df0a9e0189d
 SHA512 
074b3da1dea22e1e21fcb1039d77e9edf898953ff0a16b28d4ad36052b454e669a4a92e988f1091e7987104149764e411ca68bd95b5f1e18f3e744d2c7dd3625
+DIST strawberry-1.0.16.tar.xz 11248508 BLAKE2B 
cd44e116251eee869151598a576b61de8f2ddb664dd6790250570ef7ad19399223c3ccc2fb0bca79325dfa49abfd5bbbe4dd3eedff20ef32637f9b003b762959
 SHA512 
6048ef22287a11882c015d7de7405cece64382a65289edd635bde4c20c87c00f96231e3335f77cf62849ceaa33e62115784e43cbe8d638d3c6918b1b1948a1ac

diff --git a/media-sound/strawberry/strawberry-1.0.16.ebuild 
b/media-sound/strawberry/strawberry-1.0.16.ebuild
new file mode 100644
index ..640a70a1fe25
--- /dev/null
+++ b/media-sound/strawberry/strawberry-1.0.16.ebuild
@@ -0,0 +1,122 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic plocale xdg
+
+PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
+
+DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
+HOMEPAGE="https://www.strawberrymusicplayer.org/;
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
+   KEYWORDS="~amd64 ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="cdda debug +gstreamer icu ipod moodbar mtp pulseaudio +udisks vlc"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+COMMON_DEPEND="
+   dev-db/sqlite:=
+   dev-libs/glib:2
+   dev-libs/protobuf:=
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtsql:5[sqlite]
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   media-libs/alsa-lib
+   media-libs/taglib
+   x11-libs/libX11
+   cdda? ( dev-libs/libcdio:= )
+   gstreamer? (
+   media-libs/chromaprint:=
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   )
+   icu? ( dev-libs/icu:= )
+   ipod? ( media-libs/libgpod )
+   moodbar? ( sci-libs/fftw:3.0 )
+   mtp? ( media-libs/libmtp )
+   pulseaudio? ( media-sound/pulseaudio )
+   vlc? ( media-video/vlc )
+"
+# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
+RDEPEND="${COMMON_DEPEND}
+   gstreamer? (
+   media-plugins/gst-plugins-meta:1.0
+   media-plugins/gst-plugins-soup:1.0
+   media-plugins/gst-plugins-taglib:1.0
+   )
+   mtp? ( gnome-base/gvfs[mtp] )
+   udisks? ( sys-fs/udisks:2 )
+"
+DEPEND="${COMMON_DEPEND}
+   dev-cpp/gtest
+   dev-libs/boost
+   dev-qt/qttest:5
+"
+
+DOCS=( Changelog README.md )
+
+REQUIRED_USE="
+   cdda? ( gstreamer )
+   || ( gstreamer vlc )
+"
+
+src_prepare() {
+   plocale_find_changes "src/translations" "" ".po"
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   # spotify is not in portage
+   local mycmakeargs=(
+   -DBUILD_WERROR=OFF
+   # avoid automagically enabling of ccache (bug #611010)
+   -DCCACHE_EXECUTABLE=OFF
+   -DENABLE_GIO=ON
+   -DLINGUAS="$(plocale_get_locales)"
+   -DENABLE_AUDIOCD="$(usex cdda)"
+   -DENABLE_GSTREAMER="$(usex gstreamer)"
+   -DUSE_ICU="$(usex icu)"
+   -DENABLE_LIBGPOD="$(usex ipod)"
+   -DENABLE_LIBMTP="$(usex mtp)"
+   -DENABLE_LIBPULSE="$(usex pulseaudio)"
+   

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-03-08 Thread Miroslav Šulc
commit: 04143a56356ebada359d5cf5ea91213543bd0412
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Mar  9 07:23:19 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Mar  9 07:23:19 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04143a56

media-sound/strawberry: dropped obsolete 1.0.12 & 1.0.13

Bug: https://bugs.gentoo.org/899266
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest |   2 -
 media-sound/strawberry/strawberry-1.0.12.ebuild | 120 
 media-sound/strawberry/strawberry-1.0.13.ebuild | 120 
 3 files changed, 242 deletions(-)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index 46e75b5d7a5e..165645844095 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,4 +1,2 @@
-DIST strawberry-1.0.12.tar.xz 11231600 BLAKE2B 
7c65d3f0a7418bd4e4ec2d5032406457066f3402efd9f2632f378c15d0c549ab516a8d09dd6d31e2e5723af36d1481614a2b355404596f2384db397ce52495ca
 SHA512 
f29d9d59576788cfb5521a4394dd16501a6dc277c70ebff3629dc891ae70baaebc98ec07f4eda281ac5ebc6c8693c35a5a6611e014d27850beaf20125601e5ce
-DIST strawberry-1.0.13.tar.xz 11232884 BLAKE2B 
f2762a280ca00d080836f2d9a201161588119f26c59bdc6d5a9fd2bfc98d8dc64110e675fb8860cecd44a1406e0b869b14793644a8cfd01316b7ec823489efd6
 SHA512 
b870252a3abcc6accfc7b9b52563573f42fb65d8322880bcd6558a083d8e12da043e5967165dcdc4714800ce283e837c68cbf3a61a5c018a4978c7b7b5b39bff
 DIST strawberry-1.0.14.tar.xz 11234760 BLAKE2B 
2dc0d1cee93ffa130da403c986c147f5d3eb59689079a0450183edc53947f7472ea5ff69c57c8ce971f03e89896d06c51bf22bcf57f97adb97067c8a35cf0e15
 SHA512 
bf667cb93b8f0ffdb8dc625df821bc4355e3845629ff25ed57d7999e19072edffab05f27dbea90adf0bb9a9cbe478856a292a1a6f7ed2c5f37442548699a4c02
 DIST strawberry-1.0.15.tar.xz 11230148 BLAKE2B 
a6ee4dac23dc3c4707a6b31f39bd794975e2c8aeab438419cf2972a1a7f3b9bf54837550db542e2c19bcf08346b04ec9d952e84529865e067c5e7df0a9e0189d
 SHA512 
074b3da1dea22e1e21fcb1039d77e9edf898953ff0a16b28d4ad36052b454e669a4a92e988f1091e7987104149764e411ca68bd95b5f1e18f3e744d2c7dd3625

diff --git a/media-sound/strawberry/strawberry-1.0.12.ebuild 
b/media-sound/strawberry/strawberry-1.0.12.ebuild
deleted file mode 100644
index 13770970ff46..
--- a/media-sound/strawberry/strawberry-1.0.12.ebuild
+++ /dev/null
@@ -1,120 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic plocale xdg
-
-PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
-
-DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
-HOMEPAGE="https://www.strawberrymusicplayer.org/;
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
-   inherit git-r3
-else
-   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~ppc64 x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-COMMON_DEPEND="
-   dev-db/sqlite:=
-   dev-libs/glib:2
-   dev-libs/protobuf:=
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5[ssl]
-   dev-qt/qtsql:5[sqlite]
-   dev-qt/qtwidgets:5
-   dev-qt/qtx11extras:5
-   media-libs/alsa-lib
-   media-libs/taglib
-   x11-libs/libX11
-   cdda? ( dev-libs/libcdio:= )
-   gstreamer? (
-   media-libs/chromaprint:=
-   media-libs/gstreamer:1.0
-   media-libs/gst-plugins-base:1.0
-   )
-   ipod? ( media-libs/libgpod )
-   moodbar? ( sci-libs/fftw:3.0 )
-   mtp? ( media-libs/libmtp )
-   pulseaudio? ( media-sound/pulseaudio )
-   vlc? ( media-video/vlc )
-"
-# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
-RDEPEND="${COMMON_DEPEND}
-   gstreamer? (
-   media-plugins/gst-plugins-meta:1.0
-   media-plugins/gst-plugins-soup:1.0
-   media-plugins/gst-plugins-taglib:1.0
-   )
-   mtp? ( gnome-base/gvfs[mtp] )
-   udisks? ( sys-fs/udisks:2 )
-"
-DEPEND="${COMMON_DEPEND}
-   dev-cpp/gtest
-   dev-libs/boost
-   dev-qt/qttest:5
-"
-
-DOCS=( Changelog README.md )
-
-REQUIRED_USE="
-   cdda? ( gstreamer )
-   || ( gstreamer vlc )
-"
-
-src_prepare() {
-   plocale_find_changes "src/translations" "" ".po"
-
-   cmake_src_prepare
-}
-
-src_configure() {
-   # spotify is not in portage
-   local mycmakeargs=(
-   -DBUILD_WERROR=OFF
-   # avoid automagically enabling of ccache (bug #611010)
-   

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-03-07 Thread Sam James
commit: 650bb8a6cf004ed27bb0330fb13f438f733e1f78
Author: Sam James  gentoo  org>
AuthorDate: Tue Mar  7 15:44:41 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Mar  7 15:44:41 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=650bb8a6

media-sound/strawberry: Stabilize 1.0.14-r1 amd64, #899266

Signed-off-by: Sam James  gentoo.org>

 media-sound/strawberry/strawberry-1.0.14-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.14-r1.ebuild 
b/media-sound/strawberry/strawberry-1.0.14-r1.ebuild
index 8bd64c79755e..52c17b9c7573 100644
--- a/media-sound/strawberry/strawberry-1.0.14-r1.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.14-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~ppc64 x86"
+   KEYWORDS="amd64 ~ppc64 x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-03-07 Thread Sam James
commit: 8f871f1950983456824ca261ccf6c8173037873c
Author: Sam James  gentoo  org>
AuthorDate: Tue Mar  7 11:40:28 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Mar  7 11:40:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f871f19

media-sound/strawberry: Stabilize 1.0.14-r1 x86, #899266

Signed-off-by: Sam James  gentoo.org>

 media-sound/strawberry/strawberry-1.0.14-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.14-r1.ebuild 
b/media-sound/strawberry/strawberry-1.0.14-r1.ebuild
index 640a70a1fe25..8bd64c79755e 100644
--- a/media-sound/strawberry/strawberry-1.0.14-r1.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.14-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~ppc64 x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-03-05 Thread Miroslav Šulc
commit: e509c68e074773d7eaac16bf629970a7f380c4ef
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sun Mar  5 09:35:33 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sun Mar  5 09:35:48 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e509c68e

media-sound/strawberry: bump to 1.0.15

Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest |   1 +
 media-sound/strawberry/strawberry-1.0.15.ebuild | 122 
 2 files changed, 123 insertions(+)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index 7c5528376a56..46e75b5d7a5e 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,3 +1,4 @@
 DIST strawberry-1.0.12.tar.xz 11231600 BLAKE2B 
7c65d3f0a7418bd4e4ec2d5032406457066f3402efd9f2632f378c15d0c549ab516a8d09dd6d31e2e5723af36d1481614a2b355404596f2384db397ce52495ca
 SHA512 
f29d9d59576788cfb5521a4394dd16501a6dc277c70ebff3629dc891ae70baaebc98ec07f4eda281ac5ebc6c8693c35a5a6611e014d27850beaf20125601e5ce
 DIST strawberry-1.0.13.tar.xz 11232884 BLAKE2B 
f2762a280ca00d080836f2d9a201161588119f26c59bdc6d5a9fd2bfc98d8dc64110e675fb8860cecd44a1406e0b869b14793644a8cfd01316b7ec823489efd6
 SHA512 
b870252a3abcc6accfc7b9b52563573f42fb65d8322880bcd6558a083d8e12da043e5967165dcdc4714800ce283e837c68cbf3a61a5c018a4978c7b7b5b39bff
 DIST strawberry-1.0.14.tar.xz 11234760 BLAKE2B 
2dc0d1cee93ffa130da403c986c147f5d3eb59689079a0450183edc53947f7472ea5ff69c57c8ce971f03e89896d06c51bf22bcf57f97adb97067c8a35cf0e15
 SHA512 
bf667cb93b8f0ffdb8dc625df821bc4355e3845629ff25ed57d7999e19072edffab05f27dbea90adf0bb9a9cbe478856a292a1a6f7ed2c5f37442548699a4c02
+DIST strawberry-1.0.15.tar.xz 11230148 BLAKE2B 
a6ee4dac23dc3c4707a6b31f39bd794975e2c8aeab438419cf2972a1a7f3b9bf54837550db542e2c19bcf08346b04ec9d952e84529865e067c5e7df0a9e0189d
 SHA512 
074b3da1dea22e1e21fcb1039d77e9edf898953ff0a16b28d4ad36052b454e669a4a92e988f1091e7987104149764e411ca68bd95b5f1e18f3e744d2c7dd3625

diff --git a/media-sound/strawberry/strawberry-1.0.15.ebuild 
b/media-sound/strawberry/strawberry-1.0.15.ebuild
new file mode 100644
index ..640a70a1fe25
--- /dev/null
+++ b/media-sound/strawberry/strawberry-1.0.15.ebuild
@@ -0,0 +1,122 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic plocale xdg
+
+PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
+
+DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
+HOMEPAGE="https://www.strawberrymusicplayer.org/;
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
+   KEYWORDS="~amd64 ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="cdda debug +gstreamer icu ipod moodbar mtp pulseaudio +udisks vlc"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+COMMON_DEPEND="
+   dev-db/sqlite:=
+   dev-libs/glib:2
+   dev-libs/protobuf:=
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtsql:5[sqlite]
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   media-libs/alsa-lib
+   media-libs/taglib
+   x11-libs/libX11
+   cdda? ( dev-libs/libcdio:= )
+   gstreamer? (
+   media-libs/chromaprint:=
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   )
+   icu? ( dev-libs/icu:= )
+   ipod? ( media-libs/libgpod )
+   moodbar? ( sci-libs/fftw:3.0 )
+   mtp? ( media-libs/libmtp )
+   pulseaudio? ( media-sound/pulseaudio )
+   vlc? ( media-video/vlc )
+"
+# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
+RDEPEND="${COMMON_DEPEND}
+   gstreamer? (
+   media-plugins/gst-plugins-meta:1.0
+   media-plugins/gst-plugins-soup:1.0
+   media-plugins/gst-plugins-taglib:1.0
+   )
+   mtp? ( gnome-base/gvfs[mtp] )
+   udisks? ( sys-fs/udisks:2 )
+"
+DEPEND="${COMMON_DEPEND}
+   dev-cpp/gtest
+   dev-libs/boost
+   dev-qt/qttest:5
+"
+
+DOCS=( Changelog README.md )
+
+REQUIRED_USE="
+   cdda? ( gstreamer )
+   || ( gstreamer vlc )
+"
+
+src_prepare() {
+   plocale_find_changes "src/translations" "" ".po"
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   # spotify is not in portage
+   local mycmakeargs=(
+   -DBUILD_WERROR=OFF
+   # avoid automagically enabling of ccache (bug #611010)
+   -DCCACHE_EXECUTABLE=OFF
+   -DENABLE_GIO=ON
+   

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-03-03 Thread Sam James
commit: c33105a57cac55d4fce1870ed44e0e22b7835aaa
Author: Sam James  gentoo  org>
AuthorDate: Sat Mar  4 04:15:04 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Mar  4 04:27:03 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c33105a5

media-sound/strawberry: fix automagic ICU dep

Closes: https://bugs.gentoo.org/893324
Signed-off-by: Sam James  gentoo.org>

 .../{strawberry-1.0.14.ebuild => strawberry-1.0.14-r1.ebuild}   | 4 +++-
 media-sound/strawberry/strawberry-.ebuild   | 6 --
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/media-sound/strawberry/strawberry-1.0.14.ebuild 
b/media-sound/strawberry/strawberry-1.0.14-r1.ebuild
similarity index 95%
rename from media-sound/strawberry/strawberry-1.0.14.ebuild
rename to media-sound/strawberry/strawberry-1.0.14-r1.ebuild
index 884e0da1aa38..640a70a1fe25 100644
--- a/media-sound/strawberry/strawberry-1.0.14.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.14-r1.ebuild
@@ -19,7 +19,7 @@ fi
 
 LICENSE="GPL-3"
 SLOT="0"
-IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
+IUSE="cdda debug +gstreamer icu ipod moodbar mtp pulseaudio +udisks vlc"
 
 BDEPEND="
dev-qt/linguist-tools:5
@@ -47,6 +47,7 @@ COMMON_DEPEND="
media-libs/gstreamer:1.0
media-libs/gst-plugins-base:1.0
)
+   icu? ( dev-libs/icu:= )
ipod? ( media-libs/libgpod )
moodbar? ( sci-libs/fftw:3.0 )
mtp? ( media-libs/libmtp )
@@ -92,6 +93,7 @@ src_configure() {
-DLINGUAS="$(plocale_get_locales)"
-DENABLE_AUDIOCD="$(usex cdda)"
-DENABLE_GSTREAMER="$(usex gstreamer)"
+   -DUSE_ICU="$(usex icu)"
-DENABLE_LIBGPOD="$(usex ipod)"
-DENABLE_LIBMTP="$(usex mtp)"
-DENABLE_LIBPULSE="$(usex pulseaudio)"

diff --git a/media-sound/strawberry/strawberry-.ebuild 
b/media-sound/strawberry/strawberry-.ebuild
index fac9c644eb35..640a70a1fe25 100644
--- a/media-sound/strawberry/strawberry-.ebuild
+++ b/media-sound/strawberry/strawberry-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -19,7 +19,7 @@ fi
 
 LICENSE="GPL-3"
 SLOT="0"
-IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
+IUSE="cdda debug +gstreamer icu ipod moodbar mtp pulseaudio +udisks vlc"
 
 BDEPEND="
dev-qt/linguist-tools:5
@@ -47,6 +47,7 @@ COMMON_DEPEND="
media-libs/gstreamer:1.0
media-libs/gst-plugins-base:1.0
)
+   icu? ( dev-libs/icu:= )
ipod? ( media-libs/libgpod )
moodbar? ( sci-libs/fftw:3.0 )
mtp? ( media-libs/libmtp )
@@ -92,6 +93,7 @@ src_configure() {
-DLINGUAS="$(plocale_get_locales)"
-DENABLE_AUDIOCD="$(usex cdda)"
-DENABLE_GSTREAMER="$(usex gstreamer)"
+   -DUSE_ICU="$(usex icu)"
-DENABLE_LIBGPOD="$(usex ipod)"
-DENABLE_LIBMTP="$(usex mtp)"
-DENABLE_LIBPULSE="$(usex pulseaudio)"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-02-04 Thread Miroslav Šulc
commit: 737f2e12302ad0035e0a0ecfb07c8fb4ab28cefc
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sat Feb  4 08:07:48 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sat Feb  4 09:22:53 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=737f2e12

media-sound/strawberry: dropped obsolete 1.0.10

Bug: https://bugs.gentoo.org/893000
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest |   1 -
 media-sound/strawberry/strawberry-1.0.10.ebuild | 120 
 2 files changed, 121 deletions(-)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index 0e85fbb9592c..7c5528376a56 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,4 +1,3 @@
-DIST strawberry-1.0.10.tar.xz 11220176 BLAKE2B 
a1ffba755ea0e9931e2320bfc21f14c0d269b06270f87c72e39ba2a8fcc5c5992828fe926ec71e4366b53d7b2e7b9fd1a4a9df100ddeba32ceffa5fc0ef37ad2
 SHA512 
f13115e5c91dacb508b3c4bf6cee5dd0c1866eae41b145cfcdb7f83dafaf277bc43e3be0b58c16b4b9aa855ef9a7756c53552804481ffae7c78ca929f3d5e8af
 DIST strawberry-1.0.12.tar.xz 11231600 BLAKE2B 
7c65d3f0a7418bd4e4ec2d5032406457066f3402efd9f2632f378c15d0c549ab516a8d09dd6d31e2e5723af36d1481614a2b355404596f2384db397ce52495ca
 SHA512 
f29d9d59576788cfb5521a4394dd16501a6dc277c70ebff3629dc891ae70baaebc98ec07f4eda281ac5ebc6c8693c35a5a6611e014d27850beaf20125601e5ce
 DIST strawberry-1.0.13.tar.xz 11232884 BLAKE2B 
f2762a280ca00d080836f2d9a201161588119f26c59bdc6d5a9fd2bfc98d8dc64110e675fb8860cecd44a1406e0b869b14793644a8cfd01316b7ec823489efd6
 SHA512 
b870252a3abcc6accfc7b9b52563573f42fb65d8322880bcd6558a083d8e12da043e5967165dcdc4714800ce283e837c68cbf3a61a5c018a4978c7b7b5b39bff
 DIST strawberry-1.0.14.tar.xz 11234760 BLAKE2B 
2dc0d1cee93ffa130da403c986c147f5d3eb59689079a0450183edc53947f7472ea5ff69c57c8ce971f03e89896d06c51bf22bcf57f97adb97067c8a35cf0e15
 SHA512 
bf667cb93b8f0ffdb8dc625df821bc4355e3845629ff25ed57d7999e19072edffab05f27dbea90adf0bb9a9cbe478856a292a1a6f7ed2c5f37442548699a4c02

diff --git a/media-sound/strawberry/strawberry-1.0.10.ebuild 
b/media-sound/strawberry/strawberry-1.0.10.ebuild
deleted file mode 100644
index b14411677be9..
--- a/media-sound/strawberry/strawberry-1.0.10.ebuild
+++ /dev/null
@@ -1,120 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic plocale xdg
-
-PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
-
-DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
-HOMEPAGE="https://www.strawberrymusicplayer.org/;
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
-   inherit git-r3
-else
-   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~ppc64 x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-COMMON_DEPEND="
-   dev-db/sqlite:=
-   dev-libs/glib:2
-   dev-libs/protobuf:=
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5[ssl]
-   dev-qt/qtsql:5[sqlite]
-   dev-qt/qtwidgets:5
-   dev-qt/qtx11extras:5
-   media-libs/alsa-lib
-   media-libs/taglib
-   x11-libs/libX11
-   cdda? ( dev-libs/libcdio:= )
-   gstreamer? (
-   media-libs/chromaprint:=
-   media-libs/gstreamer:1.0
-   media-libs/gst-plugins-base:1.0
-   )
-   ipod? ( media-libs/libgpod )
-   moodbar? ( sci-libs/fftw:3.0 )
-   mtp? ( media-libs/libmtp )
-   pulseaudio? ( media-sound/pulseaudio )
-   vlc? ( media-video/vlc )
-"
-# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
-RDEPEND="${COMMON_DEPEND}
-   gstreamer? (
-   media-plugins/gst-plugins-meta:1.0
-   media-plugins/gst-plugins-soup:1.0
-   media-plugins/gst-plugins-taglib:1.0
-   )
-   mtp? ( gnome-base/gvfs[mtp] )
-   udisks? ( sys-fs/udisks:2 )
-"
-DEPEND="${COMMON_DEPEND}
-   dev-cpp/gtest
-   dev-libs/boost
-   dev-qt/qttest:5
-"
-
-DOCS=( Changelog README.md )
-
-REQUIRED_USE="
-   cdda? ( gstreamer )
-   || ( gstreamer vlc )
-"
-
-src_prepare() {
-   plocale_find_changes "src/translations" "" ".po"
-
-   cmake_src_prepare
-}
-
-src_configure() {
-   # spotify is not in portage
-   local mycmakeargs=(
-   -DBUILD_WERROR=OFF
-   # avoid automagically enabling of ccache (bug #611010)
-   -DCCACHE_EXECUTABLE=OFF
-   -DENABLE_GIO=ON
-   

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-02-03 Thread Arthur Zamarin
commit: 1247a1261b86302d06a5ef39040371e5d4d308dd
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Feb  3 13:03:04 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Feb  3 13:03:04 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1247a126

media-sound/strawberry: Stabilize 1.0.12 x86, #893000

Signed-off-by: Arthur Zamarin  gentoo.org>

 media-sound/strawberry/strawberry-1.0.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.12.ebuild 
b/media-sound/strawberry/strawberry-1.0.12.ebuild
index f175c88f11a3..13770970ff46 100644
--- a/media-sound/strawberry/strawberry-1.0.12.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.12.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~ppc64 x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-02-03 Thread Sam James
commit: 2cc413901828ace305e58b17b32da18b83294cb6
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb  3 10:56:57 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb  3 10:56:57 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cc41390

media-sound/strawberry: Stabilize 1.0.12 amd64, #893000

Signed-off-by: Sam James  gentoo.org>

 media-sound/strawberry/strawberry-1.0.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.12.ebuild 
b/media-sound/strawberry/strawberry-1.0.12.ebuild
index 884e0da1aa38..f175c88f11a3 100644
--- a/media-sound/strawberry/strawberry-1.0.12.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.12.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~ppc64 ~x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-01-15 Thread Miroslav Šulc
commit: b787603cf7c8157db88c83dd77f46074f27fa7ed
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sun Jan 15 10:29:53 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sun Jan 15 10:30:03 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b787603c

media-sound/strawberry: bump to 1.0.14

Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest |   1 +
 media-sound/strawberry/strawberry-1.0.14.ebuild | 120 
 2 files changed, 121 insertions(+)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index 578ffc121d89..0e85fbb9592c 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,3 +1,4 @@
 DIST strawberry-1.0.10.tar.xz 11220176 BLAKE2B 
a1ffba755ea0e9931e2320bfc21f14c0d269b06270f87c72e39ba2a8fcc5c5992828fe926ec71e4366b53d7b2e7b9fd1a4a9df100ddeba32ceffa5fc0ef37ad2
 SHA512 
f13115e5c91dacb508b3c4bf6cee5dd0c1866eae41b145cfcdb7f83dafaf277bc43e3be0b58c16b4b9aa855ef9a7756c53552804481ffae7c78ca929f3d5e8af
 DIST strawberry-1.0.12.tar.xz 11231600 BLAKE2B 
7c65d3f0a7418bd4e4ec2d5032406457066f3402efd9f2632f378c15d0c549ab516a8d09dd6d31e2e5723af36d1481614a2b355404596f2384db397ce52495ca
 SHA512 
f29d9d59576788cfb5521a4394dd16501a6dc277c70ebff3629dc891ae70baaebc98ec07f4eda281ac5ebc6c8693c35a5a6611e014d27850beaf20125601e5ce
 DIST strawberry-1.0.13.tar.xz 11232884 BLAKE2B 
f2762a280ca00d080836f2d9a201161588119f26c59bdc6d5a9fd2bfc98d8dc64110e675fb8860cecd44a1406e0b869b14793644a8cfd01316b7ec823489efd6
 SHA512 
b870252a3abcc6accfc7b9b52563573f42fb65d8322880bcd6558a083d8e12da043e5967165dcdc4714800ce283e837c68cbf3a61a5c018a4978c7b7b5b39bff
+DIST strawberry-1.0.14.tar.xz 11234760 BLAKE2B 
2dc0d1cee93ffa130da403c986c147f5d3eb59689079a0450183edc53947f7472ea5ff69c57c8ce971f03e89896d06c51bf22bcf57f97adb97067c8a35cf0e15
 SHA512 
bf667cb93b8f0ffdb8dc625df821bc4355e3845629ff25ed57d7999e19072edffab05f27dbea90adf0bb9a9cbe478856a292a1a6f7ed2c5f37442548699a4c02

diff --git a/media-sound/strawberry/strawberry-1.0.14.ebuild 
b/media-sound/strawberry/strawberry-1.0.14.ebuild
new file mode 100644
index ..884e0da1aa38
--- /dev/null
+++ b/media-sound/strawberry/strawberry-1.0.14.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic plocale xdg
+
+PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
+
+DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
+HOMEPAGE="https://www.strawberrymusicplayer.org/;
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
+   KEYWORDS="~amd64 ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+COMMON_DEPEND="
+   dev-db/sqlite:=
+   dev-libs/glib:2
+   dev-libs/protobuf:=
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtsql:5[sqlite]
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   media-libs/alsa-lib
+   media-libs/taglib
+   x11-libs/libX11
+   cdda? ( dev-libs/libcdio:= )
+   gstreamer? (
+   media-libs/chromaprint:=
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   )
+   ipod? ( media-libs/libgpod )
+   moodbar? ( sci-libs/fftw:3.0 )
+   mtp? ( media-libs/libmtp )
+   pulseaudio? ( media-sound/pulseaudio )
+   vlc? ( media-video/vlc )
+"
+# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
+RDEPEND="${COMMON_DEPEND}
+   gstreamer? (
+   media-plugins/gst-plugins-meta:1.0
+   media-plugins/gst-plugins-soup:1.0
+   media-plugins/gst-plugins-taglib:1.0
+   )
+   mtp? ( gnome-base/gvfs[mtp] )
+   udisks? ( sys-fs/udisks:2 )
+"
+DEPEND="${COMMON_DEPEND}
+   dev-cpp/gtest
+   dev-libs/boost
+   dev-qt/qttest:5
+"
+
+DOCS=( Changelog README.md )
+
+REQUIRED_USE="
+   cdda? ( gstreamer )
+   || ( gstreamer vlc )
+"
+
+src_prepare() {
+   plocale_find_changes "src/translations" "" ".po"
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   # spotify is not in portage
+   local mycmakeargs=(
+   -DBUILD_WERROR=OFF
+   # avoid automagically enabling of ccache (bug #611010)
+   -DCCACHE_EXECUTABLE=OFF
+   -DENABLE_GIO=ON
+   -DLINGUAS="$(plocale_get_locales)"
+   

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-01-10 Thread Miroslav Šulc
commit: 2486c7a831fb0b4bc29b068b9cab7d18668a47a6
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Tue Jan 10 09:11:11 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Tue Jan 10 09:11:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2486c7a8

media-sound/strawberry: bump to 1.0.13

Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest |   1 +
 media-sound/strawberry/strawberry-1.0.13.ebuild | 120 
 2 files changed, 121 insertions(+)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index 08612f06078c..578ffc121d89 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,2 +1,3 @@
 DIST strawberry-1.0.10.tar.xz 11220176 BLAKE2B 
a1ffba755ea0e9931e2320bfc21f14c0d269b06270f87c72e39ba2a8fcc5c5992828fe926ec71e4366b53d7b2e7b9fd1a4a9df100ddeba32ceffa5fc0ef37ad2
 SHA512 
f13115e5c91dacb508b3c4bf6cee5dd0c1866eae41b145cfcdb7f83dafaf277bc43e3be0b58c16b4b9aa855ef9a7756c53552804481ffae7c78ca929f3d5e8af
 DIST strawberry-1.0.12.tar.xz 11231600 BLAKE2B 
7c65d3f0a7418bd4e4ec2d5032406457066f3402efd9f2632f378c15d0c549ab516a8d09dd6d31e2e5723af36d1481614a2b355404596f2384db397ce52495ca
 SHA512 
f29d9d59576788cfb5521a4394dd16501a6dc277c70ebff3629dc891ae70baaebc98ec07f4eda281ac5ebc6c8693c35a5a6611e014d27850beaf20125601e5ce
+DIST strawberry-1.0.13.tar.xz 11232884 BLAKE2B 
f2762a280ca00d080836f2d9a201161588119f26c59bdc6d5a9fd2bfc98d8dc64110e675fb8860cecd44a1406e0b869b14793644a8cfd01316b7ec823489efd6
 SHA512 
b870252a3abcc6accfc7b9b52563573f42fb65d8322880bcd6558a083d8e12da043e5967165dcdc4714800ce283e837c68cbf3a61a5c018a4978c7b7b5b39bff

diff --git a/media-sound/strawberry/strawberry-1.0.13.ebuild 
b/media-sound/strawberry/strawberry-1.0.13.ebuild
new file mode 100644
index ..884e0da1aa38
--- /dev/null
+++ b/media-sound/strawberry/strawberry-1.0.13.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic plocale xdg
+
+PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
+
+DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
+HOMEPAGE="https://www.strawberrymusicplayer.org/;
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
+   KEYWORDS="~amd64 ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+COMMON_DEPEND="
+   dev-db/sqlite:=
+   dev-libs/glib:2
+   dev-libs/protobuf:=
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtsql:5[sqlite]
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   media-libs/alsa-lib
+   media-libs/taglib
+   x11-libs/libX11
+   cdda? ( dev-libs/libcdio:= )
+   gstreamer? (
+   media-libs/chromaprint:=
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   )
+   ipod? ( media-libs/libgpod )
+   moodbar? ( sci-libs/fftw:3.0 )
+   mtp? ( media-libs/libmtp )
+   pulseaudio? ( media-sound/pulseaudio )
+   vlc? ( media-video/vlc )
+"
+# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
+RDEPEND="${COMMON_DEPEND}
+   gstreamer? (
+   media-plugins/gst-plugins-meta:1.0
+   media-plugins/gst-plugins-soup:1.0
+   media-plugins/gst-plugins-taglib:1.0
+   )
+   mtp? ( gnome-base/gvfs[mtp] )
+   udisks? ( sys-fs/udisks:2 )
+"
+DEPEND="${COMMON_DEPEND}
+   dev-cpp/gtest
+   dev-libs/boost
+   dev-qt/qttest:5
+"
+
+DOCS=( Changelog README.md )
+
+REQUIRED_USE="
+   cdda? ( gstreamer )
+   || ( gstreamer vlc )
+"
+
+src_prepare() {
+   plocale_find_changes "src/translations" "" ".po"
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   # spotify is not in portage
+   local mycmakeargs=(
+   -DBUILD_WERROR=OFF
+   # avoid automagically enabling of ccache (bug #611010)
+   -DCCACHE_EXECUTABLE=OFF
+   -DENABLE_GIO=ON
+   -DLINGUAS="$(plocale_get_locales)"
+   -DENABLE_AUDIOCD="$(usex cdda)"
+   -DENABLE_GSTREAMER="$(usex gstreamer)"
+   -DENABLE_LIBGPOD="$(usex ipod)"
+   -DENABLE_LIBMTP="$(usex mtp)"
+   -DENABLE_LIBPULSE="$(usex pulseaudio)"
+   -DENABLE_MOODBAR="$(usex moodbar)"
+   

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2023-01-02 Thread Miroslav Šulc
commit: d9987a44b79eb9bcaf6ae3f592e26049c1ed2203
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Tue Jan  3 07:34:30 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Tue Jan  3 07:34:41 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9987a44

media-sound/strawberry: bump to 1.0.12, dropped 1.0.11

Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest | 2 +-
 .../strawberry/{strawberry-1.0.11.ebuild => strawberry-1.0.12.ebuild}   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index 65250e466d81..08612f06078c 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,2 +1,2 @@
 DIST strawberry-1.0.10.tar.xz 11220176 BLAKE2B 
a1ffba755ea0e9931e2320bfc21f14c0d269b06270f87c72e39ba2a8fcc5c5992828fe926ec71e4366b53d7b2e7b9fd1a4a9df100ddeba32ceffa5fc0ef37ad2
 SHA512 
f13115e5c91dacb508b3c4bf6cee5dd0c1866eae41b145cfcdb7f83dafaf277bc43e3be0b58c16b4b9aa855ef9a7756c53552804481ffae7c78ca929f3d5e8af
-DIST strawberry-1.0.11.tar.xz 11230592 BLAKE2B 
7148f2d9a7a1a7cea5781f4b55373d30265121b9f4cd4a782ae18fe66d6c05aba80f63813e81361a34f150e22fe8a3e138b737deba4de0a8c456a5932832
 SHA512 
8d918400ef31e504d8e94f66e91a89376173ccb5fae6fedd029d92cff2773a02a79479165a037ba0b7b23064863e5a6f68cf948a53393264a6caf20451f6dc48
+DIST strawberry-1.0.12.tar.xz 11231600 BLAKE2B 
7c65d3f0a7418bd4e4ec2d5032406457066f3402efd9f2632f378c15d0c549ab516a8d09dd6d31e2e5723af36d1481614a2b355404596f2384db397ce52495ca
 SHA512 
f29d9d59576788cfb5521a4394dd16501a6dc277c70ebff3629dc891ae70baaebc98ec07f4eda281ac5ebc6c8693c35a5a6611e014d27850beaf20125601e5ce

diff --git a/media-sound/strawberry/strawberry-1.0.11.ebuild 
b/media-sound/strawberry/strawberry-1.0.12.ebuild
similarity index 98%
rename from media-sound/strawberry/strawberry-1.0.11.ebuild
rename to media-sound/strawberry/strawberry-1.0.12.ebuild
index fac9c644eb35..884e0da1aa38 100644
--- a/media-sound/strawberry/strawberry-1.0.11.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.12.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-12-31 Thread Miroslav Šulc
commit: 5c182aa8e733d8c4b84b89881c1d42fd6a375bb7
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sat Dec 31 09:18:53 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sat Dec 31 09:18:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c182aa8

media-sound/strawberry: bump to 1.0.11

Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest |   1 +
 media-sound/strawberry/strawberry-1.0.11.ebuild | 120 
 2 files changed, 121 insertions(+)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index 6a542f7c15dd..65250e466d81 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1 +1,2 @@
 DIST strawberry-1.0.10.tar.xz 11220176 BLAKE2B 
a1ffba755ea0e9931e2320bfc21f14c0d269b06270f87c72e39ba2a8fcc5c5992828fe926ec71e4366b53d7b2e7b9fd1a4a9df100ddeba32ceffa5fc0ef37ad2
 SHA512 
f13115e5c91dacb508b3c4bf6cee5dd0c1866eae41b145cfcdb7f83dafaf277bc43e3be0b58c16b4b9aa855ef9a7756c53552804481ffae7c78ca929f3d5e8af
+DIST strawberry-1.0.11.tar.xz 11230592 BLAKE2B 
7148f2d9a7a1a7cea5781f4b55373d30265121b9f4cd4a782ae18fe66d6c05aba80f63813e81361a34f150e22fe8a3e138b737deba4de0a8c456a5932832
 SHA512 
8d918400ef31e504d8e94f66e91a89376173ccb5fae6fedd029d92cff2773a02a79479165a037ba0b7b23064863e5a6f68cf948a53393264a6caf20451f6dc48

diff --git a/media-sound/strawberry/strawberry-1.0.11.ebuild 
b/media-sound/strawberry/strawberry-1.0.11.ebuild
new file mode 100644
index ..fac9c644eb35
--- /dev/null
+++ b/media-sound/strawberry/strawberry-1.0.11.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic plocale xdg
+
+PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
+
+DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
+HOMEPAGE="https://www.strawberrymusicplayer.org/;
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
+   KEYWORDS="~amd64 ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+COMMON_DEPEND="
+   dev-db/sqlite:=
+   dev-libs/glib:2
+   dev-libs/protobuf:=
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtsql:5[sqlite]
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   media-libs/alsa-lib
+   media-libs/taglib
+   x11-libs/libX11
+   cdda? ( dev-libs/libcdio:= )
+   gstreamer? (
+   media-libs/chromaprint:=
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   )
+   ipod? ( media-libs/libgpod )
+   moodbar? ( sci-libs/fftw:3.0 )
+   mtp? ( media-libs/libmtp )
+   pulseaudio? ( media-sound/pulseaudio )
+   vlc? ( media-video/vlc )
+"
+# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
+RDEPEND="${COMMON_DEPEND}
+   gstreamer? (
+   media-plugins/gst-plugins-meta:1.0
+   media-plugins/gst-plugins-soup:1.0
+   media-plugins/gst-plugins-taglib:1.0
+   )
+   mtp? ( gnome-base/gvfs[mtp] )
+   udisks? ( sys-fs/udisks:2 )
+"
+DEPEND="${COMMON_DEPEND}
+   dev-cpp/gtest
+   dev-libs/boost
+   dev-qt/qttest:5
+"
+
+DOCS=( Changelog README.md )
+
+REQUIRED_USE="
+   cdda? ( gstreamer )
+   || ( gstreamer vlc )
+"
+
+src_prepare() {
+   plocale_find_changes "src/translations" "" ".po"
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   # spotify is not in portage
+   local mycmakeargs=(
+   -DBUILD_WERROR=OFF
+   # avoid automagically enabling of ccache (bug #611010)
+   -DCCACHE_EXECUTABLE=OFF
+   -DENABLE_GIO=ON
+   -DLINGUAS="$(plocale_get_locales)"
+   -DENABLE_AUDIOCD="$(usex cdda)"
+   -DENABLE_GSTREAMER="$(usex gstreamer)"
+   -DENABLE_LIBGPOD="$(usex ipod)"
+   -DENABLE_LIBMTP="$(usex mtp)"
+   -DENABLE_LIBPULSE="$(usex pulseaudio)"
+   -DENABLE_MOODBAR="$(usex moodbar)"
+   -DENABLE_MUSICBRAINZ="$(usex gstreamer)"
+   -DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
+   -DENABLE_UDISKS2="$(usex udisks)"
+   -DENABLE_VLC="$(usex vlc)"
+   # Disable until we have qt6 in the tree
+   -DWITH_QT6=OFF
+   )
+
+   use !debug && append-cppflags 

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-12-04 Thread Miroslav Šulc
commit: 65067d998baf03b77b9e9bdefbf9a83664798063
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sun Dec  4 09:01:32 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sun Dec  4 09:01:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65067d99

media-sound/strawberry: dropped obsolete 1.0.9

Bug: https://bugs.gentoo.org/882595
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest|   1 -
 media-sound/strawberry/strawberry-1.0.9.ebuild | 120 -
 2 files changed, 121 deletions(-)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index faae02664a15..6a542f7c15dd 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,2 +1 @@
 DIST strawberry-1.0.10.tar.xz 11220176 BLAKE2B 
a1ffba755ea0e9931e2320bfc21f14c0d269b06270f87c72e39ba2a8fcc5c5992828fe926ec71e4366b53d7b2e7b9fd1a4a9df100ddeba32ceffa5fc0ef37ad2
 SHA512 
f13115e5c91dacb508b3c4bf6cee5dd0c1866eae41b145cfcdb7f83dafaf277bc43e3be0b58c16b4b9aa855ef9a7756c53552804481ffae7c78ca929f3d5e8af
-DIST strawberry-1.0.9.tar.xz 11226840 BLAKE2B 
4d7619a4161b422c417a69be1eede54068279a5829070a9d84d02d05c7504813710758d639901073b9567183be61ff66a6cd3aec9585b0ec2371d12440e8284b
 SHA512 
ccfd9e451b719cc9aeca5ce2fd260681e649edfae14cfee2d7f9b2f978b3d111e8d449f16af4869c95c96f657a7d61b4d2353ed0b0fbe6734eb31271a1577ea4

diff --git a/media-sound/strawberry/strawberry-1.0.9.ebuild 
b/media-sound/strawberry/strawberry-1.0.9.ebuild
deleted file mode 100644
index b14411677be9..
--- a/media-sound/strawberry/strawberry-1.0.9.ebuild
+++ /dev/null
@@ -1,120 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic plocale xdg
-
-PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
-
-DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
-HOMEPAGE="https://www.strawberrymusicplayer.org/;
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
-   inherit git-r3
-else
-   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~ppc64 x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-COMMON_DEPEND="
-   dev-db/sqlite:=
-   dev-libs/glib:2
-   dev-libs/protobuf:=
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5[ssl]
-   dev-qt/qtsql:5[sqlite]
-   dev-qt/qtwidgets:5
-   dev-qt/qtx11extras:5
-   media-libs/alsa-lib
-   media-libs/taglib
-   x11-libs/libX11
-   cdda? ( dev-libs/libcdio:= )
-   gstreamer? (
-   media-libs/chromaprint:=
-   media-libs/gstreamer:1.0
-   media-libs/gst-plugins-base:1.0
-   )
-   ipod? ( media-libs/libgpod )
-   moodbar? ( sci-libs/fftw:3.0 )
-   mtp? ( media-libs/libmtp )
-   pulseaudio? ( media-sound/pulseaudio )
-   vlc? ( media-video/vlc )
-"
-# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
-RDEPEND="${COMMON_DEPEND}
-   gstreamer? (
-   media-plugins/gst-plugins-meta:1.0
-   media-plugins/gst-plugins-soup:1.0
-   media-plugins/gst-plugins-taglib:1.0
-   )
-   mtp? ( gnome-base/gvfs[mtp] )
-   udisks? ( sys-fs/udisks:2 )
-"
-DEPEND="${COMMON_DEPEND}
-   dev-cpp/gtest
-   dev-libs/boost
-   dev-qt/qttest:5
-"
-
-DOCS=( Changelog README.md )
-
-REQUIRED_USE="
-   cdda? ( gstreamer )
-   || ( gstreamer vlc )
-"
-
-src_prepare() {
-   plocale_find_changes "src/translations" "" ".po"
-
-   cmake_src_prepare
-}
-
-src_configure() {
-   # spotify is not in portage
-   local mycmakeargs=(
-   -DBUILD_WERROR=OFF
-   # avoid automagically enabling of ccache (bug #611010)
-   -DCCACHE_EXECUTABLE=OFF
-   -DENABLE_GIO=ON
-   -DLINGUAS="$(plocale_get_locales)"
-   -DENABLE_AUDIOCD="$(usex cdda)"
-   -DENABLE_GSTREAMER="$(usex gstreamer)"
-   -DENABLE_LIBGPOD="$(usex ipod)"
-   -DENABLE_LIBMTP="$(usex mtp)"
-   -DENABLE_LIBPULSE="$(usex pulseaudio)"
-   -DENABLE_MOODBAR="$(usex moodbar)"
-   -DENABLE_MUSICBRAINZ="$(usex gstreamer)"
-   -DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
-   -DENABLE_UDISKS2="$(usex udisks)"
-   -DENABLE_VLC="$(usex vlc)"
-   # Disable until we have qt6 in the tree
-   -DWITH_QT6=OFF
-   )

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-11-24 Thread Jakov Smolić
commit: 169469af06e44ea00b15770b0206ef062dec2bbe
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Nov 24 12:08:38 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Nov 24 12:08:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=169469af

media-sound/strawberry: Stabilize 1.0.10 amd64, #882595

Signed-off-by: Jakov Smolić  gentoo.org>

 media-sound/strawberry/strawberry-1.0.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.10.ebuild 
b/media-sound/strawberry/strawberry-1.0.10.ebuild
index fac9c644eb35..ca8c5afb6d1b 100644
--- a/media-sound/strawberry/strawberry-1.0.10.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.10.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~ppc64 ~x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-10-23 Thread Miroslav Šulc
commit: 934454879815524411f26ab301b850156ac1b2f9
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sun Oct 23 07:26:24 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sun Oct 23 07:26:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93445487

media-sound/strawberry: bump to 1.0.10

Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest |   1 +
 media-sound/strawberry/strawberry-1.0.10.ebuild | 120 
 2 files changed, 121 insertions(+)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index c851c00e26e9..faae02664a15 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1 +1,2 @@
+DIST strawberry-1.0.10.tar.xz 11220176 BLAKE2B 
a1ffba755ea0e9931e2320bfc21f14c0d269b06270f87c72e39ba2a8fcc5c5992828fe926ec71e4366b53d7b2e7b9fd1a4a9df100ddeba32ceffa5fc0ef37ad2
 SHA512 
f13115e5c91dacb508b3c4bf6cee5dd0c1866eae41b145cfcdb7f83dafaf277bc43e3be0b58c16b4b9aa855ef9a7756c53552804481ffae7c78ca929f3d5e8af
 DIST strawberry-1.0.9.tar.xz 11226840 BLAKE2B 
4d7619a4161b422c417a69be1eede54068279a5829070a9d84d02d05c7504813710758d639901073b9567183be61ff66a6cd3aec9585b0ec2371d12440e8284b
 SHA512 
ccfd9e451b719cc9aeca5ce2fd260681e649edfae14cfee2d7f9b2f978b3d111e8d449f16af4869c95c96f657a7d61b4d2353ed0b0fbe6734eb31271a1577ea4

diff --git a/media-sound/strawberry/strawberry-1.0.10.ebuild 
b/media-sound/strawberry/strawberry-1.0.10.ebuild
new file mode 100644
index ..fac9c644eb35
--- /dev/null
+++ b/media-sound/strawberry/strawberry-1.0.10.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic plocale xdg
+
+PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
+
+DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
+HOMEPAGE="https://www.strawberrymusicplayer.org/;
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
+   KEYWORDS="~amd64 ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+COMMON_DEPEND="
+   dev-db/sqlite:=
+   dev-libs/glib:2
+   dev-libs/protobuf:=
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtsql:5[sqlite]
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   media-libs/alsa-lib
+   media-libs/taglib
+   x11-libs/libX11
+   cdda? ( dev-libs/libcdio:= )
+   gstreamer? (
+   media-libs/chromaprint:=
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   )
+   ipod? ( media-libs/libgpod )
+   moodbar? ( sci-libs/fftw:3.0 )
+   mtp? ( media-libs/libmtp )
+   pulseaudio? ( media-sound/pulseaudio )
+   vlc? ( media-video/vlc )
+"
+# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
+RDEPEND="${COMMON_DEPEND}
+   gstreamer? (
+   media-plugins/gst-plugins-meta:1.0
+   media-plugins/gst-plugins-soup:1.0
+   media-plugins/gst-plugins-taglib:1.0
+   )
+   mtp? ( gnome-base/gvfs[mtp] )
+   udisks? ( sys-fs/udisks:2 )
+"
+DEPEND="${COMMON_DEPEND}
+   dev-cpp/gtest
+   dev-libs/boost
+   dev-qt/qttest:5
+"
+
+DOCS=( Changelog README.md )
+
+REQUIRED_USE="
+   cdda? ( gstreamer )
+   || ( gstreamer vlc )
+"
+
+src_prepare() {
+   plocale_find_changes "src/translations" "" ".po"
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   # spotify is not in portage
+   local mycmakeargs=(
+   -DBUILD_WERROR=OFF
+   # avoid automagically enabling of ccache (bug #611010)
+   -DCCACHE_EXECUTABLE=OFF
+   -DENABLE_GIO=ON
+   -DLINGUAS="$(plocale_get_locales)"
+   -DENABLE_AUDIOCD="$(usex cdda)"
+   -DENABLE_GSTREAMER="$(usex gstreamer)"
+   -DENABLE_LIBGPOD="$(usex ipod)"
+   -DENABLE_LIBMTP="$(usex mtp)"
+   -DENABLE_LIBPULSE="$(usex pulseaudio)"
+   -DENABLE_MOODBAR="$(usex moodbar)"
+   -DENABLE_MUSICBRAINZ="$(usex gstreamer)"
+   -DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
+   -DENABLE_UDISKS2="$(usex udisks)"
+   -DENABLE_VLC="$(usex vlc)"
+   # Disable until we have qt6 in the tree
+   -DWITH_QT6=OFF
+   )
+
+   use !debug && append-cppflags 

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-10-09 Thread Miroslav Šulc
commit: 576732c535f73ba93e63009b37b444252d513bfd
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sun Oct  9 06:21:57 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sun Oct  9 06:21:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=576732c5

media-sound/strawberry: dropped obsolete 1.0.8

Bug: https://bugs.gentoo.org/876025
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest|   1 -
 media-sound/strawberry/strawberry-1.0.8.ebuild | 120 -
 2 files changed, 121 deletions(-)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index bf7063d9a383..c851c00e26e9 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,2 +1 @@
-DIST strawberry-1.0.8.tar.xz 11222136 BLAKE2B 
b11b4a082eb2c2d180d7d217884ac498c692df1d76e54ca41e83ea3ab456c4920d3348ee0b154f02d22902b84263fb0afb86c5e125d669fc54b6ffce1719abb3
 SHA512 
7d43a80d4aac16379929e147a4cc7af8b2866a3a14adee8716ff89ff255859eca197f448ff605e255f0d3d74a8e0d1babf4534cfd58b5247533c37dfae6f96e3
 DIST strawberry-1.0.9.tar.xz 11226840 BLAKE2B 
4d7619a4161b422c417a69be1eede54068279a5829070a9d84d02d05c7504813710758d639901073b9567183be61ff66a6cd3aec9585b0ec2371d12440e8284b
 SHA512 
ccfd9e451b719cc9aeca5ce2fd260681e649edfae14cfee2d7f9b2f978b3d111e8d449f16af4869c95c96f657a7d61b4d2353ed0b0fbe6734eb31271a1577ea4

diff --git a/media-sound/strawberry/strawberry-1.0.8.ebuild 
b/media-sound/strawberry/strawberry-1.0.8.ebuild
deleted file mode 100644
index b14411677be9..
--- a/media-sound/strawberry/strawberry-1.0.8.ebuild
+++ /dev/null
@@ -1,120 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic plocale xdg
-
-PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
-
-DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
-HOMEPAGE="https://www.strawberrymusicplayer.org/;
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
-   inherit git-r3
-else
-   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~ppc64 x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-COMMON_DEPEND="
-   dev-db/sqlite:=
-   dev-libs/glib:2
-   dev-libs/protobuf:=
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5[ssl]
-   dev-qt/qtsql:5[sqlite]
-   dev-qt/qtwidgets:5
-   dev-qt/qtx11extras:5
-   media-libs/alsa-lib
-   media-libs/taglib
-   x11-libs/libX11
-   cdda? ( dev-libs/libcdio:= )
-   gstreamer? (
-   media-libs/chromaprint:=
-   media-libs/gstreamer:1.0
-   media-libs/gst-plugins-base:1.0
-   )
-   ipod? ( media-libs/libgpod )
-   moodbar? ( sci-libs/fftw:3.0 )
-   mtp? ( media-libs/libmtp )
-   pulseaudio? ( media-sound/pulseaudio )
-   vlc? ( media-video/vlc )
-"
-# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
-RDEPEND="${COMMON_DEPEND}
-   gstreamer? (
-   media-plugins/gst-plugins-meta:1.0
-   media-plugins/gst-plugins-soup:1.0
-   media-plugins/gst-plugins-taglib:1.0
-   )
-   mtp? ( gnome-base/gvfs[mtp] )
-   udisks? ( sys-fs/udisks:2 )
-"
-DEPEND="${COMMON_DEPEND}
-   dev-cpp/gtest
-   dev-libs/boost
-   dev-qt/qttest:5
-"
-
-DOCS=( Changelog README.md )
-
-REQUIRED_USE="
-   cdda? ( gstreamer )
-   || ( gstreamer vlc )
-"
-
-src_prepare() {
-   plocale_find_changes "src/translations" "" ".po"
-
-   cmake_src_prepare
-}
-
-src_configure() {
-   # spotify is not in portage
-   local mycmakeargs=(
-   -DBUILD_WERROR=OFF
-   # avoid automagically enabling of ccache (bug #611010)
-   -DCCACHE_EXECUTABLE=OFF
-   -DENABLE_GIO=ON
-   -DLINGUAS="$(plocale_get_locales)"
-   -DENABLE_AUDIOCD="$(usex cdda)"
-   -DENABLE_GSTREAMER="$(usex gstreamer)"
-   -DENABLE_LIBGPOD="$(usex ipod)"
-   -DENABLE_LIBMTP="$(usex mtp)"
-   -DENABLE_LIBPULSE="$(usex pulseaudio)"
-   -DENABLE_MOODBAR="$(usex moodbar)"
-   -DENABLE_MUSICBRAINZ="$(usex gstreamer)"
-   -DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
-   -DENABLE_UDISKS2="$(usex udisks)"
-   -DENABLE_VLC="$(usex vlc)"
-   # Disable until we have qt6 in the tree
-   -DWITH_QT6=OFF
-   )

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-10-08 Thread Agostino Sarubbo
commit: e6193b0749d9232256984b04d2834f6a7d45fd63
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Oct  8 10:12:27 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Oct  8 10:12:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6193b07

media-sound/strawberry: Stabilize 1.0.9 x86, #876025

Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-sound/strawberry/strawberry-1.0.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.9.ebuild 
b/media-sound/strawberry/strawberry-1.0.9.ebuild
index ca8c5afb6d1b..b14411677be9 100644
--- a/media-sound/strawberry/strawberry-1.0.9.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.9.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~ppc64 x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-10-08 Thread Agostino Sarubbo
commit: b932fa89acc440f9966ec79f9704130acd58ca65
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Oct  8 10:07:26 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Oct  8 10:07:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b932fa89

media-sound/strawberry: Stabilize 1.0.9 amd64, #876025

Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-sound/strawberry/strawberry-1.0.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.9.ebuild 
b/media-sound/strawberry/strawberry-1.0.9.ebuild
index fac9c644eb35..ca8c5afb6d1b 100644
--- a/media-sound/strawberry/strawberry-1.0.9.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.9.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~ppc64 ~x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-09-30 Thread Miroslav Šulc
commit: d0d33c5d1375c9501c0fbd95faf2a5384fdd149c
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sat Oct  1 04:28:17 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sat Oct  1 04:28:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0d33c5d

media-sound/strawberry: dropped obsolete 1.0.7

Bug: https://bugs.gentoo.org/873583
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest|   1 -
 media-sound/strawberry/strawberry-1.0.7.ebuild | 120 -
 2 files changed, 121 deletions(-)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index 8802ef175faf..bf7063d9a383 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,3 +1,2 @@
-DIST strawberry-1.0.7.tar.xz 11216436 BLAKE2B 
f7bc53f33be53fb9d947ea4f4c29827cc4248b0249904f2e48cbd9e4440de1f7f866d83c9fddc92cfb6f56b050c4dc40f0ad5e67a58c2a75e47a9d666847e9b3
 SHA512 
9bf092c3990ae0c2ce63074c7f6076ccab896ae915c4ee255a7fbb6534d50467648f3e96bc029075acfd50515c45ade867e55518d9a68ec9c10a741e1976d64f
 DIST strawberry-1.0.8.tar.xz 11222136 BLAKE2B 
b11b4a082eb2c2d180d7d217884ac498c692df1d76e54ca41e83ea3ab456c4920d3348ee0b154f02d22902b84263fb0afb86c5e125d669fc54b6ffce1719abb3
 SHA512 
7d43a80d4aac16379929e147a4cc7af8b2866a3a14adee8716ff89ff255859eca197f448ff605e255f0d3d74a8e0d1babf4534cfd58b5247533c37dfae6f96e3
 DIST strawberry-1.0.9.tar.xz 11226840 BLAKE2B 
4d7619a4161b422c417a69be1eede54068279a5829070a9d84d02d05c7504813710758d639901073b9567183be61ff66a6cd3aec9585b0ec2371d12440e8284b
 SHA512 
ccfd9e451b719cc9aeca5ce2fd260681e649edfae14cfee2d7f9b2f978b3d111e8d449f16af4869c95c96f657a7d61b4d2353ed0b0fbe6734eb31271a1577ea4

diff --git a/media-sound/strawberry/strawberry-1.0.7.ebuild 
b/media-sound/strawberry/strawberry-1.0.7.ebuild
deleted file mode 100644
index b14411677be9..
--- a/media-sound/strawberry/strawberry-1.0.7.ebuild
+++ /dev/null
@@ -1,120 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic plocale xdg
-
-PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
-
-DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
-HOMEPAGE="https://www.strawberrymusicplayer.org/;
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
-   inherit git-r3
-else
-   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~ppc64 x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-COMMON_DEPEND="
-   dev-db/sqlite:=
-   dev-libs/glib:2
-   dev-libs/protobuf:=
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5[ssl]
-   dev-qt/qtsql:5[sqlite]
-   dev-qt/qtwidgets:5
-   dev-qt/qtx11extras:5
-   media-libs/alsa-lib
-   media-libs/taglib
-   x11-libs/libX11
-   cdda? ( dev-libs/libcdio:= )
-   gstreamer? (
-   media-libs/chromaprint:=
-   media-libs/gstreamer:1.0
-   media-libs/gst-plugins-base:1.0
-   )
-   ipod? ( media-libs/libgpod )
-   moodbar? ( sci-libs/fftw:3.0 )
-   mtp? ( media-libs/libmtp )
-   pulseaudio? ( media-sound/pulseaudio )
-   vlc? ( media-video/vlc )
-"
-# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
-RDEPEND="${COMMON_DEPEND}
-   gstreamer? (
-   media-plugins/gst-plugins-meta:1.0
-   media-plugins/gst-plugins-soup:1.0
-   media-plugins/gst-plugins-taglib:1.0
-   )
-   mtp? ( gnome-base/gvfs[mtp] )
-   udisks? ( sys-fs/udisks:2 )
-"
-DEPEND="${COMMON_DEPEND}
-   dev-cpp/gtest
-   dev-libs/boost
-   dev-qt/qttest:5
-"
-
-DOCS=( Changelog README.md )
-
-REQUIRED_USE="
-   cdda? ( gstreamer )
-   || ( gstreamer vlc )
-"
-
-src_prepare() {
-   plocale_find_changes "src/translations" "" ".po"
-
-   cmake_src_prepare
-}
-
-src_configure() {
-   # spotify is not in portage
-   local mycmakeargs=(
-   -DBUILD_WERROR=OFF
-   # avoid automagically enabling of ccache (bug #611010)
-   -DCCACHE_EXECUTABLE=OFF
-   -DENABLE_GIO=ON
-   -DLINGUAS="$(plocale_get_locales)"
-   -DENABLE_AUDIOCD="$(usex cdda)"
-   -DENABLE_GSTREAMER="$(usex gstreamer)"
-   -DENABLE_LIBGPOD="$(usex ipod)"
-   -DENABLE_LIBMTP="$(usex mtp)"
-   -DENABLE_LIBPULSE="$(usex pulseaudio)"
-   -DENABLE_MOODBAR="$(usex 

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-09-30 Thread Agostino Sarubbo
commit: 162bede80688466efaeffd2f06764d8eefba14d6
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Sep 30 11:50:43 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Sep 30 11:50:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=162bede8

media-sound/strawberry: Stabilize 1.0.8 x86, #873583

Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-sound/strawberry/strawberry-1.0.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.8.ebuild 
b/media-sound/strawberry/strawberry-1.0.8.ebuild
index ca8c5afb6d1b..b14411677be9 100644
--- a/media-sound/strawberry/strawberry-1.0.8.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.8.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~ppc64 x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-09-30 Thread Agostino Sarubbo
commit: 681dbd06c99289e31ee32c28946aeccae34a4987
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Sep 30 11:46:17 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Sep 30 11:46:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=681dbd06

media-sound/strawberry: Stabilize 1.0.8 amd64, #873583

Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-sound/strawberry/strawberry-1.0.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.8.ebuild 
b/media-sound/strawberry/strawberry-1.0.8.ebuild
index fac9c644eb35..ca8c5afb6d1b 100644
--- a/media-sound/strawberry/strawberry-1.0.8.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.8.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~ppc64 ~x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-09-06 Thread Miroslav Šulc
commit: 035d4cd56d23f86ede84e1580e59023c3dfe1ab1
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Sep  7 03:53:23 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Sep  7 03:53:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=035d4cd5

media-sound/strawberry: bump to 1.0.9

Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest|   1 +
 media-sound/strawberry/strawberry-1.0.9.ebuild | 120 +
 2 files changed, 121 insertions(+)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index 9a9fb0f12cfb..8802ef175faf 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,2 +1,3 @@
 DIST strawberry-1.0.7.tar.xz 11216436 BLAKE2B 
f7bc53f33be53fb9d947ea4f4c29827cc4248b0249904f2e48cbd9e4440de1f7f866d83c9fddc92cfb6f56b050c4dc40f0ad5e67a58c2a75e47a9d666847e9b3
 SHA512 
9bf092c3990ae0c2ce63074c7f6076ccab896ae915c4ee255a7fbb6534d50467648f3e96bc029075acfd50515c45ade867e55518d9a68ec9c10a741e1976d64f
 DIST strawberry-1.0.8.tar.xz 11222136 BLAKE2B 
b11b4a082eb2c2d180d7d217884ac498c692df1d76e54ca41e83ea3ab456c4920d3348ee0b154f02d22902b84263fb0afb86c5e125d669fc54b6ffce1719abb3
 SHA512 
7d43a80d4aac16379929e147a4cc7af8b2866a3a14adee8716ff89ff255859eca197f448ff605e255f0d3d74a8e0d1babf4534cfd58b5247533c37dfae6f96e3
+DIST strawberry-1.0.9.tar.xz 11226840 BLAKE2B 
4d7619a4161b422c417a69be1eede54068279a5829070a9d84d02d05c7504813710758d639901073b9567183be61ff66a6cd3aec9585b0ec2371d12440e8284b
 SHA512 
ccfd9e451b719cc9aeca5ce2fd260681e649edfae14cfee2d7f9b2f978b3d111e8d449f16af4869c95c96f657a7d61b4d2353ed0b0fbe6734eb31271a1577ea4

diff --git a/media-sound/strawberry/strawberry-1.0.9.ebuild 
b/media-sound/strawberry/strawberry-1.0.9.ebuild
new file mode 100644
index ..fac9c644eb35
--- /dev/null
+++ b/media-sound/strawberry/strawberry-1.0.9.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic plocale xdg
+
+PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
+
+DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
+HOMEPAGE="https://www.strawberrymusicplayer.org/;
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
+   KEYWORDS="~amd64 ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+COMMON_DEPEND="
+   dev-db/sqlite:=
+   dev-libs/glib:2
+   dev-libs/protobuf:=
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtsql:5[sqlite]
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   media-libs/alsa-lib
+   media-libs/taglib
+   x11-libs/libX11
+   cdda? ( dev-libs/libcdio:= )
+   gstreamer? (
+   media-libs/chromaprint:=
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   )
+   ipod? ( media-libs/libgpod )
+   moodbar? ( sci-libs/fftw:3.0 )
+   mtp? ( media-libs/libmtp )
+   pulseaudio? ( media-sound/pulseaudio )
+   vlc? ( media-video/vlc )
+"
+# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
+RDEPEND="${COMMON_DEPEND}
+   gstreamer? (
+   media-plugins/gst-plugins-meta:1.0
+   media-plugins/gst-plugins-soup:1.0
+   media-plugins/gst-plugins-taglib:1.0
+   )
+   mtp? ( gnome-base/gvfs[mtp] )
+   udisks? ( sys-fs/udisks:2 )
+"
+DEPEND="${COMMON_DEPEND}
+   dev-cpp/gtest
+   dev-libs/boost
+   dev-qt/qttest:5
+"
+
+DOCS=( Changelog README.md )
+
+REQUIRED_USE="
+   cdda? ( gstreamer )
+   || ( gstreamer vlc )
+"
+
+src_prepare() {
+   plocale_find_changes "src/translations" "" ".po"
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   # spotify is not in portage
+   local mycmakeargs=(
+   -DBUILD_WERROR=OFF
+   # avoid automagically enabling of ccache (bug #611010)
+   -DCCACHE_EXECUTABLE=OFF
+   -DENABLE_GIO=ON
+   -DLINGUAS="$(plocale_get_locales)"
+   -DENABLE_AUDIOCD="$(usex cdda)"
+   -DENABLE_GSTREAMER="$(usex gstreamer)"
+   -DENABLE_LIBGPOD="$(usex ipod)"
+   -DENABLE_LIBMTP="$(usex mtp)"
+   -DENABLE_LIBPULSE="$(usex pulseaudio)"
+   -DENABLE_MOODBAR="$(usex moodbar)"
+   

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-08-29 Thread Miroslav Šulc
commit: 44526b4e366e7308532c73ce438d4d0ff24e0bfd
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Tue Aug 30 05:40:47 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Tue Aug 30 05:40:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44526b4e

media-sound/strawberry: bump to 1.0.8 + updated live

Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest|  1 +
 .../{strawberry-.ebuild => strawberry-1.0.8.ebuild}| 10 +-
 media-sound/strawberry/strawberry-.ebuild  | 10 +-
 3 files changed, 11 insertions(+), 10 deletions(-)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index e09411fb43b9..9a9fb0f12cfb 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1 +1,2 @@
 DIST strawberry-1.0.7.tar.xz 11216436 BLAKE2B 
f7bc53f33be53fb9d947ea4f4c29827cc4248b0249904f2e48cbd9e4440de1f7f866d83c9fddc92cfb6f56b050c4dc40f0ad5e67a58c2a75e47a9d666847e9b3
 SHA512 
9bf092c3990ae0c2ce63074c7f6076ccab896ae915c4ee255a7fbb6534d50467648f3e96bc029075acfd50515c45ade867e55518d9a68ec9c10a741e1976d64f
+DIST strawberry-1.0.8.tar.xz 11222136 BLAKE2B 
b11b4a082eb2c2d180d7d217884ac498c692df1d76e54ca41e83ea3ab456c4920d3348ee0b154f02d22902b84263fb0afb86c5e125d669fc54b6ffce1719abb3
 SHA512 
7d43a80d4aac16379929e147a4cc7af8b2866a3a14adee8716ff89ff255859eca197f448ff605e255f0d3d74a8e0d1babf4534cfd58b5247533c37dfae6f96e3

diff --git a/media-sound/strawberry/strawberry-.ebuild 
b/media-sound/strawberry/strawberry-1.0.8.ebuild
similarity index 94%
copy from media-sound/strawberry/strawberry-.ebuild
copy to media-sound/strawberry/strawberry-1.0.8.ebuild
index af868219fe69..fac9c644eb35 100644
--- a/media-sound/strawberry/strawberry-.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.8.ebuild
@@ -39,17 +39,17 @@ COMMON_DEPEND="
dev-qt/qtwidgets:5
dev-qt/qtx11extras:5
media-libs/alsa-lib
-   >=media-libs/taglib-1.11.1_p20181028
+   media-libs/taglib
x11-libs/libX11
cdda? ( dev-libs/libcdio:= )
gstreamer? (
-   >=media-libs/chromaprint-1.4:=
+   media-libs/chromaprint:=
media-libs/gstreamer:1.0
media-libs/gst-plugins-base:1.0
)
-   ipod? ( >=media-libs/libgpod-0.8.0 )
+   ipod? ( media-libs/libgpod )
moodbar? ( sci-libs/fftw:3.0 )
-   mtp? ( >=media-libs/libmtp-1.0.0 )
+   mtp? ( media-libs/libmtp )
pulseaudio? ( media-sound/pulseaudio )
vlc? ( media-video/vlc )
 "
@@ -64,7 +64,7 @@ RDEPEND="${COMMON_DEPEND}
udisks? ( sys-fs/udisks:2 )
 "
 DEPEND="${COMMON_DEPEND}
-   >=dev-cpp/gtest-1.8.0
+   dev-cpp/gtest
dev-libs/boost
dev-qt/qttest:5
 "

diff --git a/media-sound/strawberry/strawberry-.ebuild 
b/media-sound/strawberry/strawberry-.ebuild
index af868219fe69..fac9c644eb35 100644
--- a/media-sound/strawberry/strawberry-.ebuild
+++ b/media-sound/strawberry/strawberry-.ebuild
@@ -39,17 +39,17 @@ COMMON_DEPEND="
dev-qt/qtwidgets:5
dev-qt/qtx11extras:5
media-libs/alsa-lib
-   >=media-libs/taglib-1.11.1_p20181028
+   media-libs/taglib
x11-libs/libX11
cdda? ( dev-libs/libcdio:= )
gstreamer? (
-   >=media-libs/chromaprint-1.4:=
+   media-libs/chromaprint:=
media-libs/gstreamer:1.0
media-libs/gst-plugins-base:1.0
)
-   ipod? ( >=media-libs/libgpod-0.8.0 )
+   ipod? ( media-libs/libgpod )
moodbar? ( sci-libs/fftw:3.0 )
-   mtp? ( >=media-libs/libmtp-1.0.0 )
+   mtp? ( media-libs/libmtp )
pulseaudio? ( media-sound/pulseaudio )
vlc? ( media-video/vlc )
 "
@@ -64,7 +64,7 @@ RDEPEND="${COMMON_DEPEND}
udisks? ( sys-fs/udisks:2 )
 "
 DEPEND="${COMMON_DEPEND}
-   >=dev-cpp/gtest-1.8.0
+   dev-cpp/gtest
dev-libs/boost
dev-qt/qttest:5
 "



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-08-27 Thread Sam James
commit: 32d492138fd84e7b29e195db605ec32a0d4c
Author: Sam James  gentoo  org>
AuthorDate: Fri Aug 26 23:25:45 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug 26 23:25:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32d49213

media-sound/strawberry: Stabilize 1.0.7 amd64, #866590

Signed-off-by: Sam James  gentoo.org>

 media-sound/strawberry/strawberry-1.0.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.7.ebuild 
b/media-sound/strawberry/strawberry-1.0.7.ebuild
index 3e1c18fd83d8..b14411677be9 100644
--- a/media-sound/strawberry/strawberry-1.0.7.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.7.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~ppc64 x86"
+   KEYWORDS="amd64 ~ppc64 x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-08-27 Thread Miroslav Šulc
commit: b1b2291d0b47fa96af709c2a24a85cc35a9c189a
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sat Aug 27 04:34:02 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sat Aug 27 04:34:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1b2291d

media-sound/strawberry: dropped obsolete 1.0.5

Bug: https://bugs.gentoo.org/866590
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest|   1 -
 media-sound/strawberry/strawberry-1.0.5.ebuild | 120 -
 2 files changed, 121 deletions(-)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index 7fc58422d56e..e09411fb43b9 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,2 +1 @@
-DIST strawberry-1.0.5.tar.xz 11212028 BLAKE2B 
2bb668bc9a4f66a9cdeaa28f47f21bf90f999d5524fa443bc7beaa1d0d7c6dc6727bf4df010fc06989e00fc34d62902add11186908fcf3f1b490c3bf745a9971
 SHA512 
4c625c75855f87952b274c85b4c5b021b27e75a74d46202ab3ea0aa3c86f510bccdece583483c4ba73e4733f151feb5eac5f5ef5d9a956995979fa307fd8d911
 DIST strawberry-1.0.7.tar.xz 11216436 BLAKE2B 
f7bc53f33be53fb9d947ea4f4c29827cc4248b0249904f2e48cbd9e4440de1f7f866d83c9fddc92cfb6f56b050c4dc40f0ad5e67a58c2a75e47a9d666847e9b3
 SHA512 
9bf092c3990ae0c2ce63074c7f6076ccab896ae915c4ee255a7fbb6534d50467648f3e96bc029075acfd50515c45ade867e55518d9a68ec9c10a741e1976d64f

diff --git a/media-sound/strawberry/strawberry-1.0.5.ebuild 
b/media-sound/strawberry/strawberry-1.0.5.ebuild
deleted file mode 100644
index 721ef2158d3d..
--- a/media-sound/strawberry/strawberry-1.0.5.ebuild
+++ /dev/null
@@ -1,120 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic plocale xdg
-
-PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
-
-DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
-HOMEPAGE="https://www.strawberrymusicplayer.org/;
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
-   inherit git-r3
-else
-   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~ppc64 x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-COMMON_DEPEND="
-   dev-db/sqlite:=
-   dev-libs/glib:2
-   dev-libs/protobuf:=
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5[ssl]
-   dev-qt/qtsql:5[sqlite]
-   dev-qt/qtwidgets:5
-   dev-qt/qtx11extras:5
-   media-libs/alsa-lib
-   >=media-libs/taglib-1.11.1_p20181028
-   x11-libs/libX11
-   cdda? ( dev-libs/libcdio:= )
-   gstreamer? (
-   >=media-libs/chromaprint-1.4:=
-   media-libs/gstreamer:1.0
-   media-libs/gst-plugins-base:1.0
-   )
-   ipod? ( >=media-libs/libgpod-0.8.0 )
-   moodbar? ( sci-libs/fftw:3.0 )
-   mtp? ( >=media-libs/libmtp-1.0.0 )
-   pulseaudio? ( media-sound/pulseaudio )
-   vlc? ( media-video/vlc )
-"
-# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
-RDEPEND="${COMMON_DEPEND}
-   gstreamer? (
-   media-plugins/gst-plugins-meta:1.0
-   media-plugins/gst-plugins-soup:1.0
-   media-plugins/gst-plugins-taglib:1.0
-   )
-   mtp? ( gnome-base/gvfs[mtp] )
-   udisks? ( sys-fs/udisks:2 )
-"
-DEPEND="${COMMON_DEPEND}
-   >=dev-cpp/gtest-1.8.0
-   dev-libs/boost
-   dev-qt/qttest:5
-"
-
-DOCS=( Changelog README.md )
-
-REQUIRED_USE="
-   cdda? ( gstreamer )
-   || ( gstreamer vlc )
-"
-
-src_prepare() {
-   plocale_find_changes "src/translations" "" ".po"
-
-   cmake_src_prepare
-}
-
-src_configure() {
-   # spotify is not in portage
-   local mycmakeargs=(
-   -DBUILD_WERROR=OFF
-   # avoid automagically enabling of ccache (bug #611010)
-   -DCCACHE_EXECUTABLE=OFF
-   -DENABLE_GIO=ON
-   -DLINGUAS="$(plocale_get_locales)"
-   -DENABLE_AUDIOCD="$(usex cdda)"
-   -DENABLE_GSTREAMER="$(usex gstreamer)"
-   -DENABLE_LIBGPOD="$(usex ipod)"
-   -DENABLE_LIBMTP="$(usex mtp)"
-   -DENABLE_LIBPULSE="$(usex pulseaudio)"
-   -DENABLE_MOODBAR="$(usex moodbar)"
-   -DENABLE_MUSICBRAINZ="$(usex gstreamer)"
-   -DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
-   -DENABLE_UDISKS2="$(usex udisks)"
-   -DENABLE_VLC="$(usex vlc)"
-   # Disable until we have qt6 in 

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-08-25 Thread Sam James
commit: b40111540d8dfd2df27d6d7b984ecdbe21f6811c
Author: Sam James  gentoo  org>
AuthorDate: Fri Aug 26 05:45:51 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug 26 05:45:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4011154

media-sound/strawberry: Stabilize 1.0.7 x86, #866590

Signed-off-by: Sam James  gentoo.org>

 media-sound/strawberry/strawberry-1.0.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.7.ebuild 
b/media-sound/strawberry/strawberry-1.0.7.ebuild
index fac9c644eb35..3e1c18fd83d8 100644
--- a/media-sound/strawberry/strawberry-1.0.7.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.7.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~ppc64 x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-08-17 Thread Matt Turner
commit: 47dca4418c66d73dc88dcd2b816878c9cd295ca0
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Aug 17 13:48:35 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Aug 17 16:21:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47dca441

media-sound/strawberry: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-sound/strawberry/Manifest|   1 -
 media-sound/strawberry/strawberry-1.0.6.ebuild | 120 -
 2 files changed, 121 deletions(-)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index bfb839817851..7fc58422d56e 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,3 +1,2 @@
 DIST strawberry-1.0.5.tar.xz 11212028 BLAKE2B 
2bb668bc9a4f66a9cdeaa28f47f21bf90f999d5524fa443bc7beaa1d0d7c6dc6727bf4df010fc06989e00fc34d62902add11186908fcf3f1b490c3bf745a9971
 SHA512 
4c625c75855f87952b274c85b4c5b021b27e75a74d46202ab3ea0aa3c86f510bccdece583483c4ba73e4733f151feb5eac5f5ef5d9a956995979fa307fd8d911
-DIST strawberry-1.0.6.tar.xz 11212568 BLAKE2B 
ed1e3727df27509dfa9513c6dd70912c4e0a6daa0163789775ebbb01f89bf0dfa8f413cdd0cf12d917cf85bf2c13f55f32c50ad0be055ae5d6131b5197827e26
 SHA512 
8b929ffaac15acd94f244b582a086388bf459131bb9be56b97fb74c954734d209a9928411954ccc445145f70a027763c60d1b111d89532ebd12e9ed0db19e760
 DIST strawberry-1.0.7.tar.xz 11216436 BLAKE2B 
f7bc53f33be53fb9d947ea4f4c29827cc4248b0249904f2e48cbd9e4440de1f7f866d83c9fddc92cfb6f56b050c4dc40f0ad5e67a58c2a75e47a9d666847e9b3
 SHA512 
9bf092c3990ae0c2ce63074c7f6076ccab896ae915c4ee255a7fbb6534d50467648f3e96bc029075acfd50515c45ade867e55518d9a68ec9c10a741e1976d64f

diff --git a/media-sound/strawberry/strawberry-1.0.6.ebuild 
b/media-sound/strawberry/strawberry-1.0.6.ebuild
deleted file mode 100644
index fac9c644eb35..
--- a/media-sound/strawberry/strawberry-1.0.6.ebuild
+++ /dev/null
@@ -1,120 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic plocale xdg
-
-PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
-
-DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
-HOMEPAGE="https://www.strawberrymusicplayer.org/;
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
-   inherit git-r3
-else
-   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~ppc64 ~x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-COMMON_DEPEND="
-   dev-db/sqlite:=
-   dev-libs/glib:2
-   dev-libs/protobuf:=
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5[ssl]
-   dev-qt/qtsql:5[sqlite]
-   dev-qt/qtwidgets:5
-   dev-qt/qtx11extras:5
-   media-libs/alsa-lib
-   media-libs/taglib
-   x11-libs/libX11
-   cdda? ( dev-libs/libcdio:= )
-   gstreamer? (
-   media-libs/chromaprint:=
-   media-libs/gstreamer:1.0
-   media-libs/gst-plugins-base:1.0
-   )
-   ipod? ( media-libs/libgpod )
-   moodbar? ( sci-libs/fftw:3.0 )
-   mtp? ( media-libs/libmtp )
-   pulseaudio? ( media-sound/pulseaudio )
-   vlc? ( media-video/vlc )
-"
-# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
-RDEPEND="${COMMON_DEPEND}
-   gstreamer? (
-   media-plugins/gst-plugins-meta:1.0
-   media-plugins/gst-plugins-soup:1.0
-   media-plugins/gst-plugins-taglib:1.0
-   )
-   mtp? ( gnome-base/gvfs[mtp] )
-   udisks? ( sys-fs/udisks:2 )
-"
-DEPEND="${COMMON_DEPEND}
-   dev-cpp/gtest
-   dev-libs/boost
-   dev-qt/qttest:5
-"
-
-DOCS=( Changelog README.md )
-
-REQUIRED_USE="
-   cdda? ( gstreamer )
-   || ( gstreamer vlc )
-"
-
-src_prepare() {
-   plocale_find_changes "src/translations" "" ".po"
-
-   cmake_src_prepare
-}
-
-src_configure() {
-   # spotify is not in portage
-   local mycmakeargs=(
-   -DBUILD_WERROR=OFF
-   # avoid automagically enabling of ccache (bug #611010)
-   -DCCACHE_EXECUTABLE=OFF
-   -DENABLE_GIO=ON
-   -DLINGUAS="$(plocale_get_locales)"
-   -DENABLE_AUDIOCD="$(usex cdda)"
-   -DENABLE_GSTREAMER="$(usex gstreamer)"
-   -DENABLE_LIBGPOD="$(usex ipod)"
-   -DENABLE_LIBMTP="$(usex mtp)"
-   -DENABLE_LIBPULSE="$(usex pulseaudio)"
-   -DENABLE_MOODBAR="$(usex moodbar)"
-   

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-07-25 Thread Miroslav Šulc
commit: 94b8ea2955509b334990ad4ea48e7cc55417c308
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Tue Jul 26 04:35:56 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Tue Jul 26 04:36:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94b8ea29

media-sound/strawberry: bump to 1.0.7

Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest|   1 +
 media-sound/strawberry/strawberry-1.0.7.ebuild | 120 +
 2 files changed, 121 insertions(+)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index 1cff611aa148..bfb839817851 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,2 +1,3 @@
 DIST strawberry-1.0.5.tar.xz 11212028 BLAKE2B 
2bb668bc9a4f66a9cdeaa28f47f21bf90f999d5524fa443bc7beaa1d0d7c6dc6727bf4df010fc06989e00fc34d62902add11186908fcf3f1b490c3bf745a9971
 SHA512 
4c625c75855f87952b274c85b4c5b021b27e75a74d46202ab3ea0aa3c86f510bccdece583483c4ba73e4733f151feb5eac5f5ef5d9a956995979fa307fd8d911
 DIST strawberry-1.0.6.tar.xz 11212568 BLAKE2B 
ed1e3727df27509dfa9513c6dd70912c4e0a6daa0163789775ebbb01f89bf0dfa8f413cdd0cf12d917cf85bf2c13f55f32c50ad0be055ae5d6131b5197827e26
 SHA512 
8b929ffaac15acd94f244b582a086388bf459131bb9be56b97fb74c954734d209a9928411954ccc445145f70a027763c60d1b111d89532ebd12e9ed0db19e760
+DIST strawberry-1.0.7.tar.xz 11216436 BLAKE2B 
f7bc53f33be53fb9d947ea4f4c29827cc4248b0249904f2e48cbd9e4440de1f7f866d83c9fddc92cfb6f56b050c4dc40f0ad5e67a58c2a75e47a9d666847e9b3
 SHA512 
9bf092c3990ae0c2ce63074c7f6076ccab896ae915c4ee255a7fbb6534d50467648f3e96bc029075acfd50515c45ade867e55518d9a68ec9c10a741e1976d64f

diff --git a/media-sound/strawberry/strawberry-1.0.7.ebuild 
b/media-sound/strawberry/strawberry-1.0.7.ebuild
new file mode 100644
index ..fac9c644eb35
--- /dev/null
+++ b/media-sound/strawberry/strawberry-1.0.7.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic plocale xdg
+
+PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
+
+DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
+HOMEPAGE="https://www.strawberrymusicplayer.org/;
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
+   KEYWORDS="~amd64 ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+COMMON_DEPEND="
+   dev-db/sqlite:=
+   dev-libs/glib:2
+   dev-libs/protobuf:=
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtsql:5[sqlite]
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   media-libs/alsa-lib
+   media-libs/taglib
+   x11-libs/libX11
+   cdda? ( dev-libs/libcdio:= )
+   gstreamer? (
+   media-libs/chromaprint:=
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   )
+   ipod? ( media-libs/libgpod )
+   moodbar? ( sci-libs/fftw:3.0 )
+   mtp? ( media-libs/libmtp )
+   pulseaudio? ( media-sound/pulseaudio )
+   vlc? ( media-video/vlc )
+"
+# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
+RDEPEND="${COMMON_DEPEND}
+   gstreamer? (
+   media-plugins/gst-plugins-meta:1.0
+   media-plugins/gst-plugins-soup:1.0
+   media-plugins/gst-plugins-taglib:1.0
+   )
+   mtp? ( gnome-base/gvfs[mtp] )
+   udisks? ( sys-fs/udisks:2 )
+"
+DEPEND="${COMMON_DEPEND}
+   dev-cpp/gtest
+   dev-libs/boost
+   dev-qt/qttest:5
+"
+
+DOCS=( Changelog README.md )
+
+REQUIRED_USE="
+   cdda? ( gstreamer )
+   || ( gstreamer vlc )
+"
+
+src_prepare() {
+   plocale_find_changes "src/translations" "" ".po"
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   # spotify is not in portage
+   local mycmakeargs=(
+   -DBUILD_WERROR=OFF
+   # avoid automagically enabling of ccache (bug #611010)
+   -DCCACHE_EXECUTABLE=OFF
+   -DENABLE_GIO=ON
+   -DLINGUAS="$(plocale_get_locales)"
+   -DENABLE_AUDIOCD="$(usex cdda)"
+   -DENABLE_GSTREAMER="$(usex gstreamer)"
+   -DENABLE_LIBGPOD="$(usex ipod)"
+   -DENABLE_LIBMTP="$(usex mtp)"
+   -DENABLE_LIBPULSE="$(usex pulseaudio)"
+   -DENABLE_MOODBAR="$(usex moodbar)"
+   

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-07-17 Thread Miroslav Šulc
commit: edb12686a82a06ae68c097b6a4e5163e6b40eed5
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Mon Jul 18 03:22:47 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Mon Jul 18 03:22:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edb12686

media-sound/strawberry: bump to 1.0.6, deps versions cleanup

Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest|   1 +
 media-sound/strawberry/strawberry-1.0.6.ebuild | 120 +
 2 files changed, 121 insertions(+)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index 3adae1dcc211..1cff611aa148 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1 +1,2 @@
 DIST strawberry-1.0.5.tar.xz 11212028 BLAKE2B 
2bb668bc9a4f66a9cdeaa28f47f21bf90f999d5524fa443bc7beaa1d0d7c6dc6727bf4df010fc06989e00fc34d62902add11186908fcf3f1b490c3bf745a9971
 SHA512 
4c625c75855f87952b274c85b4c5b021b27e75a74d46202ab3ea0aa3c86f510bccdece583483c4ba73e4733f151feb5eac5f5ef5d9a956995979fa307fd8d911
+DIST strawberry-1.0.6.tar.xz 11212568 BLAKE2B 
ed1e3727df27509dfa9513c6dd70912c4e0a6daa0163789775ebbb01f89bf0dfa8f413cdd0cf12d917cf85bf2c13f55f32c50ad0be055ae5d6131b5197827e26
 SHA512 
8b929ffaac15acd94f244b582a086388bf459131bb9be56b97fb74c954734d209a9928411954ccc445145f70a027763c60d1b111d89532ebd12e9ed0db19e760

diff --git a/media-sound/strawberry/strawberry-1.0.6.ebuild 
b/media-sound/strawberry/strawberry-1.0.6.ebuild
new file mode 100644
index ..fac9c644eb35
--- /dev/null
+++ b/media-sound/strawberry/strawberry-1.0.6.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic plocale xdg
+
+PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
+
+DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
+HOMEPAGE="https://www.strawberrymusicplayer.org/;
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
+   KEYWORDS="~amd64 ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+COMMON_DEPEND="
+   dev-db/sqlite:=
+   dev-libs/glib:2
+   dev-libs/protobuf:=
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtsql:5[sqlite]
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   media-libs/alsa-lib
+   media-libs/taglib
+   x11-libs/libX11
+   cdda? ( dev-libs/libcdio:= )
+   gstreamer? (
+   media-libs/chromaprint:=
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   )
+   ipod? ( media-libs/libgpod )
+   moodbar? ( sci-libs/fftw:3.0 )
+   mtp? ( media-libs/libmtp )
+   pulseaudio? ( media-sound/pulseaudio )
+   vlc? ( media-video/vlc )
+"
+# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
+RDEPEND="${COMMON_DEPEND}
+   gstreamer? (
+   media-plugins/gst-plugins-meta:1.0
+   media-plugins/gst-plugins-soup:1.0
+   media-plugins/gst-plugins-taglib:1.0
+   )
+   mtp? ( gnome-base/gvfs[mtp] )
+   udisks? ( sys-fs/udisks:2 )
+"
+DEPEND="${COMMON_DEPEND}
+   dev-cpp/gtest
+   dev-libs/boost
+   dev-qt/qttest:5
+"
+
+DOCS=( Changelog README.md )
+
+REQUIRED_USE="
+   cdda? ( gstreamer )
+   || ( gstreamer vlc )
+"
+
+src_prepare() {
+   plocale_find_changes "src/translations" "" ".po"
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   # spotify is not in portage
+   local mycmakeargs=(
+   -DBUILD_WERROR=OFF
+   # avoid automagically enabling of ccache (bug #611010)
+   -DCCACHE_EXECUTABLE=OFF
+   -DENABLE_GIO=ON
+   -DLINGUAS="$(plocale_get_locales)"
+   -DENABLE_AUDIOCD="$(usex cdda)"
+   -DENABLE_GSTREAMER="$(usex gstreamer)"
+   -DENABLE_LIBGPOD="$(usex ipod)"
+   -DENABLE_LIBMTP="$(usex mtp)"
+   -DENABLE_LIBPULSE="$(usex pulseaudio)"
+   -DENABLE_MOODBAR="$(usex moodbar)"
+   -DENABLE_MUSICBRAINZ="$(usex gstreamer)"
+   -DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
+   -DENABLE_UDISKS2="$(usex udisks)"
+   -DENABLE_VLC="$(usex vlc)"
+   # Disable until we have qt6 in the tree
+   -DWITH_QT6=OFF
+   )
+
+   use !debug && 

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-07-13 Thread Miroslav Šulc
commit: 9681bad85e35a3d21e03399a94f0dcae143ad094
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Jul 13 07:16:41 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Jul 13 07:16:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9681bad8

media-sound/strawberry: dropped obsolete 1.0.4

Bug: https://bugs.gentoo.org/857723
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest|   1 -
 media-sound/strawberry/strawberry-1.0.4.ebuild | 120 -
 2 files changed, 121 deletions(-)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index bd0c5b417abc..3adae1dcc211 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,2 +1 @@
-DIST strawberry-1.0.4.tar.xz 11208992 BLAKE2B 
f7a8b000672b55fb667fa4e0f32052adb138b4dbdf2149beec308555ed00417aac0734fe7ede1767bf648d5a10ab527b69f004ffe0b1f8834e65d6dbaf2c52a9
 SHA512 
e2a90911acd47735715266cb3745910a6e04a2ef4e98b0c9734230a5e2b382cf7d3681fc2e368a361e7a7c53bc0627a88a36e6df6c4f6941d54f65e2424d29ee
 DIST strawberry-1.0.5.tar.xz 11212028 BLAKE2B 
2bb668bc9a4f66a9cdeaa28f47f21bf90f999d5524fa443bc7beaa1d0d7c6dc6727bf4df010fc06989e00fc34d62902add11186908fcf3f1b490c3bf745a9971
 SHA512 
4c625c75855f87952b274c85b4c5b021b27e75a74d46202ab3ea0aa3c86f510bccdece583483c4ba73e4733f151feb5eac5f5ef5d9a956995979fa307fd8d911

diff --git a/media-sound/strawberry/strawberry-1.0.4.ebuild 
b/media-sound/strawberry/strawberry-1.0.4.ebuild
deleted file mode 100644
index 721ef2158d3d..
--- a/media-sound/strawberry/strawberry-1.0.4.ebuild
+++ /dev/null
@@ -1,120 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic plocale xdg
-
-PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
-
-DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
-HOMEPAGE="https://www.strawberrymusicplayer.org/;
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
-   inherit git-r3
-else
-   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~ppc64 x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-COMMON_DEPEND="
-   dev-db/sqlite:=
-   dev-libs/glib:2
-   dev-libs/protobuf:=
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5[ssl]
-   dev-qt/qtsql:5[sqlite]
-   dev-qt/qtwidgets:5
-   dev-qt/qtx11extras:5
-   media-libs/alsa-lib
-   >=media-libs/taglib-1.11.1_p20181028
-   x11-libs/libX11
-   cdda? ( dev-libs/libcdio:= )
-   gstreamer? (
-   >=media-libs/chromaprint-1.4:=
-   media-libs/gstreamer:1.0
-   media-libs/gst-plugins-base:1.0
-   )
-   ipod? ( >=media-libs/libgpod-0.8.0 )
-   moodbar? ( sci-libs/fftw:3.0 )
-   mtp? ( >=media-libs/libmtp-1.0.0 )
-   pulseaudio? ( media-sound/pulseaudio )
-   vlc? ( media-video/vlc )
-"
-# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
-RDEPEND="${COMMON_DEPEND}
-   gstreamer? (
-   media-plugins/gst-plugins-meta:1.0
-   media-plugins/gst-plugins-soup:1.0
-   media-plugins/gst-plugins-taglib:1.0
-   )
-   mtp? ( gnome-base/gvfs[mtp] )
-   udisks? ( sys-fs/udisks:2 )
-"
-DEPEND="${COMMON_DEPEND}
-   >=dev-cpp/gtest-1.8.0
-   dev-libs/boost
-   dev-qt/qttest:5
-"
-
-DOCS=( Changelog README.md )
-
-REQUIRED_USE="
-   cdda? ( gstreamer )
-   || ( gstreamer vlc )
-"
-
-src_prepare() {
-   plocale_find_changes "src/translations" "" ".po"
-
-   cmake_src_prepare
-}
-
-src_configure() {
-   # spotify is not in portage
-   local mycmakeargs=(
-   -DBUILD_WERROR=OFF
-   # avoid automagically enabling of ccache (bug #611010)
-   -DCCACHE_EXECUTABLE=OFF
-   -DENABLE_GIO=ON
-   -DLINGUAS="$(plocale_get_locales)"
-   -DENABLE_AUDIOCD="$(usex cdda)"
-   -DENABLE_GSTREAMER="$(usex gstreamer)"
-   -DENABLE_LIBGPOD="$(usex ipod)"
-   -DENABLE_LIBMTP="$(usex mtp)"
-   -DENABLE_LIBPULSE="$(usex pulseaudio)"
-   -DENABLE_MOODBAR="$(usex moodbar)"
-   -DENABLE_MUSICBRAINZ="$(usex gstreamer)"
-   -DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
-   -DENABLE_UDISKS2="$(usex udisks)"
-   -DENABLE_VLC="$(usex vlc)"
-   # Disable until we have qt6 in 

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-07-12 Thread Agostino Sarubbo
commit: e790841b7dd9192fe26423456c6bd2cffb42665e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul 12 06:47:44 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul 12 06:47:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e790841b

media-sound/strawberry: x86 stable wrt bug #857723

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-sound/strawberry/strawberry-1.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.5.ebuild 
b/media-sound/strawberry/strawberry-1.0.5.ebuild
index ca2abcebaa8c..721ef2158d3d 100644
--- a/media-sound/strawberry/strawberry-1.0.5.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.5.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~ppc64 x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-07-12 Thread Agostino Sarubbo
commit: 450338f387049405f4cd59cbbd7507fbb29024c8
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul 12 06:46:22 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul 12 06:46:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=450338f3

media-sound/strawberry: amd64 stable wrt bug #857723

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-sound/strawberry/strawberry-1.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.5.ebuild 
b/media-sound/strawberry/strawberry-1.0.5.ebuild
index af868219fe69..ca2abcebaa8c 100644
--- a/media-sound/strawberry/strawberry-1.0.5.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.5.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~ppc64 ~x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-06-10 Thread Lars Wendler
commit: 4efa5bdd55aa21136a922a0d26a5a423d86d4d4d
Author: Lars Wendler  gentoo  org>
AuthorDate: Sat Jun 11 05:54:54 2022 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Jun 11 05:59:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4efa5bdd

media-sound/strawberry: Bump to version 1.0.5

Signed-off-by: Lars Wendler  gentoo.org>

 media-sound/strawberry/Manifest|   1 +
 media-sound/strawberry/strawberry-1.0.5.ebuild | 120 +
 2 files changed, 121 insertions(+)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index cd77d11cbc5d..bd0c5b417abc 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1 +1,2 @@
 DIST strawberry-1.0.4.tar.xz 11208992 BLAKE2B 
f7a8b000672b55fb667fa4e0f32052adb138b4dbdf2149beec308555ed00417aac0734fe7ede1767bf648d5a10ab527b69f004ffe0b1f8834e65d6dbaf2c52a9
 SHA512 
e2a90911acd47735715266cb3745910a6e04a2ef4e98b0c9734230a5e2b382cf7d3681fc2e368a361e7a7c53bc0627a88a36e6df6c4f6941d54f65e2424d29ee
+DIST strawberry-1.0.5.tar.xz 11212028 BLAKE2B 
2bb668bc9a4f66a9cdeaa28f47f21bf90f999d5524fa443bc7beaa1d0d7c6dc6727bf4df010fc06989e00fc34d62902add11186908fcf3f1b490c3bf745a9971
 SHA512 
4c625c75855f87952b274c85b4c5b021b27e75a74d46202ab3ea0aa3c86f510bccdece583483c4ba73e4733f151feb5eac5f5ef5d9a956995979fa307fd8d911

diff --git a/media-sound/strawberry/strawberry-1.0.5.ebuild 
b/media-sound/strawberry/strawberry-1.0.5.ebuild
new file mode 100644
index ..af868219fe69
--- /dev/null
+++ b/media-sound/strawberry/strawberry-1.0.5.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic plocale xdg
+
+PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
+
+DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
+HOMEPAGE="https://www.strawberrymusicplayer.org/;
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
+   KEYWORDS="~amd64 ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+COMMON_DEPEND="
+   dev-db/sqlite:=
+   dev-libs/glib:2
+   dev-libs/protobuf:=
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtsql:5[sqlite]
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   media-libs/alsa-lib
+   >=media-libs/taglib-1.11.1_p20181028
+   x11-libs/libX11
+   cdda? ( dev-libs/libcdio:= )
+   gstreamer? (
+   >=media-libs/chromaprint-1.4:=
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   )
+   ipod? ( >=media-libs/libgpod-0.8.0 )
+   moodbar? ( sci-libs/fftw:3.0 )
+   mtp? ( >=media-libs/libmtp-1.0.0 )
+   pulseaudio? ( media-sound/pulseaudio )
+   vlc? ( media-video/vlc )
+"
+# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
+RDEPEND="${COMMON_DEPEND}
+   gstreamer? (
+   media-plugins/gst-plugins-meta:1.0
+   media-plugins/gst-plugins-soup:1.0
+   media-plugins/gst-plugins-taglib:1.0
+   )
+   mtp? ( gnome-base/gvfs[mtp] )
+   udisks? ( sys-fs/udisks:2 )
+"
+DEPEND="${COMMON_DEPEND}
+   >=dev-cpp/gtest-1.8.0
+   dev-libs/boost
+   dev-qt/qttest:5
+"
+
+DOCS=( Changelog README.md )
+
+REQUIRED_USE="
+   cdda? ( gstreamer )
+   || ( gstreamer vlc )
+"
+
+src_prepare() {
+   plocale_find_changes "src/translations" "" ".po"
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   # spotify is not in portage
+   local mycmakeargs=(
+   -DBUILD_WERROR=OFF
+   # avoid automagically enabling of ccache (bug #611010)
+   -DCCACHE_EXECUTABLE=OFF
+   -DENABLE_GIO=ON
+   -DLINGUAS="$(plocale_get_locales)"
+   -DENABLE_AUDIOCD="$(usex cdda)"
+   -DENABLE_GSTREAMER="$(usex gstreamer)"
+   -DENABLE_LIBGPOD="$(usex ipod)"
+   -DENABLE_LIBMTP="$(usex mtp)"
+   -DENABLE_LIBPULSE="$(usex pulseaudio)"
+   -DENABLE_MOODBAR="$(usex moodbar)"
+   -DENABLE_MUSICBRAINZ="$(usex gstreamer)"
+   -DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
+   -DENABLE_UDISKS2="$(usex udisks)"
+   -DENABLE_VLC="$(usex vlc)"
+   # Disable until we have qt6 in the tree
+   -DWITH_QT6=OFF
+  

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-05-11 Thread Miroslav Šulc
commit: 1dcb4b0ee61fd42ca108add5bbb088da57baf783
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed May 11 12:31:54 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed May 11 12:31:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dcb4b0e

media-sound/strawberry: dropped obsolete 1.0.3

Bug: https://bugs.gentoo.org/843665
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest|   1 -
 media-sound/strawberry/strawberry-1.0.3.ebuild | 120 -
 2 files changed, 121 deletions(-)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index f9f3a59e106a..cd77d11cbc5d 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,2 +1 @@
-DIST strawberry-1.0.3.tar.xz 11197224 BLAKE2B 
de47d07133506e21e5e5cc6a9460482f364cca4eb1ff9a3433b09a75db4cbde339b6ed7949d788c87d465b6dac488e598b4840a3b24d6439f28cbe59185b01e3
 SHA512 
a61c0824ac75d29048c31ce7d8b7ae5ccc700f21700951b53ab87f30b15a2ce49368c7a366037565d3b5c556cf20dad8c93d1db936108eda7429518d7700d6dc
 DIST strawberry-1.0.4.tar.xz 11208992 BLAKE2B 
f7a8b000672b55fb667fa4e0f32052adb138b4dbdf2149beec308555ed00417aac0734fe7ede1767bf648d5a10ab527b69f004ffe0b1f8834e65d6dbaf2c52a9
 SHA512 
e2a90911acd47735715266cb3745910a6e04a2ef4e98b0c9734230a5e2b382cf7d3681fc2e368a361e7a7c53bc0627a88a36e6df6c4f6941d54f65e2424d29ee

diff --git a/media-sound/strawberry/strawberry-1.0.3.ebuild 
b/media-sound/strawberry/strawberry-1.0.3.ebuild
deleted file mode 100644
index 721ef2158d3d..
--- a/media-sound/strawberry/strawberry-1.0.3.ebuild
+++ /dev/null
@@ -1,120 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic plocale xdg
-
-PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
-
-DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
-HOMEPAGE="https://www.strawberrymusicplayer.org/;
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
-   inherit git-r3
-else
-   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~ppc64 x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-COMMON_DEPEND="
-   dev-db/sqlite:=
-   dev-libs/glib:2
-   dev-libs/protobuf:=
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5[ssl]
-   dev-qt/qtsql:5[sqlite]
-   dev-qt/qtwidgets:5
-   dev-qt/qtx11extras:5
-   media-libs/alsa-lib
-   >=media-libs/taglib-1.11.1_p20181028
-   x11-libs/libX11
-   cdda? ( dev-libs/libcdio:= )
-   gstreamer? (
-   >=media-libs/chromaprint-1.4:=
-   media-libs/gstreamer:1.0
-   media-libs/gst-plugins-base:1.0
-   )
-   ipod? ( >=media-libs/libgpod-0.8.0 )
-   moodbar? ( sci-libs/fftw:3.0 )
-   mtp? ( >=media-libs/libmtp-1.0.0 )
-   pulseaudio? ( media-sound/pulseaudio )
-   vlc? ( media-video/vlc )
-"
-# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
-RDEPEND="${COMMON_DEPEND}
-   gstreamer? (
-   media-plugins/gst-plugins-meta:1.0
-   media-plugins/gst-plugins-soup:1.0
-   media-plugins/gst-plugins-taglib:1.0
-   )
-   mtp? ( gnome-base/gvfs[mtp] )
-   udisks? ( sys-fs/udisks:2 )
-"
-DEPEND="${COMMON_DEPEND}
-   >=dev-cpp/gtest-1.8.0
-   dev-libs/boost
-   dev-qt/qttest:5
-"
-
-DOCS=( Changelog README.md )
-
-REQUIRED_USE="
-   cdda? ( gstreamer )
-   || ( gstreamer vlc )
-"
-
-src_prepare() {
-   plocale_find_changes "src/translations" "" ".po"
-
-   cmake_src_prepare
-}
-
-src_configure() {
-   # spotify is not in portage
-   local mycmakeargs=(
-   -DBUILD_WERROR=OFF
-   # avoid automagically enabling of ccache (bug #611010)
-   -DCCACHE_EXECUTABLE=OFF
-   -DENABLE_GIO=ON
-   -DLINGUAS="$(plocale_get_locales)"
-   -DENABLE_AUDIOCD="$(usex cdda)"
-   -DENABLE_GSTREAMER="$(usex gstreamer)"
-   -DENABLE_LIBGPOD="$(usex ipod)"
-   -DENABLE_LIBMTP="$(usex mtp)"
-   -DENABLE_LIBPULSE="$(usex pulseaudio)"
-   -DENABLE_MOODBAR="$(usex moodbar)"
-   -DENABLE_MUSICBRAINZ="$(usex gstreamer)"
-   -DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
-   -DENABLE_UDISKS2="$(usex udisks)"
-   -DENABLE_VLC="$(usex vlc)"
-   # Disable until we have qt6 in 

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-05-11 Thread Jakov Smolić
commit: 627fc2370ea804246070279003dc7fde73be56ce
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed May 11 09:32:47 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed May 11 09:32:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=627fc237

media-sound/strawberry: Stabilize 1.0.4 x86, #843665

Signed-off-by: Jakov Smolić  gentoo.org>

 media-sound/strawberry/strawberry-1.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.4.ebuild 
b/media-sound/strawberry/strawberry-1.0.4.ebuild
index af868219fe69..b1b395b24f0f 100644
--- a/media-sound/strawberry/strawberry-1.0.4.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.4.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~ppc64 x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-05-11 Thread Jakov Smolić
commit: 8bd12cae5d3eb09bc2c81ace39caaaf4729b478a
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed May 11 09:33:13 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed May 11 09:33:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bd12cae

media-sound/strawberry: Stabilize 1.0.4 amd64, #843665

Signed-off-by: Jakov Smolić  gentoo.org>

 media-sound/strawberry/strawberry-1.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.4.ebuild 
b/media-sound/strawberry/strawberry-1.0.4.ebuild
index b1b395b24f0f..721ef2158d3d 100644
--- a/media-sound/strawberry/strawberry-1.0.4.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.4.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~ppc64 x86"
+   KEYWORDS="amd64 ~ppc64 x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-04-24 Thread Miroslav Šulc
commit: 6834dd18f81a5cc921454af5efce6d0cd3984620
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sun Apr 24 11:24:45 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sun Apr 24 11:24:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6834dd18

media-sound/strawberry: removed obsolete 1.0.2

Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest|   1 -
 media-sound/strawberry/strawberry-1.0.2.ebuild | 120 -
 2 files changed, 121 deletions(-)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index 24f83b454b11..f9f3a59e106a 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,3 +1,2 @@
-DIST strawberry-1.0.2.tar.xz 11202768 BLAKE2B 
555c9492a6c10e9df579d4e9b1c718c722531f21784f68a436d8bd313a6950f0cfc58ded85f9a144de12a73ab07a0cc4d0e028223122dd4fde6604eb92145bd8
 SHA512 
196be23dde8fee531b2996bc7dacaf5b00dcd3f1aaaeb6630ed2a2fdeb777abb66d6c19928fc157dde7d5bceffdc646ff615a6d52bc0e6ee5ddcc14de6ee7a59
 DIST strawberry-1.0.3.tar.xz 11197224 BLAKE2B 
de47d07133506e21e5e5cc6a9460482f364cca4eb1ff9a3433b09a75db4cbde339b6ed7949d788c87d465b6dac488e598b4840a3b24d6439f28cbe59185b01e3
 SHA512 
a61c0824ac75d29048c31ce7d8b7ae5ccc700f21700951b53ab87f30b15a2ce49368c7a366037565d3b5c556cf20dad8c93d1db936108eda7429518d7700d6dc
 DIST strawberry-1.0.4.tar.xz 11208992 BLAKE2B 
f7a8b000672b55fb667fa4e0f32052adb138b4dbdf2149beec308555ed00417aac0734fe7ede1767bf648d5a10ab527b69f004ffe0b1f8834e65d6dbaf2c52a9
 SHA512 
e2a90911acd47735715266cb3745910a6e04a2ef4e98b0c9734230a5e2b382cf7d3681fc2e368a361e7a7c53bc0627a88a36e6df6c4f6941d54f65e2424d29ee

diff --git a/media-sound/strawberry/strawberry-1.0.2.ebuild 
b/media-sound/strawberry/strawberry-1.0.2.ebuild
deleted file mode 100644
index 721ef2158d3d..
--- a/media-sound/strawberry/strawberry-1.0.2.ebuild
+++ /dev/null
@@ -1,120 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic plocale xdg
-
-PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
-
-DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
-HOMEPAGE="https://www.strawberrymusicplayer.org/;
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
-   inherit git-r3
-else
-   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~ppc64 x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-COMMON_DEPEND="
-   dev-db/sqlite:=
-   dev-libs/glib:2
-   dev-libs/protobuf:=
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5[ssl]
-   dev-qt/qtsql:5[sqlite]
-   dev-qt/qtwidgets:5
-   dev-qt/qtx11extras:5
-   media-libs/alsa-lib
-   >=media-libs/taglib-1.11.1_p20181028
-   x11-libs/libX11
-   cdda? ( dev-libs/libcdio:= )
-   gstreamer? (
-   >=media-libs/chromaprint-1.4:=
-   media-libs/gstreamer:1.0
-   media-libs/gst-plugins-base:1.0
-   )
-   ipod? ( >=media-libs/libgpod-0.8.0 )
-   moodbar? ( sci-libs/fftw:3.0 )
-   mtp? ( >=media-libs/libmtp-1.0.0 )
-   pulseaudio? ( media-sound/pulseaudio )
-   vlc? ( media-video/vlc )
-"
-# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
-RDEPEND="${COMMON_DEPEND}
-   gstreamer? (
-   media-plugins/gst-plugins-meta:1.0
-   media-plugins/gst-plugins-soup:1.0
-   media-plugins/gst-plugins-taglib:1.0
-   )
-   mtp? ( gnome-base/gvfs[mtp] )
-   udisks? ( sys-fs/udisks:2 )
-"
-DEPEND="${COMMON_DEPEND}
-   >=dev-cpp/gtest-1.8.0
-   dev-libs/boost
-   dev-qt/qttest:5
-"
-
-DOCS=( Changelog README.md )
-
-REQUIRED_USE="
-   cdda? ( gstreamer )
-   || ( gstreamer vlc )
-"
-
-src_prepare() {
-   plocale_find_changes "src/translations" "" ".po"
-
-   cmake_src_prepare
-}
-
-src_configure() {
-   # spotify is not in portage
-   local mycmakeargs=(
-   -DBUILD_WERROR=OFF
-   # avoid automagically enabling of ccache (bug #611010)
-   -DCCACHE_EXECUTABLE=OFF
-   -DENABLE_GIO=ON
-   -DLINGUAS="$(plocale_get_locales)"
-   -DENABLE_AUDIOCD="$(usex cdda)"
-   -DENABLE_GSTREAMER="$(usex gstreamer)"
-   -DENABLE_LIBGPOD="$(usex ipod)"
-   -DENABLE_LIBMTP="$(usex mtp)"
-   -DENABLE_LIBPULSE="$(usex pulseaudio)"
-   

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-04-24 Thread Jakov Smolić
commit: be01053a993dfd3bd0ff619aefda45da62765dde
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Apr 24 11:07:54 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Sun Apr 24 11:07:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be01053a

media-sound/strawberry: Stabilize 1.0.3 x86, #840571

Signed-off-by: Jakov Smolić  gentoo.org>

 media-sound/strawberry/strawberry-1.0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.3.ebuild 
b/media-sound/strawberry/strawberry-1.0.3.ebuild
index ca2abcebaa8c..721ef2158d3d 100644
--- a/media-sound/strawberry/strawberry-1.0.3.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.3.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~ppc64 x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-04-24 Thread Jakov Smolić
commit: 0a9a7dbe37c6072f404bab8d5dc87e19302d260c
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Apr 24 11:07:17 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Sun Apr 24 11:07:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a9a7dbe

media-sound/strawberry: Stabilize 1.0.3 amd64, #840571

Signed-off-by: Jakov Smolić  gentoo.org>

 media-sound/strawberry/strawberry-1.0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.3.ebuild 
b/media-sound/strawberry/strawberry-1.0.3.ebuild
index af868219fe69..ca2abcebaa8c 100644
--- a/media-sound/strawberry/strawberry-1.0.3.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.3.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~ppc64 ~x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-04-10 Thread Lars Wendler
commit: d8f8ee3a44591f9f11ca274418d5f7480c2b60aa
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Apr 10 14:59:59 2022 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Apr 10 15:33:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8f8ee3a

media-sound/strawberry: Bump to version 1.0.4

Signed-off-by: Lars Wendler  gentoo.org>

 media-sound/strawberry/Manifest|   1 +
 media-sound/strawberry/strawberry-1.0.4.ebuild | 120 +
 2 files changed, 121 insertions(+)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index e2311d6d9f88..24f83b454b11 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,2 +1,3 @@
 DIST strawberry-1.0.2.tar.xz 11202768 BLAKE2B 
555c9492a6c10e9df579d4e9b1c718c722531f21784f68a436d8bd313a6950f0cfc58ded85f9a144de12a73ab07a0cc4d0e028223122dd4fde6604eb92145bd8
 SHA512 
196be23dde8fee531b2996bc7dacaf5b00dcd3f1aaaeb6630ed2a2fdeb777abb66d6c19928fc157dde7d5bceffdc646ff615a6d52bc0e6ee5ddcc14de6ee7a59
 DIST strawberry-1.0.3.tar.xz 11197224 BLAKE2B 
de47d07133506e21e5e5cc6a9460482f364cca4eb1ff9a3433b09a75db4cbde339b6ed7949d788c87d465b6dac488e598b4840a3b24d6439f28cbe59185b01e3
 SHA512 
a61c0824ac75d29048c31ce7d8b7ae5ccc700f21700951b53ab87f30b15a2ce49368c7a366037565d3b5c556cf20dad8c93d1db936108eda7429518d7700d6dc
+DIST strawberry-1.0.4.tar.xz 11208992 BLAKE2B 
f7a8b000672b55fb667fa4e0f32052adb138b4dbdf2149beec308555ed00417aac0734fe7ede1767bf648d5a10ab527b69f004ffe0b1f8834e65d6dbaf2c52a9
 SHA512 
e2a90911acd47735715266cb3745910a6e04a2ef4e98b0c9734230a5e2b382cf7d3681fc2e368a361e7a7c53bc0627a88a36e6df6c4f6941d54f65e2424d29ee

diff --git a/media-sound/strawberry/strawberry-1.0.4.ebuild 
b/media-sound/strawberry/strawberry-1.0.4.ebuild
new file mode 100644
index ..af868219fe69
--- /dev/null
+++ b/media-sound/strawberry/strawberry-1.0.4.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic plocale xdg
+
+PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
+
+DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
+HOMEPAGE="https://www.strawberrymusicplayer.org/;
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
+   KEYWORDS="~amd64 ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+COMMON_DEPEND="
+   dev-db/sqlite:=
+   dev-libs/glib:2
+   dev-libs/protobuf:=
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtsql:5[sqlite]
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   media-libs/alsa-lib
+   >=media-libs/taglib-1.11.1_p20181028
+   x11-libs/libX11
+   cdda? ( dev-libs/libcdio:= )
+   gstreamer? (
+   >=media-libs/chromaprint-1.4:=
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   )
+   ipod? ( >=media-libs/libgpod-0.8.0 )
+   moodbar? ( sci-libs/fftw:3.0 )
+   mtp? ( >=media-libs/libmtp-1.0.0 )
+   pulseaudio? ( media-sound/pulseaudio )
+   vlc? ( media-video/vlc )
+"
+# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
+RDEPEND="${COMMON_DEPEND}
+   gstreamer? (
+   media-plugins/gst-plugins-meta:1.0
+   media-plugins/gst-plugins-soup:1.0
+   media-plugins/gst-plugins-taglib:1.0
+   )
+   mtp? ( gnome-base/gvfs[mtp] )
+   udisks? ( sys-fs/udisks:2 )
+"
+DEPEND="${COMMON_DEPEND}
+   >=dev-cpp/gtest-1.8.0
+   dev-libs/boost
+   dev-qt/qttest:5
+"
+
+DOCS=( Changelog README.md )
+
+REQUIRED_USE="
+   cdda? ( gstreamer )
+   || ( gstreamer vlc )
+"
+
+src_prepare() {
+   plocale_find_changes "src/translations" "" ".po"
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   # spotify is not in portage
+   local mycmakeargs=(
+   -DBUILD_WERROR=OFF
+   # avoid automagically enabling of ccache (bug #611010)
+   -DCCACHE_EXECUTABLE=OFF
+   -DENABLE_GIO=ON
+   -DLINGUAS="$(plocale_get_locales)"
+   -DENABLE_AUDIOCD="$(usex cdda)"
+   -DENABLE_GSTREAMER="$(usex gstreamer)"
+   -DENABLE_LIBGPOD="$(usex ipod)"
+   -DENABLE_LIBMTP="$(usex mtp)"
+   -DENABLE_LIBPULSE="$(usex pulseaudio)"
+   

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-03-27 Thread Miroslav Šulc
commit: 206732d1e6240e65a700ca857ca871035755328a
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sun Mar 27 06:06:14 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sun Mar 27 06:06:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=206732d1

media-sound/strawberry: removed obsolete 1.0.1-r1

Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest   |   1 -
 media-sound/strawberry/strawberry-1.0.1-r1.ebuild | 120 --
 2 files changed, 121 deletions(-)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index 4c360d62bf9e..e2311d6d9f88 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,3 +1,2 @@
-DIST strawberry-1.0.1.tar.xz 11191132 BLAKE2B 
e182ec5db26b22b60e9393b3a418cf44c01b647ab268bafe6d3f098d879817563d68faf7962f0670017f70b7f9f64f3a680056002e7041a2dc956fdc1dceeb95
 SHA512 
6a668ba6dbdcd5c60e78190c2cc8c04ad4ed920102c7555fdd42f6bf47c5b4004f9580c0f009cade642b404f6884b2b5dac386d326bf6f234403e4ba7612a2bb
 DIST strawberry-1.0.2.tar.xz 11202768 BLAKE2B 
555c9492a6c10e9df579d4e9b1c718c722531f21784f68a436d8bd313a6950f0cfc58ded85f9a144de12a73ab07a0cc4d0e028223122dd4fde6604eb92145bd8
 SHA512 
196be23dde8fee531b2996bc7dacaf5b00dcd3f1aaaeb6630ed2a2fdeb777abb66d6c19928fc157dde7d5bceffdc646ff615a6d52bc0e6ee5ddcc14de6ee7a59
 DIST strawberry-1.0.3.tar.xz 11197224 BLAKE2B 
de47d07133506e21e5e5cc6a9460482f364cca4eb1ff9a3433b09a75db4cbde339b6ed7949d788c87d465b6dac488e598b4840a3b24d6439f28cbe59185b01e3
 SHA512 
a61c0824ac75d29048c31ce7d8b7ae5ccc700f21700951b53ab87f30b15a2ce49368c7a366037565d3b5c556cf20dad8c93d1db936108eda7429518d7700d6dc

diff --git a/media-sound/strawberry/strawberry-1.0.1-r1.ebuild 
b/media-sound/strawberry/strawberry-1.0.1-r1.ebuild
deleted file mode 100644
index 721ef2158d3d..
--- a/media-sound/strawberry/strawberry-1.0.1-r1.ebuild
+++ /dev/null
@@ -1,120 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic plocale xdg
-
-PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
-
-DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
-HOMEPAGE="https://www.strawberrymusicplayer.org/;
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
-   inherit git-r3
-else
-   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~ppc64 x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-COMMON_DEPEND="
-   dev-db/sqlite:=
-   dev-libs/glib:2
-   dev-libs/protobuf:=
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5[ssl]
-   dev-qt/qtsql:5[sqlite]
-   dev-qt/qtwidgets:5
-   dev-qt/qtx11extras:5
-   media-libs/alsa-lib
-   >=media-libs/taglib-1.11.1_p20181028
-   x11-libs/libX11
-   cdda? ( dev-libs/libcdio:= )
-   gstreamer? (
-   >=media-libs/chromaprint-1.4:=
-   media-libs/gstreamer:1.0
-   media-libs/gst-plugins-base:1.0
-   )
-   ipod? ( >=media-libs/libgpod-0.8.0 )
-   moodbar? ( sci-libs/fftw:3.0 )
-   mtp? ( >=media-libs/libmtp-1.0.0 )
-   pulseaudio? ( media-sound/pulseaudio )
-   vlc? ( media-video/vlc )
-"
-# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
-RDEPEND="${COMMON_DEPEND}
-   gstreamer? (
-   media-plugins/gst-plugins-meta:1.0
-   media-plugins/gst-plugins-soup:1.0
-   media-plugins/gst-plugins-taglib:1.0
-   )
-   mtp? ( gnome-base/gvfs[mtp] )
-   udisks? ( sys-fs/udisks:2 )
-"
-DEPEND="${COMMON_DEPEND}
-   >=dev-cpp/gtest-1.8.0
-   dev-libs/boost
-   dev-qt/qttest:5
-"
-
-DOCS=( Changelog README.md )
-
-REQUIRED_USE="
-   cdda? ( gstreamer )
-   || ( gstreamer vlc )
-"
-
-src_prepare() {
-   plocale_find_changes "src/translations" "" ".po"
-
-   cmake_src_prepare
-}
-
-src_configure() {
-   # spotify is not in portage
-   local mycmakeargs=(
-   -DBUILD_WERROR=OFF
-   # avoid automagically enabling of ccache (bug #611010)
-   -DCCACHE_EXECUTABLE=OFF
-   -DENABLE_GIO=ON
-   -DLINGUAS="$(plocale_get_locales)"
-   -DENABLE_AUDIOCD="$(usex cdda)"
-   -DENABLE_GSTREAMER="$(usex gstreamer)"
-   -DENABLE_LIBGPOD="$(usex ipod)"
-   -DENABLE_LIBMTP="$(usex mtp)"
-   -DENABLE_LIBPULSE="$(usex pulseaudio)"
-   

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-03-26 Thread Agostino Sarubbo
commit: aacb95a621a4eec5fdfb655c1ef5cc48b0f35108
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Mar 26 19:49:21 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Mar 26 19:49:21 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aacb95a6

media-sound/strawberry: x86 stable wrt bug #835831

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-sound/strawberry/strawberry-1.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.2.ebuild 
b/media-sound/strawberry/strawberry-1.0.2.ebuild
index ca2abcebaa8c..721ef2158d3d 100644
--- a/media-sound/strawberry/strawberry-1.0.2.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.2.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~ppc64 x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-03-24 Thread Lars Wendler
commit: c6020f102e7a09a8f1b3442febf418571a6b3992
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Mar 24 22:35:24 2022 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Mar 24 22:40:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6020f10

media-sound/strawberry: Bump to version 1.0.3

Signed-off-by: Lars Wendler  gentoo.org>

 media-sound/strawberry/Manifest|   1 +
 media-sound/strawberry/strawberry-1.0.3.ebuild | 120 +
 2 files changed, 121 insertions(+)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index 4efcbe13e44c..4c360d62bf9e 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,2 +1,3 @@
 DIST strawberry-1.0.1.tar.xz 11191132 BLAKE2B 
e182ec5db26b22b60e9393b3a418cf44c01b647ab268bafe6d3f098d879817563d68faf7962f0670017f70b7f9f64f3a680056002e7041a2dc956fdc1dceeb95
 SHA512 
6a668ba6dbdcd5c60e78190c2cc8c04ad4ed920102c7555fdd42f6bf47c5b4004f9580c0f009cade642b404f6884b2b5dac386d326bf6f234403e4ba7612a2bb
 DIST strawberry-1.0.2.tar.xz 11202768 BLAKE2B 
555c9492a6c10e9df579d4e9b1c718c722531f21784f68a436d8bd313a6950f0cfc58ded85f9a144de12a73ab07a0cc4d0e028223122dd4fde6604eb92145bd8
 SHA512 
196be23dde8fee531b2996bc7dacaf5b00dcd3f1aaaeb6630ed2a2fdeb777abb66d6c19928fc157dde7d5bceffdc646ff615a6d52bc0e6ee5ddcc14de6ee7a59
+DIST strawberry-1.0.3.tar.xz 11197224 BLAKE2B 
de47d07133506e21e5e5cc6a9460482f364cca4eb1ff9a3433b09a75db4cbde339b6ed7949d788c87d465b6dac488e598b4840a3b24d6439f28cbe59185b01e3
 SHA512 
a61c0824ac75d29048c31ce7d8b7ae5ccc700f21700951b53ab87f30b15a2ce49368c7a366037565d3b5c556cf20dad8c93d1db936108eda7429518d7700d6dc

diff --git a/media-sound/strawberry/strawberry-1.0.3.ebuild 
b/media-sound/strawberry/strawberry-1.0.3.ebuild
new file mode 100644
index ..af868219fe69
--- /dev/null
+++ b/media-sound/strawberry/strawberry-1.0.3.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic plocale xdg
+
+PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
+
+DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
+HOMEPAGE="https://www.strawberrymusicplayer.org/;
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
+   KEYWORDS="~amd64 ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+COMMON_DEPEND="
+   dev-db/sqlite:=
+   dev-libs/glib:2
+   dev-libs/protobuf:=
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtsql:5[sqlite]
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   media-libs/alsa-lib
+   >=media-libs/taglib-1.11.1_p20181028
+   x11-libs/libX11
+   cdda? ( dev-libs/libcdio:= )
+   gstreamer? (
+   >=media-libs/chromaprint-1.4:=
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   )
+   ipod? ( >=media-libs/libgpod-0.8.0 )
+   moodbar? ( sci-libs/fftw:3.0 )
+   mtp? ( >=media-libs/libmtp-1.0.0 )
+   pulseaudio? ( media-sound/pulseaudio )
+   vlc? ( media-video/vlc )
+"
+# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
+RDEPEND="${COMMON_DEPEND}
+   gstreamer? (
+   media-plugins/gst-plugins-meta:1.0
+   media-plugins/gst-plugins-soup:1.0
+   media-plugins/gst-plugins-taglib:1.0
+   )
+   mtp? ( gnome-base/gvfs[mtp] )
+   udisks? ( sys-fs/udisks:2 )
+"
+DEPEND="${COMMON_DEPEND}
+   >=dev-cpp/gtest-1.8.0
+   dev-libs/boost
+   dev-qt/qttest:5
+"
+
+DOCS=( Changelog README.md )
+
+REQUIRED_USE="
+   cdda? ( gstreamer )
+   || ( gstreamer vlc )
+"
+
+src_prepare() {
+   plocale_find_changes "src/translations" "" ".po"
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   # spotify is not in portage
+   local mycmakeargs=(
+   -DBUILD_WERROR=OFF
+   # avoid automagically enabling of ccache (bug #611010)
+   -DCCACHE_EXECUTABLE=OFF
+   -DENABLE_GIO=ON
+   -DLINGUAS="$(plocale_get_locales)"
+   -DENABLE_AUDIOCD="$(usex cdda)"
+   -DENABLE_GSTREAMER="$(usex gstreamer)"
+   -DENABLE_LIBGPOD="$(usex ipod)"
+   -DENABLE_LIBMTP="$(usex mtp)"
+   -DENABLE_LIBPULSE="$(usex pulseaudio)"
+   

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-03-23 Thread Jakov Smolić
commit: 5f389dc4cdf33ba7b7a3fde9fa0120f8a239a83e
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed Mar 23 09:55:56 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Mar 23 09:55:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f389dc4

media-sound/strawberry: Stabilize 1.0.2 amd64, #835831

Signed-off-by: Jakov Smolić  gentoo.org>

 media-sound/strawberry/strawberry-1.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.2.ebuild 
b/media-sound/strawberry/strawberry-1.0.2.ebuild
index af868219fe69..ca2abcebaa8c 100644
--- a/media-sound/strawberry/strawberry-1.0.2.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.2.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~ppc64 ~x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-03-16 Thread Miroslav Šulc
commit: 38d799ad1c56809744efedb2aaf37f50ac2ad223
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Mar 16 16:09:02 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Mar 16 16:09:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38d799ad

media-sound/strawberry: removed obsolete 1.0.1

Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/strawberry-1.0.1.ebuild | 120 -
 1 file changed, 120 deletions(-)

diff --git a/media-sound/strawberry/strawberry-1.0.1.ebuild 
b/media-sound/strawberry/strawberry-1.0.1.ebuild
deleted file mode 100644
index ab29187dd035..
--- a/media-sound/strawberry/strawberry-1.0.1.ebuild
+++ /dev/null
@@ -1,120 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic plocale xdg
-
-PLOCALES="ca cs de es fi fr hu id it ja ko nb nl pl pt_BR ru sv uk zh_CN"
-
-DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
-HOMEPAGE="https://www.strawberrymusicplayer.org/;
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
-   inherit git-r3
-else
-   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~ppc64 x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-COMMON_DEPEND="
-   dev-db/sqlite:=
-   dev-libs/glib:2
-   dev-libs/protobuf:=
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5[ssl]
-   dev-qt/qtsql:5[sqlite]
-   dev-qt/qtwidgets:5
-   dev-qt/qtx11extras:5
-   media-libs/alsa-lib
-   >=media-libs/taglib-1.11.1_p20181028
-   x11-libs/libX11
-   cdda? ( dev-libs/libcdio:= )
-   gstreamer? (
-   >=media-libs/chromaprint-1.4:=
-   media-libs/gstreamer:1.0
-   media-libs/gst-plugins-base:1.0
-   )
-   ipod? ( >=media-libs/libgpod-0.8.0 )
-   moodbar? ( sci-libs/fftw:3.0 )
-   mtp? ( >=media-libs/libmtp-1.0.0 )
-   pulseaudio? ( media-sound/pulseaudio )
-   vlc? ( media-video/vlc )
-"
-# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
-RDEPEND="${COMMON_DEPEND}
-   gstreamer? (
-   media-plugins/gst-plugins-meta:1.0
-   media-plugins/gst-plugins-soup:1.0
-   media-plugins/gst-plugins-taglib:1.0
-   )
-   mtp? ( gnome-base/gvfs[mtp] )
-   udisks? ( sys-fs/udisks:2 )
-"
-DEPEND="${COMMON_DEPEND}
-   >=dev-cpp/gtest-1.8.0
-   dev-libs/boost
-   dev-qt/qttest:5
-"
-
-DOCS=( Changelog README.md )
-
-REQUIRED_USE="
-   cdda? ( gstreamer )
-   || ( gstreamer vlc )
-"
-
-src_prepare() {
-   plocale_find_changes "src/translations" "" ".po"
-
-   cmake_src_prepare
-}
-
-src_configure() {
-   # spotify is not in portage
-   local mycmakeargs=(
-   -DBUILD_WERROR=OFF
-   # avoid automagically enabling of ccache (bug #611010)
-   -DCCACHE_EXECUTABLE=OFF
-   -DENABLE_GIO=ON
-   -DLINGUAS="$(plocale_get_locales)"
-   -DENABLE_AUDIOCD="$(usex cdda)"
-   -DENABLE_GSTREAMER="$(usex gstreamer)"
-   -DENABLE_LIBGPOD="$(usex ipod)"
-   -DENABLE_LIBMTP="$(usex mtp)"
-   -DENABLE_LIBPULSE="$(usex pulseaudio)"
-   -DENABLE_MOODBAR="$(usex moodbar)"
-   -DENABLE_MUSICBRAINZ="$(usex gstreamer)"
-   -DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
-   -DENABLE_UDISKS2="$(usex udisks)"
-   -DENABLE_VLC="$(usex vlc)"
-   # Disable until we have qt6 in the tree
-   -DWITH_QT6=OFF
-   )
-
-   use !debug && append-cppflags -DQT_NO_DEBUG_OUTPUT
-
-   cmake_src_configure
-}
-
-pkg_postinst() {
-   xdg_pkg_postinst
-
-   if use gstreamer ; then
-   elog "Note that list of supported formats is controlled by 
media-plugins/gst-plugins-meta "
-   elog "USE flags. You may be interested in setting aac, flac, 
mp3, ogg or wavpack USE flags "
-   elog "depending on your preferences"
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-03-16 Thread Jakov Smolić
commit: 24d91b63d71b98b6517f392923ae5add6d79c2fb
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed Mar 16 11:19:35 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Mar 16 11:19:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24d91b63

media-sound/strawberry: Stabilize 1.0.1-r1 amd64, #835416

Signed-off-by: Jakov Smolić  gentoo.org>

 media-sound/strawberry/strawberry-1.0.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.1-r1.ebuild 
b/media-sound/strawberry/strawberry-1.0.1-r1.ebuild
index af868219fe69..ca2abcebaa8c 100644
--- a/media-sound/strawberry/strawberry-1.0.1-r1.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.1-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~ppc64 ~x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-03-16 Thread Jakov Smolić
commit: 0c78b17988275bb85a420b14a0ac0e7941a64c48
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed Mar 16 11:19:51 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Mar 16 11:19:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c78b179

media-sound/strawberry: Stabilize 1.0.1-r1 x86, #835416

Signed-off-by: Jakov Smolić  gentoo.org>

 media-sound/strawberry/strawberry-1.0.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.1-r1.ebuild 
b/media-sound/strawberry/strawberry-1.0.1-r1.ebuild
index ca2abcebaa8c..721ef2158d3d 100644
--- a/media-sound/strawberry/strawberry-1.0.1-r1.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.1-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~ppc64 x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-02-20 Thread Lars Wendler
commit: 788f884a7ca0fca93786020c747d86d9011c513b
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Feb 20 20:23:58 2022 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Feb 20 20:24:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=788f884a

media-sound/strawberry: Bump to version 1.0.2

Signed-off-by: Lars Wendler  gentoo.org>

 media-sound/strawberry/Manifest|   1 +
 media-sound/strawberry/strawberry-1.0.2.ebuild | 120 +
 2 files changed, 121 insertions(+)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index 32c03cbc93f0..4efcbe13e44c 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1 +1,2 @@
 DIST strawberry-1.0.1.tar.xz 11191132 BLAKE2B 
e182ec5db26b22b60e9393b3a418cf44c01b647ab268bafe6d3f098d879817563d68faf7962f0670017f70b7f9f64f3a680056002e7041a2dc956fdc1dceeb95
 SHA512 
6a668ba6dbdcd5c60e78190c2cc8c04ad4ed920102c7555fdd42f6bf47c5b4004f9580c0f009cade642b404f6884b2b5dac386d326bf6f234403e4ba7612a2bb
+DIST strawberry-1.0.2.tar.xz 11202768 BLAKE2B 
555c9492a6c10e9df579d4e9b1c718c722531f21784f68a436d8bd313a6950f0cfc58ded85f9a144de12a73ab07a0cc4d0e028223122dd4fde6604eb92145bd8
 SHA512 
196be23dde8fee531b2996bc7dacaf5b00dcd3f1aaaeb6630ed2a2fdeb777abb66d6c19928fc157dde7d5bceffdc646ff615a6d52bc0e6ee5ddcc14de6ee7a59

diff --git a/media-sound/strawberry/strawberry-1.0.2.ebuild 
b/media-sound/strawberry/strawberry-1.0.2.ebuild
new file mode 100644
index ..af868219fe69
--- /dev/null
+++ b/media-sound/strawberry/strawberry-1.0.2.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic plocale xdg
+
+PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
+
+DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
+HOMEPAGE="https://www.strawberrymusicplayer.org/;
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
+   KEYWORDS="~amd64 ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+COMMON_DEPEND="
+   dev-db/sqlite:=
+   dev-libs/glib:2
+   dev-libs/protobuf:=
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtsql:5[sqlite]
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   media-libs/alsa-lib
+   >=media-libs/taglib-1.11.1_p20181028
+   x11-libs/libX11
+   cdda? ( dev-libs/libcdio:= )
+   gstreamer? (
+   >=media-libs/chromaprint-1.4:=
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   )
+   ipod? ( >=media-libs/libgpod-0.8.0 )
+   moodbar? ( sci-libs/fftw:3.0 )
+   mtp? ( >=media-libs/libmtp-1.0.0 )
+   pulseaudio? ( media-sound/pulseaudio )
+   vlc? ( media-video/vlc )
+"
+# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
+RDEPEND="${COMMON_DEPEND}
+   gstreamer? (
+   media-plugins/gst-plugins-meta:1.0
+   media-plugins/gst-plugins-soup:1.0
+   media-plugins/gst-plugins-taglib:1.0
+   )
+   mtp? ( gnome-base/gvfs[mtp] )
+   udisks? ( sys-fs/udisks:2 )
+"
+DEPEND="${COMMON_DEPEND}
+   >=dev-cpp/gtest-1.8.0
+   dev-libs/boost
+   dev-qt/qttest:5
+"
+
+DOCS=( Changelog README.md )
+
+REQUIRED_USE="
+   cdda? ( gstreamer )
+   || ( gstreamer vlc )
+"
+
+src_prepare() {
+   plocale_find_changes "src/translations" "" ".po"
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   # spotify is not in portage
+   local mycmakeargs=(
+   -DBUILD_WERROR=OFF
+   # avoid automagically enabling of ccache (bug #611010)
+   -DCCACHE_EXECUTABLE=OFF
+   -DENABLE_GIO=ON
+   -DLINGUAS="$(plocale_get_locales)"
+   -DENABLE_AUDIOCD="$(usex cdda)"
+   -DENABLE_GSTREAMER="$(usex gstreamer)"
+   -DENABLE_LIBGPOD="$(usex ipod)"
+   -DENABLE_LIBMTP="$(usex mtp)"
+   -DENABLE_LIBPULSE="$(usex pulseaudio)"
+   -DENABLE_MOODBAR="$(usex moodbar)"
+   -DENABLE_MUSICBRAINZ="$(usex gstreamer)"
+   -DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
+   -DENABLE_UDISKS2="$(usex udisks)"
+   -DENABLE_VLC="$(usex vlc)"
+   # Disable until we have qt6 in the tree
+   -DWITH_QT6=OFF
+  

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-02-13 Thread Lars Wendler
commit: 430606a2a09b73f92e9a6e664de1a2a1f885945d
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Feb 13 12:29:22 2022 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Feb 13 12:29:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=430606a2

media-sound/strawberry: Synced live ebuild

Signed-off-by: Lars Wendler  gentoo.org>

 media-sound/strawberry/strawberry-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-.ebuild 
b/media-sound/strawberry/strawberry-.ebuild
index 3649ac2be758..af868219fe69 100644
--- a/media-sound/strawberry/strawberry-.ebuild
+++ b/media-sound/strawberry/strawberry-.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 inherit cmake flag-o-matic plocale xdg
 
-PLOCALES="ca cs de es fi fr hu id it ja ko nb nl pl pt_BR ru sv uk zh_CN"
+PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
 
 DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
 HOMEPAGE="https://www.strawberrymusicplayer.org/;



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-02-13 Thread Lars Wendler
commit: 9923aa3e5802961099bbca2a54be767cd69802d8
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Feb 13 12:28:33 2022 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Feb 13 12:28:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9923aa3e

media-sound/strawberry: Revbump to add new PLOCALEs

Thanks-to: Ken Cuvelier  yahoo.com>
Closes: https://bugs.gentoo.org/832940
Signed-off-by: Lars Wendler  gentoo.org>

 media-sound/strawberry/strawberry-1.0.1-r1.ebuild | 120 ++
 1 file changed, 120 insertions(+)

diff --git a/media-sound/strawberry/strawberry-1.0.1-r1.ebuild 
b/media-sound/strawberry/strawberry-1.0.1-r1.ebuild
new file mode 100644
index ..af868219fe69
--- /dev/null
+++ b/media-sound/strawberry/strawberry-1.0.1-r1.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic plocale xdg
+
+PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
+
+DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
+HOMEPAGE="https://www.strawberrymusicplayer.org/;
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
+   KEYWORDS="~amd64 ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+COMMON_DEPEND="
+   dev-db/sqlite:=
+   dev-libs/glib:2
+   dev-libs/protobuf:=
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtsql:5[sqlite]
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   media-libs/alsa-lib
+   >=media-libs/taglib-1.11.1_p20181028
+   x11-libs/libX11
+   cdda? ( dev-libs/libcdio:= )
+   gstreamer? (
+   >=media-libs/chromaprint-1.4:=
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   )
+   ipod? ( >=media-libs/libgpod-0.8.0 )
+   moodbar? ( sci-libs/fftw:3.0 )
+   mtp? ( >=media-libs/libmtp-1.0.0 )
+   pulseaudio? ( media-sound/pulseaudio )
+   vlc? ( media-video/vlc )
+"
+# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
+RDEPEND="${COMMON_DEPEND}
+   gstreamer? (
+   media-plugins/gst-plugins-meta:1.0
+   media-plugins/gst-plugins-soup:1.0
+   media-plugins/gst-plugins-taglib:1.0
+   )
+   mtp? ( gnome-base/gvfs[mtp] )
+   udisks? ( sys-fs/udisks:2 )
+"
+DEPEND="${COMMON_DEPEND}
+   >=dev-cpp/gtest-1.8.0
+   dev-libs/boost
+   dev-qt/qttest:5
+"
+
+DOCS=( Changelog README.md )
+
+REQUIRED_USE="
+   cdda? ( gstreamer )
+   || ( gstreamer vlc )
+"
+
+src_prepare() {
+   plocale_find_changes "src/translations" "" ".po"
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   # spotify is not in portage
+   local mycmakeargs=(
+   -DBUILD_WERROR=OFF
+   # avoid automagically enabling of ccache (bug #611010)
+   -DCCACHE_EXECUTABLE=OFF
+   -DENABLE_GIO=ON
+   -DLINGUAS="$(plocale_get_locales)"
+   -DENABLE_AUDIOCD="$(usex cdda)"
+   -DENABLE_GSTREAMER="$(usex gstreamer)"
+   -DENABLE_LIBGPOD="$(usex ipod)"
+   -DENABLE_LIBMTP="$(usex mtp)"
+   -DENABLE_LIBPULSE="$(usex pulseaudio)"
+   -DENABLE_MOODBAR="$(usex moodbar)"
+   -DENABLE_MUSICBRAINZ="$(usex gstreamer)"
+   -DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
+   -DENABLE_UDISKS2="$(usex udisks)"
+   -DENABLE_VLC="$(usex vlc)"
+   # Disable until we have qt6 in the tree
+   -DWITH_QT6=OFF
+   )
+
+   use !debug && append-cppflags -DQT_NO_DEBUG_OUTPUT
+
+   cmake_src_configure
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+
+   if use gstreamer ; then
+   elog "Note that list of supported formats is controlled by 
media-plugins/gst-plugins-meta "
+   elog "USE flags. You may be interested in setting aac, flac, 
mp3, ogg or wavpack USE flags "
+   elog "depending on your preferences"
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-02-08 Thread Miroslav Šulc
commit: 0a45ab49657fe71bdd4be59cd7c6b11247de8cc9
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Tue Feb  8 09:57:42 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Tue Feb  8 09:57:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a45ab49

media-sound/strawberry: removed obsolete 1.0.0-r3

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest   |   1 -
 media-sound/strawberry/strawberry-1.0.0-r3.ebuild | 120 --
 2 files changed, 121 deletions(-)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index b0765bba79ac..32c03cbc93f0 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,2 +1 @@
-DIST strawberry-1.0.0.tar.xz 11149316 BLAKE2B 
db500acb75c1e206c7eb2b5b668fc850444da8383ea98926e05d3eaee46a477f9b7c24017c75a1ea8d0ac8d89287a137aa65ef9098527b0449e3b5b14e37fa9e
 SHA512 
e7f03eb068bd2de22b83b0bdd493dabbbe054bb0f7d3f4d237ff38955e382a13d7c42f60c9a257c906ded46567b6f4ca9139920291df8a7688fb4025cdfec488
 DIST strawberry-1.0.1.tar.xz 11191132 BLAKE2B 
e182ec5db26b22b60e9393b3a418cf44c01b647ab268bafe6d3f098d879817563d68faf7962f0670017f70b7f9f64f3a680056002e7041a2dc956fdc1dceeb95
 SHA512 
6a668ba6dbdcd5c60e78190c2cc8c04ad4ed920102c7555fdd42f6bf47c5b4004f9580c0f009cade642b404f6884b2b5dac386d326bf6f234403e4ba7612a2bb

diff --git a/media-sound/strawberry/strawberry-1.0.0-r3.ebuild 
b/media-sound/strawberry/strawberry-1.0.0-r3.ebuild
deleted file mode 100644
index ab29187dd035..
--- a/media-sound/strawberry/strawberry-1.0.0-r3.ebuild
+++ /dev/null
@@ -1,120 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic plocale xdg
-
-PLOCALES="ca cs de es fi fr hu id it ja ko nb nl pl pt_BR ru sv uk zh_CN"
-
-DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
-HOMEPAGE="https://www.strawberrymusicplayer.org/;
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
-   inherit git-r3
-else
-   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~ppc64 x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-COMMON_DEPEND="
-   dev-db/sqlite:=
-   dev-libs/glib:2
-   dev-libs/protobuf:=
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5[ssl]
-   dev-qt/qtsql:5[sqlite]
-   dev-qt/qtwidgets:5
-   dev-qt/qtx11extras:5
-   media-libs/alsa-lib
-   >=media-libs/taglib-1.11.1_p20181028
-   x11-libs/libX11
-   cdda? ( dev-libs/libcdio:= )
-   gstreamer? (
-   >=media-libs/chromaprint-1.4:=
-   media-libs/gstreamer:1.0
-   media-libs/gst-plugins-base:1.0
-   )
-   ipod? ( >=media-libs/libgpod-0.8.0 )
-   moodbar? ( sci-libs/fftw:3.0 )
-   mtp? ( >=media-libs/libmtp-1.0.0 )
-   pulseaudio? ( media-sound/pulseaudio )
-   vlc? ( media-video/vlc )
-"
-# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
-RDEPEND="${COMMON_DEPEND}
-   gstreamer? (
-   media-plugins/gst-plugins-meta:1.0
-   media-plugins/gst-plugins-soup:1.0
-   media-plugins/gst-plugins-taglib:1.0
-   )
-   mtp? ( gnome-base/gvfs[mtp] )
-   udisks? ( sys-fs/udisks:2 )
-"
-DEPEND="${COMMON_DEPEND}
-   >=dev-cpp/gtest-1.8.0
-   dev-libs/boost
-   dev-qt/qttest:5
-"
-
-DOCS=( Changelog README.md )
-
-REQUIRED_USE="
-   cdda? ( gstreamer )
-   || ( gstreamer vlc )
-"
-
-src_prepare() {
-   plocale_find_changes "src/translations" "" ".po"
-
-   cmake_src_prepare
-}
-
-src_configure() {
-   # spotify is not in portage
-   local mycmakeargs=(
-   -DBUILD_WERROR=OFF
-   # avoid automagically enabling of ccache (bug #611010)
-   -DCCACHE_EXECUTABLE=OFF
-   -DENABLE_GIO=ON
-   -DLINGUAS="$(plocale_get_locales)"
-   -DENABLE_AUDIOCD="$(usex cdda)"
-   -DENABLE_GSTREAMER="$(usex gstreamer)"
-   -DENABLE_LIBGPOD="$(usex ipod)"
-   -DENABLE_LIBMTP="$(usex mtp)"
-   -DENABLE_LIBPULSE="$(usex pulseaudio)"
-   -DENABLE_MOODBAR="$(usex moodbar)"
-   -DENABLE_MUSICBRAINZ="$(usex gstreamer)"
-   -DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
-   -DENABLE_UDISKS2="$(usex udisks)"
-   -DENABLE_VLC="$(usex vlc)"
-   # Disable until we have 

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-02-08 Thread Jakov Smolić
commit: 3b10563f6842a153b796758dc2a4a126dbaede6e
Author: Jakov Smolić  gentoo  org>
AuthorDate: Tue Feb  8 08:56:38 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Tue Feb  8 08:58:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b10563f

media-sound/strawberry: Stabilize 1.0.1 amd64, #832890

Signed-off-by: Jakov Smolić  gentoo.org>

 media-sound/strawberry/strawberry-1.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.1.ebuild 
b/media-sound/strawberry/strawberry-1.0.1.ebuild
index 3649ac2be758..34aa8404e16b 100644
--- a/media-sound/strawberry/strawberry-1.0.1.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~ppc64 ~x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-02-08 Thread Jakov Smolić
commit: a5024d67eb9a3d41e8ce4059cf0d0b1ea87261bd
Author: Jakov Smolić  gentoo  org>
AuthorDate: Tue Feb  8 08:56:51 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Tue Feb  8 08:58:03 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5024d67

media-sound/strawberry: Stabilize 1.0.1 x86, #832890

Signed-off-by: Jakov Smolić  gentoo.org>

 media-sound/strawberry/strawberry-1.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.1.ebuild 
b/media-sound/strawberry/strawberry-1.0.1.ebuild
index 34aa8404e16b..ab29187dd035 100644
--- a/media-sound/strawberry/strawberry-1.0.1.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~ppc64 x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-01-08 Thread Lars Wendler
commit: 7b4a434028d7f5ada3c367d759b0b1a5fea1
Author: Lars Wendler  gentoo  org>
AuthorDate: Sat Jan  8 16:39:29 2022 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Jan  8 16:39:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b4a4340

media-sound/strawberry: Bump to version 1.0.1

Signed-off-by: Lars Wendler  gentoo.org>

 media-sound/strawberry/Manifest|   1 +
 media-sound/strawberry/strawberry-1.0.1.ebuild | 120 +
 2 files changed, 121 insertions(+)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index b1506ece66fc..b0765bba79ac 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1 +1,2 @@
 DIST strawberry-1.0.0.tar.xz 11149316 BLAKE2B 
db500acb75c1e206c7eb2b5b668fc850444da8383ea98926e05d3eaee46a477f9b7c24017c75a1ea8d0ac8d89287a137aa65ef9098527b0449e3b5b14e37fa9e
 SHA512 
e7f03eb068bd2de22b83b0bdd493dabbbe054bb0f7d3f4d237ff38955e382a13d7c42f60c9a257c906ded46567b6f4ca9139920291df8a7688fb4025cdfec488
+DIST strawberry-1.0.1.tar.xz 11191132 BLAKE2B 
e182ec5db26b22b60e9393b3a418cf44c01b647ab268bafe6d3f098d879817563d68faf7962f0670017f70b7f9f64f3a680056002e7041a2dc956fdc1dceeb95
 SHA512 
6a668ba6dbdcd5c60e78190c2cc8c04ad4ed920102c7555fdd42f6bf47c5b4004f9580c0f009cade642b404f6884b2b5dac386d326bf6f234403e4ba7612a2bb

diff --git a/media-sound/strawberry/strawberry-1.0.1.ebuild 
b/media-sound/strawberry/strawberry-1.0.1.ebuild
new file mode 100644
index ..3649ac2be758
--- /dev/null
+++ b/media-sound/strawberry/strawberry-1.0.1.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic plocale xdg
+
+PLOCALES="ca cs de es fi fr hu id it ja ko nb nl pl pt_BR ru sv uk zh_CN"
+
+DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
+HOMEPAGE="https://www.strawberrymusicplayer.org/;
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
+   KEYWORDS="~amd64 ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+COMMON_DEPEND="
+   dev-db/sqlite:=
+   dev-libs/glib:2
+   dev-libs/protobuf:=
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtsql:5[sqlite]
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   media-libs/alsa-lib
+   >=media-libs/taglib-1.11.1_p20181028
+   x11-libs/libX11
+   cdda? ( dev-libs/libcdio:= )
+   gstreamer? (
+   >=media-libs/chromaprint-1.4:=
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   )
+   ipod? ( >=media-libs/libgpod-0.8.0 )
+   moodbar? ( sci-libs/fftw:3.0 )
+   mtp? ( >=media-libs/libmtp-1.0.0 )
+   pulseaudio? ( media-sound/pulseaudio )
+   vlc? ( media-video/vlc )
+"
+# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
+RDEPEND="${COMMON_DEPEND}
+   gstreamer? (
+   media-plugins/gst-plugins-meta:1.0
+   media-plugins/gst-plugins-soup:1.0
+   media-plugins/gst-plugins-taglib:1.0
+   )
+   mtp? ( gnome-base/gvfs[mtp] )
+   udisks? ( sys-fs/udisks:2 )
+"
+DEPEND="${COMMON_DEPEND}
+   >=dev-cpp/gtest-1.8.0
+   dev-libs/boost
+   dev-qt/qttest:5
+"
+
+DOCS=( Changelog README.md )
+
+REQUIRED_USE="
+   cdda? ( gstreamer )
+   || ( gstreamer vlc )
+"
+
+src_prepare() {
+   plocale_find_changes "src/translations" "" ".po"
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   # spotify is not in portage
+   local mycmakeargs=(
+   -DBUILD_WERROR=OFF
+   # avoid automagically enabling of ccache (bug #611010)
+   -DCCACHE_EXECUTABLE=OFF
+   -DENABLE_GIO=ON
+   -DLINGUAS="$(plocale_get_locales)"
+   -DENABLE_AUDIOCD="$(usex cdda)"
+   -DENABLE_GSTREAMER="$(usex gstreamer)"
+   -DENABLE_LIBGPOD="$(usex ipod)"
+   -DENABLE_LIBMTP="$(usex mtp)"
+   -DENABLE_LIBPULSE="$(usex pulseaudio)"
+   -DENABLE_MOODBAR="$(usex moodbar)"
+   -DENABLE_MUSICBRAINZ="$(usex gstreamer)"
+   -DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
+   -DENABLE_UDISKS2="$(usex udisks)"
+   -DENABLE_VLC="$(usex vlc)"
+   # Disable until we have qt6 in the tree
+   -DWITH_QT6=OFF
+   )
+
+   

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-01-03 Thread Lars Wendler
commit: 1d7adc01ee950f593cce821ca59dc240de1582c2
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Jan  3 17:52:37 2022 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Jan  3 17:53:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d7adc01

media-sound/strawberry: Revbump and fix of remaining dependency issues

Signed-off-by: Lars Wendler  gentoo.org>

 .../{strawberry-1.0.0-r2.ebuild => strawberry-1.0.0-r3.ebuild}   | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/media-sound/strawberry/strawberry-1.0.0-r2.ebuild 
b/media-sound/strawberry/strawberry-1.0.0-r3.ebuild
similarity index 98%
rename from media-sound/strawberry/strawberry-1.0.0-r2.ebuild
rename to media-sound/strawberry/strawberry-1.0.0-r3.ebuild
index 87b653cae8d7..ab29187dd035 100644
--- a/media-sound/strawberry/strawberry-1.0.0-r2.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.0-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -37,9 +37,9 @@ COMMON_DEPEND="
dev-qt/qtnetwork:5[ssl]
dev-qt/qtsql:5[sqlite]
dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
media-libs/alsa-lib
>=media-libs/taglib-1.11.1_p20181028
-   sys-libs/zlib
x11-libs/libX11
cdda? ( dev-libs/libcdio:= )
gstreamer? (
@@ -67,7 +67,6 @@ DEPEND="${COMMON_DEPEND}
>=dev-cpp/gtest-1.8.0
dev-libs/boost
dev-qt/qttest:5
-   dev-qt/qtx11extras:5
 "
 
 DOCS=( Changelog README.md )



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-01-03 Thread Lars Wendler
commit: 0081b0005972e65842f1f44d2a57e01b7bf5685d
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Jan  3 17:53:29 2022 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Jan  3 17:53:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0081b000

media-sound/strawberry: Synced live ebuild

Signed-off-by: Lars Wendler  gentoo.org>

 media-sound/strawberry/strawberry-.ebuild | 17 +
 1 file changed, 5 insertions(+), 12 deletions(-)

diff --git a/media-sound/strawberry/strawberry-.ebuild 
b/media-sound/strawberry/strawberry-.ebuild
index 83b0bbf5f703..3649ac2be758 100644
--- a/media-sound/strawberry/strawberry-.ebuild
+++ b/media-sound/strawberry/strawberry-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -8,12 +8,12 @@ inherit cmake flag-o-matic plocale xdg
 PLOCALES="ca cs de es fi fr hu id it ja ko nb nl pl pt_BR ru sv uk zh_CN"
 
 DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
-HOMEPAGE="https://www.strawbs.org/;
+HOMEPAGE="https://www.strawberrymusicplayer.org/;
 if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://github.com/jonaski/strawberry.git;
+   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
inherit git-r3
 else
-   
SRC_URI="https://github.com/jonaski/strawberry/releases/download/${PV}/${P}.tar.xz;
+   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
KEYWORDS="~amd64 ~ppc64 ~x86"
 fi
 
@@ -27,10 +27,8 @@ BDEPEND="
virtual/pkgconfig
 "
 COMMON_DEPEND="
-   app-crypt/qca:2[qt5(+)]
dev-db/sqlite:=
dev-libs/glib:2
-   dev-libs/libxml2
dev-libs/protobuf:=
dev-qt/qtconcurrent:5
dev-qt/qtcore:5
@@ -39,11 +37,9 @@ COMMON_DEPEND="
dev-qt/qtnetwork:5[ssl]
dev-qt/qtsql:5[sqlite]
dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
media-libs/alsa-lib
-   >=media-libs/libmygpo-qt-1.0.9[qt5(+)]
>=media-libs/taglib-1.11.1_p20181028
-   sys-libs/zlib
-   virtual/glu
x11-libs/libX11
cdda? ( dev-libs/libcdio:= )
gstreamer? (
@@ -70,10 +66,7 @@ RDEPEND="${COMMON_DEPEND}
 DEPEND="${COMMON_DEPEND}
>=dev-cpp/gtest-1.8.0
dev-libs/boost
-   dev-qt/qtopengl:5
dev-qt/qttest:5
-   dev-qt/qtx11extras:5
-   dev-qt/qtxml:5
 "
 
 DOCS=( Changelog README.md )



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2022-01-03 Thread Lars Wendler
commit: 8388e3e3c1ddc7093150fd0772a95394de99151e
Author: Jonas Kvinge  jkvinge  net>
AuthorDate: Sun Jan  2 20:58:56 2022 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Jan  3 17:53:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8388e3e3

media-sound/strawberry: Fix URLs and remove unused dependencies

Signed-off-by: Jonas Kvinge  jkvinge.net>
Closes: https://github.com/gentoo/gentoo/pull/23635
Signed-off-by: Lars Wendler  gentoo.org>

 media-sound/strawberry/strawberry-1.0.0-r2.ebuild | 12 +++-
 1 file changed, 3 insertions(+), 9 deletions(-)

diff --git a/media-sound/strawberry/strawberry-1.0.0-r2.ebuild 
b/media-sound/strawberry/strawberry-1.0.0-r2.ebuild
index 7fb0814fa2d5..87b653cae8d7 100644
--- a/media-sound/strawberry/strawberry-1.0.0-r2.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.0-r2.ebuild
@@ -8,12 +8,12 @@ inherit cmake flag-o-matic plocale xdg
 PLOCALES="ca cs de es fi fr hu id it ja ko nb nl pl pt_BR ru sv uk zh_CN"
 
 DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
-HOMEPAGE="https://www.strawbs.org/;
+HOMEPAGE="https://www.strawberrymusicplayer.org/;
 if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://github.com/jonaski/strawberry.git;
+   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
inherit git-r3
 else
-   
SRC_URI="https://github.com/jonaski/strawberry/releases/download/${PV}/${P}.tar.xz;
+   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
KEYWORDS="amd64 ~ppc64 x86"
 fi
 
@@ -27,10 +27,8 @@ BDEPEND="
virtual/pkgconfig
 "
 COMMON_DEPEND="
-   app-crypt/qca:2[qt5(+)]
dev-db/sqlite:=
dev-libs/glib:2
-   dev-libs/libxml2
dev-libs/protobuf:=
dev-qt/qtconcurrent:5
dev-qt/qtcore:5
@@ -40,10 +38,8 @@ COMMON_DEPEND="
dev-qt/qtsql:5[sqlite]
dev-qt/qtwidgets:5
media-libs/alsa-lib
-   >=media-libs/libmygpo-qt-1.0.9[qt5(+)]
>=media-libs/taglib-1.11.1_p20181028
sys-libs/zlib
-   virtual/glu
x11-libs/libX11
cdda? ( dev-libs/libcdio:= )
gstreamer? (
@@ -70,10 +66,8 @@ RDEPEND="${COMMON_DEPEND}
 DEPEND="${COMMON_DEPEND}
>=dev-cpp/gtest-1.8.0
dev-libs/boost
-   dev-qt/qtopengl:5
dev-qt/qttest:5
dev-qt/qtx11extras:5
-   dev-qt/qtxml:5
 "
 
 DOCS=( Changelog README.md )



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2021-12-02 Thread Lars Wendler
commit: 1a5377cfa4d35b460eb0171e12afc32321a5af2c
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Dec  2 11:40:38 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Dec  2 11:42:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a5377cf

media-sound/strawberry: Revbump to fix automagic dep on sci-libs/fftw

by introducing "moodbar" USE flag.

Thanks-to: Thomas Lindroth  gmail.com>
Closes: https://bugs.gentoo.org/828005
Signed-off-by: Lars Wendler  gentoo.org>

 media-sound/strawberry/metadata.xml   | 1 +
 .../{strawberry-1.0.0-r1.ebuild => strawberry-1.0.0-r2.ebuild}| 4 +++-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/media-sound/strawberry/metadata.xml 
b/media-sound/strawberry/metadata.xml
index ea30306662e5..1d06f286e255 100644
--- a/media-sound/strawberry/metadata.xml
+++ b/media-sound/strawberry/metadata.xml
@@ -11,6 +11,7 @@


Enable media-video/vlc 
backend
+   Enable moodbar support


jonaski/strawberry

diff --git a/media-sound/strawberry/strawberry-1.0.0-r1.ebuild 
b/media-sound/strawberry/strawberry-1.0.0-r2.ebuild
similarity index 95%
rename from media-sound/strawberry/strawberry-1.0.0-r1.ebuild
rename to media-sound/strawberry/strawberry-1.0.0-r2.ebuild
index a43b22b25ba9..7fb0814fa2d5 100644
--- a/media-sound/strawberry/strawberry-1.0.0-r1.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.0-r2.ebuild
@@ -19,7 +19,7 @@ fi
 
 LICENSE="GPL-3"
 SLOT="0"
-IUSE="cdda debug +gstreamer ipod mtp pulseaudio +udisks vlc"
+IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
 
 BDEPEND="
dev-qt/linguist-tools:5
@@ -52,6 +52,7 @@ COMMON_DEPEND="
media-libs/gst-plugins-base:1.0
)
ipod? ( >=media-libs/libgpod-0.8.0 )
+   moodbar? ( sci-libs/fftw:3.0 )
mtp? ( >=media-libs/libmtp-1.0.0 )
pulseaudio? ( media-sound/pulseaudio )
vlc? ( media-video/vlc )
@@ -101,6 +102,7 @@ src_configure() {
-DENABLE_LIBGPOD="$(usex ipod)"
-DENABLE_LIBMTP="$(usex mtp)"
-DENABLE_LIBPULSE="$(usex pulseaudio)"
+   -DENABLE_MOODBAR="$(usex moodbar)"
-DENABLE_MUSICBRAINZ="$(usex gstreamer)"
-DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
-DENABLE_UDISKS2="$(usex udisks)"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2021-12-02 Thread Lars Wendler
commit: 52f507a89b2056415cf53c66254878771952b8fa
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Dec  2 11:42:33 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Dec  2 11:42:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52f507a8

media-sound/strawberry: Synced live ebuild

Signed-off-by: Lars Wendler  gentoo.org>

 media-sound/strawberry/strawberry-.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-.ebuild 
b/media-sound/strawberry/strawberry-.ebuild
index e76885a584b9..83b0bbf5f703 100644
--- a/media-sound/strawberry/strawberry-.ebuild
+++ b/media-sound/strawberry/strawberry-.ebuild
@@ -19,7 +19,7 @@ fi
 
 LICENSE="GPL-3"
 SLOT="0"
-IUSE="cdda debug +gstreamer ipod mtp pulseaudio +udisks vlc"
+IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
 
 BDEPEND="
dev-qt/linguist-tools:5
@@ -52,6 +52,7 @@ COMMON_DEPEND="
media-libs/gst-plugins-base:1.0
)
ipod? ( >=media-libs/libgpod-0.8.0 )
+   moodbar? ( sci-libs/fftw:3.0 )
mtp? ( >=media-libs/libmtp-1.0.0 )
pulseaudio? ( media-sound/pulseaudio )
vlc? ( media-video/vlc )
@@ -101,6 +102,7 @@ src_configure() {
-DENABLE_LIBGPOD="$(usex ipod)"
-DENABLE_LIBMTP="$(usex mtp)"
-DENABLE_LIBPULSE="$(usex pulseaudio)"
+   -DENABLE_MOODBAR="$(usex moodbar)"
-DENABLE_MUSICBRAINZ="$(usex gstreamer)"
-DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
-DENABLE_UDISKS2="$(usex udisks)"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2021-11-25 Thread Miroslav Šulc
commit: 31b5ec98e8d5b5f41ad4d31fa9031bf6baebf086
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Fri Nov 26 07:25:19 2021 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Nov 26 07:25:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31b5ec98

media-sound/strawberry: removed obsolete 0.9.3

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/Manifest|   1 -
 media-sound/strawberry/strawberry-0.9.3.ebuild | 125 -
 2 files changed, 126 deletions(-)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index 3071a41acafe..b1506ece66fc 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,2 +1 @@
-DIST strawberry-0.9.3.tar.xz 10928116 BLAKE2B 
3edb80065876d63b79292c6b75660aaaeaa6ea294bb84011124fa8aee3163717b8ab4f0e8d6e7aff321466d3cfbc214b5e8b987c9ae9b0823f8d3c681aae6e9e
 SHA512 
d253ffaa6cf0412eb135bc792c31458816fc0a1ae7070d6885487da4fb4855ffddd285b853fd10220c797c3beb73a91059514d76b1b1638350fdff17107c
 DIST strawberry-1.0.0.tar.xz 11149316 BLAKE2B 
db500acb75c1e206c7eb2b5b668fc850444da8383ea98926e05d3eaee46a477f9b7c24017c75a1ea8d0ac8d89287a137aa65ef9098527b0449e3b5b14e37fa9e
 SHA512 
e7f03eb068bd2de22b83b0bdd493dabbbe054bb0f7d3f4d237ff38955e382a13d7c42f60c9a257c906ded46567b6f4ca9139920291df8a7688fb4025cdfec488

diff --git a/media-sound/strawberry/strawberry-0.9.3.ebuild 
b/media-sound/strawberry/strawberry-0.9.3.ebuild
deleted file mode 100644
index 920a6556e1d5..
--- a/media-sound/strawberry/strawberry-0.9.3.ebuild
+++ /dev/null
@@ -1,125 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake flag-o-matic plocale xdg
-
-PLOCALES="cs de es fr hu id it ko nb pl ru sv"
-
-DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
-HOMEPAGE="https://www.strawbs.org/;
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://github.com/jonaski/strawberry.git;
-   inherit git-r3
-else
-   
SRC_URI="https://github.com/jonaski/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~ppc64 x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="cdda debug +gstreamer ipod mtp pulseaudio +udisks vlc"
-
-REQUIRED_USE="
-   udisks? ( dbus )
-"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-COMMON_DEPEND="
-   app-crypt/qca:2[qt5(+)]
-   dev-db/sqlite:=
-   dev-libs/glib:2
-   dev-libs/libxml2
-   dev-libs/protobuf:=
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5[ssl]
-   dev-qt/qtsql:5[sqlite]
-   dev-qt/qtwidgets:5
-   media-libs/alsa-lib
-   media-libs/chromaprint:=
-   >=media-libs/libmygpo-qt-1.0.9[qt5(+)]
-   >=media-libs/taglib-1.11.1_p20181028
-   sys-libs/zlib
-   virtual/glu
-   x11-libs/libX11
-   cdda? ( dev-libs/libcdio:= )
-   gstreamer? (
-   media-libs/gstreamer:1.0
-   media-libs/gst-plugins-base:1.0
-   )
-   ipod? ( >=media-libs/libgpod-0.8.0 )
-   mtp? ( >=media-libs/libmtp-1.0.0 )
-   pulseaudio? ( media-sound/pulseaudio )
-   vlc? ( media-video/vlc )
-"
-# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
-RDEPEND="${COMMON_DEPEND}
-   gstreamer? (
-   media-plugins/gst-plugins-meta:1.0
-   media-plugins/gst-plugins-soup:1.0
-   media-plugins/gst-plugins-taglib:1.0
-   )
-   mtp? ( gnome-base/gvfs[mtp] )
-   udisks? ( sys-fs/udisks:2 )
-"
-DEPEND="${COMMON_DEPEND}
-   >=dev-cpp/gtest-1.8.0
-   dev-libs/boost
-   dev-qt/qtopengl:5
-   dev-qt/qttest:5
-   dev-qt/qtx11extras:5
-   dev-qt/qtxml:5
-"
-
-DOCS=( Changelog README.md )
-
-REQUIRED_USE="
-   || ( gstreamer vlc )
-"
-
-src_prepare() {
-   plocale_find_changes "src/translations" "" ".po"
-
-   cmake_src_prepare
-}
-
-src_configure() {
-   # spotify is not in portage
-   local mycmakeargs=(
-   -DBUILD_WERROR=OFF
-   # avoid automagically enabling of ccache (bug #611010)
-   -DCCACHE_EXECUTABLE=OFF
-   -DENABLE_GIO=ON
-   -DLINGUAS="$(plocale_get_locales)"
-   -DENABLE_AUDIOCD="$(usex cdda)"
-   -DENABLE_GSTREAMER="$(usex gstreamer)"
-   -DENABLE_LIBGPOD="$(usex ipod)"
-   -DENABLE_LIBMTP="$(usex mtp)"
-   -DENABLE_LIBPULSE="$(usex pulseaudio)"
-   -DENABLE_UDISKS2="$(usex udisks)"
-   -DENABLE_VLC="$(usex vlc)"
-   -DWITH_QT6=OFF
-   )
-
-   use !debug && append-cppflags -DQT_NO_DEBUG_OUTPUT
-
-   cmake_src_configure
-}
-

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2021-11-25 Thread Sam James
commit: 08321f5b3c9c4aa433a2d46b069b82e99bd571b3
Author: Sam James  gentoo  org>
AuthorDate: Fri Nov 26 05:46:48 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Nov 26 05:46:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08321f5b

media-sound/strawberry: Stabilize 1.0.0-r1 x86, #827110

Signed-off-by: Sam James  gentoo.org>

 media-sound/strawberry/strawberry-1.0.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.0-r1.ebuild 
b/media-sound/strawberry/strawberry-1.0.0-r1.ebuild
index 444ffd7d48c9..a43b22b25ba9 100644
--- a/media-sound/strawberry/strawberry-1.0.0-r1.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.0-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/jonaski/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~ppc64 x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2021-11-24 Thread Sam James
commit: d2471a2e91806fce594027194f0c7b15c007c89c
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 24 16:45:59 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 24 16:45:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2471a2e

media-sound/strawberry: Stabilize 1.0.0-r1 amd64, #827110

Signed-off-by: Sam James  gentoo.org>

 media-sound/strawberry/strawberry-1.0.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.0-r1.ebuild 
b/media-sound/strawberry/strawberry-1.0.0-r1.ebuild
index e76885a584b9..444ffd7d48c9 100644
--- a/media-sound/strawberry/strawberry-1.0.0-r1.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.0-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/jonaski/strawberry/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~ppc64 ~x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2021-11-18 Thread Lars Wendler
commit: 59cc1ee2b8c9b95810c3c4d29bae4c4dd004b6ec
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Nov 18 08:43:12 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Nov 18 08:45:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59cc1ee2

media-sound/strawberry: Fixed a couple of gstreamer dependency issues

Thanks-to: David Duchesne  disroot.org>
Closes: https://bugs.gentoo.org/819912
Signed-off-by: Lars Wendler  gentoo.org>

 .../{strawberry-1.0.0.ebuild => strawberry-1.0.0-r1.ebuild}  | 9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/media-sound/strawberry/strawberry-1.0.0.ebuild 
b/media-sound/strawberry/strawberry-1.0.0-r1.ebuild
similarity index 95%
rename from media-sound/strawberry/strawberry-1.0.0.ebuild
rename to media-sound/strawberry/strawberry-1.0.0-r1.ebuild
index 3125896247de..e76885a584b9 100644
--- a/media-sound/strawberry/strawberry-1.0.0.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.0-r1.ebuild
@@ -21,10 +21,6 @@ LICENSE="GPL-3"
 SLOT="0"
 IUSE="cdda debug +gstreamer ipod mtp pulseaudio +udisks vlc"
 
-REQUIRED_USE="
-   udisks? ( dbus )
-"
-
 BDEPEND="
dev-qt/linguist-tools:5
sys-devel/gettext
@@ -44,7 +40,6 @@ COMMON_DEPEND="
dev-qt/qtsql:5[sqlite]
dev-qt/qtwidgets:5
media-libs/alsa-lib
-   >=media-libs/chromaprint-1.4:=
>=media-libs/libmygpo-qt-1.0.9[qt5(+)]
>=media-libs/taglib-1.11.1_p20181028
sys-libs/zlib
@@ -52,6 +47,7 @@ COMMON_DEPEND="
x11-libs/libX11
cdda? ( dev-libs/libcdio:= )
gstreamer? (
+   >=media-libs/chromaprint-1.4:=
media-libs/gstreamer:1.0
media-libs/gst-plugins-base:1.0
)
@@ -82,6 +78,7 @@ DEPEND="${COMMON_DEPEND}
 DOCS=( Changelog README.md )
 
 REQUIRED_USE="
+   cdda? ( gstreamer )
|| ( gstreamer vlc )
 "
 
@@ -104,6 +101,8 @@ src_configure() {
-DENABLE_LIBGPOD="$(usex ipod)"
-DENABLE_LIBMTP="$(usex mtp)"
-DENABLE_LIBPULSE="$(usex pulseaudio)"
+   -DENABLE_MUSICBRAINZ="$(usex gstreamer)"
+   -DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
-DENABLE_UDISKS2="$(usex udisks)"
-DENABLE_VLC="$(usex vlc)"
# Disable until we have qt6 in the tree



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2021-11-18 Thread Lars Wendler
commit: b3451dd25bb47d2426bc1e1eb28e9b4985eb4bf9
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Nov 18 08:44:47 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Nov 18 08:45:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3451dd2

media-sound/strawberry: Synced live ebuild

Signed-off-by: Lars Wendler  gentoo.org>

 media-sound/strawberry/strawberry-.ebuild | 11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/media-sound/strawberry/strawberry-.ebuild 
b/media-sound/strawberry/strawberry-.ebuild
index 9e45d008a03b..e76885a584b9 100644
--- a/media-sound/strawberry/strawberry-.ebuild
+++ b/media-sound/strawberry/strawberry-.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 inherit cmake flag-o-matic plocale xdg
 
-PLOCALES="cs de es fr hu id it ko nb pl ru sv"
+PLOCALES="ca cs de es fi fr hu id it ja ko nb nl pl pt_BR ru sv uk zh_CN"
 
 DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
 HOMEPAGE="https://www.strawbs.org/;
@@ -21,10 +21,6 @@ LICENSE="GPL-3"
 SLOT="0"
 IUSE="cdda debug +gstreamer ipod mtp pulseaudio +udisks vlc"
 
-REQUIRED_USE="
-   udisks? ( dbus )
-"
-
 BDEPEND="
dev-qt/linguist-tools:5
sys-devel/gettext
@@ -44,7 +40,6 @@ COMMON_DEPEND="
dev-qt/qtsql:5[sqlite]
dev-qt/qtwidgets:5
media-libs/alsa-lib
-   >=media-libs/chromaprint-1.4:=
>=media-libs/libmygpo-qt-1.0.9[qt5(+)]
>=media-libs/taglib-1.11.1_p20181028
sys-libs/zlib
@@ -52,6 +47,7 @@ COMMON_DEPEND="
x11-libs/libX11
cdda? ( dev-libs/libcdio:= )
gstreamer? (
+   >=media-libs/chromaprint-1.4:=
media-libs/gstreamer:1.0
media-libs/gst-plugins-base:1.0
)
@@ -82,6 +78,7 @@ DEPEND="${COMMON_DEPEND}
 DOCS=( Changelog README.md )
 
 REQUIRED_USE="
+   cdda? ( gstreamer )
|| ( gstreamer vlc )
 "
 
@@ -104,6 +101,8 @@ src_configure() {
-DENABLE_LIBGPOD="$(usex ipod)"
-DENABLE_LIBMTP="$(usex mtp)"
-DENABLE_LIBPULSE="$(usex pulseaudio)"
+   -DENABLE_MUSICBRAINZ="$(usex gstreamer)"
+   -DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
-DENABLE_UDISKS2="$(usex udisks)"
-DENABLE_VLC="$(usex vlc)"
# Disable until we have qt6 in the tree



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2021-11-13 Thread Miroslav Šulc
commit: 8a781e712f3b830bd014e8181a9338caae15d4cf
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sun Nov 14 07:05:44 2021 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sun Nov 14 07:06:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a781e71

media-sound/strawberry: updated PLOCALES in 1.0.0

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/strawberry-1.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/strawberry/strawberry-1.0.0.ebuild 
b/media-sound/strawberry/strawberry-1.0.0.ebuild
index b79659cf7e03..c44508625f7a 100644
--- a/media-sound/strawberry/strawberry-1.0.0.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.0.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 inherit cmake flag-o-matic plocale virtualx xdg
 
-PLOCALES="cs de es fr hu id it ko nb pl ru sv"
+PLOCALES="ca cs de es fi fr hu id it ja ko nb nl pl pt_BR ru sv uk zh_CN"
 
 DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
 HOMEPAGE="https://www.strawbs.org/;



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2021-11-13 Thread Miroslav Šulc
commit: 012f5634b37b74ec8676757509b59bb249bd6901
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sun Nov 14 07:06:48 2021 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sun Nov 14 07:06:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=012f5634

media-sound/strawberry: removed unused eclass

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/strawberry/strawberry-0.9.3.ebuild | 2 +-
 media-sound/strawberry/strawberry-1.0.0.ebuild | 2 +-
 media-sound/strawberry/strawberry-.ebuild  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-sound/strawberry/strawberry-0.9.3.ebuild 
b/media-sound/strawberry/strawberry-0.9.3.ebuild
index bcca27347c61..920a6556e1d5 100644
--- a/media-sound/strawberry/strawberry-0.9.3.ebuild
+++ b/media-sound/strawberry/strawberry-0.9.3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit cmake flag-o-matic plocale virtualx xdg
+inherit cmake flag-o-matic plocale xdg
 
 PLOCALES="cs de es fr hu id it ko nb pl ru sv"
 

diff --git a/media-sound/strawberry/strawberry-1.0.0.ebuild 
b/media-sound/strawberry/strawberry-1.0.0.ebuild
index c44508625f7a..3125896247de 100644
--- a/media-sound/strawberry/strawberry-1.0.0.ebuild
+++ b/media-sound/strawberry/strawberry-1.0.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit cmake flag-o-matic plocale virtualx xdg
+inherit cmake flag-o-matic plocale xdg
 
 PLOCALES="ca cs de es fi fr hu id it ja ko nb nl pl pt_BR ru sv uk zh_CN"
 

diff --git a/media-sound/strawberry/strawberry-.ebuild 
b/media-sound/strawberry/strawberry-.ebuild
index b79659cf7e03..9e45d008a03b 100644
--- a/media-sound/strawberry/strawberry-.ebuild
+++ b/media-sound/strawberry/strawberry-.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit cmake flag-o-matic plocale virtualx xdg
+inherit cmake flag-o-matic plocale xdg
 
 PLOCALES="cs de es fr hu id it ko nb pl ru sv"
 



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2021-10-14 Thread Lars Wendler
commit: d20a060871762d0af187a0bbd4a663841309867b
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Oct 14 19:15:38 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Oct 14 19:16:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d20a0608

media-sound/strawberry: Bump to version 1.0.0

Signed-off-by: Lars Wendler  gentoo.org>

 media-sound/strawberry/Manifest|   1 +
 media-sound/strawberry/strawberry-1.0.0.ebuild | 126 +
 2 files changed, 127 insertions(+)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index cece3cc1e9b..3071a41acaf 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1 +1,2 @@
 DIST strawberry-0.9.3.tar.xz 10928116 BLAKE2B 
3edb80065876d63b79292c6b75660aaaeaa6ea294bb84011124fa8aee3163717b8ab4f0e8d6e7aff321466d3cfbc214b5e8b987c9ae9b0823f8d3c681aae6e9e
 SHA512 
d253ffaa6cf0412eb135bc792c31458816fc0a1ae7070d6885487da4fb4855ffddd285b853fd10220c797c3beb73a91059514d76b1b1638350fdff17107c
+DIST strawberry-1.0.0.tar.xz 11149316 BLAKE2B 
db500acb75c1e206c7eb2b5b668fc850444da8383ea98926e05d3eaee46a477f9b7c24017c75a1ea8d0ac8d89287a137aa65ef9098527b0449e3b5b14e37fa9e
 SHA512 
e7f03eb068bd2de22b83b0bdd493dabbbe054bb0f7d3f4d237ff38955e382a13d7c42f60c9a257c906ded46567b6f4ca9139920291df8a7688fb4025cdfec488

diff --git a/media-sound/strawberry/strawberry-1.0.0.ebuild 
b/media-sound/strawberry/strawberry-1.0.0.ebuild
new file mode 100644
index 000..b79659cf7e0
--- /dev/null
+++ b/media-sound/strawberry/strawberry-1.0.0.ebuild
@@ -0,0 +1,126 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic plocale virtualx xdg
+
+PLOCALES="cs de es fr hu id it ko nb pl ru sv"
+
+DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
+HOMEPAGE="https://www.strawbs.org/;
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="https://github.com/jonaski/strawberry.git;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/jonaski/strawberry/releases/download/${PV}/${P}.tar.xz;
+   KEYWORDS="~amd64 ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="cdda debug +gstreamer ipod mtp pulseaudio +udisks vlc"
+
+REQUIRED_USE="
+   udisks? ( dbus )
+"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+COMMON_DEPEND="
+   app-crypt/qca:2[qt5(+)]
+   dev-db/sqlite:=
+   dev-libs/glib:2
+   dev-libs/libxml2
+   dev-libs/protobuf:=
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtsql:5[sqlite]
+   dev-qt/qtwidgets:5
+   media-libs/alsa-lib
+   >=media-libs/chromaprint-1.4:=
+   >=media-libs/libmygpo-qt-1.0.9[qt5(+)]
+   >=media-libs/taglib-1.11.1_p20181028
+   sys-libs/zlib
+   virtual/glu
+   x11-libs/libX11
+   cdda? ( dev-libs/libcdio:= )
+   gstreamer? (
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   )
+   ipod? ( >=media-libs/libgpod-0.8.0 )
+   mtp? ( >=media-libs/libmtp-1.0.0 )
+   pulseaudio? ( media-sound/pulseaudio )
+   vlc? ( media-video/vlc )
+"
+# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
+RDEPEND="${COMMON_DEPEND}
+   gstreamer? (
+   media-plugins/gst-plugins-meta:1.0
+   media-plugins/gst-plugins-soup:1.0
+   media-plugins/gst-plugins-taglib:1.0
+   )
+   mtp? ( gnome-base/gvfs[mtp] )
+   udisks? ( sys-fs/udisks:2 )
+"
+DEPEND="${COMMON_DEPEND}
+   >=dev-cpp/gtest-1.8.0
+   dev-libs/boost
+   dev-qt/qtopengl:5
+   dev-qt/qttest:5
+   dev-qt/qtx11extras:5
+   dev-qt/qtxml:5
+"
+
+DOCS=( Changelog README.md )
+
+REQUIRED_USE="
+   || ( gstreamer vlc )
+"
+
+src_prepare() {
+   plocale_find_changes "src/translations" "" ".po"
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   # spotify is not in portage
+   local mycmakeargs=(
+   -DBUILD_WERROR=OFF
+   # avoid automagically enabling of ccache (bug #611010)
+   -DCCACHE_EXECUTABLE=OFF
+   -DENABLE_GIO=ON
+   -DLINGUAS="$(plocale_get_locales)"
+   -DENABLE_AUDIOCD="$(usex cdda)"
+   -DENABLE_GSTREAMER="$(usex gstreamer)"
+   -DENABLE_LIBGPOD="$(usex ipod)"
+   -DENABLE_LIBMTP="$(usex mtp)"
+   -DENABLE_LIBPULSE="$(usex pulseaudio)"
+   -DENABLE_UDISKS2="$(usex udisks)"
+   -DENABLE_VLC="$(usex vlc)"
+   # Disable until we have qt6 in the tree
+   -DWITH_QT6=OFF
+   )
+
+   use !debug && append-cppflags -DQT_NO_DEBUG_OUTPUT
+
+   

[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2021-10-14 Thread Lars Wendler
commit: 12be22f0897340b916dd31acf79eed6bb0cffb24
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Oct 14 19:16:05 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Oct 14 19:16:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12be22f0

media-sound/strawberry: Synced live ebuild

Signed-off-by: Lars Wendler  gentoo.org>

 media-sound/strawberry/strawberry-.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/media-sound/strawberry/strawberry-.ebuild 
b/media-sound/strawberry/strawberry-.ebuild
index ccbe95c4a8c..b79659cf7e0 100644
--- a/media-sound/strawberry/strawberry-.ebuild
+++ b/media-sound/strawberry/strawberry-.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit cmake flag-o-matic plocale virtualx xdg
 
@@ -44,7 +44,7 @@ COMMON_DEPEND="
dev-qt/qtsql:5[sqlite]
dev-qt/qtwidgets:5
media-libs/alsa-lib
-   media-libs/chromaprint:=
+   >=media-libs/chromaprint-1.4:=
>=media-libs/libmygpo-qt-1.0.9[qt5(+)]
>=media-libs/taglib-1.11.1_p20181028
sys-libs/zlib
@@ -106,6 +106,7 @@ src_configure() {
-DENABLE_LIBPULSE="$(usex pulseaudio)"
-DENABLE_UDISKS2="$(usex udisks)"
-DENABLE_VLC="$(usex vlc)"
+   # Disable until we have qt6 in the tree
-DWITH_QT6=OFF
)
 



[gentoo-commits] repo/gentoo:master commit in: media-sound/strawberry/

2021-07-04 Thread Ulrich Müller
commit: 00dec56786d25f034f0ae8fa0c0f5fac56062619
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sat Jul  3 15:45:29 2021 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sun Jul  4 14:01:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00dec567

media-sound/strawberry: Update from l10n.eclass to plocale.eclass

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Ulrich Müller  gentoo.org>

 media-sound/strawberry/strawberry-0.9.3.ebuild | 6 +++---
 media-sound/strawberry/strawberry-.ebuild  | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/media-sound/strawberry/strawberry-0.9.3.ebuild 
b/media-sound/strawberry/strawberry-0.9.3.ebuild
index d3fdeec4bd4..bcca27347c6 100644
--- a/media-sound/strawberry/strawberry-0.9.3.ebuild
+++ b/media-sound/strawberry/strawberry-0.9.3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit cmake flag-o-matic l10n virtualx xdg
+inherit cmake flag-o-matic plocale virtualx xdg
 
 PLOCALES="cs de es fr hu id it ko nb pl ru sv"
 
@@ -86,7 +86,7 @@ REQUIRED_USE="
 "
 
 src_prepare() {
-   l10n_find_plocales_changes "src/translations" "" ".po"
+   plocale_find_changes "src/translations" "" ".po"
 
cmake_src_prepare
 }
@@ -98,7 +98,7 @@ src_configure() {
# avoid automagically enabling of ccache (bug #611010)
-DCCACHE_EXECUTABLE=OFF
-DENABLE_GIO=ON
-   -DLINGUAS="$(l10n_get_locales)"
+   -DLINGUAS="$(plocale_get_locales)"
-DENABLE_AUDIOCD="$(usex cdda)"
-DENABLE_GSTREAMER="$(usex gstreamer)"
-DENABLE_LIBGPOD="$(usex ipod)"

diff --git a/media-sound/strawberry/strawberry-.ebuild 
b/media-sound/strawberry/strawberry-.ebuild
index 9735f0e9a08..ccbe95c4a8c 100644
--- a/media-sound/strawberry/strawberry-.ebuild
+++ b/media-sound/strawberry/strawberry-.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit cmake flag-o-matic l10n virtualx xdg
+inherit cmake flag-o-matic plocale virtualx xdg
 
 PLOCALES="cs de es fr hu id it ko nb pl ru sv"
 
@@ -86,7 +86,7 @@ REQUIRED_USE="
 "
 
 src_prepare() {
-   l10n_find_plocales_changes "src/translations" "" ".po"
+   plocale_find_changes "src/translations" "" ".po"
 
cmake_src_prepare
 }
@@ -98,7 +98,7 @@ src_configure() {
# avoid automagically enabling of ccache (bug #611010)
-DCCACHE_EXECUTABLE=OFF
-DENABLE_GIO=ON
-   -DLINGUAS="$(l10n_get_locales)"
+   -DLINGUAS="$(plocale_get_locales)"
-DENABLE_AUDIOCD="$(usex cdda)"
-DENABLE_GSTREAMER="$(usex gstreamer)"
-DENABLE_LIBGPOD="$(usex ipod)"



  1   2   >