Compare commits

..

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

10 changed files with 21 additions and 90 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.1</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">be49264fce5fd03246325be4c3fabcd8a7c9b8fe</param>
</service>
</servicedata>

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

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

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

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

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

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

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:81e9910d81fe8a2e1d0a9dd9e6fc4b621d2f328ebd7adbd601488756e9da1680
size 24918541

View File

@ -1,55 +1,3 @@
-------------------------------------------------------------------
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.1
mtime: 1732913511
commit: be49264fce5fd03246325be4c3fabcd8a7c9b8fe

View File

@ -23,13 +23,13 @@
%bcond_without fish
%endif
Name: ugrep
Version: 7.1.1
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
@ -46,6 +46,13 @@ Obsoletes: ugrep-indexer < 1.0.0
%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
@ -94,7 +101,6 @@ This package contains the fish completion for ugrep.
%build
%configure \
--disable-avx2 \
--enable-color \
%if 0%{?suse_version} > 1599
--with-bzip3 \