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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9045C158086 for ; Thu, 11 Nov 2021 15:14:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5517D2BC076; Thu, 11 Nov 2021 15:14:20 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 B642C2BC076 for ; Thu, 11 Nov 2021 15:14:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 0561A342FCA for ; Thu, 11 Nov 2021 15:14:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 25842EA for ; Thu, 11 Nov 2021 15:14:15 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1636643633.d1cc7da4b25b56cc5181dd632d2987cc23f73863.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/frr/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/frr/frr-8.1-r1.ebuild net-misc/frr/frr-8.1.ebuild X-VCS-Directories: net-misc/frr/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: d1cc7da4b25b56cc5181dd632d2987cc23f73863 X-VCS-Branch: master Date: Thu, 11 Nov 2021 15:14:15 +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: 6aa5ebe2-59d9-4487-a9c5-3586e3872bd5 X-Archives-Hash: 2e86c038338f37207019cdb238b00486 commit: d1cc7da4b25b56cc5181dd632d2987cc23f73863 Author: Jakov Smolić gentoo org> AuthorDate: Thu Nov 11 15:07:57 2021 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Thu Nov 11 15:13:53 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1cc7da4 net-misc/frr: Update configure options - upstream commit 2ee5fdba022c6fa78ac6ef6af2577f7dfad2ac02 removed `--enable-exampledir` option along with the config example - commit ab140d61cdd04db03ef597f645e601429396d3c8 removed the systemd configure option as support for systemd is enabled through built-in function in FRR without depending on libsystemd Closes: https://bugs.gentoo.org/823083 Signed-off-by: Jakov Smolić gentoo.org> net-misc/frr/{frr-8.1.ebuild => frr-8.1-r1.ebuild} | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/net-misc/frr/frr-8.1.ebuild b/net-misc/frr/frr-8.1-r1.ebuild similarity index 97% rename from net-misc/frr/frr-8.1.ebuild rename to net-misc/frr/frr-8.1-r1.ebuild index 2f581241e3e..1fcbac9b268 100644 --- a/net-misc/frr/frr-8.1.ebuild +++ b/net-misc/frr/frr-8.1-r1.ebuild @@ -15,7 +15,7 @@ S="${WORKDIR}/frr-${P}" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~arm64 ~x86" -IUSE="doc fpm grpc ipv6 kernel_linux nhrp ospfapi pam rpki snmp systemd test" +IUSE="doc fpm grpc ipv6 kernel_linux nhrp ospfapi pam rpki snmp test" REQUIRED_USE="${PYTHON_REQUIRED_USE}" RESTRICT="!test? ( test )" @@ -74,7 +74,6 @@ src_configure() { --localstatedir="${EPREFIX}"/run/frr --with-moduledir="${EPREFIX}"/usr/lib/frr/modules --with-clippy="${BROOT}"/usr/bin/clippy - --enable-exampledir="${EPREFIX}"/usr/share/doc/${PF}/samples --enable-user=frr --enable-group=frr --enable-vty-group=frr @@ -90,7 +89,6 @@ src_configure() { $(usex ospfapi '--enable-ospfclient' '' '' '') $(use_enable rpki) $(use_enable snmp) - $(use_enable systemd) ) econf "${myconf[@]}"