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 6A27C15ACFB for ; Tue, 25 Apr 2023 23:17:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8EEB7E079C; Tue, 25 Apr 2023 23:17:56 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 72CC5E079C for ; Tue, 25 Apr 2023 23:17:56 +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 804C8340E57 for ; Tue, 25 Apr 2023 23:17:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D71FF8AC for ; Tue, 25 Apr 2023 23:17:53 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1682463540.1e36eee944d232ea058b0b75f42b2dfe3cbb4827.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-vpn/tinc/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-vpn/tinc/tinc-1.1_pre18.ebuild X-VCS-Directories: net-vpn/tinc/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1e36eee944d232ea058b0b75f42b2dfe3cbb4827 X-VCS-Branch: master Date: Tue, 25 Apr 2023 23:17:53 +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: f3bc2862-f2c6-485b-8819-6fef97ce0517 X-Archives-Hash: 99cb48110791186bc4ddeebd447f5ef1 commit: 1e36eee944d232ea058b0b75f42b2dfe3cbb4827 Author: Sam James gentoo org> AuthorDate: Tue Apr 25 22:59:00 2023 +0000 Commit: Sam James gentoo org> CommitDate: Tue Apr 25 22:59:00 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e36eee9 net-vpn/tinc: avoid maintainer mode Signed-off-by: Sam James gentoo.org> net-vpn/tinc/tinc-1.1_pre18.ebuild | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/net-vpn/tinc/tinc-1.1_pre18.ebuild b/net-vpn/tinc/tinc-1.1_pre18.ebuild index 58f8b912f8d8..a1f6b4969f72 100644 --- a/net-vpn/tinc/tinc-1.1_pre18.ebuild +++ b/net-vpn/tinc/tinc-1.1_pre18.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -38,13 +38,14 @@ PATCHES+=( src_prepare() { default - eautoreconf # Fix the static (failing UNKNOWN) version in the autoconf # NOTE: When updating the ebuild, make sure to check that this # line number hasn't changed in the upstream sources. - sed -i "6d" configure.ac - sed -i "6iAC_INIT([tinc], ${PVR})" configure.ac + sed -i "6d" configure.ac || die + sed -i "6iAC_INIT([tinc], ${PVR})" configure.ac || die + + eautoreconf } src_configure() {