source: projects/specs/trunk/p/pcre/pcre-vl.spec @ 980

Revision 980, 5.0 KB checked in by iwamoto, 14 years ago (diff)

new upstream release with security fix

Line 
1Name: pcre
2Summary: Perl-compatible regular expression library
3Summary(ja): Perl 互換の正規表現ライブラリ
4Version: 8.02
5Release: 1%{?_dist_release}
6URL: http://www.pcre.org/
7Source:ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/%{name}-%{version}.tar.bz2
8License: BSD
9Group: System Environment/Libraries
10
11BuildRoot: %{_tmppath}/%{name}-%{version}-root
12BuildRequires: zlib-devel
13BuildRequires: bzip2-devel
14
15Vendor: Project Vine
16Distribution: Vine Linux
17
18Packager: inagaki
19
20%description
21Perl-compatible regular expression library.
22PCRE has its own native API, but a set of "wrapper" functions that are based on
23the POSIX API are also supplied in the library libpcreposix. Note that this
24just provides a POSIX calling interface to PCRE: the regular expressions
25themselves still follow Perl syntax and semantics. The header file
26for the POSIX-style functions is called pcreposix.h.
27
28%package devel
29Summary: Development files for %{name}
30Summary(ja): %{name} の開発用ファイル
31Group: Development/Libraries
32Requires: %{name} = %{version}-%{release}
33
34%description devel
35Development files (Headers, libraries for static linking, etc) for %{name}.
36
37%prep
38%setup -q
39
40%build
41%configure --includedir=%{_includedir}/%{name} \
42    --disable-static \
43    --enable-utf8 \
44    --enable-unicode-properties \
45    --enable-pcregrep-libz \
46    --enable-pcregrep-libbz2
47
48make
49%ifnarch alpha
50make check
51%endif
52
53%install
54rm -rf $RPM_BUILD_ROOT
55make install DESTDIR=$RPM_BUILD_ROOT
56
57rm -rf $RPM_BUILD_ROOT%{_datadir}/doc
58rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.la
59
60%post -p /sbin/ldconfig
61
62%postun -p /sbin/ldconfig
63
64%clean
65rm -rf $RPM_BUILD_ROOT
66
67%files
68%defattr(-,root,root)
69%doc AUTHORS COPYING ChangeLog INSTALL LICENCE NEWS README
70%{_bindir}/pcregrep
71%{_libdir}/*.so.*
72%{_mandir}/man1/pcregrep.*
73
74%files devel
75%defattr(-,root,root)
76%doc doc/html/*
77%{_bindir}/pcre-config
78%{_bindir}/pcretest
79%{_includedir}/*
80%{_libdir}/*.so
81#{_libdir}/*.la
82#{_libdir}/*.a
83%{_libdir}/pkgconfig/*.pc
84%{_mandir}/man1/pcre-config.*
85%{_mandir}/man1/pcretest.*
86%{_mandir}/man3/*
87
88%changelog
89* Mon May 10 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 8.02-1
90- new upstream release with security fix
91
92* Sat Feb  6 2010 Ryoiochi INAGAKI <ryo1@bc.wakwak.com> 8.01-1
93- new upstream release
94
95* Sat Jan 16 2010 Ryoiochi INAGAKI <ryo1@bc.wakwak.com> 8.00-1
96- new upstream release
97
98* Tue Jul 07 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 7.9-2
99- add --enable-unicode-properties to configure option
100
101* Wed Jun 10 2009 Ryoiochi INAGAKI <ryo1@bc.wakwak.com> 7.9-1
102- new upstream release
103- added BR: zlib-devel, bzip2-devel
104- removed static libraries from devel package
105- added Packager tag
106
107* Sat Jan 24 2009 Ryoiochi INAGAKI <ryo1@bc.wakwak.com> 7.8-1vl5
108- new upstream release
109- spec in UTF-8
110
111* Sun Jul  6 2008 Ryoiochi INAGAKI <ryo1@bc.wakwak.com> 7.7-1vl5
112- new upstream release
113
114* Tue May 13 2008 Yasumichi Akahoshi <yasumichi@vinelinux.org> 7.6-1vl5
115- use macro for Release
116
117* Fri May 09 2008 Yasumichi Akahoshi <yasumichi@vinelinux.org> 7.6-1vl5
118- apply new virsioning policy.
119- remove *.la
120
121* Thu Feb  7 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 7.6-0vl1
122- new upstream release
123
124* Wed Nov  7 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 7.4-0vl1
125- new upstream release
126
127* Sun Aug 19 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 7.2-0vl1
128- new upstream release
129
130* Fri May 11 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 6.6-0vl2
131- rebuild with new environment/toolchain
132
133* Wed Feb 15 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 6.6-0vl1
134- new upstream release
135
136* Mon Sep  5 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 6.3-0vl2
137- added --enable-utf8 option
138
139* Sun Sep  4 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 6.3-0vl1
140- new upstream release
141
142* Thu Jan 27 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 5.0-0vl1
143- new upstream release
144- added Japanese summary
145
146* Sun Apr 18 2004 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.5-0vl1
147- new upstream release
148
149* Mon Oct 13 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 4.4-0vl1
150- new upstream release
151
152* Mon May  5 2003 Tomoya TAKA <taka@vinelinux.org> 4.1-0vl3
153- skip 'make check' on alpha
154
155* Fri Mar 28 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 4.1-0vl2
156- change install section
157- change files section
158
159* Fri Mar 28 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 4.1-0vl1
160- update to 4.1
161- add %{_bindir}/pcretest
162- add %doc AUTHORS COPYING ChangeLog INSTALL LICENCE NEWS README
163
164* Sun Dec 15 2002 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.9-0vl2
165- rebuild with new toolchains
166
167* Sat Mar 16 2002 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 3.9-0vl1
168- Update to 3.9
169
170* Wed Dec 26 2001 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 3.7-0vl1
171- Update to 3.7
172
173* Sun Oct 14 2001 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 3.5-0vl1
174- Update to 3.5
175
176* Wed Oct 10 2001 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 3.4-2vl1
177- Build for VineSeed
178
179* Thu May 17 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.4-2
180- Move libpcre to /lib, grep uses it these days (#41104)
181
182* Wed Apr 18 2001 Bernhard Rosenkraenzer <bero@redhat.com>
183- Move this to a separate package, used to be in kdesupport, but it's
184  generally useful...
Note: See TracBrowser for help on using the repository browser.