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 69F5115800F for ; Tue, 10 Jan 2023 03:14:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 30DABE07C9; Tue, 10 Jan 2023 03:14:42 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 140E2E07B2 for ; Tue, 10 Jan 2023 03:14:42 +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 18509340E23 for ; Tue, 10 Jan 2023 03:14:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 285C2771 for ; Tue, 10 Jan 2023 03:14:39 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1673320304.6761012cdaa4af21da14c9f5f168544a04d4786d.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/tdb/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/tdb/tdb-1.4.7-r1.ebuild X-VCS-Directories: sys-libs/tdb/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6761012cdaa4af21da14c9f5f168544a04d4786d X-VCS-Branch: master Date: Tue, 10 Jan 2023 03:14:39 +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: 250f8128-07ee-4229-a920-35f3afac248f X-Archives-Hash: 1f76a0a5e824d9ed2f36735371d2a5bd commit: 6761012cdaa4af21da14c9f5f168544a04d4786d Author: Sam James gentoo org> AuthorDate: Tue Jan 10 03:05:04 2023 +0000 Commit: Sam James gentoo org> CommitDate: Tue Jan 10 03:11:44 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6761012c sys-libs/tdb: fix python-single-r1 usage Per https://projects.gentoo.org/python/guide/single.html#a-hybrid-build-time-conditional-runtime. Signed-off-by: Sam James gentoo.org> sys-libs/tdb/tdb-1.4.7-r1.ebuild | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/sys-libs/tdb/tdb-1.4.7-r1.ebuild b/sys-libs/tdb/tdb-1.4.7-r1.ebuild index 791b32c1f197..1b19f142b0eb 100644 --- a/sys-libs/tdb/tdb-1.4.7-r1.ebuild +++ b/sys-libs/tdb/tdb-1.4.7-r1.ebuild @@ -15,16 +15,21 @@ LICENSE="GPL-3" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" IUSE="python" -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" RESTRICT="test" RDEPEND=" dev-libs/libbsd[${MULTILIB_USEDEP}] - python? ( ${PYTHON_DEPS} )" -DEPEND="${RDEPEND} - virtual/libcrypt" -BDEPEND="${PYTHON_DEPS} - app-text/docbook-xml-dtd:4.2" + python? ( ${PYTHON_DEPS} ) +" +DEPEND=" + ${RDEPEND} + virtual/libcrypt +" +BDEPEND=" + ${PYTHON_DEPS} + app-text/docbook-xml-dtd:4.2 +" WAF_BINARY="${S}/buildtools/bin/waf"