From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0BDCB15827B for ; Tue, 12 Aug 2025 18:06:35 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id EAD28340D69 for ; Tue, 12 Aug 2025 18:06:34 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 55A4E11055F; Tue, 12 Aug 2025 18:06:31 +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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 4895B11055F for ; Tue, 12 Aug 2025 18:06:31 +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 BC189340D7C for ; Tue, 12 Aug 2025 18:06:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1B7C1333F for ; Tue, 12 Aug 2025 18:06:29 +0000 (UTC) From: "Michael Mair-Keimberger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Mair-Keimberger" Message-ID: <1755021910.a198962c9567b70ca5463dcab5e9bd87d26ca8c3.mm1ke@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/socklog/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/socklog/files/socklog-2.1.0-headers.patch app-admin/socklog/files/socklog-2.1.0-respect-ar-ranlib.patch X-VCS-Directories: app-admin/socklog/files/ X-VCS-Committer: mm1ke X-VCS-Committer-Name: Michael Mair-Keimberger X-VCS-Revision: a198962c9567b70ca5463dcab5e9bd87d26ca8c3 X-VCS-Branch: master Date: Tue, 12 Aug 2025 18:06:29 +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: abe75785-6788-4bc7-8bbc-1d88913581bb X-Archives-Hash: 1e9ddb4688aa1c9178c6c31b3762d9ec commit: a198962c9567b70ca5463dcab5e9bd87d26ca8c3 Author: Michael Mair-Keimberger gentoo org> AuthorDate: Thu Aug 7 18:02:21 2025 +0000 Commit: Michael Mair-Keimberger gentoo org> CommitDate: Tue Aug 12 18:05:10 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a198962c app-admin/socklog: remove unused patch(es) Signed-off-by: Michael Mair-Keimberger gentoo.org> Part-of: https://github.com/gentoo/gentoo/pull/43423 Signed-off-by: Michael Mair-Keimberger gentoo.org> .../socklog/files/socklog-2.1.0-headers.patch | 54 ---------------------- .../files/socklog-2.1.0-respect-ar-ranlib.patch | 18 -------- 2 files changed, 72 deletions(-) diff --git a/app-admin/socklog/files/socklog-2.1.0-headers.patch b/app-admin/socklog/files/socklog-2.1.0-headers.patch deleted file mode 100644 index b7c10e3da606..000000000000 --- a/app-admin/socklog/files/socklog-2.1.0-headers.patch +++ /dev/null @@ -1,54 +0,0 @@ -add missing headers for misc funcs and types - ---- a/chkshsgr.c -+++ b/chkshsgr.c -@@ -1,10 +1,11 @@ - /* Public domain. */ - - #include -+#include - - int main() - { -- short x[4]; -+ gid_t x[4]; - - x[0] = x[1] = 0; - if (getgroups(1,x) == 0) if (setgroups(1,x) == -1) _exit(1); ---- a/pathexec_run.c -+++ b/pathexec_run.c -@@ -1,5 +1,6 @@ - /* Public domain. */ - -+#include - #include "error.h" - #include "stralloc.h" - #include "str.h" ---- a/prot.c -+++ b/prot.c -@@ -1,12 +1,15 @@ - /* Public domain. */ - -+#include -+#include -+ - #include "hasshsgr.h" - #include "prot.h" - - int prot_gid(int gid) - { - #ifdef HASSHORTSETGROUPS -- short x[2]; -+ gid_t x[2]; - x[0] = gid; x[1] = 73; /* catch errors */ - if (setgroups(1,x) == -1) return -1; - #else ---- a/seek_set.c -+++ b/seek_set.c -@@ -1,5 +1,6 @@ - /* Public domain. */ - -+#include - #include - #include "seek.h" - diff --git a/app-admin/socklog/files/socklog-2.1.0-respect-ar-ranlib.patch b/app-admin/socklog/files/socklog-2.1.0-respect-ar-ranlib.patch deleted file mode 100644 index 6aacbd9b80dd..000000000000 --- a/app-admin/socklog/files/socklog-2.1.0-respect-ar-ranlib.patch +++ /dev/null @@ -1,18 +0,0 @@ ---- a/print-ar.sh -+++ b/print-ar.sh -@@ -1,7 +1,7 @@ - cat warn-auto.sh - echo 'main="$1"; shift' - echo 'rm -f "$main"' --echo 'ar cr "$main" ${1+"$@"}' -+echo '${AR} cr "$main" ${1+"$@"}' - case "`cat systype`" in - sunos-5.*) ;; - unix_sv*) ;; -@@ -10,5 +10,5 @@ - dgux-*) ;; - hp-ux-*) ;; - sco*) ;; -- *) echo 'ranlib "$main"' ;; -+ *) echo '${RANLIB} "$main"' ;; - esac