20e6076
# This is stable release:
9f376ed
#%%global rcversion RC1
cvsdist 7a5caf1
Name: pcre
0f2b23b
Version: 8.36
6e32159
Release: %{?rcversion:0.}5%{?rcversion:.%rcversion}%{?dist}
9ab62f8
%global myversion %{version}%{?rcversion:-%rcversion}
cvsdist 7a5caf1
Summary: Perl-compatible regular expression library
abbcae7
Group: System Environment/Libraries
abbcae7
License: BSD
cvsdist 7a5caf1
URL: http://www.pcre.org/
9ab62f8
Source: ftp://ftp.csx.cam.ac.uk/pub/software/programming/%{name}/%{?rcversion:Testing/}%{name}-%{myversion}.tar.bz2
20e6076
# Upstream thinks RPATH is good idea.
20e6076
Patch0: pcre-8.21-multilib.patch
d4dd586
# Refused by upstream, bug #675477
f764357
Patch1: pcre-8.32-refused_spelling_terminated.patch
ed53e29
# Reset non-matched groups within capturing group up to forced match,
ed53e29
# bug #1161587, in upstream after 8.36
ed53e29
Patch2: pcre-8.36-Fix-bug-when-there-are-unset-groups-prior-to-ACCEPT-.patch
b2b6fa4
# Fix unused memory usage on zero-repeat assertion condition, bug #1165626,
7f27922
# CVE-2014-8964, in upstream after 8.36
b2b6fa4
Patch3: pcre-8.36-Fix-zero-repeat-assertion-condition-bug.patch
32c1b38
# Fix computing size of JIT read-only data, bug #1206131, upstream bug #1597,
32c1b38
# in upstream after 8.36
32c1b38
Patch4: pcre-8.36-Remove-computing-the-JIT-read-only-data-size-in-adva.patch
6e32159
# Fix computing size for pattern with a negated special calss in on-UCP mode,
6e32159
# bug #1210383, in upstream after 8.36
6e32159
Patch5: pcre-8.36-Fix-memory-bug-for-S-V-H-compile.patch
07d112e
# Fix compilation of a pattern with mutual recursion nested inside other group,
07d112e
# bug #1210393, in upstream after 8.36
07d112e
Patch6: pcre-8.36-Fix-mutual-recursion-inside-other-groups-stack-overf.patch
53a7f77
BuildRequires: readline-devel
8a6e171
# New libtool to get rid of rpath
8a6e171
BuildRequires: autoconf, automake, libtool
cvsdist 7a5caf1
cvsdist 7a5caf1
%description
cvsdist 7a5caf1
Perl-compatible regular expression library.
cvsdist 7a5caf1
PCRE has its own native API, but a set of "wrapper" functions that are based on
cvsdist 7a5caf1
the POSIX API are also supplied in the library libpcreposix. Note that this
cvsdist 7a5caf1
just provides a POSIX calling interface to PCRE: the regular expressions
cvsdist 7a5caf1
themselves still follow Perl syntax and semantics. The header file
cvsdist 7a5caf1
for the POSIX-style functions is called pcreposix.h.
cvsdist 7a5caf1
cvsdist 7a5caf1
%package devel
cvsdist 7a5caf1
Summary: Development files for %{name}
cvsdist 7a5caf1
Group: Development/Libraries
204ca4e
Requires: %{name}%{?_isa} = %{version}-%{release}
cvsdist 7a5caf1
cvsdist 7a5caf1
%description devel
121c371
Development files (Headers, libraries for dynamic linking, etc) for %{name}.
121c371
121c371
%package static
121c371
Summary: Static library for %{name}
121c371
Group: Development/Libraries
204ca4e
Requires: %{name}-devel%{_isa} = %{version}-%{release}
121c371
121c371
%description static
121c371
Library for static linking for %{name}.
cvsdist 7a5caf1
c1e7548
%package tools
c1e7548
Summary: Auxiliary utilities for %{name}
c1e7548
Group: Development/Tools
204ca4e
Requires: %{name}%{_isa} = %{version}-%{release}
c1e7548
c1e7548
%description tools
c1e7548
Utilities demonstrating PCRE capabilities like pcregrep or pcretest.
c1e7548
cvsdist 7a5caf1
%prep
9ab62f8
%setup -q -n %{name}-%{myversion}
8a6e171
# Get rid of rpath
4b8f02a
%patch0 -p1 -b .multilib
c74eea5
%patch1 -p1 -b .terminated_typos
ed53e29
%patch2 -p1 -b .reset_groups
b2b6fa4
%patch3 -p1 -b .zero_repeat_assertion
32c1b38
%patch4 -p1 -b .jit_size
6e32159
%patch5 -p1 -b .size_special_class
07d112e
%patch6 -p1 -b .mutual_recursion
90bc5d6
# Because of rpath patch
42c1e62
libtoolize --copy --force && autoreconf -vif
8a6e171
# One contributor's name is non-UTF-8
8a6e171
for F in ChangeLog; do
8a6e171
    iconv -f latin1 -t utf8 "$F" >"${F}.utf8"
