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 297A71580E0 for ; Wed, 29 Jan 2025 10:28:10 +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 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 0B28134305E for ; Wed, 29 Jan 2025 10:28:10 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 001271103B6; Wed, 29 Jan 2025 10:28:08 +0000 (UTC) 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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id E79471103B6 for ; Wed, 29 Jan 2025 10:28:08 +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 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9FF94342FB6 for ; Wed, 29 Jan 2025 10:28:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B258D1979 for ; Wed, 29 Jan 2025 10:28:06 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1738146482.1dffb25b5ac482d9c90fb022dd4dd9c60b4c390a.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/patchage/patchage-9999.ebuild X-VCS-Directories: media-sound/patchage/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 1dffb25b5ac482d9c90fb022dd4dd9c60b4c390a X-VCS-Branch: master Date: Wed, 29 Jan 2025 10:28:06 +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: b47d3db9-b13d-4dfc-a7f7-185adeedfc17 X-Archives-Hash: e658cdd97af474ce6bb60c9ae0e120f9 commit: 1dffb25b5ac482d9c90fb022dd4dd9c60b4c390a Author: Miroslav Šulc gentoo org> AuthorDate: Wed Jan 29 10:12:10 2025 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Wed Jan 29 10:28:02 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dffb25b media-sound/patchage: fixed test use flag Signed-off-by: Miroslav Šulc gentoo.org> media-sound/patchage/patchage-9999.ebuild | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/media-sound/patchage/patchage-9999.ebuild b/media-sound/patchage/patchage-9999.ebuild index e449d00c7bf0..bde44715ff7f 100644 --- a/media-sound/patchage/patchage-9999.ebuild +++ b/media-sound/patchage/patchage-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -24,6 +24,7 @@ RESTRICT="!test? ( test )" BDEPEND=" virtual/pkgconfig " +# tests also need autoship package but that's not packaged in gentoo RDEPEND="dev-cpp/glibmm:2 dev-cpp/gtkmm:2.4 media-libs/ganv @@ -32,7 +33,12 @@ RDEPEND="dev-cpp/glibmm:2 jack-dbus? ( dev-libs/dbus-glib sys-apps/dbus - )" + ) + test? ( + dev-util/cppcheck + dev-util/reuse + ) +" DEPEND="${RDEPEND} dev-libs/boost >=dev-libs/libfmt-9:=" @@ -44,7 +50,7 @@ src_configure() { $(meson_feature alsa) $(meson_feature jack) $(meson_feature jack-dbus jack_dbus) - $(meson_feature test tests) + $(meson_use test lint) ) meson_src_configure }