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 68126158094 for ; Wed, 27 Jul 2022 19:01:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 89D10E113F; Wed, 27 Jul 2022 19:01:25 +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 66A59E113F for ; Wed, 27 Jul 2022 19:01:25 +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 43248340FEC for ; Wed, 27 Jul 2022 19:01:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A5330545 for ; Wed, 27 Jul 2022 19:01:22 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1658948441.8eb00664df5c9d0e935f7c6d65db5d91f7b48e7d.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-servers/varnish/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-servers/varnish/files/varnish-6.5.1-autoconf-2.70.patch X-VCS-Directories: www-servers/varnish/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 8eb00664df5c9d0e935f7c6d65db5d91f7b48e7d X-VCS-Branch: master Date: Wed, 27 Jul 2022 19:01:22 +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: 80e13f9b-c72f-4ce3-8109-79aa0e5ae6af X-Archives-Hash: 7ea82cbaf53facde6b7eb2603e4693cd commit: 8eb00664df5c9d0e935f7c6d65db5d91f7b48e7d Author: Michael Mair-Keimberger levelnine at> AuthorDate: Wed Jul 27 16:31:02 2022 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Wed Jul 27 19:00:41 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8eb00664 www-servers/varnish: remove unused patch Signed-off-by: Michael Mair-Keimberger levelnine.at> Portage 3.0.34 / pkgdev 0.2.1 / pkgcheck 0.10.11 Closes: https://github.com/gentoo/gentoo/pull/26625 Signed-off-by: Conrad Kostecki gentoo.org> .../files/varnish-6.5.1-autoconf-2.70.patch | 50 ---------------------- 1 file changed, 50 deletions(-) diff --git a/www-servers/varnish/files/varnish-6.5.1-autoconf-2.70.patch b/www-servers/varnish/files/varnish-6.5.1-autoconf-2.70.patch deleted file mode 100644 index beb400620fad..000000000000 --- a/www-servers/varnish/files/varnish-6.5.1-autoconf-2.70.patch +++ /dev/null @@ -1,50 +0,0 @@ -From c6f70f8ca126b34a218248109b78a540d3a4989a Mon Sep 17 00:00:00 2001 -From: Simon Stridsberg -Date: Tue, 12 Jan 2021 15:34:33 +0000 -Subject: [PATCH] Fix autoconf error in version 2.70 - -Fixes #3491 ---- - configure.ac | 12 ++++++------ - 1 file changed, 6 insertions(+), 6 deletions(-) - -diff --git a/configure.ac b/configure.ac -index e44b61fffe..3763b3f34d 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -40,9 +40,9 @@ AC_PROG_INSTALL - AC_ARG_WITH([rst2man], - AS_HELP_STRING([--with-rst2man=PATH], [Location of rst2man (auto)]), - [RST2MAN="$withval"], -- AC_CHECK_PROGS(RST2MAN, -+ [AC_CHECK_PROGS(RST2MAN, - [rst2man-3.6 rst2man-3 rst2man rst2man.py], -- [no])) -+ [no])]) - if test "x$RST2MAN" = "xno"; then - AC_MSG_ERROR( - [rst2man is needed to build Varnish, please install python3-docutils.]) -@@ -51,9 +51,9 @@ fi - AC_ARG_WITH([sphinx-build], - AS_HELP_STRING([--with-sphinx-build=PATH], [Location of sphinx-build (auto)]), - [SPHINX="$withval"], -- AC_CHECK_PROGS(SPHINX, -+ [AC_CHECK_PROGS(SPHINX, - [sphinx-build-3.6 sphinx-build-3 sphinx-build], -- [no])) -+ [no])]) - if test "x$SPHINX" = "xno"; then - AC_MSG_ERROR( - [sphinx-build is needed to build Varnish, please install python3-sphinx.]) -@@ -62,9 +62,9 @@ fi - AC_ARG_WITH([rst2html], - AS_HELP_STRING([--with-rst2html=PATH], [Location of rst2html (auto)]), - [RST2HTML="$withval"], -- AC_CHECK_PROGS(RST2HTML, -+ [AC_CHECK_PROGS(RST2HTML, - [rst2html-3.6 rst2html-3 rst2html rst2html.py], -- "no")) -+ "no")]) - - if test "x$RST2HTML" = "xno"; then - AC_MSG_ERROR(