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 06F7E158083 for ; Sat, 14 Sep 2024 06:24:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EF65CE29A5; Sat, 14 Sep 2024 06:24:41 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 DA749E29A5 for ; Sat, 14 Sep 2024 06:24:41 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1C751335D75 for ; Sat, 14 Sep 2024 06:24:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7493427EC for ; Sat, 14 Sep 2024 06:24:39 +0000 (UTC) From: "Petr Vaněk" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Petr Vaněk" Message-ID: <1726295043.c84bc11cde7ab92c655b48a4b10bcaf570afea00.arkamar@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/mrouted/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/mrouted/metadata.xml net-misc/mrouted/mrouted-4.5.ebuild X-VCS-Directories: net-misc/mrouted/ X-VCS-Committer: arkamar X-VCS-Committer-Name: Petr Vaněk X-VCS-Revision: c84bc11cde7ab92c655b48a4b10bcaf570afea00 X-VCS-Branch: master Date: Sat, 14 Sep 2024 06:24:39 +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: 27b74c0f-2126-4af7-90dd-0ac11f7431f5 X-Archives-Hash: 4702e25c8fd569d85209cb861875a76f commit: c84bc11cde7ab92c655b48a4b10bcaf570afea00 Author: Petr Vaněk gentoo org> AuthorDate: Sat Sep 14 06:10:27 2024 +0000 Commit: Petr Vaněk gentoo org> CommitDate: Sat Sep 14 06:24:03 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c84bc11c net-misc/mrouted: remove USE=rsrr Upstream removed RSRR feature in version 4.4, see [1]. [1] https://github.com/troglobit/mrouted/commit/e3269bc986ba4a9c9466fefa3b21cfecc31a9192 Closes: https://bugs.gentoo.org/828900 Signed-off-by: Petr Vaněk gentoo.org> net-misc/mrouted/metadata.xml | 3 --- net-misc/mrouted/mrouted-4.5.ebuild | 5 ++--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/net-misc/mrouted/metadata.xml b/net-misc/mrouted/metadata.xml index 49e44a47135d..cae4749bf1c9 100644 --- a/net-misc/mrouted/metadata.xml +++ b/net-misc/mrouted/metadata.xml @@ -2,9 +2,6 @@ - - Enable Routing Support for Resource Reservations, for RSVP - troglobit/mrouted diff --git a/net-misc/mrouted/mrouted-4.5.ebuild b/net-misc/mrouted/mrouted-4.5.ebuild index 82e719972457..dd6d1e4f2e8b 100644 --- a/net-misc/mrouted/mrouted-4.5.ebuild +++ b/net-misc/mrouted/mrouted-4.5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -12,7 +12,7 @@ SRC_URI="https://github.com/troglobit/${PN}/releases/download/${PV}/${P}.tar.gz" LICENSE="Stanford GPL-2" SLOT="0" KEYWORDS="amd64 ppc x86" -IUSE="rsrr test" +IUSE="test" # Needs unshare RESTRICT="!test? ( test ) test" @@ -26,7 +26,6 @@ src_configure() { tc-export CC CXX econf \ - $(usev rsrr --enable-rsrr) \ $(use_enable test) }