pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/textproc/ugrep ugrep: updated to 3.8.3



details:   https://anonhg.NetBSD.org/pkgsrc/rev/e914d8ee9b8c
branches:  trunk
changeset: 381191:e914d8ee9b8c
user:      adam <adam%pkgsrc.org@localhost>
date:      Fri Jul 01 19:35:45 2022 +0000

description:
ugrep: updated to 3.8.3

ugrep v3.8.3

New option combination -o (--only-matching) with -ABC context to show the match within NUM columns, with context before and/or after, which visually aids in searching files with long lines; option -o 
with -b or -k now shows results on separate lines; new option --width to truncate long lines to the specified width or the terminal width by default; short ug command now sorts by name by default; 
query TUI ALT-] [ (increase/decrease context) and ALT-} { (increase/decrease fuzziness) keys switched meaning (quicker and more intuitive); new %+ format field used by updated --only-line-number 
option; new --help fuzzy help page; updated man pages; fixed bz2 issue cutting off decompression too soon, fixed tiny lz4 file search error, and other improvements.

diffstat:

 textproc/ugrep/Makefile   |  10 ++++------
 textproc/ugrep/distinfo   |   8 ++++----
 textproc/ugrep/options.mk |  13 +++----------
 3 files changed, 11 insertions(+), 20 deletions(-)

diffs (67 lines):

diff -r c2b6239ee844 -r e914d8ee9b8c textproc/ugrep/Makefile
--- a/textproc/ugrep/Makefile   Fri Jul 01 18:36:45 2022 +0000
+++ b/textproc/ugrep/Makefile   Fri Jul 01 19:35:45 2022 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.39 2022/06/15 08:55:33 adam Exp $
+# $NetBSD: Makefile,v 1.40 2022/07/01 19:35:45 adam Exp $
 
-DISTNAME=      ugrep-3.8.2
+DISTNAME=      ugrep-3.8.3
 CATEGORIES=    textproc
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=Genivia/}
 GITHUB_TAG=    v${PKGVERSION_NOREV}
@@ -15,13 +15,11 @@
 USE_LANGUAGES=         c c++
 USE_TOOLS+=            gmake pkg-config
 GNU_CONFIGURE=         yes
-CONFIGURE_ARGS+=       --with-bzlib
-CONFIGURE_ARGS+=       --with-lz4
-CONFIGURE_ARGS+=       --with-lzma     # lzma & xz files
-CONFIGURE_ARGS+=       --with-zlib
 
 .include "../../archivers/bzip2/buildlink3.mk"
 .include "../../archivers/lz4/buildlink3.mk"
 .include "../../archivers/xz/buildlink3.mk"
+.include "../../archivers/zstd/buildlink3.mk"
+.include "../../devel/pcre2/buildlink3.mk"
 .include "../../devel/zlib/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r c2b6239ee844 -r e914d8ee9b8c textproc/ugrep/distinfo
--- a/textproc/ugrep/distinfo   Fri Jul 01 18:36:45 2022 +0000
+++ b/textproc/ugrep/distinfo   Fri Jul 01 19:35:45 2022 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.37 2022/06/15 08:55:33 adam Exp $
+$NetBSD: distinfo,v 1.38 2022/07/01 19:35:45 adam Exp $
 
-BLAKE2s (ugrep-3.8.2.tar.gz) = 91fa078d9684ac951f67db6a30ab7dacbfd596507e777566f75b3a05a610f55f
-SHA512 (ugrep-3.8.2.tar.gz) = 4c62a771ca1b04c311dcad567e80d09fdaa68122bfdaa9430558b9306d2d743121bf1a37a52d9a1dbe752a7148b1a155d821ef3b4d3cc04ab6765c27308c9348
-Size (ugrep-3.8.2.tar.gz) = 4442354 bytes
+BLAKE2s (ugrep-3.8.3.tar.gz) = 18b53302c78018b63e097bdd04a0d50cf2b9616eb15b6ee4deeecf649eefe938
+SHA512 (ugrep-3.8.3.tar.gz) = 5f0a484283a6e51dcd8bdebc9aeeabde476f7275c6dfd0fcf67287bb56c6c878614dcfc92d1dfa100d4e54116a2e088f39b0270719cd928284db90597fd57323
+Size (ugrep-3.8.3.tar.gz) = 4445071 bytes
diff -r c2b6239ee844 -r e914d8ee9b8c textproc/ugrep/options.mk
--- a/textproc/ugrep/options.mk Fri Jul 01 18:36:45 2022 +0000
+++ b/textproc/ugrep/options.mk Fri Jul 01 19:35:45 2022 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: options.mk,v 1.1 2020/08/01 15:13:59 scole Exp $
+# $NetBSD: options.mk,v 1.2 2022/07/01 19:35:45 adam Exp $
 
 PKG_OPTIONS_VAR=       PKG_OPTIONS.ugrep
-PKG_SUPPORTED_OPTIONS= cpu-optimization boost-libs pcre2
-PKG_SUGGESTED_OPTIONS= cpu-optimization boost-libs pcre2
+PKG_SUPPORTED_OPTIONS= cpu-optimization boost-libs
+PKG_SUGGESTED_OPTIONS= cpu-optimization boost-libs
 
 .include "../../mk/bsd.options.mk"
 
@@ -17,10 +17,3 @@
 CONFIGURE_ARGS+=       --with-boost-regex
 .include "../../devel/boost-libs/buildlink3.mk"
 .endif
-
-.if !empty(PKG_OPTIONS:Mpcre2)
-CONFIGURE_ARGS+=       --with-pcre2
-.include "../../devel/pcre2/buildlink3.mk"
-.else
-CONFIGURE_ARGS+=       --without-pcre2
-.endif



Home | Main Index | Thread Index | Old Index