git: 630de6ebabeb - main - textproc/ugrep: Update to 4.4.1
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 20 Dec 2023 17:27:35 UTC
The branch main has been updated by ashish:
URL: https://cgit.FreeBSD.org/ports/commit/?id=630de6ebabebcf1286078ec99c6ec81742f09284
commit 630de6ebabebcf1286078ec99c6ec81742f09284
Author: Ashish SHUKLA <ashish@FreeBSD.org>
AuthorDate: 2023-12-20 17:19:38 +0000
Commit: Ashish SHUKLA <ashish@FreeBSD.org>
CommitDate: 2023-12-20 17:24:23 +0000
textproc/ugrep: Update to 4.4.1
- Remove upstreamed patch
- Remove dependency on boost-regex, unsupported, and not needed when PCRE2
in use [1]
PR: 275837 [1]
Reported by: Mohamed Akram <mohd dot akram at outlook dot com> [1]
---
textproc/ugrep/Makefile | 8 +++-----
textproc/ugrep/distinfo | 6 +++---
textproc/ugrep/files/patch-Makefile.in | 25 -------------------------
3 files changed, 6 insertions(+), 33 deletions(-)
diff --git a/textproc/ugrep/Makefile b/textproc/ugrep/Makefile
index 0b9d3d7c25d7..aeb0a61e5fb4 100644
--- a/textproc/ugrep/Makefile
+++ b/textproc/ugrep/Makefile
@@ -1,6 +1,6 @@
PORTNAME= ugrep
DISTVERSIONPREFIX= v
-DISTVERSION= 4.4.0
+DISTVERSION= 4.4.1
CATEGORIES= textproc
MAINTAINER= ashish@FreeBSD.org
@@ -22,8 +22,7 @@ OPTIONS_DEFAULT_aarch64= NEON
OPTIONS_DEFAULT_amd64= AVX SSE2
GNU_CONFIGURE= yes
-CONFIGURE_ARGS= --with-boost-regex \
- --with-bash-completion-dir=${PREFIX}/etc/bash_completion.d \
+CONFIGURE_ARGS=--with-bash-completion-dir=${PREFIX}/etc/bash_completion.d \
--with-fish-completion-dir=${PREFIX}/share/fish/completions \
--with-zsh-completion-dir=${PREFIX}/share/zsh/site-functions
@@ -32,8 +31,7 @@ bash_CMD= ${SH}
PCRE2_DESC= Use Perl Compatible Regular Expressions v2
PCRE2_CONFIGURE_WITH= pcre2=${LOCALBASE}
-PCRE2_LIB_DEPENDS= libboost_regex.so:devel/boost-libs \
- libpcre2-8.so:devel/pcre2
+PCRE2_LIB_DEPENDS= libpcre2-8.so:devel/pcre2
LZ4_CONFIGURE_WITH= lz4=${LOCALBASE}
LZ4_LIB_DEPENDS= liblz4.so:archivers/liblz4
NEON_DESC= ARM NEON/AArch64 optimizations
diff --git a/textproc/ugrep/distinfo b/textproc/ugrep/distinfo
index 34adfb33593a..1d1a51864022 100644
--- a/textproc/ugrep/distinfo
+++ b/textproc/ugrep/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1702979343
-SHA256 (Genivia-ugrep-v4.4.0_GH0.tar.gz) = 5b8a08743bbf5c8b9d4719211961b8fb427988ffcada6d8c57dfaed9b6d12f7e
-SIZE (Genivia-ugrep-v4.4.0_GH0.tar.gz) = 4472594
+TIMESTAMP = 1703092041
+SHA256 (Genivia-ugrep-v4.4.1_GH0.tar.gz) = e134f5080412dec8023ca8d10433c4860e95557c1ac05140285a203b06ebab61
+SIZE (Genivia-ugrep-v4.4.1_GH0.tar.gz) = 5957895
diff --git a/textproc/ugrep/files/patch-Makefile.in b/textproc/ugrep/files/patch-Makefile.in
deleted file mode 100644
index bcbf445e5d7b..000000000000
--- a/textproc/ugrep/files/patch-Makefile.in
+++ /dev/null
@@ -1,25 +0,0 @@
---- Makefile.in.orig 2023-12-18 21:41:11 UTC
-+++ Makefile.in
-@@ -1024,19 +1024,19 @@ install-data-hook:
- rm -f ug.1 && \
- $(LN_S) ugrep.1 ug.1
- @if [ "x$(bashcompletiondir)" != "x" ]; then \
-- cd $(bashcompletiondir) && \
-+ cd $(DESTDIR)$(bashcompletiondir) && \
- $(LN_S) -f ug ug+ && \
- $(LN_S) -f ug ugrep && \
- $(LN_S) -f ug ugrep+; \
- fi
- @if [ "x$(fishcompletiondir)" != "x" ]; then \
-- cd $(fishcompletiondir) && \
-+ cd $(DESTDIR)$(fishcompletiondir) && \
- sed -e 's/-c ug /-c ug+ /' ug.fish > ug+.fish && \
- sed -e 's/-c ug /-c ugrep /' ug.fish > ugrep.fish && \
- sed -e 's/-c ug /-c ugrep+ /' ug.fish > ugrep+.fish; \
- fi
- @if [ "x$(zshcompletiondir)" != "x" ]; then \
-- cd $(zshcompletiondir) && \
-+ cd $(DESTDIR)$(zshcompletiondir) && \
- sed -e 's/^#compdef ug/#compdef ug+/' _ug > _ug+ && \
- sed -e 's/^#compdef ug/#compdef ugrep/' _ug > _ugrep && \
- sed -e 's/^#compdef ug/#compdef ugrep+/' _ug > _ugrep+; \