Accepting request 458576 from devel:libraries:c_c++
1 OBS-URL: https://build.opensuse.org/request/show/458576 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/pcre2?expand=0&rev=5
This commit is contained in:
parent
9c5071edb1
commit
424d9d5b7f
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b2b44619f4ac6c50ad74c2865fd56807571392496fae1c9ad7a70993d018f416
|
||||
size 1470620
|
Binary file not shown.
3
pcre2-10.23.tar.bz2
Normal file
3
pcre2-10.23.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:dfc79b918771f02d33968bd34a749ad7487fa1014aeb787fad29dd392b78c56e
|
||||
size 1515314
|
BIN
pcre2-10.23.tar.bz2.sig
Normal file
BIN
pcre2-10.23.tar.bz2.sig
Normal file
Binary file not shown.
@ -1,3 +1,28 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 16 21:25:42 UTC 2017 - astieger@suse.com
|
||||
|
||||
- pcre2 10.23:
|
||||
* major re-factoring of the pcre2_compile.c file
|
||||
* Back references are now permitted in lookbehind assertions when
|
||||
there are no duplicated group numbers (that is, (?| has not
|
||||
been used), and, if the reference is by name, there is only one
|
||||
group of that name. The referenced group must, of course be of
|
||||
fixed length.
|
||||
* \g{+<number>} (e.g. \g{+2} ) is now supported. It is a "forward
|
||||
back reference" and can be useful in repetitions
|
||||
(compare \g{-<number>} ). Perl does not recognize this syntax.
|
||||
* pcre2grep now automatically expands its buffer up to a maximum
|
||||
set by --max-buffer-size.
|
||||
* The -t option (grand total) has been added to pcre2grep.
|
||||
* A new function called pcre2_code_copy_with_tables() exists to
|
||||
copy a compiled pattern along with a private copy of the
|
||||
character tables that is uses.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 7 16:19:22 UTC 2017 - dimstar@opensuse.org
|
||||
|
||||
- Explicitly package %{_docdir}/%{name} to fix build with RPM 4.13.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 1 15:24:18 UTC 2016 - astieger@suse.com
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package pcre2
|
||||
#
|
||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: pcre2
|
||||
Version: 10.22
|
||||
Version: 10.23
|
||||
Release: 0
|
||||
Summary: A library for Perl-compatible regular expressions
|
||||
License: BSD-3-Clause
|
||||
@ -237,6 +237,7 @@ make check -j1
|
||||
%files doc
|
||||
%defattr(-,root,root)
|
||||
%doc doc/html doc/*.txt
|
||||
%doc %{_defaultdocdir}/pcre2-doc
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
|
Loading…
Reference in New Issue
Block a user