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 B0FEF1382C5 for ; Thu, 25 Mar 2021 13:02:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9480E0826; Thu, 25 Mar 2021 13:02:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 B446CE0826 for ; Thu, 25 Mar 2021 13:02:33 +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 BBA48340C19 for ; Thu, 25 Mar 2021 13:02:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 780345FC for ; Thu, 25 Mar 2021 13:02:31 +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: <1616677336.232b26749202346408c3757cc4c79af08208007a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/mit-krb5/, app-crypt/mit-krb5/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/mit-krb5/files/mit-krb5-1.18.2-autoconf-2.70.patch app-crypt/mit-krb5/mit-krb5-1.18.2-r3.ebuild X-VCS-Directories: app-crypt/mit-krb5/files/ app-crypt/mit-krb5/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 232b26749202346408c3757cc4c79af08208007a X-VCS-Branch: master Date: Thu, 25 Mar 2021 13:02:31 +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: 8c5b257b-2dae-4118-a2f4-d22939b89c13 X-Archives-Hash: f15a97f53e5c87ea8e772045bd7d471a commit: 232b26749202346408c3757cc4c79af08208007a Author: Sam James gentoo org> AuthorDate: Thu Mar 25 12:50:15 2021 +0000 Commit: Sam James gentoo org> CommitDate: Thu Mar 25 13:02:16 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=232b2674 app-crypt/mit-krb5: fix build with autoconf 2.70 Thanks-to: Sergei Trofimovich gentoo.org> Closes: https://bugs.gentoo.org/778167 Signed-off-by: Sam James gentoo.org> .../files/mit-krb5-1.18.2-autoconf-2.70.patch | 35 ++++++++++++++++++++++ app-crypt/mit-krb5/mit-krb5-1.18.2-r3.ebuild | 1 + 2 files changed, 36 insertions(+) diff --git a/app-crypt/mit-krb5/files/mit-krb5-1.18.2-autoconf-2.70.patch b/app-crypt/mit-krb5/files/mit-krb5-1.18.2-autoconf-2.70.patch new file mode 100644 index 00000000000..6741c47e0d1 --- /dev/null +++ b/app-crypt/mit-krb5/files/mit-krb5-1.18.2-autoconf-2.70.patch @@ -0,0 +1,35 @@ +https://bugs.gentoo.org/778167 + +From f78edbe30816f049e1360cb6e203fabfdf7b98df Mon Sep 17 00:00:00 2001 +From: Sergei Trofimovich +Date: Fri, 6 Nov 2020 08:14:57 +0000 +Subject: [PATCH] Fix compatibility with upcoming autoconf 2.70 + +Mainline autoconf generates no shell code for AC_CONFIG_AUX_DIR(). +Call it unconditionally to avoid a syntax error. + +[ghudson@mit.edu: rewrote commit message] + +ticket: 8960 (new) +tags: pullup +target_version: 1.18-next +target_version: 1.17-next +--- + src/aclocal.m4 | 6 +----- + 1 file changed, 1 insertion(+), 5 deletions(-) + +--- src/aclocal.m4 ++++ src/aclocal.m4 +@@ -13,11 +13,7 @@ fi + ac_topdir=$srcdir/$ac_reltopdir + ac_config_fragdir=$ac_reltopdir/config + # echo "Looking for $srcdir/$ac_config_fragdir" +-if test -d "$srcdir/$ac_config_fragdir"; then +- AC_CONFIG_AUX_DIR(K5_TOPDIR/config) +-else +- AC_MSG_ERROR([can not find config/ directory in $ac_reltopdir]) +-fi ++AC_CONFIG_AUX_DIR(K5_TOPDIR/config) + ])dnl + dnl + dnl Version info. diff --git a/app-crypt/mit-krb5/mit-krb5-1.18.2-r3.ebuild b/app-crypt/mit-krb5/mit-krb5-1.18.2-r3.ebuild index 15bd4e8cb41..8482b1acd95 100644 --- a/app-crypt/mit-krb5/mit-krb5-1.18.2-r3.ebuild +++ b/app-crypt/mit-krb5/mit-krb5-1.18.2-r3.ebuild @@ -65,6 +65,7 @@ PATCHES=( "${FILESDIR}/${PN}-1.18-libressl.patch" "${FILESDIR}/CVE-2020-28196.patch" "${FILESDIR}/${PN}-1.18.2-krb5-config.patch" + "${FILESDIR}/${PN}-1.18.2-autoconf-2.70.patch" ) MULTILIB_CHOST_TOOLS=(