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 A6BD5158041 for ; Wed, 6 Mar 2024 17:32:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DB225E29FE; Wed, 6 Mar 2024 17:32:47 +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 C1A3CE29FE for ; Wed, 6 Mar 2024 17:32:47 +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 B4F4334302E for ; Wed, 6 Mar 2024 17:32:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 11CC9E95 for ; Wed, 6 Mar 2024 17:32:45 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1709746358.111d1a02f47edf559e73f391f57565f962a268a3.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/jpipe/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/jpipe/jpipe-0.2.0-r1.ebuild X-VCS-Directories: app-misc/jpipe/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 111d1a02f47edf559e73f391f57565f962a268a3 X-VCS-Branch: master Date: Wed, 6 Mar 2024 17:32:45 +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: 6629e1ec-f2f3-4c9f-9faa-8340f62ac766 X-Archives-Hash: a726d16058ac0b809dbfa74fbbc940ed commit: 111d1a02f47edf559e73f391f57565f962a268a3 Author: Zac Medico gentoo org> AuthorDate: Wed Mar 6 17:29:24 2024 +0000 Commit: Zac Medico gentoo org> CommitDate: Wed Mar 6 17:32:38 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=111d1a02 app-misc/jpipe: Add DISTUTILS_DEPS to BDEPEND Signed-off-by: Zac Medico gentoo.org> app-misc/jpipe/jpipe-0.2.0-r1.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app-misc/jpipe/jpipe-0.2.0-r1.ebuild b/app-misc/jpipe/jpipe-0.2.0-r1.ebuild index 850a03389239..ac4e8aa09cd1 100644 --- a/app-misc/jpipe/jpipe-0.2.0-r1.ebuild +++ b/app-misc/jpipe/jpipe-0.2.0-r1.ebuild @@ -1,10 +1,10 @@ # Copyright 2021-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 GO_OPTIONAL=1 DISTUTILS_OPTIONAL=1 -PYTHON_COMPAT=( python3_{9,10,11} ) +PYTHON_COMPAT=( python3_{10,11} ) DISTUTILS_USE_PEP517=setuptools inherit go-module distutils-r1 pypi @@ -22,7 +22,7 @@ RESTRICT+=" test" IUSE="jpp-symlink jp-symlink python test" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" RESTRICT="!test? ( test )" -BDEPEND=" +BDEPEND="${DISTUTILS_DEPS} !python? ( app-arch/unzip >=dev-lang/go-1.12