8a6e171
    touch --reference "$F" "${F}.utf8"
8a6e171
    mv "${F}.utf8" "$F"
8a6e171
done
cvsdist 7a5caf1
cvsdist 7a5caf1
%build
531a682
# There is a strict-aliasing problem on PPC64, bug #881232
531a682
%ifarch ppc64
531a682
%global optflags %{optflags} -fno-strict-aliasing
531a682
%endif
dfafe2b
%configure \
0f2b23b
%ifarch s390 s390x sparc64 sparcv9
dfafe2b
    --disable-jit \
dfafe2b
%else
dfafe2b
    --enable-jit \
dfafe2b
%endif
2bd0b1b
    --enable-pcretest-libreadline --enable-utf --enable-unicode-properties \
48b0511
    --enable-pcre8 --enable-pcre16 --enable-pcre32
3ecca5c
make %{?_smp_mflags}
cvsdist 7a5caf1
cvsdist 7a5caf1
%install
121c371
make install DESTDIR=$RPM_BUILD_ROOT
abbcae7
# Get rid of unneeded *.la files
121c371
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
121c371
# These are handled by %%doc in %%files
121c371
rm -rf $RPM_BUILD_ROOT%{_docdir}/pcre
cvsdist 7a5caf1
3ecca5c
%check
e73104a
%ifarch s390 s390x ppc
171d290
# larger stack is needed on s390, ppc
dfafe2b
ulimit -s 10240
dfafe2b
%endif
a23a177
make %{?_smp_mflags} check VERBOSE=yes
3ecca5c
cvsdist 7a5caf1
%post -p /sbin/ldconfig
cvsdist 7a5caf1
cvsdist 7a5caf1
%postun -p /sbin/ldconfig
cvsdist 7a5caf1
cvsdist 7a5caf1
%files
cvsdist 7a5caf1
%{_libdir}/*.so.*
467d026
%{!?_licensedir:%global license %%doc}
467d026
%license COPYING LICENCE
467d026
%doc AUTHORS NEWS README ChangeLog
cvsdist 7a5caf1
cvsdist 7a5caf1
%files devel
cvsdist 7a5caf1
%{_libdir}/*.so
7ae822c
%{_libdir}/pkgconfig/*
7ae822c
%{_includedir}/*.h
c1e7548
%{_mandir}/man1/pcre-config.*
cvsdist 7a5caf1
%{_mandir}/man3/*
cvsdist 7a5caf1
%{_bindir}/pcre-config
121c371
%doc doc/*.txt doc/html
121c371
%doc HACKING
9f4f958
121c371
%files static
121c371
%{_libdir}/*.a
467d026
%{!?_licensedir:%global license %%doc}
467d026
%license COPYING LICENCE
cvsdist 7a5caf1
c1e7548
%files tools
c1e7548
%{_bindir}/pcregrep
c1e7548
%{_bindir}/pcretest
c1e7548
%{_mandir}/man1/pcregrep.*
c1e7548
%{_mandir}/man1/pcretest.*
c1e7548
cvsdist 7a5caf1
%changelog
6e32159
* Thu Apr 09 2015 Petr Pisar <ppisar@redhat.com> - 8.36-5
6e32159
- Fix computing size for pattern with a negated special calss in on-UCP mode
6e32159
  (bug #1210383)
07d112e
- Fix compilation of a pattern with mutual recursion nested inside other group
07d112e
  (bug #1210393)
6e32159
32c1b38
* Thu Mar 26 2015 Petr Pisar <ppisar@redhat.com> - 8.36-4
32c1b38
- Fix computing size of JIT read-only data (bug #1206131)
32c1b38
def92f0
* Thu Feb 19 2015 David Tardon <dtardon@redhat.com> - 8.36-3.1
def92f0
- rebuild for C++ stdlib API changes in gcc5
def92f0
b2b6fa4
* Thu Nov 20 2014 Petr Pisar <ppisar@redhat.com> - 8.36-3
7f27922
- Fix CVE-2014-8964 (unused memory usage on zero-repeat assertion condition)
7f27922
  (bug #1165626)
b2b6fa4
ed53e29
* Fri Nov 07 2014 Petr Pisar <ppisar@redhat.com> - 8.36-2
ed53e29
- Reset non-matched groups within capturing group up to forced match
ed53e29
  (bug #1161587)
ed53e29
9f376ed
* Tue Oct 07 2014 Petr Pisar <ppisar@redhat.com> - 8.36-1
9f376ed
- 8.36 bump
9f376ed
0f2b23b
* Tue Sep 16 2014 Petr Pisar <ppisar@redhat.com> - 8.36-0.1.RC1
0f2b23b
- 8.36 RC1 bump
0f2b23b
- Enable JIT on aarch64
0f2b23b
e169761
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.35-6.1
e169761
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
e169761
2eeee2e
* Mon Aug 11 2014 Petr Pisar <ppisar@redhat.com> - 8.35-6
2eeee2e
- Fix compile-time loop for recursive reference within a group with an
2eeee2e
  indefinite repeat (bug #1128577)
2eeee2e
467d026
* Wed Jul 30 2014 Tom Callaway <spot@fedoraproject.org> - 8.35-5
467d026
- fix license handling
467d026
5d1fed8
* Mon Jul 14 2014 Petr Pisar <ppisar@redhat.com> - 8.35-4
5d1fed8
- Fix empty-matching possessive zero-repeat groups in interpreted mode
5d1fed8
  (bug #1119241)
2e292a7
- Fix memory leaks in pcregrep (bug #1119257)
01cdfc2
- Fix compiler crash for zero-repeated groups with a recursive back reference
01cdfc2
  (bug #1119272)
5d1fed8
f241b20
* Thu Jun 19 2014 Petr Pisar <ppisar@redhat.com> - 8.35-3
f241b20
- Fix bad starting data when char with more than one other case follows
f241b20
  circumflex in multiline UTF mode (bug #1110620)
fc2aeac
- Fix not including VT in starting characters for \s if pcre_study() is used
fc2aeac
  (bug #1111045)
33a4abf
- Fix character class with a literal quotation (bug #1111054)
f241b20
dd3bcf4
* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.35-2.1
dd3bcf4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
dd3bcf4
d8b4c48
* Fri Apr 11 2014 Petr Pisar <ppisar@redhat.com> - 8.35-2
d8b4c48
- Do no rely on wrapping signed integer while parsing {min,max} expression
d8b4c48
  (bug #1086630)
d8b4c48
78f069a
* Wed Apr 09 2014 Petr Pisar <ppisar@redhat.com> - 8.35-1
78f069a
- 8.35 bump
78f069a
- Run tests in parallel
78f069a
4096da0
* Fri Mar 14 2014 Petr Pisar <ppisar@redhat.com> - 8.35-0.1.RC1
4096da0
- 8.35-RC1 bump
4096da0
e4dd0bc
* Tue Mar 11 2014 Petr Pisar <ppisar@redhat.com> - 8.34-4
e4dd0bc
- Fix max/min quantifiers in ungreedy mode (bug #1074500)
e4dd0bc
e73104a
* Tue Jan 21 2014 Dan Horák <dan[at]danny.cz> - 8.34-3
e73104a
- enlarge stack for tests on s390x
e73104a
f5ba251
* Thu Jan 09 2014 Petr Pisar <ppisar@redhat.com> - 8.34-2
f5ba251
- Fix jitted range check (bug #1048097)
f5ba251
a379af4
* Mon Dec 16 2013 Petr Pisar <ppisar@redhat.com> - 8.34-1
a379af4
- 8.34 bump
a379af4
531a682
* Wed Oct 16 2013 Petr Pisar <ppisar@redhat.com> - 8.33-3
531a682
- Disable strict-aliasing on PPC64 (bug #881232)
531a682
c8c282c
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.33-2.1
c8c282c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
c8c282c
64f746b
* Mon Jun 03 2013 Petr Pisar <ppisar@redhat.com> - 8.33-2
64f746b
- Disable unsupported JIT on aarch64 (bug #969693)
64f746b
088e05d
* Thu May 30 2013 Petr Pisar <ppisar@redhat.com> - 8.33-1
088e05d
- 8.33 bump
088e05d
eade8ee
* Thu May 16 2013 Petr Pisar <ppisar@redhat.com> - 8.33-0.3.RC1
eade8ee
- Fix passing too small output vector to pcre_dfa_exec (bug #963284)
eade8ee
81e9d1c
* Mon May 13 2013 Petr Pisar <ppisar@redhat.com> - 8.33-0.2.RC1
81e9d1c
- Fix bad handling of empty lines in pcregrep tool (bug #961789)
1d38ecb
- Fix possible pcretest crash with a data line longer than 65536 bytes
81e9d1c
fc76cf5
* Thu May 02 2013 Petr Pisar <ppisar@redhat.com> - 8.33-0.1.RC1
fc76cf5
- 8.33-RC1 bump
fc76cf5
c40d02b
* Mon Jan 28 2013 Petr Pisar <ppisar@redhat.com> - 8.32-4
7511b33
- Fix forward search in JIT when link size is 3 or greater
25b5600
- Fix buffer over-read in UTF-16 and UTF-32 modes with JIT
c40d02b
42c1e62
* Fri Jan 25 2013 Peter Robinson <pbrobinson@fedoraproject.org> 8.32-3
42c1e62
- Adjust autoreconf to fix FTBFS on F-19
42c1e62
204ca4e
* Mon Jan 07 2013 Petr Pisar <ppisar@redhat.com> - 8.32-2
204ca4e
- Make inter-subpackage dependencies architecture specific (bug #892187)
204ca4e
dd87ff0
* Fri Nov 30 2012 Petr Pisar <ppisar@redhat.com> - 8.32-1
dd87ff0
- 8.32 bump
dd87ff0
399c938
* Thu Nov 29 2012 Petr Pisar <ppisar@redhat.com> - 8.32-0.2.RC1
399c938
- Inter-depend sub-packages to prevent from mixing different versions
399c938
f764357
* Tue Nov 13 2012 Petr Pisar <ppisar@redhat.com> - 8.32-0.1.RC1
f764357
- 8.32-RC1 bump
f764357
ae4fe51
* Mon Sep 03 2012 Petr Pisar <ppisar@redhat.com> - 8.31-2
ae4fe51
- Set re_nsub in regcomp() properly (bug #853990)
ae4fe51
6edcc76
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.31-1.1
6edcc76
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
6edcc76
fce5201
* Fri Jul 13 2012 Petr Pisar <ppisar@redhat.com> - 8.31-1
fce5201
- 8.31 bump
fce5201
99e3650
* Tue Jun 05 2012 Petr Pisar <ppisar@redhat.com> - 8.31-0.1.RC1
99e3650
- 8.31-RC1 bump
99e3650
20cb18b
* Sat May 12 2012 Tom Callaway <spot@fedoraproject.org> - 8.30-7
20cb18b
- disable jit for sparcv9 and sparc64
20cb18b
7830040
* Fri May 11 2012 Petr Pisar <ppisar@redhat.com> - 8.30-6
7830040
- Fix spelling in manual pages (bug #820978)
7830040
83bd5c5
* Mon Apr 23 2012 Petr Pisar <ppisar@redhat.com> - 8.30-5
83bd5c5
- Possessify high ASCII (bug #815217)
745a9c8
- Fix ovector overflow (bug #815214)
83bd5c5
13b47ac
* Fri Apr 20 2012 Petr Pisar <ppisar@redhat.com> - 8.30-4
13b47ac
- Possesify \s*\R (bug #813237)
13b47ac
949ac43
* Thu Apr 05 2012 Petr Pisar <ppisar@redhat.com> - 8.30-3
949ac43
- Fix look-behind assertion in UTF-8 JIT mode (bug #810314)
949ac43
31ff8ae
* Tue Feb 28 2012 Petr Pisar <ppisar@redhat.com> - 8.30-2
31ff8ae
- Remove old libpcre.so.0 from distribution
d4eed22
- Move library to /usr
31ff8ae
c74eea5
* Thu Feb 09 2012 Petr Pisar <ppisar@redhat.com> - 8.30-1
c74eea5
- 8.30 bump
7c4a94b
- Add old libpcre.so.0 to preserve compatibility temporarily
c74eea5
2bd0b1b
* Fri Jan 27 2012 Petr Pisar <ppisar@redhat.com> - 8.30-0.1.RC1
eacb9fb
- 8.30 Relase candidate 1 with UTF-16 support and *API change*
2bd0b1b
- Enable UTF-16 variant of PCRE library
eacb9fb
- The pcre_info() function has been removed from pcre library.
eacb9fb
- Loading compiled pattern does not fix endianity anymore. Instead an errror
eacb9fb
  is returned and the application can use pcre_pattern_to_host_byte_order() to
eacb9fb
  convert the pattern.
eacb9fb
- Surrogates (0xD800---0xDFFF) are forbidden in UTF-8 mode now.
2bd0b1b
fbd137e
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.21-2.1
fbd137e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
fbd137e
404ec67
* Mon Jan 02 2012 Petr Pisar <ppisar@redhat.com> - 8.21-2
404ec67
- Fix unmatched subpattern to not become wildcard (bug #769597)
8c17690
- Fix NULL pointer derefernce in pcre_free_study() (upstream bug #1186)
404ec67
a6258a8
* Mon Dec 12 2011 Petr Pisar <ppisar@redhat.com> - 8.21-1
a6258a8
- 8.21 bump
a6258a8
171d290
* Thu Dec 08 2011 Karsten Hopp <karsten@redhat.com> 8.21-0.2.RC1
171d290
- ppc needs a larger stack similar to s390
171d290
20e6076
* Tue Dec 06 2011 Petr Pisar <ppisar@redhat.com> - 8.21-0.1.RC1
20e6076
- 8.21-RC1 bump
20e6076
789dda6
* Fri Dec 02 2011 Petr Pisar <ppisar@redhat.com> - 8.20-7
789dda6
- Fix case-less match if cases differ in encoding length (bug #756675)
789dda6
eadca49
* Fri Nov 25 2011 Petr Pisar <ppisar@redhat.com> - 8.20-6
eadca49
- Fix cache-flush in JIT on PPC
eadca49
b41a1da
* Tue Nov 22 2011 Petr Pisar <ppisar@redhat.com> - 8.20-5
b41a1da
- Fix repeated forward reference (bug #755969)
b41a1da
3c7545a
* Wed Nov 16 2011 Petr Pisar <ppisar@redhat.com> - 8.20-4
3c7545a
- Fix other look-behind regressions
3c7545a
381787c
* Tue Nov 15 2011 Petr Pisar <ppisar@redhat.com> - 8.20-3
381787c
- Fix look-behind regression in 8.20
381787c
dfafe2b
* Tue Nov 15 2011 Dan Horák <dan[at]danny.cz> - 8.20-2
dfafe2b
- fix build on s390(x) - disable jit and use larger stack for tests
dfafe2b
e6c39a2
* Fri Oct 21 2011 Petr Pisar <ppisar@redhat.com> - 8.20-1
e6c39a2
- 8.20 bump
e6c39a2
adf5fb5
* Tue Oct 11 2011 Petr Pisar <ppisar@redhat.com> - 8.20-0.1.RC3
adf5fb5
- 8.20-RC3 bump
adf5fb5
c262c3f
* Fri Sep 23 2011 Petr Pisar <ppisar@redhat.com> - 8.20-0.1.RC2
c262c3f
- 8.20-RC2 bump
c262c3f
9ab62f8
* Mon Sep 12 2011 Petr Pisar <ppisar@redhat.com> - 8.20-0.1.RC1
9ab62f8
- 8.20-RC1 bump with JIT
9ab62f8
584e50e
* Tue Sep 06 2011 Petr Pisar <ppisar@redhat.com> - 8.13-4
584e50e
- Fix infinite matching PRUNE (bug #735720)
584e50e
fcc2c60
* Mon Aug 22 2011 Petr Pisar <ppisar@redhat.com> - 8.13-3
fcc2c60
- Fix parsing named class in expression (bug #732368)
fcc2c60
c1e7548
* Thu Aug 18 2011 Petr Pisar <ppisar@redhat.com> - 8.13-2
c1e7548
- Separate utilities from libraries
c1e7548
- Move pcre-config(1) manual to pcre-devel sub-package
f5f5259
- Remove explicit defattr from spec code
53a7f77
- Compile pcretest with readline support
c1e7548
1e7d91f
* Thu Aug 18 2011 Petr Pisar <ppisar@redhat.com> - 8.13-1
1e7d91f
- 8.13 bump: Bug-fix version, Unicode tables updated to 6.0.0, new pcregrep
1e7d91f
  option --buffer-size to adjust to long lines, new feature is passing of
1e7d91f
  *MARK information to callouts.
1e7d91f
- Should fix crash back-tracking over unicode sequence (bug #691319)
1e7d91f
54a4973
* Mon May 09 2011 Petr Pisar <ppisar@redhat.com> - 8.12-4
54a4973
- Fix caseless reference matching in UTF-8 mode when the upper/lower case
54a4973
  characters have different lengths (bug #702623)
54a4973
d4dd586
* Mon May 09 2011 Petr Pisar <ppisar@redhat.com> - 8.12-3
d4dd586
- Fix typos in manual pages (bugs #675476, #675477)
abbcae7
- Clean spec file up
d4dd586
f2e1a53
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.12-2
f2e1a53
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
f2e1a53
d1600be
* Mon Jan 17 2011 Petr Pisar <ppisar@redhat.com> - 8.12-1
d1600be
- 8.12 bump
d1600be
- Remove accepted pcre-8.11-Fix-typo-in-pcreprecompile-3.patch
d1600be
954091c
* Mon Dec 13 2010 Petr Pisar <ppisar@redhat.com> - 8.11-1
954091c
- 8.11 bump
954091c
- See ChangeLog for changes. Namely changes have been made to the way
954091c
  PCRE_PARTIAL_HARD affects the matching of $, \z, \Z, \b, and \B.
954091c
- Fix typo in pcreprecompile(3) manual
3f6975f
- Document why shared library is not under /usr
954091c
8a6e171
* Mon Jul 12 2010 Petr Pisar <ppisar@redhat.com> - 8.10-1
8a6e171
- 8.10 bump (bug #612635)
8a6e171
- Add LICENCE to static subpackage because COPYING refers to it
8a6e171
- Remove useless rpath by using new libtool (simple sed does not work anymore
8a6e171
  because tests need to link against just-compiled library in %%check phase)
8a6e171
f2bd6a0
* Thu Jul 08 2010 Petr Pisar <ppisar@redhat.com> - 7.8-4
f2bd6a0
- Add COPYING to static subpackage
f2bd6a0
- Remove useless rpath
f2bd6a0
e47f169
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.8-3
e47f169
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
e47f169
92cd1bb
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.8-2
92cd1bb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
92cd1bb
121c371
* Wed Oct 1 2008 Lubomir Rintel <lkundrak@v3.sk> - 7.8-1
121c371
- Update to 7.8, drop upstreamed patches
121c371
- Fix destination of documentation (#427763)
121c371
- Use buildroot macro consistently
121c371
- Separate the static library, as per current Guidelines
121c371
- Satisfy rpmlint
121c371
12330ef
* Fri Jul  4 2008 Tomas Hoger <thoger@redhat.com> - 7.3-4
12330ef
- Apply Tavis Ormandy's patch for CVE-2008-2371.
12330ef
4b8f02a
* Tue Feb 12 2008 Tomas Hoger <thoger@redhat.com> - 7.3-3
4b8f02a
- Backport patch from upstream pcre 7.6 to address buffer overflow
4b8f02a
  caused by "a character class containing a very large number of
4b8f02a
  characters with codepoints greater than 255 (in UTF-8 mode)"
4b8f02a
  CVE-2008-0674, #431660
4b8f02a
- Try re-enabling make check again.
4b8f02a
94614c2
* Fri Nov 16 2007 Stepan Kasal <skasal@redhat.com> - 7.3-2
94614c2
- Remove obsolete ``reqs''
94614c2
- add dist tag
94614c2
- update BuildRoot
94614c2
e015c76
* Mon Sep 17 2007 Than Ngo <than@redhat.com> - 7.3-1
e015c76
- bz292501, update to 7.3
e015c76
05074d0
* Mon Jan 22 2007 Than Ngo <than@redhat.com> - 7.0-1
05074d0
- 7.0
05074d0
dd269d8
* Mon Nov 27 2006 Than Ngo <than@redhat.com> - 6.7-1
dd269d8
- update to 6.7
dd269d8
- fix #217303, enable-unicode-properties
dd269d8
- sane stack limit
dd269d8
900923f
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 6.6-1.1
900923f
- rebuild
900923f
dba96c6
* Tue May 09 2006 Than Ngo <than@redhat.com> 6.6-1
dba96c6
- update to 6.6
dba96c6
- fix multilib problem
dba96c6
cae5019
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 6.3-1.2.1
cae5019
- bump again for double-long bug on ppc(64)
cae5019
e31304c
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 6.3-1.2
e31304c
- rebuilt for new gcc4.1 snapshot and glibc changes
e31304c
957659a
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
957659a
- rebuilt
957659a
8d4a32e
* Wed Aug 24 2005 Than Ngo <than@redhat.com> 6.3-1
8d4a32e
- update to 6.3
8d4a32e
673f624
* Fri Mar  4 2005 Joe Orton <jorton@redhat.com> 5.0-4
673f624
- rebuild
673f624
b3c7f59
* Fri Feb 11 2005 Joe Orton <jorton@redhat.com> 5.0-3
b3c7f59
- don't print $libdir in 'pcre-config --libs' output
b3c7f59
3ecca5c
* Thu Nov 18 2004 Joe Orton <jorton@redhat.com> 5.0-2
3ecca5c
- include LICENCE, AUTHORS in docdir
3ecca5c
- run make check
3ecca5c
- move %%configure to %%build
3ecca5c
7ae822c
* Thu Nov 18 2004 Than Ngo <than@redhat.com> 5.0-1
7ae822c
- update to 5.0
7ae822c
- change License: BSD
7ae822c
- fix header location #64248
7ae822c
cvsdist 5956667
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
cvsdist 5956667
- rebuilt
cvsdist 5956667
cvsdist e3f2c67
* Tue Mar 23 2004 Than Ngo <than@redhat.com> 4.5-2
cvsdist e3f2c67
- add the correct pcre license, #118781
cvsdist e3f2c67
cvsdist 2166802
* Fri Mar 12 2004 Than Ngo <than@redhat.com> 4.5-1
cvsdist 2166802
- update to 4.5
cvsdist 2166802
cvsdist 2166802
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
cvsdist 2166802
- rebuilt
cvsdist 2166802
cvsdist 2166802
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
cvsdist 2166802
- rebuilt
cvsdist 2166802
cvsdist abd371a
* Fri Sep 26 2003 Harald Hoyer <harald@redhat.de> 4.4-1
cvsdist abd371a
- 4.4
cvsdist abd371a
cvsdist abd371a
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
cvsdist abd371a
- rebuilt
cvsdist abd371a
cvsdist abd371a
* Wed May  7 2003 Than Ngo <than@redhat.com> 4.2-1
cvsdist abd371a
- update to 4.2
cvsdist abd371a
cvsdist 64a1270
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
cvsdist 64a1270
- rebuilt
cvsdist 64a1270
cvsdist 64a1270
* Tue Jan 21 2003 Than Ngo <than@redhat.com> 3.9-9
cvsdist 64a1270
- build with utf8, bug #81504
cvsdist 64a1270
cvsdist 64a1270
* Fri Nov 22 2002 Elliot Lee <sopwith@redhat.com> 3.9-8
cvsdist 64a1270
- Really remove .la files
cvsdist 64a1270
cvsdist 64a1270
* Fri Oct 11 2002 Than Ngo <than@redhat.com> 3.9-7
cvsdist 64a1270
- remove .la
cvsdist 64a1270
cvsdist 64a1270
* Thu Oct 10 2002 Than Ngo <than@redhat.com> 3.9-7
cvsdist 64a1270
- Typo bug
cvsdist 64a1270
cvsdist 64a1270
* Wed Oct  9 2002 Than Ngo <than@redhat.com> 3.9-6
cvsdist 64a1270
- Added missing so symlink
cvsdist 64a1270
cvsdist 64a1270
* Thu Sep 19 2002 Than Ngo <than@redhat.com> 3.9-5.1
cvsdist 64a1270
- Fixed to build s390/s390x/x86_64
cvsdist 64a1270
cde4fcc
* Thu Jun 27 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.9-5
cvsdist e1fe3a7
- Fix #65009
cvsdist e1fe3a7
cvsdist 8284635
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
cvsdist 8284635
- automated rebuild
cvsdist 8284635
cvsdist 8284635
* Thu May 23 2002 Tim Powers <timp@redhat.com>
cvsdist 8284635
- automated rebuild
cvsdist 8284635
cvsdist 439d37b
* Mon Mar  4 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.9-2
cvsdist 439d37b
- rebuild
cvsdist 439d37b
cvsdist 439d37b
* Fri Jan 11 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.9-1
cvsdist 439d37b
- Update to 3.9
cvsdist 439d37b
cvsdist 439d37b
* Wed Nov 14 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.7-1
cvsdist 439d37b
- Update to 3.7
cvsdist 439d37b
cvsdist 7a5caf1
* Thu May 17 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.4-2
cvsdist 7a5caf1
- Move libpcre to /lib, grep uses it these days (#41104)
cvsdist 7a5caf1
cvsdist 7a5caf1
* Wed Apr 18 2001 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist 7a5caf1
- Move this to a separate package, used to be in kdesupport, but it's
cvsdist 7a5caf1
  generally useful...