From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1437180-garchives=archives.gentoo.org@lists.gentoo.org> 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 843BA158094 for <garchives@archives.gentoo.org>; Sun, 18 Sep 2022 13:46:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CB652E08E5; Sun, 18 Sep 2022 13:46:58 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 pigeon.gentoo.org (Postfix) with ESMTPS id B4EC5E0845 for <gentoo-commits@lists.gentoo.org>; Sun, 18 Sep 2022 13:46:58 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D8B2E340BDD for <gentoo-commits@lists.gentoo.org>; Sun, 18 Sep 2022 13:46:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F03D05E0 for <gentoo-commits@lists.gentoo.org>; Sun, 18 Sep 2022 13:46:54 +0000 (UTC) From: "Michał Górny" <mgorny@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" <mgorny@gentoo.org> Message-ID: <1663508809.82c05422cd6ee027be731263b449c63bef73f6bb.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/recover-broken-vdb/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/recover-broken-vdb/recover-broken-vdb-1.0.0-r1.ebuild app-portage/recover-broken-vdb/recover-broken-vdb-1.0.0.ebuild app-portage/recover-broken-vdb/recover-broken-vdb-9999.ebuild X-VCS-Directories: app-portage/recover-broken-vdb/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 82c05422cd6ee027be731263b449c63bef73f6bb X-VCS-Branch: master Date: Sun, 18 Sep 2022 13:46:54 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 67bff442-8420-4a4a-915a-73ca78e85e36 X-Archives-Hash: d9af159f04a3f68d88c0b27894ac40d4 commit: 82c05422cd6ee027be731263b449c63bef73f6bb Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Sun Sep 18 13:34:46 2022 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Sun Sep 18 13:46:49 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82c05422 app-portage/recover-broken-vdb: Use PEP517 build Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> ...ken-vdb-1.0.0.ebuild => recover-broken-vdb-1.0.0-r1.ebuild} | 8 +++++--- app-portage/recover-broken-vdb/recover-broken-vdb-9999.ebuild | 10 ++++++---- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/app-portage/recover-broken-vdb/recover-broken-vdb-1.0.0.ebuild b/app-portage/recover-broken-vdb/recover-broken-vdb-1.0.0-r1.ebuild similarity index 85% rename from app-portage/recover-broken-vdb/recover-broken-vdb-1.0.0.ebuild rename to app-portage/recover-broken-vdb/recover-broken-vdb-1.0.0-r1.ebuild index 1aa783fa8e1b..090365bd9c15 100644 --- a/app-portage/recover-broken-vdb/recover-broken-vdb-1.0.0.ebuild +++ b/app-portage/recover-broken-vdb/recover-broken-vdb-1.0.0-r1.ebuild @@ -4,7 +4,7 @@ EAPI=7 DISTUTILS_SINGLE_IMPL=1 -DISTUTILS_USE_SETUPTOOLS=pyproject.toml +DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 @@ -24,6 +24,8 @@ SLOT="0" # Require latest version of pax-utils to avoid users breaking their systems again # The tool itself works fine with older versions -RDEPEND=">=app-misc/pax-utils-1.3.3 +RDEPEND=" + >=app-misc/pax-utils-1.3.3 sys-apps/file - $(python_gen_cond_dep 'sys-apps/portage[${PYTHON_USEDEP}]')" + $(python_gen_cond_dep 'sys-apps/portage[${PYTHON_USEDEP}]') +" diff --git a/app-portage/recover-broken-vdb/recover-broken-vdb-9999.ebuild b/app-portage/recover-broken-vdb/recover-broken-vdb-9999.ebuild index 6bf736875162..6577b6801c54 100644 --- a/app-portage/recover-broken-vdb/recover-broken-vdb-9999.ebuild +++ b/app-portage/recover-broken-vdb/recover-broken-vdb-9999.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 DISTUTILS_SINGLE_IMPL=1 -DISTUTILS_USE_SETUPTOOLS=pyproject.toml +DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 @@ -24,6 +24,8 @@ SLOT="0" # Require latest version of pax-utils to avoid users breaking their systems again # The tool itself works fine with older versions -RDEPEND=">=app-misc/pax-utils-1.3.3 +RDEPEND=" + >=app-misc/pax-utils-1.3.3 sys-apps/file - $(python_gen_cond_dep 'sys-apps/portage[${PYTHON_USEDEP}]')" + $(python_gen_cond_dep 'sys-apps/portage[${PYTHON_USEDEP}]') +"