Accepting request 1128694 from utilities
OBS-URL: https://build.opensuse.org/request/show/1128694 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ugrep?expand=0&rev=58
This commit is contained in:
commit
610062caf2
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:332a3b5fca782d41e424c210bec025d01682190228d62b807352c686073befde
|
|
||||||
size 4595042
|
|
3
ugrep-4.3.4.tar.gz
Normal file
3
ugrep-4.3.4.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:d206a76b3bc103a0c5187f973943cbd8339995a289f62a237a0e658ecb2d0743
|
||||||
|
size 4597527
|
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Nov 25 07:59:11 UTC 2023 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||||
|
|
||||||
|
- update to 4.3.4:
|
||||||
|
* the ug command no longer quits with an error message when no
|
||||||
|
default .ugrep config file was found
|
||||||
|
* improved GNU grep compatibility
|
||||||
|
* Bug fixes for parsing configuration files
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Nov 15 20:52:19 UTC 2023 - Andreas Stieger <andreas.stieger@gmx.de>
|
Wed Nov 15 20:52:19 UTC 2023 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||||
|
|
||||||
|
13
ugrep.spec
13
ugrep.spec
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: ugrep
|
Name: ugrep
|
||||||
Version: 4.3.3
|
Version: 4.3.4
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Universal grep: a feature-rich grep implementation with focus on speed
|
Summary: Universal grep: a feature-rich grep implementation with focus on speed
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
@ -27,13 +27,16 @@ Source: https://github.com/Genivia/ugrep/archive/v%{version}.tar.gz#/%{n
|
|||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkgconfig
|
||||||
BuildRequires: pkgconfig(bzip2)
|
BuildRequires: pkgconfig(bzip2)
|
||||||
BuildRequires: pkgconfig(bzip3)
|
|
||||||
BuildRequires: pkgconfig(libbrotlidec)
|
BuildRequires: pkgconfig(libbrotlidec)
|
||||||
BuildRequires: pkgconfig(liblz4)
|
BuildRequires: pkgconfig(liblz4)
|
||||||
BuildRequires: pkgconfig(liblzma)
|
BuildRequires: pkgconfig(liblzma)
|
||||||
BuildRequires: pkgconfig(libpcre2-8)
|
BuildRequires: pkgconfig(libpcre2-8)
|
||||||
BuildRequires: pkgconfig(libzstd)
|
BuildRequires: pkgconfig(libzstd)
|
||||||
BuildRequires: pkgconfig(zlib)
|
BuildRequires: pkgconfig(zlib)
|
||||||
|
# the bzip3 version seems to old, the tests break with decompression errors
|
||||||
|
%if 0%{?suse_version} >= 1600
|
||||||
|
BuildRequires: pkgconfig(bzip3)
|
||||||
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Ugrep supports an interactive query UI and can search file systems, source
|
Ugrep supports an interactive query UI and can search file systems, source
|
||||||
@ -46,7 +49,11 @@ fuzzy search.
|
|||||||
%build
|
%build
|
||||||
%configure \
|
%configure \
|
||||||
--disable-avx \
|
--disable-avx \
|
||||||
--enable-color
|
--enable-color \
|
||||||
|
%if 0%{?suse_version} >= 1600
|
||||||
|
--with-bzip3 \
|
||||||
|
%endif
|
||||||
|
%{nil}
|
||||||
%make_build
|
%make_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
|
Loading…
Reference in New Issue
Block a user