pcre0-vl.spec 5.2 KB

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