nspr-vl.spec 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  2. Summary: Netscape Portable Runtime
  3. Summary(ja): Netscape ポータブルランタイム
  4. Name: nspr
  5. Version: 4.32
  6. Release: 1%{?_dist_release}
  7. Group: system
  8. Vendor: Project Vine
  9. Distribution: Vine Linux
  10. Packager: daisuke
  11. License: MPLv2.0
  12. URL: http://www.mozilla.org/projects/nspr/
  13. Source0: https://archive.mozilla.org/pub/nspr/releases/v%{version}/src/%{name}-%{version}.tar.gz
  14. Patch1: nspr-config-pc.patch
  15. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  16. Provides: mozilla-nspr
  17. Obsoletes: mozilla-nspr
  18. %description
  19. NSPR provides platform independence for non-GUI operating system
  20. facilities. These facilities include threads, thread synchronization,
  21. normal file and network I/O, interval timing and calendar time, basic
  22. memory management (malloc and free) and shared library linking.
  23. %package devel
  24. Summary: Development libraries for the Netscape Portable Runtime
  25. Group: programming
  26. Requires: nspr = %{version}-%{release}
  27. Requires: pkgconfig
  28. Provides: mozilla-nspr-devel
  29. Obsoletes: mozilla-nspr-devel
  30. %description devel
  31. Header files for doing development with the Netscape Portable Runtime.
  32. ## to build compat32 for x86_64 architecture support
  33. %package -n compat32-%{name}
  34. Summary: Netscape Portable Runtime
  35. Group: system,legacy
  36. %description -n compat32-%{name}
  37. NSPR provides platform independence for non-GUI operating system
  38. facilities. These facilities include threads, thread synchronization,
  39. normal file and network I/O, interval timing and calendar time, basic
  40. memory management (malloc and free) and shared library linking.
  41. %debug_package
  42. %prep
  43. %setup -q
  44. # Original nspr-config is not suitable for our distribution,
  45. # because on different platforms it contains different dynamic content.
  46. # Therefore we produce an adjusted copy of nspr-config that will be
  47. # identical on all platforms.
  48. # However, we need to use original nspr-config to produce some variables
  49. # that go into nspr.pc for pkg-config.
  50. cp ./nspr/config/nspr-config.in ./nspr/config/nspr-config-pc.in
  51. %patch1 -p0
  52. %build
  53. %define _configure ./nspr/configure
  54. %configure \
  55. --prefix=%{_prefix} \
  56. --libdir=%{_libdir} \
  57. --includedir=%{_includedir}/nspr4 \
  58. %ifarch x86_64 ppc64 ia64 s390x
  59. --enable-64bit \
  60. %endif
  61. --enable-optimize="$RPM_OPT_FLAGS" \
  62. --disable-debug
  63. make
  64. %install
  65. %{__rm} -Rf $RPM_BUILD_ROOT
  66. DESTDIR=$RPM_BUILD_ROOT \
  67. make install
  68. mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1
  69. NSPR_LIBS=`./config/nspr-config --libs`
  70. NSPR_CFLAGS=`./config/nspr-config --cflags`
  71. NSPR_VERSION=`./config/nspr-config --version`
  72. %{__mkdir_p} $RPM_BUILD_ROOT/%{_libdir}/pkgconfig
  73. # Get rid of the things we don't want installed (per upstream)
  74. %{__rm} -rf \
  75. $RPM_BUILD_ROOT/%{_bindir}/compile-et.pl \
  76. $RPM_BUILD_ROOT/%{_bindir}/prerr.properties \
  77. $RPM_BUILD_ROOT/%{_libdir}/libnspr4.a \
  78. $RPM_BUILD_ROOT/%{_libdir}/libplc4.a \
  79. $RPM_BUILD_ROOT/%{_libdir}/libplds4.a \
  80. $RPM_BUILD_ROOT/%{_datadir}/aclocal/nspr.m4 \
  81. $RPM_BUILD_ROOT/%{_includedir}/nspr4/md
  82. %clean
  83. %{__rm} -rf $RPM_BUILD_ROOT
  84. %files
  85. %defattr(-,root,root)
  86. %{_libdir}/libnspr4.so
  87. %{_libdir}/libplc4.so
  88. %{_libdir}/libplds4.so
  89. %files devel
  90. %defattr(-, root, root)
  91. %{_includedir}/nspr4
  92. %{_libdir}/pkgconfig/nspr.pc
  93. %{_bindir}/nspr-config
  94. %if %{build_compat32}
  95. %files -n compat32-%{name}
  96. %defattr(-,root,root)
  97. %{_libdir}/*.so
  98. %endif
  99. %changelog
  100. * Wed Aug 11 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.32-1
  101. - update to 4.32.
  102. * Fri Jun 25 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.31-1
  103. - update to 4.31.
  104. - dropped ldconfig scriptlets.
  105. * Fri Oct 23 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.29-1
  106. - update to 4.29.
  107. * Sun Apr 26 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.25-1
  108. - update to 4.25.
  109. * Fri Sep 27 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.22-1
  110. - update to 4.22.
  111. * Thu Nov 08 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.20-1
  112. - update to 4.20.
  113. - dropped Patch2.
  114. * Sat Oct 07 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.13.1-1
  115. - update to 4.13.1.
  116. * Tue May 10 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.11-1
  117. - update to 4.11
  118. * Thu Jun 12 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 4.10.6-1
  119. - update to 4.10.6
  120. * Thu Oct 17 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 4.10.1-1
  121. - update to 4.10.1
  122. * Thu Apr 04 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 4.9.6-1
  123. - update to 4.9.6
  124. * Wed Jan 09 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 4.9.4-1
  125. - update to 4.9.4
  126. * Mon Sep 03 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 4.9.2
  127. - new upstream release
  128. * Sun Mar 18 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.9-1
  129. - new upstram release
  130. - update Patch1 (nspr-config-pc.patch)
  131. * Wed Sep 28 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 4.8.9-1
  132. - new upstram release
  133. * Wed Jun 01 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 4.8.8-1
  134. - new upstream release
  135. * Mon Mar 28 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 4.8.7-1
  136. - new upstream release
  137. * Thu Sep 23 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.8.6-2
  138. - rebuild with rpm-4.8.1 for pkg-config file
  139. * Tue Sep 14 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 4.8.6-1
  140. - new upstream release
  141. * Wed Apr 7 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 4.8.4-1
  142. - new upstream release
  143. * Sat Jan 09 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 4.8.2-1
  144. - new upstream release
  145. * Sat Jul 04 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 4.8-2
  146. - added compat32 subpackages
  147. * Sun Jun 21 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 4.8-1
  148. - new upstream release
  149. * Wed Apr 22 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 4.7.4-1
  150. - new upstream release
  151. * Wed Jul 02 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 4.7.1-1
  152. - new upstream release
  153. * Fri Oct 19 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 4.6.7-0vl1
  154. - new upstream release
  155. * Fri May 18 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 4.6.6-0vl1
  156. - initial build for Vine Linux
  157. * Wed Mar 07 2007 Kai Engert <kengert@redhat.com> - 4.6.6-1
  158. - Update to 4.6.6
  159. - Adjust IPv6 patch to latest upstream version
  160. * Sat Feb 24 2007 Kai Engert <kengert@redhat.com> - 4.6.5-2
  161. - Update to latest ipv6 upstream patch
  162. - Add upstream patch to fix a thread cleanup issue
  163. - Now requires pkgconfig
  164. * Mon Jan 22 2007 Wan-Teh Chang <wtchang@redhat.com> - 4.6.5-1
  165. - Update to 4.6.5
  166. * Tue Jan 16 2007 Kai Engert <kengert@redhat.com> - 4.6.4-2
  167. - Include upstream patch to fix ipv6 support (rhbz 222554)
  168. * Tue Nov 21 2006 Kai Engert <kengert@redhat.com> - 4.6.4-1
  169. - Update to 4.6.4
  170. * Thu Sep 14 2006 Kai Engert <kengert@redhat.com> - 4.6.3-1
  171. - Update to 4.6.3
  172. * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 4.6.2-1.1
  173. - rebuild
  174. * Fri May 26 2006 Kai Engert <kengert@redhat.com> - 4.6.2-1
  175. - Update to 4.6.2
  176. - Tweak nspr-config to be identical on all platforms.
  177. * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 4.6.1-2.2
  178. - bump again for double-long bug on ppc(64)
  179. * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 4.6.1-2.1
  180. - rebuilt for new gcc4.1 snapshot and glibc changes
  181. * Thu Jan 5 2006 Kai Engert <kengert@redhat.com> 4.6.1-2
  182. - Do not use -ansi when compiling, because of a compilation
  183. problem with latest glibc and anonymous unions.
  184. See also bugzilla.mozilla.org # 322427.
  185. * Wed Jan 4 2006 Kai Engert <kengert@redhat.com>
  186. - Add an upstream patch to fix gcc visibility issues.
  187. * Tue Jan 3 2006 Christopher Aillon <caillon@redhat.com>
  188. - Stop shipping static libraries; NSS and dependencies no longer
  189. require static libraries to build.
  190. * Thu Dec 15 2005 Christopher Aillon <caillon@redhat.com> 4.6.1-1
  191. - Update to 4.6.1
  192. * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
  193. - rebuilt
  194. * Fri Jul 15 2005 Christopher Aillon <caillon@redhat.com> 4.6-4
  195. - Use the NSPR version numbering scheme reported by NSPR,
  196. which unfortunately is not exactly the same as the real
  197. version (4.6 != 4.6.0 according to RPM and pkgconfig).
  198. * Fri Jul 15 2005 Christopher Aillon <caillon@redhat.com> 4.6-3
  199. - Correct the CFLAGS reported by pkgconfig
  200. * Tue Jul 12 2005 Christopher Aillon <caillon@redhat.com> 4.6-2
  201. - Temporarily include the static libraries allowing nss and
  202. its dependencies to build.
  203. * Tue Jul 12 2005 Christopher Aillon <caillon@redhat.com> 4.6-1
  204. - Update to NSPR 4.6
  205. * Wed Apr 20 2005 Christopher Aillon <caillon@redhat.com> 4.4.1-2
  206. - NSPR doesn't have make install, but it has make real_install. Use it.
  207. * Thu Apr 14 2005 Christopher Aillon <caillon@redhat.com> 4.4.1-1
  208. - Let's make an RPM.