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 11442158041 for ; Tue, 7 Sep 2021 17:37:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 52788E0893; Tue, 7 Sep 2021 17:37:46 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 35A0FE0893 for ; Tue, 7 Sep 2021 17:37:46 +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 3AC3B340B53 for ; Tue, 7 Sep 2021 17:37:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C048DBD for ; Tue, 7 Sep 2021 17:37:43 +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: <1631036180.ff6f1dffdf4489aab16697a6b43929472f7ec2ff.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/pciutils/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/pciutils/pciutils-3.7.0-r1.ebuild sys-apps/pciutils/pciutils-3.7.0.ebuild X-VCS-Directories: sys-apps/pciutils/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: ff6f1dffdf4489aab16697a6b43929472f7ec2ff X-VCS-Branch: master Date: Tue, 7 Sep 2021 17:37:43 +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: 151997d4-aaa3-484f-84b3-d56982e863cf X-Archives-Hash: 9237286a05182c970ba9e1264a930b3c commit: ff6f1dffdf4489aab16697a6b43929472f7ec2ff Author: Mike Gilbert gentoo org> AuthorDate: Sun Sep 5 00:33:08 2021 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Tue Sep 7 17:36:20 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff6f1dff sys-apps/pciutils: drop udev static libs Signed-off-by: Mike Gilbert gentoo.org> sys-apps/pciutils/{pciutils-3.7.0.ebuild => pciutils-3.7.0-r1.ebuild} | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys-apps/pciutils/pciutils-3.7.0.ebuild b/sys-apps/pciutils/pciutils-3.7.0-r1.ebuild similarity index 96% rename from sys-apps/pciutils/pciutils-3.7.0.ebuild rename to sys-apps/pciutils/pciutils-3.7.0-r1.ebuild index b36f536b973..972c471fece 100644 --- a/sys-apps/pciutils/pciutils-3.7.0.ebuild +++ b/sys-apps/pciutils/pciutils-3.7.0-r1.ebuild @@ -13,15 +13,16 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" IUSE="dns +kmod static-libs +udev zlib" +REQUIRED_USE="static-libs? ( !udev )" # Have the sub-libs in RDEPEND with [static-libs] since, logically, # our libpci.a depends on libz.a/etc... at runtime. LIB_DEPEND=" zlib? ( >=sys-libs/zlib-1.2.8-r1[static-libs(+),${MULTILIB_USEDEP}] ) - udev? ( >=virtual/libudev-208[static-libs(-),${MULTILIB_USEDEP}] ) " DEPEND=" kmod? ( sys-apps/kmod ) + udev? ( >=virtual/libudev-208[${MULTILIB_USEDEP}] ) static-libs? ( ${LIB_DEPEND} ) !static-libs? ( ${LIB_DEPEND//static-libs([+-]),} ) "