Compare commits

..

No commits in common. "factory" and "factory" have entirely different histories.

7 changed files with 19 additions and 109 deletions

View File

@ -1,22 +0,0 @@
<services>
<service name="obs_scm" mode="manual">
<param name="url">https://github.com/Genivia/ugrep.git</param>
<param name="scm">git</param>
<param name="changesgenerate">enable</param>
<param name="filename">ugrep</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="revision">v7.1.3</param>
<param name="versionrewrite-pattern">v(.*)</param>
<param name="versionrewrite-replacement">\1</param>
</service>
<service name="set_version" mode="manual"/>
<service name="tar" mode="buildtime">
<!-- throw away binaries -->
<param name="exclude">bin/win32</param>
<param name="exclude">bin/win64</param>
</service>
<service name="recompress" mode="buildtime">
<param name="file">*.tar</param>
<param name="compression">xz</param>
</service>
</services>

View File

@ -1,6 +0,0 @@
<servicedata>
<service name="tar_scm">
<param name="url">https://github.com/Genivia/ugrep.git</param>
<param name="changesrevision">f07d4a610dc43e5b27a4ffdfd32b66c9e34e7ac8</param>
</service>
</servicedata>

3
ugrep-6.5.0.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:eec1ddcd17dcc017987caad916ed245adef5ccc151837eefae5f86047fae0d99
size 7055035

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7055302ef2b212cb790e14a1f56c7226b1a304a8b36b90d75e32741b77674000
size 24919053

View File

@ -1,72 +1,3 @@
-------------------------------------------------------------------
Sat Jan 11 10:40:31 UTC 2025 - Andreas Stieger <andreas.stieger@gmx.de>
- Update to version 7.1.3:
* fix a problem with option -i (--ignore-case) that in rare and
specific circumstances may not match all of the specified
alternate sub-patterns
-------------------------------------------------------------------
Wed Jan 1 18:57:59 UTC 2025 - Andreas Stieger <andreas.stieger@gmx.de>
- Update to version 7.1.2:
* support the latest bzip3 library upgrades
* permit su search of "unreadable" files
* do not exit with code 2 when some files can't be decompressed
- enable bzip3 support for Leap
-------------------------------------------------------------------
Thu Dec 5 16:03:18 UTC 2024 - Andreas Stieger <andreas.stieger@gmx.de>
- Update to version 7.1.1:
* fix negative character classes when option -i or --ignore-case
is used and make ugrep closely emulate GNU grep's character
class behavior when options -i and -P are used
* appease -Woverload-virtual and -Wshadow warnings
-------------------------------------------------------------------
Sat Nov 23 10:07:23 UTC 2024 - Andreas Stieger <andreas.stieger@gmx.de>
- Update to version 7.1.0:
* add TUI glob editor syntax highlighting
* bin/ug(|rep)+: Let the helper script work if no helper is
available
-------------------------------------------------------------------
Sun Nov 17 17:55:42 UTC 2024 - Andreas Stieger <andreas.stieger@gmx.de>
- Update to version 7.0.4:
* TUI fixes for other platforms
- remove Windows binaries from src rpm; switch to source service
-------------------------------------------------------------------
Tue Nov 12 21:10:44 UTC 2024 - Andreas Stieger <andreas.stieger@gmx.de>
- update to 7.0.3:
* fixes for other platforms
* usability improvements
-------------------------------------------------------------------
Mon Oct 28 20:35:07 UTC 2024 - Andreas Stieger <andreas.stieger@gmx.de>
- update to 7.0.2:
* rewritten SIMD acceleration logic and the search algorithm
selection decision logic to speed up pattern matching (the
actual speedup depends on the type of regex patterns specified)
* improved regex anchors and word boundary matching speed and
support
* fix option --xml pathnames with special characters, which are
unlikely to occur in pathnames, but aren't strictly forbidden
* updated option --hexdump with -ABC context hex lines before and
after a match
* the TUI now also uses the VISUAL environment variable if PAGER
is not set
-------------------------------------------------------------------
Wed Oct 9 05:24:34 UTC 2024 - jun wang <jgwang@suse.com>
- disable AVX2/AVX512BW CPU extensions because of bsc#1222752
-------------------------------------------------------------------
Sat Aug 24 07:09:34 UTC 2024 - Andreas Stieger <andreas.stieger@gmx.de>

View File

@ -1,4 +0,0 @@
name: ugrep
version: 7.1.3
mtime: 1736450648
commit: f07d4a610dc43e5b27a4ffdfd32b66c9e34e7ac8

View File

@ -2,7 +2,7 @@
# spec file for package ugrep
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2025 Andreas Stieger <Andreas.Stieger@gmx.de>
# Copyright (c) 2024 Andreas Stieger <Andreas.Stieger@gmx.de>
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -23,18 +23,17 @@
%bcond_without fish
%endif
Name: ugrep
Version: 7.1.3
Version: 6.5.0
Release: 0
Summary: Universal grep: a feature-rich grep implementation with focus on speed
License: BSD-3-Clause
Group: Productivity/File utilities
URL: https://github.com/Genivia/ugrep
Source: %{name}-%{version}.tar.xz
Source: https://github.com/Genivia/ugrep/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildRequires: fdupes
BuildRequires: gcc-c++
BuildRequires: pkgconfig
BuildRequires: pkgconfig(bzip2)
BuildRequires: pkgconfig(bzip3)
BuildRequires: pkgconfig(libbrotlidec)
BuildRequires: pkgconfig(liblz4)
BuildRequires: pkgconfig(liblzma)
@ -43,6 +42,17 @@ BuildRequires: pkgconfig(libzstd)
BuildRequires: pkgconfig(zlib)
Provides: ugrep-indexer = 1.0.0
Obsoletes: ugrep-indexer < 1.0.0
# the bzip3 version seems to old, the tests break with decompression errors
%if 0%{?suse_version} > 1599
BuildRequires: pkgconfig(bzip3)
%endif
# lib/matcher_avx2.cpp is selected based on a runtime AVX2 check
# lib/matcher_avx512bw.cpp is selected based on runtime AVX512BW check
# Make OBS select an x86_64-v3 build host to reproducibly enable usage
# without cross-compiling
%ifarch x86_64
#!BuildConstraint: hardware:cpu:flag x86-64-v3
%endif
%description
Ugrep supports an interactive query UI and can search file systems, source
@ -91,9 +101,10 @@ This package contains the fish completion for ugrep.
%build
%configure \
--disable-avx2 \
--enable-color \
%if 0%{?suse_version} > 1599
--with-bzip3 \
%endif
%if !%{with fish}
--with-fish-completion-dir=no \
%endif