From 7f9e9ec8d456e48f5b30e4f7c8a4f323f17f509a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Mon, 13 May 2019 12:13:00 +0200 Subject: [PATCH] Correct a misspelling in a documentation --- pcre2-10.33-Fix-typo.patch | 44 ++++++++++++++++++++++++++++++++++++++ pcre2.spec | 8 ++++++- 2 files changed, 51 insertions(+), 1 deletion(-) create mode 100644 pcre2-10.33-Fix-typo.patch diff --git a/pcre2-10.33-Fix-typo.patch b/pcre2-10.33-Fix-typo.patch new file mode 100644 index 0000000..d181c28 --- /dev/null +++ b/pcre2-10.33-Fix-typo.patch @@ -0,0 +1,44 @@ +From 41d88497fd138f8daef7db674f21ca71e5f5822c Mon Sep 17 00:00:00 2001 +From: ph10 +Date: Sat, 11 May 2019 11:43:39 +0000 +Subject: [PATCH] Fix typo. +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +git-svn-id: svn://vcs.exim.org/pcre2/code/trunk@1090 6239d852-aaf2-0410-a92c-79f79f948069 +Signed-off-by: Petr Písař +--- + doc/pcre2unicode.3 | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/doc/pcre2unicode.3 b/doc/pcre2unicode.3 +index 56eb1ea..e444422 100644 +--- a/doc/pcre2unicode.3 ++++ b/doc/pcre2unicode.3 +@@ -1,4 +1,4 @@ +-.TH PCRE2UNICODE 3 "06 March 2019" "PCRE2 10.33" ++.TH PCRE2UNICODE 3 "11 May 2019" "PCRE2 10.33" + .SH NAME + PCRE - Perl-compatible regular expressions (revised API) + .SH "UNICODE AND UTF SUPPORT" +@@ -330,7 +330,7 @@ these code points are excluded by RFC 3629. + .sp + PCRE2_ERROR_UTF8_ERR13 + .sp +-A 4-byte character has a value greater than 0x10fff; these code points are ++A 4-byte character has a value greater than 0x10ffff; these code points are + excluded by RFC 3629. + .sp + PCRE2_ERROR_UTF8_ERR14 +@@ -400,6 +400,6 @@ Cambridge, England. + .rs + .sp + .nf +-Last updated: 06 March 2019 ++Last updated: 11 May 2019 + Copyright (c) 1997-2019 University of Cambridge. + .fi +-- +2.20.1 + diff --git a/pcre2.spec b/pcre2.spec index 0c46ac5..0a16d4b 100644 --- a/pcre2.spec +++ b/pcre2.spec @@ -9,7 +9,7 @@ #%%global rcversion RC1 Name: pcre2 Version: 10.33 -Release: %{?rcversion:0.}2%{?rcversion:.%rcversion}%{?dist} +Release: %{?rcversion:0.}3%{?rcversion:.%rcversion}%{?dist} %global myversion %{version}%{?rcversion:-%rcversion} Summary: Perl-compatible regular expression library # the library: BSD with exceptions @@ -51,6 +51,8 @@ Source: ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/%{?rcversion:T Patch0: pcre2-10.10-Fix-multilib.patch # Validate number of capturing parentheses, in upstream after 10.33 Patch1: pcre2-10.33-Implement-a-check-on-the-number-of-capturing-parenth.patch +# Correct a misspelling in a documentation, in upstream after 10.33 +Patch2: pcre2-10.33-Fix-typo.patch BuildRequires: autoconf BuildRequires: automake BuildRequires: coreutils @@ -128,6 +130,7 @@ Utilities demonstrating PCRE2 capabilities like pcre2grep or pcre2test. %setup -q -n %{name}-%{myversion} %patch0 -p1 %patch1 -p1 +%patch2 -p1 # Because of multilib patch libtoolize --copy --force autoreconf -vif @@ -226,6 +229,9 @@ make %{?_smp_mflags} check VERBOSE=yes %{_mandir}/man1/pcre2test.* %changelog +* Mon May 13 2019 Petr Pisar - 10.33-3 +- Correct a misspelling in a documentation + * Mon May 06 2019 Petr Pisar - 10.33-2 - Validate number of capturing parentheses