forked from pool/pcre2
Compare commits
114 Commits
Author | SHA256 | Date | |
---|---|---|---|
c52698ff8b | |||
3b9b1b7dfa | |||
d1adc69991 | |||
d4219a4313 | |||
|
6e1cc469a2 | ||
9bb8715d58 | |||
db42edb1ec | |||
56e8c9e0b9 | |||
eda6e77aaf | |||
9b21345dba | |||
eab038632a | |||
aa3cd581a0 | |||
c3226beca3 | |||
fdd3c956b4 | |||
8dff0699c1 | |||
544cbbdca7 | |||
|
66e166238b | ||
50ad1e1192 | |||
997bfce844 | |||
|
fc6b5582dc | ||
fa904b31e1 | |||
bdb7f3b598 | |||
cdc534b7c3 | |||
3c71be3989 | |||
b1f02b75b8 | |||
|
a4939cd5a0 | ||
e51c3c227c | |||
7a28d7c7e9 | |||
8494f85c29 | |||
d52f9a0925 | |||
8ce00436e0 | |||
01d7c2e840 | |||
2ce1d6c684 | |||
6498a03b97 | |||
d9bd3f2d62 | |||
941ba799a9 | |||
c6a25908a1 | |||
610382d070 | |||
afe8a12d8e | |||
5c8e34b2dc | |||
|
d9582260fe | ||
b5710a5500 | |||
5bce2ad071 | |||
|
f1e3c9f9c4 | ||
9730c724ff | |||
0050c12a9e | |||
|
12804f64cf | ||
|
33599ffbfc | ||
68dfdd1ab0 | |||
b8312cc35f | |||
c26865270b | |||
468281a3e5 | |||
f156398dc5 | |||
|
e3941653a9 | ||
670ee199dc | |||
6475653863 | |||
8a40f4b3cb | |||
7063974d7c | |||
57f9138be4 | |||
b0bd878a52 | |||
|
5169eba80a | ||
cb597d2b50 | |||
4bf4e845fa | |||
|
fa2808829f | ||
ba2ae7dfb6 | |||
2fb3ddd403 | |||
|
259a46c9d4 | ||
7a75a770cd | |||
03f9483153 | |||
|
494203d8f4 | ||
696d828606 | |||
07342b47e3 | |||
1dcb7efea3 | |||
f0b3a23044 | |||
d00a08c567 | |||
28a1994060 | |||
c2e5222dbe | |||
25d15229d8 | |||
18f6ffdae0 | |||
|
1f172bbfaa | ||
d7b7edc156 | |||
24848ced87 | |||
564d4dd33d | |||
865d1be480 | |||
36da1ae9c9 | |||
d038c3e571 | |||
10f9ed3570 | |||
5b4c63afa1 | |||
7fa4cd4734 | |||
91ca403a03 | |||
5bc32578f7 | |||
6a0a8d763c | |||
c9faa7dc3e | |||
dafd68180e | |||
df93a79905 | |||
9cde834298 | |||
424d9d5b7f | |||
17bd215024 | |||
ddd66e91e1 | |||
58f49454ed | |||
9c5071edb1 | |||
6a07bf9f8d | |||
4863962eb8 | |||
7d81e084a6 | |||
86a97fdbae | |||
|
ad71043833 | ||
dfbd800b1c | |||
814a971bff | |||
56e6e448e3 | |||
b8b33b314e | |||
4670b98bf0 | |||
279ea78f61 | |||
313b935c59 | |||
e4fc686046 |
File diff suppressed because it is too large
Load Diff
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:d34f02e113cf7193a1ebf2770d3ac527088d485d4e047ed10e5d217c6ef5de96
|
|
||||||
size 1928086
|
|
Binary file not shown.
BIN
pcre2-10.45.tar.bz2
(Stored with Git LFS)
Normal file
BIN
pcre2-10.45.tar.bz2
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
pcre2-10.45.tar.bz2.sig
Normal file
BIN
pcre2-10.45.tar.bz2.sig
Normal file
Binary file not shown.
155
pcre2.changes
155
pcre2.changes
@@ -1,3 +1,42 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 30 15:44:02 UTC 2025 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||||
|
|
||||||
|
- Update to 10.45:
|
||||||
|
* New upstream maintainers (and signing key)
|
||||||
|
* Update Unicode support to UCD 16
|
||||||
|
* Case-insensitive matching of Unicode properties Ll, Lt, and Lu
|
||||||
|
has been changed to match Perl
|
||||||
|
* Case-insensitive matching of backreferences now respects the
|
||||||
|
PCRE2_EXTRA_CASELESS_RESTRICT option
|
||||||
|
* Parsing of the \x escape is stricter, and is no longer parsed
|
||||||
|
as an escape for the NUL character if not followed by '{' or
|
||||||
|
a hexadecimal digit. Use \x00 instead.
|
||||||
|
* Add a new feature called scan substring. This is a type of
|
||||||
|
assertion which matches the content of a capturing block to a
|
||||||
|
sub-pattern.
|
||||||
|
* Add support for UTS#18 compatible character classes
|
||||||
|
* Add support for Perl-style extended character classes
|
||||||
|
* JIT compilation now fails with the new error code
|
||||||
|
PCRE2_ERROR_JIT_UNSUPPORTED for patterns which use features not
|
||||||
|
supported by the JIT compiler.
|
||||||
|
* New options PCRE2_EXTRA_NO_BS0 (disallow \0 as an escape for
|
||||||
|
the NUL character); PCRE2_EXTRA_PYTHON_OCTAL (use Python
|
||||||
|
disambiguation rules for deciding whether \12 is a
|
||||||
|
backreference or an octal escape); PCRE2_EXTRA_NEVER_CALLOUT
|
||||||
|
(disable callout syntax entirely); PCRE2_EXTRA_TURKISH_CASING
|
||||||
|
(use Turkish rules for case-insensitive matching).
|
||||||
|
* Add new API function pcre2_set_optimize() for
|
||||||
|
controlling which optimizations are enabled.
|
||||||
|
* A variety of extensions have been made to pcre2_substitute()
|
||||||
|
and its syntax for replacement strings. These now support:
|
||||||
|
\123 octal escapes; titlecasing \u\L; \1 backreferences; \g<1>
|
||||||
|
and $<NAME> backreferences; $& $` $' and $_; new function
|
||||||
|
pcre2_set_substitute_case_callout() to allow locale-aware case
|
||||||
|
transformation.
|
||||||
|
- drop pcre2-10.44-github-issue-415.patch, included upstream
|
||||||
|
- update license to BSD-3-Clause WITH PCRE2-exception and cascade
|
||||||
|
to subpackages and parts (boo#1240358)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 16 17:37:57 UTC 2024 - Martin Schreiner <martin.schreiner@suse.com>
|
Fri Aug 16 17:37:57 UTC 2024 - Martin Schreiner <martin.schreiner@suse.com>
|
||||||
|
|
||||||
@@ -94,6 +133,20 @@ Thu May 5 06:52:30 UTC 2022 - pgajdos@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Apr 16 10:50:31 UTC 2022 - Andreas Stieger <andreas.stieger@gmx.de>
|
Sat Apr 16 10:50:31 UTC 2022 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||||
|
|
||||||
|
- pcre2 10.40:
|
||||||
|
* Added support for Bidi_Class and a number of binary Unicode
|
||||||
|
properties, including Bidi_Control.
|
||||||
|
* A number of changes to script matching for \p and \P:
|
||||||
|
speed improvements, add the syntax \p{script:xxx} and
|
||||||
|
\p{script_extensions:xxx} (synonyms sc and scx), Changed
|
||||||
|
\p{scriptname} from being the same as \p{sc:scriptname} to
|
||||||
|
being the same as \p{scx:scriptname}, recognize the standard
|
||||||
|
Unicode 4-letter abbreviations for script names, implement
|
||||||
|
Unicode and Perl's "loose matching" rules on property names
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Apr 16 10:50:31 UTC 2022 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||||
|
|
||||||
- pcre2 10.40:
|
- pcre2 10.40:
|
||||||
* Added support for Bidi_Class and a number of binary Unicode
|
* Added support for Bidi_Class and a number of binary Unicode
|
||||||
properties, including Bidi_Control.
|
properties, including Bidi_Control.
|
||||||
@@ -116,6 +169,14 @@ Fri Nov 5 19:01:43 UTC 2021 - Andreas Stieger <andreas.stieger@gmx.de>
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Oct 24 14:41:00 UTC 2021 - Andreas Stieger <andreas.stieger@gmx.de>
|
Sun Oct 24 14:41:00 UTC 2021 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||||
|
|
||||||
|
- pcre2 10.38:
|
||||||
|
* Following Perl's lead, \K is now locked out in lookaround
|
||||||
|
assertions by default, but an option is provided to re-enable
|
||||||
|
the previous behaviour
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 24 14:41:00 UTC 2021 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||||
|
|
||||||
- pcre2 10.38:
|
- pcre2 10.38:
|
||||||
* Following Perl's lead, \K is now locked out in lookaround
|
* Following Perl's lead, \K is now locked out in lookaround
|
||||||
assertions by default, but an option is provided to re-enable
|
assertions by default, but an option is provided to re-enable
|
||||||
@@ -124,6 +185,19 @@ Sun Oct 24 14:41:00 UTC 2021 - Andreas Stieger <andreas.stieger@gmx.de>
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu May 27 12:30:17 UTC 2021 - Andreas Stieger <andreas.stieger@gmx.de>
|
Thu May 27 12:30:17 UTC 2021 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||||
|
|
||||||
|
- pcre2 10.37:
|
||||||
|
* removal of the actual POSIX names regcomp etc. from the POSIX
|
||||||
|
wrapper library because these have caused issues for some
|
||||||
|
applications, replacing pcre2-symbol-clash.patch
|
||||||
|
* fix a hypothetical NULL dereference
|
||||||
|
* fix two bugs related to over-large numbers so the behaviour is
|
||||||
|
now the same as Perl
|
||||||
|
* Fix propagation of \K back from the full pattern recursion
|
||||||
|
* Restore single character repetition optimization in JIT
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu May 27 12:30:17 UTC 2021 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||||
|
|
||||||
- pcre2 10.37:
|
- pcre2 10.37:
|
||||||
* removal of the actual POSIX names regcomp etc. from the POSIX
|
* removal of the actual POSIX names regcomp etc. from the POSIX
|
||||||
wrapper library because these have caused issues for some
|
wrapper library because these have caused issues for some
|
||||||
@@ -271,6 +345,13 @@ Mon Jan 14 16:11:53 CET 2019 - kukuk@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Dec 11 14:31:55 UTC 2018 - Cristian Rodríguez <crrodriguez@opensuse.org>
|
Tue Dec 11 14:31:55 UTC 2018 - Cristian Rodríguez <crrodriguez@opensuse.org>
|
||||||
|
|
||||||
|
- Build with --enable-jit-sealloc option, otherwise when
|
||||||
|
selinux is enabled or systemd memory protections are on,
|
||||||
|
programs will fail to work with execmem violations.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Dec 11 14:31:55 UTC 2018 - Cristian Rodríguez <crrodriguez@opensuse.org>
|
||||||
|
|
||||||
- Build with --enable-jit-sealloc option, otherwise when
|
- Build with --enable-jit-sealloc option, otherwise when
|
||||||
selinux is enabled or systemd memory protections are on,
|
selinux is enabled or systemd memory protections are on,
|
||||||
programs will fail to work with execmem violations.
|
programs will fail to work with execmem violations.
|
||||||
@@ -311,6 +392,42 @@ Sun Feb 18 05:15:03 UTC 2018 - avindra@opensuse.org
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Sep 11 18:14:30 UTC 2017 - jengelh@inai.de
|
Mon Sep 11 18:14:30 UTC 2017 - jengelh@inai.de
|
||||||
|
|
||||||
|
- Update to new upstream release 10.30
|
||||||
|
* The main interpreter, pcre2_match(), has been refactored into
|
||||||
|
a new version that does not use recursive function calls for
|
||||||
|
remembering backtracking positions. The new implementation
|
||||||
|
allows backtracking into recursive group calls in patterns,
|
||||||
|
making it more compatible with Perl. For patterns that have a
|
||||||
|
lot of backtracking, the heap is now used, and there is
|
||||||
|
explicit limit on the amount, settable by
|
||||||
|
pcre2_set_heap_limit(). The "recursion limit" is retained,
|
||||||
|
but is renamed as "depth limit".
|
||||||
|
* The new option PCRE2_ENDANCHORED insists that a pattern match
|
||||||
|
must end at the end of the subject.
|
||||||
|
* The new option PCRE2_EXTENDED_MORE implements Perl's /xx
|
||||||
|
feature, and pcre2test is upgraded to support it. Setting
|
||||||
|
within the pattern by (?xx) is Also supported.
|
||||||
|
* (?n) can be used to set PCRE2_NO_AUTO_CAPTURE, because Perl
|
||||||
|
now has this.
|
||||||
|
* Additional pattern compile options in the compile context are
|
||||||
|
now available: PCRE2_EXTRA_ALLOW_SURROGATE_ESCAPES and
|
||||||
|
PCRE2_EXTRA_BAD_ESCAPE_IS LITERAL.
|
||||||
|
* The newline type PCRE2_NEWLINE_NUL is now available.
|
||||||
|
* The match limit value now also applies to pcre2_dfa_match()
|
||||||
|
as there are patterns that can use up a lot of resources
|
||||||
|
without necessarily recursing very deeply.
|
||||||
|
* Various minor security fixes found by fuzzers:
|
||||||
|
+ bsc#1037165: crash for forward reference in lookbehind with
|
||||||
|
PCRE2_ANCHORED
|
||||||
|
+ CVE-2017-8786: heap-based buffer overflow write in pcre2test
|
||||||
|
(bsc#1036942)
|
||||||
|
+ CVE-2017-7186: DoS by triggering an invalid Unicode property
|
||||||
|
lookup (bsc#1030066)
|
||||||
|
- Switch source URLs to use HTTP.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Sep 11 18:14:30 UTC 2017 - jengelh@inai.de
|
||||||
|
|
||||||
- Update to new upstream release 10.30
|
- Update to new upstream release 10.30
|
||||||
* The main interpreter, pcre2_match(), has been refactored into
|
* The main interpreter, pcre2_match(), has been refactored into
|
||||||
a new version that does not use recursive function calls for
|
a new version that does not use recursive function calls for
|
||||||
@@ -564,6 +681,12 @@ Thu Jun 13 16:20:10 UTC 2013 - jengelh@inai.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jun 8 20:16:10 UTC 2013 - crrodriguez@opensuse.org
|
Sat Jun 8 20:16:10 UTC 2013 - crrodriguez@opensuse.org
|
||||||
|
|
||||||
|
- Ensure the PCRE library and tools are built with large file
|
||||||
|
support in 32 bit archs.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Jun 8 20:16:10 UTC 2013 - crrodriguez@opensuse.org
|
||||||
|
|
||||||
- Ensure the PCRE library and tools are built with large file
|
- Ensure the PCRE library and tools are built with large file
|
||||||
support in 32 bit archs.
|
support in 32 bit archs.
|
||||||
|
|
||||||
@@ -648,6 +771,13 @@ Tue Feb 7 15:10:59 UTC 2012 - crrodriguez@opensuse.org
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 7 04:40:59 UTC 2012 - crrodriguez@opensuse.org
|
Tue Feb 7 04:40:59 UTC 2012 - crrodriguez@opensuse.org
|
||||||
|
|
||||||
|
- Update to PCRE 8.30, upstream SONAME bump, libpcre1
|
||||||
|
- Drop no longer needed ppc patch.
|
||||||
|
- move library back to %{_libdir}
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 7 04:40:59 UTC 2012 - crrodriguez@opensuse.org
|
||||||
|
|
||||||
- Update to PCRE 8.30, upstream SONAME bump, libpcre1
|
- Update to PCRE 8.30, upstream SONAME bump, libpcre1
|
||||||
- Drop no longer needed ppc patch.
|
- Drop no longer needed ppc patch.
|
||||||
- move library back to %{_libdir}
|
- move library back to %{_libdir}
|
||||||
@@ -665,6 +795,14 @@ Wed Nov 16 08:17:40 UTC 2011 - coolo@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 1 16:16:49 UTC 2011 - crrodriguez@opensuse.org
|
Tue Nov 1 16:16:49 UTC 2011 - crrodriguez@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 8.20
|
||||||
|
* too many fixes to list here, see included ChangeLog
|
||||||
|
* replace pcre-visibility patch with the one I submitted to
|
||||||
|
upstream for inclusion.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Nov 1 16:16:49 UTC 2011 - crrodriguez@opensuse.org
|
||||||
|
|
||||||
- Update to version 8.20
|
- Update to version 8.20
|
||||||
* too many fixes to list here, see included ChangeLog
|
* too many fixes to list here, see included ChangeLog
|
||||||
* replace pcre-visibility patch with the one I submitted to
|
* replace pcre-visibility patch with the one I submitted to
|
||||||
@@ -828,10 +966,17 @@ Wed Jan 7 12:34:56 CET 2009 - olh@suse.de
|
|||||||
Fri Sep 12 01:51:31 CEST 2008 - crrodriguez@suse.de
|
Fri Sep 12 01:51:31 CEST 2008 - crrodriguez@suse.de
|
||||||
|
|
||||||
- update to PCRE 7.8
|
- update to PCRE 7.8
|
||||||
* More bug fixes, plus a performance improvement
|
* More bug fixes, plus a performance improvement
|
||||||
in Unicode character property lookup.
|
in Unicode character property lookup.
|
||||||
see complete changelog at http://www.pcre.org/changelog.txt
|
see complete changelog at http://www.pcre.org/changelog.txt
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Sep 12 01:51:31 CEST 2008 - crrodriguez@suse.de
|
||||||
|
|
||||||
|
- update to PCRE 7.8
|
||||||
|
* More bug fixes, plus a performance improvement
|
||||||
|
in Unicode character property lookup.
|
||||||
|
see complete changelog at http://www.pcre.org/changelog.txt
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Apr 10 12:54:45 CEST 2008 - ro@suse.de
|
Thu Apr 10 12:54:45 CEST 2008 - ro@suse.de
|
||||||
@@ -842,6 +987,14 @@ Thu Apr 10 12:54:45 CEST 2008 - ro@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Feb 1 19:43:16 CET 2008 - crrodriguez@suse.de
|
Fri Feb 1 19:43:16 CET 2008 - crrodriguez@suse.de
|
||||||
|
|
||||||
|
- update to version 7.6
|
||||||
|
- The main reason for having this release so soon after 7.5
|
||||||
|
is because it fixes a potential buffer overflow problem in pcre_compile()
|
||||||
|
when run in UTF-8 mode. In addition, the CMake configuration files have been brought up to date.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Feb 1 19:43:16 CET 2008 - crrodriguez@suse.de
|
||||||
|
|
||||||
- update to version 7.6
|
- update to version 7.6
|
||||||
- The main reason for having this release so soon after 7.5
|
- The main reason for having this release so soon after 7.5
|
||||||
is because it fixes a potential buffer overflow problem in pcre_compile()
|
is because it fixes a potential buffer overflow problem in pcre_compile()
|
||||||
|
160
pcre2.keyring
160
pcre2.keyring
@@ -1,39 +1,127 @@
|
|||||||
This is Philip Hazel's public GPG key.
|
|
||||||
|
|
||||||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||||
Version: GnuPG v1.2.0 (SunOS)
|
Comment: Hostname:
|
||||||
|
Version: Hockeypuck 2.2
|
||||||
|
|
||||||
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
|
||||||
nmq1bbjAU4QVuIS9nkk2GrGx5+N6cYMy8JqG
|
wFp/70rgkZ60Jf9OsupQRAsQPvInRNa0+Fd//aojKFzDvAfyTHMH4ellKvfCaxfH
|
||||||
=EHsz
|
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
|
||||||
|
=9Cyu
|
||||||
-----END PGP PUBLIC KEY BLOCK-----
|
-----END PGP PUBLIC KEY BLOCK-----
|
||||||
|
46
pcre2.spec
46
pcre2.spec
@@ -2,7 +2,7 @@
|
|||||||
# spec file for package pcre2
|
# spec file for package pcre2
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2024 SUSE LLC
|
||||||
# Copyright (c) 2024 Andreas Stieger <Andreas.Stieger@gmx.de>
|
# Copyright (c) 2025 Andreas Stieger <Andreas.Stieger@gmx.de>
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -19,20 +19,22 @@
|
|||||||
|
|
||||||
%global _lto_cflags %{_lto_cflags} -ffat-lto-objects
|
%global _lto_cflags %{_lto_cflags} -ffat-lto-objects
|
||||||
Name: pcre2
|
Name: pcre2
|
||||||
Version: 10.44
|
Version: 10.45
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A library for Perl-compatible regular expressions
|
Summary: A library for Perl-compatible regular expressions
|
||||||
License: BSD-3-Clause
|
# code: BSD-3-Clause WITH PCRE2-exception
|
||||||
|
# testdata: Public Domain
|
||||||
|
# JIT-compiler: BSD-2-Clause
|
||||||
|
License: BSD-3-Clause WITH PCRE2-exception AND BSD-2-Clause AND SUSE-Public-Domain
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
URL: https://www.pcre.org
|
URL: https://pcre2project.github.io/pcre2/
|
||||||
Source0: https://github.com/PhilipHazel/pcre2/releases/download/%{name}-%{version}/%{name}-%{version}.tar.bz2
|
Source0: https://github.com/PCRE2Project/pcre2/releases/download/%{name}-%{version}/%{name}-%{version}.tar.bz2
|
||||||
Source2: https://github.com/PhilipHazel/pcre2/releases/download/%{name}-%{version}/%{name}-%{version}.tar.bz2.sig
|
Source2: https://github.com/PCRE2Project/pcre2/releases/download/%{name}-%{version}/%{name}-%{version}.tar.bz2.sig
|
||||||
|
# https://github.com/PCRE2Project/pcre2/blob/master/SECURITY.md
|
||||||
Source3: %{name}.keyring
|
Source3: %{name}.keyring
|
||||||
Source4: baselibs.conf
|
Source4: baselibs.conf
|
||||||
# PATCH-FIX-OPENSUSE tchvatal@suse.cz upstream thinks it is good idea to use rpath, taken from RH
|
# PATCH-FIX-OPENSUSE tchvatal@suse.cz upstream thinks it is good idea to use rpath, taken from RH
|
||||||
Patch1: pcre2-10.10-multilib.patch
|
Patch1: pcre2-10.10-multilib.patch
|
||||||
# PATCH-FIX-UPSTREAM: patch fixes issue #415 on GitHub: Test suite fails when targeting i686, fix taken from PR #418
|
|
||||||
Patch2: pcre2-10.44-github-issue-415.patch
|
|
||||||
BuildRequires: autoconf
|
BuildRequires: autoconf
|
||||||
BuildRequires: automake
|
BuildRequires: automake
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
@@ -52,6 +54,7 @@ API.
|
|||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: A library for Perl-compatible regular expressions
|
Summary: A library for Perl-compatible regular expressions
|
||||||
|
License: BSD-3-Clause WITH PCRE2-exception
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Requires: libpcre2-16-0 = %{version}
|
Requires: libpcre2-16-0 = %{version}
|
||||||
Requires: libpcre2-32-0 = %{version}
|
Requires: libpcre2-32-0 = %{version}
|
||||||
@@ -69,6 +72,7 @@ API.
|
|||||||
|
|
||||||
%package devel-static
|
%package devel-static
|
||||||
Summary: A library for Perl-compatible regular expressions
|
Summary: A library for Perl-compatible regular expressions
|
||||||
|
License: BSD-3-Clause WITH PCRE2-exception AND BSD-2-Clause
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Requires: pcre2-devel = %{version}
|
Requires: pcre2-devel = %{version}
|
||||||
|
|
||||||
@@ -84,6 +88,7 @@ This package contains static versions of the PCRE2 libraries.
|
|||||||
|
|
||||||
%package -n libpcre2-8-0
|
%package -n libpcre2-8-0
|
||||||
Summary: A library for Perl-compatible regular expressions
|
Summary: A library for Perl-compatible regular expressions
|
||||||
|
License: BSD-3-Clause WITH PCRE2-exception AND BSD-2-Clause
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
|
|
||||||
%description -n libpcre2-8-0
|
%description -n libpcre2-8-0
|
||||||
@@ -99,6 +104,7 @@ This PCRE2 library variant supports 8-bit and UTF-8 strings.
|
|||||||
|
|
||||||
%package -n libpcre2-16-0
|
%package -n libpcre2-16-0
|
||||||
Summary: A library for Perl-compatible regular expressions
|
Summary: A library for Perl-compatible regular expressions
|
||||||
|
License: BSD-3-Clause WITH PCRE2-exception AND BSD-2-Clause
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
|
|
||||||
%description -n libpcre2-16-0
|
%description -n libpcre2-16-0
|
||||||
@@ -113,6 +119,7 @@ libpcre2-16 supports 16-bit and UTF-16 strings.
|
|||||||
|
|
||||||
%package -n libpcre2-32-0
|
%package -n libpcre2-32-0
|
||||||
Summary: A library for Perl-compatible regular expressions
|
Summary: A library for Perl-compatible regular expressions
|
||||||
|
License: BSD-3-Clause WITH PCRE2-exception AND BSD-2-Clause
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
|
|
||||||
%description -n libpcre2-32-0
|
%description -n libpcre2-32-0
|
||||||
@@ -127,6 +134,7 @@ libpcre2-32 supports 32-bit and UTF-32 strings.
|
|||||||
|
|
||||||
%package -n libpcre2-posix3
|
%package -n libpcre2-posix3
|
||||||
Summary: A library for Perl-compatible regular expressions
|
Summary: A library for Perl-compatible regular expressions
|
||||||
|
License: BSD-3-Clause WITH PCRE2-exception AND BSD-2-Clause
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
|
|
||||||
%description -n libpcre2-posix3
|
%description -n libpcre2-posix3
|
||||||
@@ -141,6 +149,7 @@ pcre2-posix provides a POSIX-compatible API to the PCRE2 engine.
|
|||||||
|
|
||||||
%package doc
|
%package doc
|
||||||
Summary: A library for Perl-compatible regular expressions
|
Summary: A library for Perl-compatible regular expressions
|
||||||
|
License: BSD-3-Clause WITH PCRE2-exception
|
||||||
Group: Documentation/HTML
|
Group: Documentation/HTML
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
@@ -154,6 +163,7 @@ API.
|
|||||||
|
|
||||||
%package tools
|
%package tools
|
||||||
Summary: A library for Perl-compatible regular expressions
|
Summary: A library for Perl-compatible regular expressions
|
||||||
|
License: BSD-3-Clause WITH PCRE2-exception AND BSD-2-Clause
|
||||||
Group: Productivity/Text/Utilities
|
Group: Productivity/Text/Utilities
|
||||||
Recommends: %{name}-doc
|
Recommends: %{name}-doc
|
||||||
|
|
||||||
@@ -216,37 +226,37 @@ export LANG=POSIX
|
|||||||
%ldconfig_scriptlets -n libpcre2-posix3
|
%ldconfig_scriptlets -n libpcre2-posix3
|
||||||
|
|
||||||
%files -n libpcre2-8-0
|
%files -n libpcre2-8-0
|
||||||
%license COPYING LICENCE
|
%license LICENCE.md
|
||||||
%doc AUTHORS ChangeLog NEWS README
|
%doc AUTHORS.md ChangeLog NEWS README
|
||||||
%{_libdir}/libpcre2-8.so.*
|
%{_libdir}/libpcre2-8.so.*
|
||||||
|
|
||||||
%files -n libpcre2-16-0
|
%files -n libpcre2-16-0
|
||||||
%license LICENCE
|
%license LICENCE.md
|
||||||
%{_libdir}/libpcre2-16.so.*
|
%{_libdir}/libpcre2-16.so.*
|
||||||
|
|
||||||
%files -n libpcre2-32-0
|
%files -n libpcre2-32-0
|
||||||
%license LICENCE
|
%license LICENCE.md
|
||||||
%{_libdir}/libpcre2-32.so.*
|
%{_libdir}/libpcre2-32.so.*
|
||||||
|
|
||||||
%files -n libpcre2-posix3
|
%files -n libpcre2-posix3
|
||||||
%license LICENCE
|
%license LICENCE.md
|
||||||
%{_libdir}/libpcre2-posix.so.*
|
%{_libdir}/libpcre2-posix.so.*
|
||||||
|
|
||||||
%files tools
|
%files tools
|
||||||
%license LICENCE
|
%license LICENCE.md
|
||||||
%{_bindir}/pcre2grep
|
%{_bindir}/pcre2grep
|
||||||
%{_bindir}/pcre2test
|
%{_bindir}/pcre2test
|
||||||
%{_mandir}/man1/pcre2grep.1%{?ext_man}
|
%{_mandir}/man1/pcre2grep.1%{?ext_man}
|
||||||
%{_mandir}/man1/pcre2test.1%{?ext_man}
|
%{_mandir}/man1/pcre2test.1%{?ext_man}
|
||||||
|
|
||||||
%files doc
|
%files doc
|
||||||
%license COPYING LICENCE
|
%license LICENCE.md
|
||||||
%doc AUTHORS ChangeLog NEWS README
|
%doc AUTHORS.md ChangeLog NEWS README
|
||||||
%doc doc/html doc/*.txt
|
%doc doc/html doc/*.txt
|
||||||
%doc %{_defaultdocdir}/pcre2-doc
|
%doc %{_defaultdocdir}/pcre2-doc
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%license LICENCE
|
%license LICENCE.md
|
||||||
%{_bindir}/pcre2-config
|
%{_bindir}/pcre2-config
|
||||||
%{_includedir}/*
|
%{_includedir}/*
|
||||||
%{_libdir}/*.so
|
%{_libdir}/*.so
|
||||||
@@ -258,7 +268,7 @@ export LANG=POSIX
|
|||||||
%{_mandir}/man3/*%{ext_man}
|
%{_mandir}/man3/*%{ext_man}
|
||||||
|
|
||||||
%files devel-static
|
%files devel-static
|
||||||
%license LICENCE
|
%license LICENCE.md
|
||||||
%{_libdir}/*.a
|
%{_libdir}/*.a
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Reference in New Issue
Block a user