From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 493CB159B26 for ; Wed, 11 Jun 2025 01:57:24 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 2FAB0340DB0 for ; Wed, 11 Jun 2025 01:57:24 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 280931137ED; Wed, 11 Jun 2025 01:57:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 1B1881137ED for ; Wed, 11 Jun 2025 01:57:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C2B64340D77 for ; Wed, 11 Jun 2025 01:57:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D138A2709 for ; Tue, 10 Jun 2025 20:00:09 +0000 (UTC) From: "Brayan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brayan" Message-ID: <1749585399.9197795c31736b353465cf5ccd0d14d6adecc5e2.this.brayan@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-sound/qbitmplayer/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-sound/qbitmplayer/qbitmplayer-3.2.0-r1.ebuild media-sound/qbitmplayer/qbitmplayer-3.2.0.ebuild X-VCS-Directories: media-sound/qbitmplayer/ X-VCS-Committer: this.brayan X-VCS-Committer-Name: Brayan X-VCS-Revision: 9197795c31736b353465cf5ccd0d14d6adecc5e2 X-VCS-Branch: dev Date: Tue, 10 Jun 2025 20:00:09 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5589d557-8455-4549-a9ad-b95c5f032308 X-Archives-Hash: 78944192955b2b78eb8d53544c746fe0 commit: 9197795c31736b353465cf5ccd0d14d6adecc5e2 Author: Brayan M. Salazar proton me> AuthorDate: Tue Jun 10 19:51:51 2025 +0000 Commit: Brayan proton me> CommitDate: Tue Jun 10 19:56:39 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9197795c media-sound/qbitmplayer: Simplify USE validation. Fixed bug: The 'network' USE flag requires that 'dbus' is enabled as well. Signed-off-by: Brayan M. Salazar proton.me> ...er-3.2.0.ebuild => qbitmplayer-3.2.0-r1.ebuild} | 32 ++++++---------------- 1 file changed, 8 insertions(+), 24 deletions(-) diff --git a/media-sound/qbitmplayer/qbitmplayer-3.2.0.ebuild b/media-sound/qbitmplayer/qbitmplayer-3.2.0-r1.ebuild similarity index 75% rename from media-sound/qbitmplayer/qbitmplayer-3.2.0.ebuild rename to media-sound/qbitmplayer/qbitmplayer-3.2.0-r1.ebuild index c0c0988946..30fbb87d01 100644 --- a/media-sound/qbitmplayer/qbitmplayer-3.2.0.ebuild +++ b/media-sound/qbitmplayer/qbitmplayer-3.2.0-r1.ebuild @@ -29,6 +29,10 @@ BDEPEND=" virtual/pkgconfig " +REQUIRED_USE=" + network? ( dbus ) +" + src_prepare() { cmake_src_prepare } @@ -36,31 +40,11 @@ src_prepare() { src_configure() { local mycmakeargs=( -DQT_VERSION_MAJOR=6 + -DENABLE_IPC="$(usex dbus)" + -DENABLE_NOTIFICATIONS="$(usex libnotify)" + -DENABLE_VIDEO_PLAYER="$(usex video)" + -DSINGLE_INSTANCE="$(usex network)" ) - if use dbus; then - mycmakeargs+=( - -DENABLE_IPC=1 - ) - fi - - if use libnotify; then - mycmakeargs+=( - -DENABLE_NOTIFICATIONS=1 - ) - fi - - if use network; then - mycmakeargs+=( - -DSINGLE_INSTANCE=1 - ) - fi - - if use video; then - mycmakeargs+=( - -DENABLE_VIDEO_PLAYER=1 - ) - fi - cmake_src_configure }