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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 56E4815800F for ; Fri, 17 Feb 2023 19:54:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E49FE077F; Fri, 17 Feb 2023 19:54:53 +0000 (UTC) Received: from smtp.gentoo.org (dev.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 38EE2E077F for ; Fri, 17 Feb 2023 19:54:52 +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 45AED340F6C for ; Fri, 17 Feb 2023 19:54:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6ECBC75 for ; Fri, 17 Feb 2023 19:54:49 +0000 (UTC) From: "Adrian Schollmeyer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Adrian Schollmeyer" Message-ID: <1676663625.507a0962d873305aeeb39b0d0cd07f529fbf3f82.nex+b-g-o@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-sound/jacktrip/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-sound/jacktrip/jacktrip-1.7.0.ebuild media-sound/jacktrip/jacktrip-1.7.1.ebuild X-VCS-Directories: media-sound/jacktrip/ X-VCS-Committer: nex+b-g-o X-VCS-Committer-Name: Adrian Schollmeyer X-VCS-Revision: 507a0962d873305aeeb39b0d0cd07f529fbf3f82 X-VCS-Branch: dev Date: Fri, 17 Feb 2023 19:54:49 +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: fcb14617-b86e-41aa-981b-7fa448925903 X-Archives-Hash: 7c72e1640ed96c5159a82084aceddbdb commit: 507a0962d873305aeeb39b0d0cd07f529fbf3f82 Author: Adrian Schollmeyer nexadn de> AuthorDate: Fri Feb 17 19:53:45 2023 +0000 Commit: Adrian Schollmeyer nexadn de> CommitDate: Fri Feb 17 19:53:45 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=507a0962 media-sound/jacktrip: add missing BDEPEND Two python deps are required during configure to generate a manifest file with a python script. Bug: https://bugs.gentoo.org/890284 Signed-off-by: Adrian Schollmeyer nexadn.de> media-sound/jacktrip/jacktrip-1.7.0.ebuild | 15 ++++++++++++++- media-sound/jacktrip/jacktrip-1.7.1.ebuild | 15 ++++++++++++++- 2 files changed, 28 insertions(+), 2 deletions(-) diff --git a/media-sound/jacktrip/jacktrip-1.7.0.ebuild b/media-sound/jacktrip/jacktrip-1.7.0.ebuild index f753e329b..1e22baadc 100644 --- a/media-sound/jacktrip/jacktrip-1.7.0.ebuild +++ b/media-sound/jacktrip/jacktrip-1.7.0.ebuild @@ -3,7 +3,8 @@ EAPI=8 -inherit meson +PYTHON_COMPAT=( python3_{9..11} ) +inherit python-any-r1 meson DESCRIPTION="Send JACK audio over a network" HOMEPAGE="https://jacktrip.github.io/jacktrip/ https://github.com/jacktrip/jacktrip" @@ -43,6 +44,18 @@ DEPEND=" ) " RDEPEND="${DEPEND}" +# shellcheck disable=SC2016 +BDEPEND=" + $(python_gen_any_dep ' + dev-python/jinja[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + ') +" + +python_check_deps() { + python_has_version "dev-python/jinja[${PYTHON_USEDEP}]" && \ + python_has_version "dev-python/pyyaml[${PYTHON_USEDEP}]" +} src_configure() { local emesonargs=( diff --git a/media-sound/jacktrip/jacktrip-1.7.1.ebuild b/media-sound/jacktrip/jacktrip-1.7.1.ebuild index f753e329b..1e22baadc 100644 --- a/media-sound/jacktrip/jacktrip-1.7.1.ebuild +++ b/media-sound/jacktrip/jacktrip-1.7.1.ebuild @@ -3,7 +3,8 @@ EAPI=8 -inherit meson +PYTHON_COMPAT=( python3_{9..11} ) +inherit python-any-r1 meson DESCRIPTION="Send JACK audio over a network" HOMEPAGE="https://jacktrip.github.io/jacktrip/ https://github.com/jacktrip/jacktrip" @@ -43,6 +44,18 @@ DEPEND=" ) " RDEPEND="${DEPEND}" +# shellcheck disable=SC2016 +BDEPEND=" + $(python_gen_any_dep ' + dev-python/jinja[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + ') +" + +python_check_deps() { + python_has_version "dev-python/jinja[${PYTHON_USEDEP}]" && \ + python_has_version "dev-python/pyyaml[${PYTHON_USEDEP}]" +} src_configure() { local emesonargs=(