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 3C13E138359 for ; Sun, 4 Oct 2020 21:17:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DD70EE08FF; Sun, 4 Oct 2020 21:17:35 +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 C876BE08FF for ; Sun, 4 Oct 2020 21:17:35 +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 DBC3C335CFE for ; Sun, 4 Oct 2020 21:17:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 81CED343 for ; Sun, 4 Oct 2020 21:17:33 +0000 (UTC) From: "Michał Górny" 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" Message-ID: <1601846233.c789c4f7beb6eb5ade12bb6e352999c5bc7aec87.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: virtual/udev/ X-VCS-Repository: repo/gentoo X-VCS-Files: virtual/udev/udev-217-r1.ebuild X-VCS-Directories: virtual/udev/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c789c4f7beb6eb5ade12bb6e352999c5bc7aec87 X-VCS-Branch: master Date: Sun, 4 Oct 2020 21:17:33 +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: 662ba25b-b446-4eda-8e97-6216ba63dd78 X-Archives-Hash: 1addf7374ff32509e3a9c68eab5c9fe4 commit: c789c4f7beb6eb5ade12bb6e352999c5bc7aec87 Author: Michał Górny gentoo org> AuthorDate: Sun Oct 4 20:55:33 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Oct 4 21:17:13 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c789c4f7 virtual/udev: Remove USE=systemd The 'systemd' USE flag has been introduced in 2014 to workaround an old bug in Portage. Over 6 years later, even if somebody still used Portage this old, it will not be able to upgrade because of new EAPI. Let's remove it and let people use whichever udev provider they like, including genuine systemd-udevd on top of OpenRC. Signed-off-by: Michał Górny gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/17776 Signed-off-by: Michał Górny gentoo.org> virtual/udev/udev-217-r1.ebuild | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/virtual/udev/udev-217-r1.ebuild b/virtual/udev/udev-217-r1.ebuild new file mode 100644 index 00000000000..afec47f87dd --- /dev/null +++ b/virtual/udev/udev-217-r1.ebuild @@ -0,0 +1,17 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Virtual to select between different udev daemon providers" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="systemd" + +RDEPEND=" + || ( + >=sys-fs/eudev-2.1.1 + >=sys-fs/udev-217 + >=sys-apps/systemd-217 + ) +"