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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 816E213835A for ; Wed, 6 Jan 2021 15:47:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BA69AE0A8B; Wed, 6 Jan 2021 15:47:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A1936E0A8B for ; Wed, 6 Jan 2021 15:47:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 23A62340E7F for ; Wed, 6 Jan 2021 15:47:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B939B32B for ; Wed, 6 Jan 2021 15:47:30 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1609947974.039f4c4e2f0f86027890be41f79614551de260e9.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/udev/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/udev/udev-245.5-r1.ebuild sys-fs/udev/udev-246-r1.ebuild sys-fs/udev/udev-9999.ebuild X-VCS-Directories: sys-fs/udev/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 039f4c4e2f0f86027890be41f79614551de260e9 X-VCS-Branch: master Date: Wed, 6 Jan 2021 15:47:30 +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: 19a13c16-dcc8-44ab-b12d-326989e6cff3 X-Archives-Hash: 5eaf207078b084c49ff67fdce6744618 commit: 039f4c4e2f0f86027890be41f79614551de260e9 Author: Mike Gilbert gentoo org> AuthorDate: Wed Jan 6 15:46:14 2021 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Wed Jan 6 15:46:14 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=039f4c4e sys-fs/udev: use python-any-r1 Closes: https://bugs.gentoo.org/764107 Package-Manager: Portage-3.0.12_p2, Repoman-3.0.2_p26 Signed-off-by: Mike Gilbert gentoo.org> sys-fs/udev/udev-245.5-r1.ebuild | 6 ++++-- sys-fs/udev/udev-246-r1.ebuild | 6 ++++-- sys-fs/udev/udev-9999.ebuild | 6 ++++-- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/sys-fs/udev/udev-245.5-r1.ebuild b/sys-fs/udev/udev-245.5-r1.ebuild index b5b2acbecf9..d08e53f70ae 100644 --- a/sys-fs/udev/udev-245.5-r1.ebuild +++ b/sys-fs/udev/udev-245.5-r1.ebuild @@ -1,9 +1,10 @@ -# Copyright 2003-2020 Gentoo Authors +# Copyright 2003-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 +PYTHON_COMPAT=( python3_{6..9} ) -inherit bash-completion-r1 linux-info meson ninja-utils multilib-minimal toolchain-funcs udev usr-ldscript +inherit bash-completion-r1 linux-info meson ninja-utils multilib-minimal python-any-r1 toolchain-funcs udev usr-ldscript if [[ ${PV} = 9999* ]]; then EGIT_REPO_URI="https://github.com/systemd/systemd.git" @@ -142,6 +143,7 @@ multilib_src_configure() { src_configure() { # Prevent conflicts with i686 cross toolchain, bug 559726 tc-export AR CC NM OBJCOPY RANLIB + python_setup multilib-minimal_src_configure } diff --git a/sys-fs/udev/udev-246-r1.ebuild b/sys-fs/udev/udev-246-r1.ebuild index cb14882292b..15049dfb7c9 100644 --- a/sys-fs/udev/udev-246-r1.ebuild +++ b/sys-fs/udev/udev-246-r1.ebuild @@ -1,9 +1,10 @@ -# Copyright 2003-2020 Gentoo Authors +# Copyright 2003-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 +PYTHON_COMPAT=( python3_{6..9} ) -inherit bash-completion-r1 linux-info meson ninja-utils multilib-minimal toolchain-funcs udev usr-ldscript +inherit bash-completion-r1 linux-info meson ninja-utils multilib-minimal python-any-r1 toolchain-funcs udev usr-ldscript if [[ ${PV} = 9999* ]]; then EGIT_REPO_URI="https://github.com/systemd/systemd.git" @@ -142,6 +143,7 @@ multilib_src_configure() { src_configure() { # Prevent conflicts with i686 cross toolchain, bug 559726 tc-export AR CC NM OBJCOPY RANLIB + python_setup multilib-minimal_src_configure } diff --git a/sys-fs/udev/udev-9999.ebuild b/sys-fs/udev/udev-9999.ebuild index cb14882292b..15049dfb7c9 100644 --- a/sys-fs/udev/udev-9999.ebuild +++ b/sys-fs/udev/udev-9999.ebuild @@ -1,9 +1,10 @@ -# Copyright 2003-2020 Gentoo Authors +# Copyright 2003-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 +PYTHON_COMPAT=( python3_{6..9} ) -inherit bash-completion-r1 linux-info meson ninja-utils multilib-minimal toolchain-funcs udev usr-ldscript +inherit bash-completion-r1 linux-info meson ninja-utils multilib-minimal python-any-r1 toolchain-funcs udev usr-ldscript if [[ ${PV} = 9999* ]]; then EGIT_REPO_URI="https://github.com/systemd/systemd.git" @@ -142,6 +143,7 @@ multilib_src_configure() { src_configure() { # Prevent conflicts with i686 cross toolchain, bug 559726 tc-export AR CC NM OBJCOPY RANLIB + python_setup multilib-minimal_src_configure }