From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1451541-garchives=archives.gentoo.org@lists.gentoo.org>
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 DDA49158021
	for <garchives@archives.gentoo.org>; Sun, 30 Oct 2022 09:40:26 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 204E7E0934;
	Sun, 30 Oct 2022 09:40:26 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.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 CA085E0937
	for <gentoo-commits@lists.gentoo.org>; Sun, 30 Oct 2022 09:40:25 +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))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 0ABDA340F05
	for <gentoo-commits@lists.gentoo.org>; Sun, 30 Oct 2022 09:40:25 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 30B3F6DB
	for <gentoo-commits@lists.gentoo.org>; Sun, 30 Oct 2022 09:40:22 +0000 (UTC)
From: "Sam James" <sam@gentoo.org>
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" <sam@gentoo.org>
Message-ID: <1667122750.339057afef6d53cd247531371bfe9063103572ea.sam@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/rsync/files/
X-VCS-Repository: repo/gentoo
X-VCS-Files: net-misc/rsync/files/rsync-3.2.5-pedantic-errors.patch
X-VCS-Directories: net-misc/rsync/files/
X-VCS-Committer: sam
X-VCS-Committer-Name: Sam James
X-VCS-Revision: 339057afef6d53cd247531371bfe9063103572ea
X-VCS-Branch: master
Date: Sun, 30 Oct 2022 09:40:22 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 3f1cf97c-a46d-4375-abea-adbb52ac54c3
X-Archives-Hash: 4cfcf3a0c6ac1bdd6ca34daaff4829ff

commit:     339057afef6d53cd247531371bfe9063103572ea
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Thu Oct 27 17:18:48 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 30 09:39:10 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=339057af

net-misc/rsync: remove unused patch

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/27982
Signed-off-by: Sam James <sam <AT> gentoo.org>

 .../rsync/files/rsync-3.2.5-pedantic-errors.patch  | 53 ----------------------
 1 file changed, 53 deletions(-)

diff --git a/net-misc/rsync/files/rsync-3.2.5-pedantic-errors.patch b/net-misc/rsync/files/rsync-3.2.5-pedantic-errors.patch
deleted file mode 100644
index 33afbd954a12..000000000000
--- a/net-misc/rsync/files/rsync-3.2.5-pedantic-errors.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-https://github.com/WayneD/rsync/commit/9a3449a3980421f84ac55498ba565bc112b20d6c
-
-In particular, avoids attr configure test failing.
-
-From 9a3449a3980421f84ac55498ba565bc112b20d6c Mon Sep 17 00:00:00 2001
-From: Wayne Davison <wayne@opencoder.net>
-Date: Thu, 18 Aug 2022 17:33:54 -0700
-Subject: [PATCH] Stop enabling -pedantic-errors.
-
---- a/configure.ac
-+++ b/configure.ac
-@@ -1071,21 +1071,6 @@ elif test x"$ac_cv_header_popt_h" != x"yes"; then
-     with_included_popt=yes
- fi
- 
--if test x"$GCC" = x"yes"; then
--    if test x"$with_included_popt" != x"yes"; then
--	# Turn pedantic warnings into errors to ensure an array-init overflow is an error.
--	CFLAGS="$CFLAGS -pedantic-errors"
--    else
--	# Our internal popt code cannot be compiled with pedantic warnings as errors, so try to
--	# turn off pedantic warnings (which will not lose the error for array-init overflow).
--	# Older gcc versions don't understand -Wno-pedantic, so check if --help=warnings lists
--	# -Wpedantic and use that as a flag.
--	case `$CC --help=warnings 2>/dev/null | grep Wpedantic` in
--	    *-Wpedantic*) CFLAGS="$CFLAGS -pedantic-errors -Wno-pedantic" ;;
--	esac
--    fi
--fi
--
- AC_MSG_CHECKING([whether to use included libpopt])
- if test x"$with_included_popt" = x"yes"; then
-     AC_MSG_RESULT($srcdir/popt)
-
---- a/configure.sh
-+++ b/configure.sh
-@@ -9982,14 +9982,14 @@ fi
- if test x"$GCC" = x"yes"; then
-     if test x"$with_included_popt" != x"yes"; then
- 	# Turn pedantic warnings into errors to ensure an array-init overflow is an error.
--	CFLAGS="$CFLAGS -pedantic-errors"
-+	CFLAGS="$CFLAGS "
-     else
- 	# Our internal popt code cannot be compiled with pedantic warnings as errors, so try to
- 	# turn off pedantic warnings (which will not lose the error for array-init overflow).
- 	# Older gcc versions don't understand -Wno-pedantic, so check if --help=warnings lists
- 	# -Wpedantic and use that as a flag.
- 	case `$CC --help=warnings 2>/dev/null | grep Wpedantic` in
--	    *-Wpedantic*) CFLAGS="$CFLAGS -pedantic-errors -Wno-pedantic" ;;
-+	    *-Wpedantic*) CFLAGS="$CFLAGS  -Wno-pedantic" ;;
- 	esac
-     fi
- fi