libgcrypt-vl.spec 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  2. Summary: A cryptographic library based on the code from GnuPG.
  3. Summary(ja): GnuPG のコードをベースとした暗号化ライブラリ
  4. Name: libgcrypt
  5. Version: 1.9.1
  6. Release: 1%{?_dist_release}
  7. Group: system
  8. Vendor: Project Vine
  9. Distribution: Vine Linux
  10. Packager: iwaim
  11. License: GPLv2+
  12. URL: https://www.gnupg.org/related_software/libgcrypt/index.html
  13. Source0: https://gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-%{version}.tar.bz2
  14. Source1: https://gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-%{version}.tar.bz2.sig
  15. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  16. BuildRequires: libgpg-error-devel >= 0.5
  17. Requires: libgpg-error
  18. Requires(post,preun): /sbin/install-info
  19. %description
  20. This is a general purpose cryptographic library based on the code from
  21. GnuPG. It provides functions for all cryptograhic building blocks:
  22. symmetric ciphers (AES, DES, Blowfish, CAST5, Twofish, Arcfour), hash
  23. algorithms (MD4, MD5, RIPE-MD160, SHA-1, TIGER-192), MACs (HMAC for
  24. all hash algorithms), public key algorithms (RSA, ElGamal, DSA), large
  25. integer functions, random numbers and a lot of supporting functions.
  26. %package devel
  27. Summary: Development files for libgcrypt
  28. Summary(ja): libgcrypt を使った開発に必要なヘッダやライブラリ
  29. Group: programming
  30. Requires: %{name} = %{version}-%{release}
  31. Requires: libgpg-error-devel
  32. %description devel
  33. Static libraries and header files from libgcrypt.
  34. %package -n compat32-%{name}
  35. Summary: A cryptographic library based on the code from GnuPG.
  36. Summary(ja): GnuPG のコードをベースとした暗号化ライブラリ
  37. Group: system
  38. Requires: %{name} = %{version}-%{release}
  39. %description -n compat32-%{name}
  40. This is a general purpose cryptographic library based on the code from
  41. GnuPG. It provides functions for all cryptograhic building blocks:
  42. symmetric ciphers (AES, DES, Blowfish, CAST5, Twofish, Arcfour), hash
  43. algorithms (MD4, MD5, RIPE-MD160, SHA-1, TIGER-192), MACs (HMAC for
  44. all hash algorithms), public key algorithms (RSA, ElGamal, DSA), large
  45. integer functions, random numbers and a lot of supporting functions.
  46. %package -n compat32-%{name}-devel
  47. Summary: Development files for libgcrypt
  48. Summary(ja): libgcrypt を使った開発に必要なヘッダやライブラリ
  49. Group: programming
  50. Requires: compat32-%{name} = %{version}-%{release}
  51. Requires: %{name}-devel = %{version}-%{release}
  52. Requires: compat32-libgpg-error-devel
  53. %description -n compat32-%{name}-devel
  54. Static libraries and header files from libgcrypt.
  55. %debug_package
  56. %prep
  57. %setup -q
  58. %build
  59. %configure --disable-static
  60. make
  61. %install
  62. [ "%{buildroot}" != / ] && rm -rf %{buildroot}
  63. %makeinstall
  64. rm -f %{buildroot}%{_infodir}/dir
  65. ## remove unuse files
  66. rm -rf $RPM_BUILD_ROOT%{_libdir}/*.la
  67. %clean
  68. [ "%{buildroot}" != / ] && rm -rf %{buildroot}
  69. %post -p /sbin/ldconfig
  70. %postun -p /sbin/ldconfig
  71. %post devel
  72. /sbin/install-info --info-dir=%{_infodir} %{_infodir}/gcrypt.info.gz ||:
  73. %preun devel
  74. if [ $1 = 0 ]; then
  75. /sbin/install-info --delete %{_infodir}/gcrypt.info.gz %{_infodir}/dir ||:
  76. fi
  77. %post -n compat32-%{name} -p /sbin/ldconfig
  78. %postun -n compat32-%{name} -p /sbin/ldconfig
  79. %files
  80. %defattr(-,root,root)
  81. %{_bindir}/dumpsexp
  82. %{_bindir}/hmac256
  83. %{_bindir}/mpicalc
  84. %{_libdir}/*.so.*
  85. %{_mandir}/man1/hmac256.1.gz
  86. %files devel
  87. %defattr(-,root,root)
  88. %doc README* NEWS
  89. %{_bindir}/libgcrypt-config
  90. %{_includedir}/*
  91. %{_libdir}/*.so
  92. %{_libdir}/pkgconfig/*.pc
  93. %{_datadir}/aclocal/libgcrypt.m4
  94. %{_infodir}/*
  95. # compat32
  96. %if %{build_compat32}
  97. %files -n compat32-%{name}
  98. %defattr(-,root,root)
  99. %{_libdir}/*.so.*
  100. %files -n compat32-%{name}-devel
  101. %defattr(-,root,root)
  102. %{_libdir}/*.so
  103. %{_libdir}/pkgconfig/*.pc
  104. %endif
  105. %changelog
  106. * Tue Feb 02 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.9.1-1
  107. - updated to 1.9.1.
  108. * Sat Sep 12 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.8.6-1
  109. - updated to 1.8.6.
  110. * Sun Mar 15 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.8.5-1
  111. - updated to 1.8.5.
  112. * Sun May 05 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.8.4-1
  113. - updated to 1.8.4.
  114. * Thu Mar 01 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.8.2-1
  115. - updated to 1.8.2.
  116. * Mon Mar 20 2017 IWAI, Masaharu <iwaim.sub@gmail.com> - 1.7.6-1
  117. - update to 1.7.6
  118. - update URL tag
  119. - add Packager tag
  120. * Fri Apr 22 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.6.5-1
  121. - new upstream release.
  122. * Sat Nov 28 2015 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.6.4-1
  123. - new upstream release
  124. * Wed Jan 15 2014 NAKAMURA Kenta <kenta@vinelinux.org> - 1.6.0-1
  125. - new upstream release
  126. * Mon Dec 30 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 1.5.3-2
  127. - rebuild with VineSeed environment
  128. * Sat Aug 10 2013 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.5.3-1
  129. - new upstream release
  130. * Sat Oct 02 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4.6-1
  131. - new upstream release
  132. * Sat Jun 27 2009 NAKAMURA Kenta <kenta@vinelinux.org> 1.4.3-3
  133. - added compat32 package for x86_64 arch support
  134. - added --disable-static %%configure option
  135. * Thu Sep 25 2008 Shu KONNO <owa@bg.wakwak.com> 1.4.3-2
  136. - removed *.la
  137. * Tue Sep 23 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.3-1
  138. - new upstream release
  139. * Tue Mar 18 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4.0-1vl5
  140. - new upstream release
  141. - used _dist_release macro
  142. * Sat Mar 15 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4.0-0vl1
  143. - new upstream release
  144. * Sun Nov 26 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.2.3-0vl1
  145. - new upstream release
  146. - changed Group to System Environment/Libraries
  147. * Fri Dec 30 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.2.2-0vl1
  148. - new upstream release
  149. * Mon Mar 28 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.2.1-0vl1
  150. - new upstream release
  151. - fix dependencies
  152. - add BuildRequires: libgpg-error-devel >= 0.5
  153. - add Requires: libgpg-error
  154. - add Requires: libgpg-error-devel for devel package
  155. * Tue Nov 30 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.0-0vl1
  156. - new upstream release
  157. * Sun Mar 7 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.12-0vl1
  158. - initial build