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 0C29113933E for ; Thu, 22 Jul 2021 22:45:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0BB7BE09E2; Thu, 22 Jul 2021 22:45:14 +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 D6644E09E2 for ; Thu, 22 Jul 2021 22:45:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 6926D33BE68 for ; Thu, 22 Jul 2021 22:45:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E16BF5C4 for ; Thu, 22 Jul 2021 22:45:10 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1626993818.d66ade0a03bd836b9671451d25a9558e5fef4f97.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: virtual/libudev/ X-VCS-Repository: repo/gentoo X-VCS-Files: virtual/libudev/libudev-249.ebuild X-VCS-Directories: virtual/libudev/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: d66ade0a03bd836b9671451d25a9558e5fef4f97 X-VCS-Branch: master Date: Thu, 22 Jul 2021 22:45: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: e23a5a6d-7538-4eb4-9fd0-0661214feb93 X-Archives-Hash: 2a05e3bfe1e19a87ec145222a4ae738e commit: d66ade0a03bd836b9671451d25a9558e5fef4f97 Author: William Hubbs gentoo org> AuthorDate: Thu Jul 22 22:43:18 2021 +0000 Commit: William Hubbs gentoo org> CommitDate: Thu Jul 22 22:43:38 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d66ade0a virtual/libudev: 249 bump to prefer sys-fs/udev over sys-fs/eudev This is being done because sys-fs/eudev is unmaintained (its author would prefer it go away, but it remains for non-glibc targets like musl) and sys-fs/udev doesn't require systemd - it is standalone. Package-Manager: Portage-3.0.20, Repoman-3.0.2 Signed-off-by: William Hubbs gentoo.org> virtual/libudev/libudev-249.ebuild | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/virtual/libudev/libudev-249.ebuild b/virtual/libudev/libudev-249.ebuild new file mode 100644 index 00000000000..09ed219eae0 --- /dev/null +++ b/virtual/libudev/libudev-249.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit multilib-build + +DESCRIPTION="Virtual for libudev providers" + +SLOT="0/1" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="static-libs systemd" + +RDEPEND=" + !systemd? ( || ( + >=sys-fs/udev-249:0/0[${MULTILIB_USEDEP},static-libs(-)?] + >=sys-fs/eudev-3.2.9:0/0[${MULTILIB_USEDEP},static-libs(-)?] + ) ) + systemd? ( >=sys-apps/systemd-249:0/2[${MULTILIB_USEDEP},static-libs(-)?] ) +"