pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/textproc/ugrep



Module Name:    pkgsrc
Committed By:   adam
Date:           Tue Jun  4 15:14:20 UTC 2024

Modified Files:
        pkgsrc/textproc/ugrep: Makefile distinfo
Added Files:
        pkgsrc/textproc/ugrep/patches: patch-configure

Log Message:
ugrep: updated to 6.1.0

ugrep v6.1

improves option -w to support Unicode as planned
makes [[:alpha:]] and other [::] character classes also match Unicode by default, like \p{Class} already does, unless option -U (--ascii or --binary) is used
Unicode word boundaries \<, \>, \b, \B unless option -U (--ascii or --binary) is used
adds static Linux builds for x64 and AArch64
improves bash and zsh auto-completion usability


To generate a diff of this commit:
cvs rdiff -u -r1.79 -r1.80 pkgsrc/textproc/ugrep/Makefile
cvs rdiff -u -r1.74 -r1.75 pkgsrc/textproc/ugrep/distinfo
cvs rdiff -u -r0 -r1.3 pkgsrc/textproc/ugrep/patches/patch-configure

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/textproc/ugrep/Makefile
diff -u pkgsrc/textproc/ugrep/Makefile:1.79 pkgsrc/textproc/ugrep/Makefile:1.80
--- pkgsrc/textproc/ugrep/Makefile:1.79 Fri May 10 09:20:59 2024
+++ pkgsrc/textproc/ugrep/Makefile      Tue Jun  4 15:14:20 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.79 2024/05/10 09:20:59 adam Exp $
+# $NetBSD: Makefile,v 1.80 2024/06/04 15:14:20 adam Exp $
 
-DISTNAME=      ugrep-6.0.0
+DISTNAME=      ugrep-6.1.0
 CATEGORIES=    textproc
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=Genivia/}
 GITHUB_TAG=    v${PKGVERSION_NOREV}

Index: pkgsrc/textproc/ugrep/distinfo
diff -u pkgsrc/textproc/ugrep/distinfo:1.74 pkgsrc/textproc/ugrep/distinfo:1.75
--- pkgsrc/textproc/ugrep/distinfo:1.74 Fri May 10 16:06:28 2024
+++ pkgsrc/textproc/ugrep/distinfo      Tue Jun  4 15:14:20 2024
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.74 2024/05/10 16:06:28 pho Exp $
+$NetBSD: distinfo,v 1.75 2024/06/04 15:14:20 adam Exp $
 
-BLAKE2s (ugrep-6.0.0.tar.gz) = 9be74fa798a74ff31a7793146170acde77b04d3808434d1750c7b63eb183bba7
-SHA512 (ugrep-6.0.0.tar.gz) = cb67fa088e372d2e59d707366d23dde386102a54fb829d00b17e11469b5e05c44dc2891ba8d157100674e77fbf4267a33d9ab5bd31fa2d1655859b0643cf6930
-Size (ugrep-6.0.0.tar.gz) = 7009582 bytes
+BLAKE2s (ugrep-6.1.0.tar.gz) = 5e0830c37d4b633045560ecc70ee4c7b54af4dcba3e48f3ccaadad321e545bab
+SHA512 (ugrep-6.1.0.tar.gz) = 6b16e397b3395a925b288493a82964c8f4f1063aed735706cc4bb55dc119d5f59cf1d539a179411ddd046754af0d990053ee3ec856cc4b4c88138a2f9e90341f
+Size (ugrep-6.1.0.tar.gz) = 13091376 bytes
+SHA1 (patch-configure) = 59571f5c10d3689d28a44a1338c5e5a236489ba6
 SHA1 (patch-lzma_C_CpuArch.c) = 37ba2265c7a348abedaf5c1eaf95677142cc2b9d

Added files:

Index: pkgsrc/textproc/ugrep/patches/patch-configure
diff -u /dev/null pkgsrc/textproc/ugrep/patches/patch-configure:1.3
--- /dev/null   Tue Jun  4 15:14:20 2024
+++ pkgsrc/textproc/ugrep/patches/patch-configure       Tue Jun  4 15:14:20 2024
@@ -0,0 +1,16 @@
+$NetBSD: patch-configure,v 1.3 2024/06/04 15:14:20 adam Exp $
+
+Portability fix.
+https://github.com/Genivia/ugrep/issues/402
+
+--- configure.orig     2024-06-04 15:10:47.211941639 +0000
++++ configure
+@@ -11057,7 +11057,7 @@ fi
+ 
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --enable-static" >&5
+ printf %s "checking for --enable-static... " >&6; }
+-if test "x$enable_static" == "xyes"; then
++if test "x$enable_static" = "xyes"; then
+   CFLAGS="$CFLAGS -static"
+   LDFLAGS="$LDFLAGS -static"
+   { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5



Home | Main Index | Thread Index | Old Index