From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 780FF138334 for ; Mon, 19 Nov 2018 21:53:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 84BADE0916; Mon, 19 Nov 2018 21:53:01 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 44EF9E0916 for ; Mon, 19 Nov 2018 21:53:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D283B335CC0 for ; Mon, 19 Nov 2018 21:52:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EFA99471 for ; Mon, 19 Nov 2018 21:52:56 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1542664362.6a43158d0f467b46aec9cccc9e2e2af1c4082ea3.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/audacious-plugins/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-plugins/audacious-plugins/audacious-plugins-3.10.ebuild media-plugins/audacious-plugins/audacious-plugins-9999.ebuild media-plugins/audacious-plugins/metadata.xml X-VCS-Directories: media-plugins/audacious-plugins/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 6a43158d0f467b46aec9cccc9e2e2af1c4082ea3 X-VCS-Branch: master Date: Mon, 19 Nov 2018 21:52:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 0d6544c4-e9d2-44c2-8372-2066f0dc27a8 X-Archives-Hash: c8c0646b53acf053ee017b182f3d549d commit: 6a43158d0f467b46aec9cccc9e2e2af1c4082ea3 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Nov 19 21:51:52 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Nov 19 21:52:42 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a43158d media-plugins/audacious-plugins: Add USE qtmedia Making experimental qtaudio backend depending on dev-qt/qtmultimedia optional, maybe this works for LibreSSL users. Bug: https://bugs.gentoo.org/671414 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> media-plugins/audacious-plugins/audacious-plugins-3.10.ebuild | 6 +++--- media-plugins/audacious-plugins/audacious-plugins-9999.ebuild | 7 ++++--- media-plugins/audacious-plugins/metadata.xml | 1 + 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/media-plugins/audacious-plugins/audacious-plugins-3.10.ebuild b/media-plugins/audacious-plugins/audacious-plugins-3.10.ebuild index 2b8878c61b6..85993d766a9 100644 --- a/media-plugins/audacious-plugins/audacious-plugins-3.10.ebuild +++ b/media-plugins/audacious-plugins/audacious-plugins-3.10.ebuild @@ -19,7 +19,7 @@ fi LICENSE="GPL-2" SLOT="0" IUSE="aac +adplug alsa ampache bs2b cdda cue ffmpeg flac fluidsynth http gme jack lame libav libnotify - libsamplerate lirc mms modplug mp3 nls pulseaudio scrobbler sdl sid sndfile soxr speedpitch vorbis wavpack" + libsamplerate lirc mms modplug mp3 nls pulseaudio qtmedia scrobbler sdl sid sndfile soxr speedpitch vorbis wavpack" REQUIRED_USE=" || ( alsa jack pulseaudio sdl ) ampache? ( http )" @@ -48,7 +48,6 @@ RDEPEND=" dev-libs/libxml2:2 dev-qt/qtcore:5 dev-qt/qtgui:5 - dev-qt/qtmultimedia:5 dev-qt/qtwidgets:5 media-libs/adplug ~media-sound/audacious-${PV} @@ -81,6 +80,7 @@ RDEPEND=" modplug? ( media-libs/libmodplug ) mp3? ( >=media-sound/mpg123-1.12.1 ) pulseaudio? ( >=media-sound/pulseaudio-0.9.3 ) + qtmedia? ( dev-qt/qtmultimedia:5 ) scrobbler? ( net-misc/curl ) sdl? ( media-libs/libsdl2[sound] ) sid? ( >=media-libs/libsidplayfp-1.0.0 ) @@ -110,7 +110,6 @@ src_configure() { econf \ --enable-mpris2 \ --enable-qt \ - --enable-qtaudio \ --enable-songchange \ --disable-aosd \ --disable-coreaudio \ @@ -141,6 +140,7 @@ src_configure() { $(use_enable mp3 mpg123) \ $(use_enable nls) \ $(use_enable pulseaudio pulse) \ + $(use_enable qtmedia qtaudio) \ $(use_enable scrobbler scrobbler2) \ $(use_enable sdl sdlout) \ $(use_enable sid) \ diff --git a/media-plugins/audacious-plugins/audacious-plugins-9999.ebuild b/media-plugins/audacious-plugins/audacious-plugins-9999.ebuild index 5d63400ef48..6ade90c9bd8 100644 --- a/media-plugins/audacious-plugins/audacious-plugins-9999.ebuild +++ b/media-plugins/audacious-plugins/audacious-plugins-9999.ebuild @@ -18,11 +18,12 @@ fi LICENSE="GPL-2" SLOT="0" -IUSE="aac +adplug alsa ampache aosd bs2b cdda cue ffmpeg flac fluidsynth hotkeys http gme gtk jack lame libav - libnotify libsamplerate lirc mms modplug mp3 nls pulseaudio qt5 scrobbler sdl sid sndfile soxr speedpitch vorbis wavpack" +IUSE="aac +adplug alsa ampache aosd bs2b cdda cue ffmpeg flac fluidsynth hotkeys http gme gtk jack lame libav libnotify + libsamplerate lirc mms modplug mp3 nls pulseaudio qt5 qtmedia scrobbler sdl sid sndfile soxr speedpitch vorbis wavpack" REQUIRED_USE=" ^^ ( gtk qt5 ) qt5? ( !aosd !hotkeys ) + qtmedia? ( qt5 ) || ( alsa jack pulseaudio sdl ) ampache? ( qt5 http )" @@ -152,7 +153,7 @@ src_configure() { $(use_enable nls) \ $(use_enable pulseaudio pulse) \ $(use_enable qt5 qt) \ - $(use_enable qt5 qtaudio) \ + $(use_enable qtmedia qtaudio) \ $(use_enable scrobbler scrobbler2) \ $(use_enable sdl sdlout) \ $(use_enable sid) \ diff --git a/media-plugins/audacious-plugins/metadata.xml b/media-plugins/audacious-plugins/metadata.xml index 4fc91fc80a7..49372c8715d 100644 --- a/media-plugins/audacious-plugins/metadata.xml +++ b/media-plugins/audacious-plugins/metadata.xml @@ -20,6 +20,7 @@ Link against version 3 of the GIMP Toolkit instead of version 2 (x11-libs/gtk+) Enable support for controlling via hotkeys Support HTTP streams through neon + Enable playback via dev-qt/qtmultimedia Build with scrobbler/LastFM submission support Build with SID (Commodore 64 Audio) support Build with SoX Resampler support