pcre-vl.spec 5.8 KB

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