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 DE79B158041 for ; Fri, 8 Mar 2024 04:29:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E9EDEE29D1; Fri, 8 Mar 2024 04:29:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 CA3CFE29D1 for ; Fri, 8 Mar 2024 04:29:12 +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 E269334302F for ; Fri, 8 Mar 2024 04:29:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 19EC9119 for ; Fri, 8 Mar 2024 04:29:10 +0000 (UTC) From: "Matthew Thode" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Thode" Message-ID: <1709872092.17301a0d3be5a056502f827ed5e699fe5695d6f8.prometheanfire@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/ansible-core/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/ansible-core/ansible-core-2.14.13.ebuild app-admin/ansible-core/ansible-core-2.15.8.ebuild app-admin/ansible-core/ansible-core-2.16.2.ebuild app-admin/ansible-core/ansible-core-2.16.4.ebuild app-admin/ansible-core/ansible-core-9999.ebuild X-VCS-Directories: app-admin/ansible-core/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matthew Thode X-VCS-Revision: 17301a0d3be5a056502f827ed5e699fe5695d6f8 X-VCS-Branch: master Date: Fri, 8 Mar 2024 04:29:10 +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: 6dc608b6-36c8-4317-8447-df549fcfa9f3 X-Archives-Hash: fa37da3823a55b9eb81947b86e507c2d commit: 17301a0d3be5a056502f827ed5e699fe5695d6f8 Author: Matthew Thode gentoo org> AuthorDate: Fri Mar 8 04:28:12 2024 +0000 Commit: Matthew Thode gentoo org> CommitDate: Fri Mar 8 04:28:12 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17301a0d app-admin/ansible-core: switch to pep517 based eclass path Closes: https://bugs.gentoo.org/909858 Signed-off-by: Matthew Thode gentoo.org> app-admin/ansible-core/ansible-core-2.14.13.ebuild | 2 +- app-admin/ansible-core/ansible-core-2.15.8.ebuild | 2 +- app-admin/ansible-core/ansible-core-2.16.2.ebuild | 2 +- app-admin/ansible-core/ansible-core-2.16.4.ebuild | 2 +- app-admin/ansible-core/ansible-core-9999.ebuild | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app-admin/ansible-core/ansible-core-2.14.13.ebuild b/app-admin/ansible-core/ansible-core-2.14.13.ebuild index 756b42643396..113c9aeb164f 100644 --- a/app-admin/ansible-core/ansible-core-2.14.13.ebuild +++ b/app-admin/ansible-core/ansible-core-2.14.13.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{10..11} ) -DISTUTILS_USE_SETUPTOOLS=bdepend +DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 inherit distutils-r1 diff --git a/app-admin/ansible-core/ansible-core-2.15.8.ebuild b/app-admin/ansible-core/ansible-core-2.15.8.ebuild index 3013d29fa0b5..45fc573d4107 100644 --- a/app-admin/ansible-core/ansible-core-2.15.8.ebuild +++ b/app-admin/ansible-core/ansible-core-2.15.8.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{10..11} ) -DISTUTILS_USE_SETUPTOOLS=bdepend +DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 inherit distutils-r1 diff --git a/app-admin/ansible-core/ansible-core-2.16.2.ebuild b/app-admin/ansible-core/ansible-core-2.16.2.ebuild index 3013d29fa0b5..45fc573d4107 100644 --- a/app-admin/ansible-core/ansible-core-2.16.2.ebuild +++ b/app-admin/ansible-core/ansible-core-2.16.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{10..11} ) -DISTUTILS_USE_SETUPTOOLS=bdepend +DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 inherit distutils-r1 diff --git a/app-admin/ansible-core/ansible-core-2.16.4.ebuild b/app-admin/ansible-core/ansible-core-2.16.4.ebuild index 49da7dc95856..51f3b5d36db1 100644 --- a/app-admin/ansible-core/ansible-core-2.16.4.ebuild +++ b/app-admin/ansible-core/ansible-core-2.16.4.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{10..12} ) -DISTUTILS_USE_SETUPTOOLS=bdepend +DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 inherit distutils-r1 diff --git a/app-admin/ansible-core/ansible-core-9999.ebuild b/app-admin/ansible-core/ansible-core-9999.ebuild index 17a70128adeb..a9e25609de36 100644 --- a/app-admin/ansible-core/ansible-core-9999.ebuild +++ b/app-admin/ansible-core/ansible-core-9999.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{10..12} ) -DISTUTILS_USE_SETUPTOOLS=bdepend +DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 inherit distutils-r1