pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/textproc/the_silver_searcher
Module Name: pkgsrc
Committed By: leot
Date: Sun Aug 31 12:22:34 UTC 2025
Modified Files:
pkgsrc/textproc/the_silver_searcher: distinfo
pkgsrc/textproc/the_silver_searcher/patches: patch-src_ignore.c
patch-src_main.c patch-src_util.c
Log Message:
the_silver_searcher: reference upstream PR
Patches regarding ctype(3) abuses were stared upstream.
To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 pkgsrc/textproc/the_silver_searcher/distinfo
cvs rdiff -u -r1.1 -r1.2 \
pkgsrc/textproc/the_silver_searcher/patches/patch-src_ignore.c
cvs rdiff -u -r1.3 -r1.4 \
pkgsrc/textproc/the_silver_searcher/patches/patch-src_main.c \
pkgsrc/textproc/the_silver_searcher/patches/patch-src_util.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/textproc/the_silver_searcher/distinfo
diff -u pkgsrc/textproc/the_silver_searcher/distinfo:1.23 pkgsrc/textproc/the_silver_searcher/distinfo:1.24
--- pkgsrc/textproc/the_silver_searcher/distinfo:1.23 Fri Aug 29 12:17:31 2025
+++ pkgsrc/textproc/the_silver_searcher/distinfo Sun Aug 31 12:22:34 2025
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.23 2025/08/29 12:17:31 leot Exp $
+$NetBSD: distinfo,v 1.24 2025/08/31 12:22:34 leot Exp $
BLAKE2s (the_silver_searcher-2.2.0.tar.gz) = cefd4d8ca1dd8c0223208e97c2681555586ac3c449e808a6a0fd09f9e70f9b02
SHA512 (the_silver_searcher-2.2.0.tar.gz) = 89d4e4f7f34c0d57aa880e7c3466f0373b961744a89ad30541e89e2d614322ab46c8044ec458406a117f74b0fea14cd3063fa4e0624a96526aa23eaccd6f1141
Size (the_silver_searcher-2.2.0.tar.gz) = 190585 bytes
-SHA1 (patch-src_ignore.c) = 4b7a3c5d8fe7846a28b181a20e2f301b0dcd4ac6
-SHA1 (patch-src_main.c) = d73e56d4bc527a7c178f30276975d1a3302c73fb
+SHA1 (patch-src_ignore.c) = 6d8a6b91d2d5bf72a3987b47b9d21c305eb80fe7
+SHA1 (patch-src_main.c) = b5fee1395ef63455176401d98bb207a7d6e1157f
SHA1 (patch-src_scandir.c) = 41c0af602ef478db39bd48315b0fb1a644a9db91
-SHA1 (patch-src_util.c) = 223e5b1027c502b2478caf9ef6cd48f4b4ea2611
+SHA1 (patch-src_util.c) = 415d9af7deefe18568264a8cbe8fa80d946801f8
Index: pkgsrc/textproc/the_silver_searcher/patches/patch-src_ignore.c
diff -u pkgsrc/textproc/the_silver_searcher/patches/patch-src_ignore.c:1.1 pkgsrc/textproc/the_silver_searcher/patches/patch-src_ignore.c:1.2
--- pkgsrc/textproc/the_silver_searcher/patches/patch-src_ignore.c:1.1 Fri Aug 29 12:17:50 2025
+++ pkgsrc/textproc/the_silver_searcher/patches/patch-src_ignore.c Sun Aug 31 12:22:34 2025
@@ -1,7 +1,9 @@
-$NetBSD: patch-src_ignore.c,v 1.1 2025/08/29 12:17:50 leot Exp $
+$NetBSD: patch-src_ignore.c,v 1.2 2025/08/31 12:22:34 leot Exp $
Fix ctype(3) abuses.
+Shared upstream via <https://github.com/ggreer/the_silver_searcher/pull/1553>.
+
--- src/ignore.c.orig 2025-08-29 12:08:03.916286916 +0000
+++ src/ignore.c
@@ -105,7 +105,7 @@ void add_ignore_pattern(ignores *ig, con
Index: pkgsrc/textproc/the_silver_searcher/patches/patch-src_main.c
diff -u pkgsrc/textproc/the_silver_searcher/patches/patch-src_main.c:1.3 pkgsrc/textproc/the_silver_searcher/patches/patch-src_main.c:1.4
--- pkgsrc/textproc/the_silver_searcher/patches/patch-src_main.c:1.3 Fri Aug 29 12:17:31 2025
+++ pkgsrc/textproc/the_silver_searcher/patches/patch-src_main.c Sun Aug 31 12:22:34 2025
@@ -1,6 +1,7 @@
-$NetBSD: patch-src_main.c,v 1.3 2025/08/29 12:17:31 leot Exp $
+$NetBSD: patch-src_main.c,v 1.4 2025/08/31 12:22:34 leot Exp $
-- Fix ctype(3) abuses
+- Fix ctype(3) abuses, shared upstream via:
+ <https://github.com/ggreer/the_silver_searcher/pull/1553>
- DragonFly also has a particular 'cpuset' type
--- src/main.c.orig 2018-08-07 06:20:25.000000000 +0000
Index: pkgsrc/textproc/the_silver_searcher/patches/patch-src_util.c
diff -u pkgsrc/textproc/the_silver_searcher/patches/patch-src_util.c:1.3 pkgsrc/textproc/the_silver_searcher/patches/patch-src_util.c:1.4
--- pkgsrc/textproc/the_silver_searcher/patches/patch-src_util.c:1.3 Fri Aug 29 12:17:50 2025
+++ pkgsrc/textproc/the_silver_searcher/patches/patch-src_util.c Sun Aug 31 12:22:34 2025
@@ -1,7 +1,9 @@
-$NetBSD: patch-src_util.c,v 1.3 2025/08/29 12:17:50 leot Exp $
+$NetBSD: patch-src_util.c,v 1.4 2025/08/31 12:22:34 leot Exp $
Fix ctype(3) abuses
+Shared upstream via <https://github.com/ggreer/the_silver_searcher/pull/1553>
+
--- src/util.c.orig 2025-08-29 12:08:47.866239353 +0000
+++ src/util.c
@@ -77,8 +77,8 @@ void generate_alpha_skip(const char *fin
Home |
Main Index |
Thread Index |
Old Index