zlib-vl.spec 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  1. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  2. Summary: The zlib compression and decompression library.
  3. Summary(ja): zlib 圧縮/展開ライブラリ
  4. Name: zlib
  5. Version: 1.2.12
  6. Release: 1%{?_dist_release}
  7. Group: system
  8. Vendor: Project Vine
  9. Distribution: Vine Linux
  10. License: zlib and Boost
  11. URL: https://www.zlib.net/
  12. Source: https://www.zlib.net/zlib-%{version}.tar.xz
  13. # https://github.com/madler/zlib/pull/210
  14. Patch0: zlib-1.2.5-minizip-fixuncrypt.patch
  15. # resolves: #805113
  16. #Patch1: zlib-1.2.11-optimized-s390.patch
  17. # IBM Z hardware-accelerated deflate
  18. # ref: https://github.com/madler/zlib/pull/410
  19. Patch18: zlib-1.2.12-IBM-Z-hw-accelerated-deflate.patch
  20. # IBM optimized crc32 for Power 8+ processors
  21. # ref: https://github.com/madler/zlib/pull/478
  22. Patch19: zlib-1.2.12-power-optimizations.patch
  23. # Patch for s390x crc32vx
  24. # ref: https://github.com/iii-i/zlib/releases/tag/crc32vx-v3
  25. Patch20: zlib-1.2.12-s390x-vectorize-crc32.patch
  26. # Fix for configure
  27. # ref: https://github.com/madler/zlib/pull/607/commits/80d086357a55b94a13e43756cf3e131f25eef0e4
  28. Patch21: zlib-1.2.12-fix-configure.patch
  29. # fixed covscan issues
  30. Patch22: zlib-1.2.11-covscan-issues.patch
  31. # fixed issues found by covscan for rhel-9
  32. # ref: https://github.com/madler/zlib/pull/554
  33. Patch23: zlib-1.2.11-covscan-issues-rhel9.patch
  34. # Correct incorrect inputs provided to the CRC functions.
  35. # ref: https://github.com/madler/zlib/commit/ec3df00224d4b396e2ac6586ab5d25f673caa4c2
  36. Patch24: zlib-1.2.12-correct-inputs-provided-to-crc-func.patch
  37. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  38. %global __provides_exclude_from ^%{_libdir}/pkgconfig/.*$
  39. %description
  40. The zlib compression library provides in-memory compression and
  41. decompression functions, including integrity checks of the
  42. uncompressed data. This version of the library supports only one
  43. compression method (deflation), but other algorithms may be added
  44. later, which will have the same stream interface. The zlib library is
  45. used by many different system programs.
  46. %description -l ja
  47. zlib圧縮ライブラリーは、メモリ内で圧縮と解凍を行う関数や、解凍後
  48. のデータの整合性チェックを行う関数を提供します。今バージョンのラ
  49. イブラリは「デフレーション(deflation)」という圧縮方法のみをサポ
  50. ートしていますが、今後同じストリームインターフェースを持つ他の圧
  51. 縮方法も追加する予定です。zlibライブラリーは多種のプログラムで使
  52. 用されています。
  53. %package devel
  54. Summary: Header files and libraries for developing apps which will use zlib.
  55. Summary(ja): zlib を使ったプログラム開発に必要なヘッダファイル/ライブラリ
  56. Group: programming
  57. Requires: %{name} = %{version}-%{release}
  58. Provides: pkgconfig(zlib) = %{version}
  59. %description devel
  60. The zlib-devel package contains the header files and libraries needed
  61. to develop programs that use the zlib compression and decompression
  62. library.
  63. %package static
  64. Summary: Static libraries for %{name}
  65. Summary(ja): %{name} のスタティックライブラリ
  66. Group: programming
  67. Requires: %{name}-devel = %{version}-%{release}
  68. %description static
  69. The zlib-static package contains the static library for %{name}
  70. ## to build compat32 for x86_64 architecture support
  71. %package -n compat32-%{name}
  72. Summary: The zlib compression and decompression library.
  73. Summary(ja): zlib 圧縮/展開ライブラリ
  74. Group: system,legacy
  75. Requires: %{name} = %{version}-%{release}
  76. %description -n compat32-%{name}
  77. The zlib compression library provides in-memory compression and
  78. decompression functions, including integrity checks of the
  79. uncompressed data. This version of the library supports only one
  80. compression method (deflation), but other algorithms may be added
  81. later, which will have the same stream interface. The zlib library is
  82. used by many different system programs.
  83. %description -n compat32-%{name} -l ja
  84. zlib圧縮ライブラリーは、メモリ内で圧縮と解凍を行う関数や、解凍後
  85. のデータの整合性チェックを行う関数を提供します。今バージョンのラ
  86. イブラリは「デフレーション(deflation)」という圧縮方法のみをサポ
  87. ートしていますが、今後同じストリームインターフェースを持つ他の圧
  88. 縮方法も追加する予定です。zlibライブラリーは多種のプログラムで使
  89. 用されています。
  90. %package -n compat32-%{name}-devel
  91. Summary: Header files and libraries for developing apps which will use zlib.
  92. Summary(ja): zlib を使ったプログラム開発に必要なヘッダファイル/ライブラリ
  93. Group: programming,legacy
  94. Requires: %{name} = %{version}-%{release}
  95. Requires: %{name}-devel = %{version}-%{release}
  96. %description -n compat32-%{name}-devel
  97. The zlib-devel package contains the header files and libraries needed
  98. to develop programs that use the zlib compression and decompression
  99. library.
  100. Install the zlib-devel package if you want to develop applications that
  101. will use the zlib library.
  102. %debug_package
  103. %prep
  104. %setup -q
  105. %autopatch -p1
  106. %build
  107. mkdir static shared
  108. export CFLAGS="$RPM_OPT_FLAGS -fPIC"
  109. export LDFLAGS="$LDFLAGS -Wl,-z,relro -Wl,-z,now"
  110. # build shared lib
  111. CFLAGS="$RPM_OPT_FLAGS -fPIC" ./configure --shared --prefix=%{_prefix}
  112. ./configure \
  113. --prefix=%{_prefix} \
  114. --libdir=%{_libdir} \
  115. --includedir=%{_includedir} \
  116. --shared
  117. make %{?_smp_mflags}
  118. %ifarch x86_64
  119. make test
  120. %endif
  121. mv -f Makefile zconf.h *.o *.so* shared/
  122. # build static lib
  123. ./configure \
  124. --prefix=%{_prefix} \
  125. --libdir=%{_libdir} \
  126. --includedir=%{_includedir}
  127. make %{?_smp_mflags}
  128. %ifarch x86_64
  129. make test
  130. %endif
  131. mv -f Makefile zconf.h *.o *.a static/
  132. %install
  133. rm -rf ${RPM_BUILD_ROOT}
  134. mkdir -p ${RPM_BUILD_ROOT}%{_prefix}
  135. mv -f shared/* .
  136. %make_install
  137. mv -f Makefile zconf.h *.o *.so* shared/
  138. mv -f static/* .
  139. %make_install
  140. install -m644 zutil.h ${RPM_BUILD_ROOT}%{_includedir}/zutil.h
  141. mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man3
  142. install -m644 zlib.3 ${RPM_BUILD_ROOT}%{_mandir}/man3
  143. cat %{buildroot}/usr/include/zlib.h | sed -n '1,/*\//p' > LICENSE
  144. %clean
  145. rm -rf ${RPM_BUILD_ROOT}
  146. %files
  147. %defattr(-,root,root)
  148. %license LICENSE
  149. %doc README
  150. %{_libdir}/*.so
  151. %{_libdir}/libz.so.*
  152. %files devel
  153. %defattr(-,root,root)
  154. %doc ChangeLog doc/algorithm.txt
  155. %{_libdir}/pkgconfig/zlib.pc
  156. %{_includedir}/*
  157. %{_mandir}/man3/zlib.3*
  158. %files static
  159. %defattr(-,root,root)
  160. %{_libdir}/*.a
  161. %if %{build_compat32}
  162. %files -n compat32-%{name}
  163. %defattr(-,root,root)
  164. %{_libdir}/libz.so.*
  165. %files -n compat32-%{name}-devel
  166. %defattr(-,root,root)
  167. %{_libdir}/*.so
  168. %{_libdir}/pkgconfig/zlib.pc
  169. %endif
  170. %changelog
  171. * Wed Aug 10 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.2.12-1
  172. - new upstream release.
  173. - re-imported all patches from rawhide.
  174. * Tue Aug 17 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.2.11-4
  175. - rebuilt with current environment.
  176. - dropped ldconfig scriptlets.
  177. - imported all patches from rawhide.
  178. * Sun Mar 29 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.2.11-3
  179. - fixed "Provides:".
  180. * Sat Mar 21 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.2.11-2
  181. - dropped "Provides:pkgconfig(zlib)" from compat32-zlib-devel.
  182. * Wed Jan 02 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.2.11-1
  183. - new upstream release.
  184. - added license text.
  185. - reverted moving libz.so for compat32 package.
  186. * Sat Mar 19 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.2.8-2
  187. - moved libz.so into the main package.
  188. * Fri Mar 21 2014 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.2.8-1
  189. - new upstream release
  190. - changed archive type bz2 to xz
  191. * Fri Oct 19 2012 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> - 1.2.7-1
  192. - new upstream release
  193. - drop patch0 (resolved by upstream)
  194. - use smp flag in make section
  195. * Fri Oct 1 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.2.5-2
  196. - added patch0 from gentoo to fix zlib.h errors on i686 compiling some applications
  197. * Wed Sep 22 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.2.5-1
  198. - new upstream release (built with rpm-4.8.1-1 for pkg-config file)
  199. - changed License: BSD to zlib and Boost
  200. - added %%{_libdir}/pkgconfig/zlib.pc in -devel package
  201. - fixed %%doc files in -devel package
  202. * Fri Mar 05 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.2.3-7
  203. - add Requires(post,pre): /sbin/ldconfig
  204. * Fri Feb 12 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.2.3-6
  205. - rebuilt with gcc-4.4.3-3 on ppc
  206. * Mon Feb 8 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.2.3-5
  207. - rebuilt with new toolchain
  208. * Fri Mar 27 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.3-4
  209. - split static library to zlib-static
  210. - needed by tuxonice-userui
  211. * Wed Dec 17 2008 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 1.2.3-3
  212. - change spec into UTF-8
  213. * Sun May 18 2008 NAKAMURA Kenta <kenta@vinelinux.org> 1.2.3-2
  214. - removed %%if !%%{build_compat32} case condition
  215. * Sat May 17 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.2.3-1
  216. - applied new versioning policy
  217. - rebuilt with new toolchains
  218. * Mon Feb 06 2006 Shu KONNO <owa@bg.wakwak.com> 1.2.3-0vl5
  219. - moved macros _lib to /usr/lib/rpm/rpmrc or macros files
  220. * Fri Feb 03 2006 Shu KONNO <owa@bg.wakwak.com> 1.2.3-0vl4
  221. - added compat32-* packages for x86_64 architecture support
  222. * Tue Oct 25 2005 NAKAMURA Kenta <kenta@c.csce.kyushu-u.ac.jp> 1.2.3-0vl3
  223. - added compat32- packages for x86_64 architecture support
  224. * Tue Oct 25 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.3-0vl2
  225. - clean up specfile (do not build twice..)
  226. * Tue Jul 19 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.3-0vl1
  227. - new upstream release
  228. * Sun Jul 10 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.2.2-0vl1
  229. - new upstream release
  230. - add Patch1 for CAN-2005-2096
  231. * Fri Mar 25 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.2-0vl1
  232. - new upstream version
  233. - add translated descriptions (thanks to spec file translation project)
  234. * Sun Apr 06 2003 Satoshi MACHINO <machino@vinelinux.org> 1.1.4-0vl3
  235. - fixed buffer overrun on gzprintf
  236. -- added zlib-1.1.4-vsnprintf.patch from http://archives.neohapsis.com/archives/bugtraq/2003-02/0290.html
  237. * Fri Sep 20 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.1.4-0vl2
  238. - changed URL to more preferable site
  239. * Tue Mar 12 2002 IWAI Masaharu <iwaim@cc.mbn.or.jp> 1.1.4-0vl1
  240. - upstream release
  241. * Tue Dec 26 2000 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
  242. - 1.1.3-14vl1
  243. - based on 1.1.3-14 from Rawhide
  244. - added Japanese summary
  245. * Fri Sep 15 2000 Florian La Roche <Florian.LaRoche@redhat.de>
  246. - add -fPIC for shared libs (patch by Fritz Elfert)
  247. * Thu Sep 7 2000 Jeff Johnson <jbj@redhat.com>
  248. - on 64bit systems, make sure libraries are located correctly.
  249. * Thu Aug 17 2000 Jeff Johnson <jbj@redhat.com>
  250. - summaries from specspo.
  251. * Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
  252. - automatic rebuild
  253. * Sun Jul 02 2000 Trond Eivind Glomsr <teg@redhat.com>
  254. - rebuild
  255. * Tue Jun 13 2000 Jeff Johnson <jbj@redhat.com>
  256. - FHS packaging to build on solaris2.5.1.
  257. * Wed Jun 07 2000 Trond Eivind Glomsr <teg@redhat.com>
  258. - use %%{_mandir} and %%{_tmppath}
  259. * Fri May 12 2000 Trond Eivind Glomsr <teg@redhat.com>
  260. - updated URL and source location
  261. - moved README to main package
  262. * Mon Feb 7 2000 Jeff Johnson <jbj@redhat.com>
  263. - compress man page.
  264. * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
  265. - auto rebuild in the new build environment (release 5)
  266. * Wed Sep 09 1998 Cristian Gafton <gafton@redhat.com>
  267. - link against glibc
  268. * Mon Jul 27 1998 Jeff Johnson <jbj@redhat.com>
  269. - upgrade to 1.1.3
  270. * Fri May 08 1998 Prospector System <bugs@redhat.com>
  271. - translations modified for de, fr, tr
  272. * Wed Apr 08 1998 Cristian Gafton <gafton@redhat.com>
  273. - upgraded to 1.1.2
  274. - buildroot
  275. * Tue Oct 07 1997 Donnie Barnes <djb@redhat.com>
  276. - added URL tag (down at the moment so it may not be correct)
  277. - made zlib-devel require zlib
  278. * Thu Jun 19 1997 Erik Troan <ewt@redhat.com>
  279. - built against glibc