From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1559924-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 A425F158089 for <garchives@archives.gentoo.org>; Wed, 4 Oct 2023 21:45:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CD2142BC0AC; Wed, 4 Oct 2023 21:45:13 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B19762BC025 for <gentoo-commits@lists.gentoo.org>; Wed, 4 Oct 2023 21:45:13 +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 B3CFF335CDF for <gentoo-commits@lists.gentoo.org>; Wed, 4 Oct 2023 21:45:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EBFB5994 for <gentoo-commits@lists.gentoo.org>; Wed, 4 Oct 2023 21:45:10 +0000 (UTC) From: "Conrad Kostecki" <conikost@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, "Conrad Kostecki" <conikost@gentoo.org> Message-ID: <1696455783.5eb0dbec8742e222e85389938d7965ddf71471a7.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/augeas/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/augeas/files/augeas-1.14.0-musl-strerror_r.patch X-VCS-Directories: app-admin/augeas/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 5eb0dbec8742e222e85389938d7965ddf71471a7 X-VCS-Branch: master Date: Wed, 4 Oct 2023 21:45:10 +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: bc933252-0e56-44ab-b1ae-1e445a9b523c X-Archives-Hash: b72af7eb832693f83b7ade2f3405442a commit: 5eb0dbec8742e222e85389938d7965ddf71471a7 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at> AuthorDate: Sat Sep 16 15:53:11 2023 +0000 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org> CommitDate: Wed Oct 4 21:43:03 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5eb0dbec app-admin/augeas: remove unused patch(es) Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/32835 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org> .../files/augeas-1.14.0-musl-strerror_r.patch | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/app-admin/augeas/files/augeas-1.14.0-musl-strerror_r.patch b/app-admin/augeas/files/augeas-1.14.0-musl-strerror_r.patch deleted file mode 100644 index 07cda4c4ae02..000000000000 --- a/app-admin/augeas/files/augeas-1.14.0-musl-strerror_r.patch +++ /dev/null @@ -1,22 +0,0 @@ -https://github.com/hercules-team/augeas/pull/791 - -From 46ecd3542820604603ab4f046f9fb3e6195f60aa Mon Sep 17 00:00:00 2001 -From: Dimitry Andric <dimitry@andric.com> -Date: Thu, 8 Dec 2022 13:08:53 +0100 -Subject: [PATCH] Only use GNU specific strerror_r() API when __GLIBC__ is - defined. - ---- a/src/internal.c -+++ b/src/internal.c -@@ -431,8 +431,8 @@ char *cleanpath(char *path) { - - const char *xstrerror(int errnum, char *buf, size_t len) { - #ifdef HAVE_STRERROR_R --# ifdef __USE_GNU -- /* Annoying linux specific API contract */ -+# if defined(__USE_GNU) && defined(__GLIBC__) -+ /* Annoying GNU specific API contract */ - return strerror_r(errnum, buf, len); - # else - strerror_r(errnum, buf, len); -