libgpg-error-vl.spec 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  2. Summary: common error codes for GnuPG related projects
  3. Summary(ja): GnuPG 関連プロジェクトで共通のエラーコード
  4. Name: libgpg-error
  5. Version: 1.42
  6. Release: 1%{?_dist_release}
  7. Group: system
  8. Vendor: Project Vine
  9. Distribution: Vine Linux
  10. Packager: iwaim
  11. License: LGPL
  12. URL: https://www.gnupg.org/related_software/libgpg-error/index.html
  13. Source0: https://gnupg.org/ftp/gcrypt/libgpg-error/libgpg-error-%{version}.tar.bz2
  14. Source1: https://gnupg.org/ftp/gcrypt/libgpg-error/libgpg-error-%{version}.tar.bz2.sig
  15. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  16. %description
  17. This is a library that defines common error values for all GnuPG
  18. components. Among these are GPG, GPGSM, GPGME, GPG-Agent, libgcrypt,
  19. pinentry, SmartCard Daemon and possibly more in the future.
  20. %package devel
  21. Summary: Development files for the %{name} package
  22. Summary(ja): %{name} パッケージの開発用ファイル
  23. Group: programming
  24. Requires: %{name} = %{version}-%{release}
  25. %description devel
  26. This is a library that defines common error values for all GnuPG
  27. components. Among these are GPG, GPGSM, GPGME, GPG-Agent, libgcrypt,
  28. pinentry, SmartCard Daemon and possibly more in the future. This package
  29. contains files necessary to develop applications using libgpg-error.
  30. %package -n compat32-%{name}
  31. Summary: common error codes for GnuPG related projects
  32. Summary(ja): GnuPG 関連プロジェクトで共通のエラーコード
  33. Group: system,legacy
  34. Requires: %{name} = %{version}-%{release}
  35. %description -n compat32-%{name}
  36. This is a library that defines common error values for all GnuPG
  37. components. Among these are GPG, GPGSM, GPGME, GPG-Agent, libgcrypt,
  38. pinentry, SmartCard Daemon and possibly more in the future.
  39. %package -n compat32-%{name}-devel
  40. Summary: Development files for the %{name} package
  41. Summary(ja): %{name} パッケージの開発用ファイル
  42. Group: programming,legacy
  43. Requires: compat32-%{name} = %{version}-%{release}
  44. Requires: %{name}-devel = %{version}-%{release}
  45. %description -n compat32-%{name}-devel
  46. This is a library that defines common error values for all GnuPG
  47. components. Among these are GPG, GPGSM, GPGME, GPG-Agent, libgcrypt,
  48. pinentry, SmartCard Daemon and possibly more in the future. This package
  49. contains files necessary to develop applications using libgpg-error.
  50. %debug_package
  51. %prep
  52. %setup -q
  53. %build
  54. %configure --disable-static
  55. make %{?_smp_mflags}
  56. %install
  57. rm -rf $RPM_BUILD_ROOT
  58. %makeinstall
  59. # remove unneeded files
  60. rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
  61. rm -rf $RPM_BUILD_ROOT%{_datadir}/common-lisp
  62. rm -f $RPM_BUILD_ROOT%{_infodir}/dir
  63. %find_lang %{name}
  64. %clean
  65. rm -rf $RPM_BUILD_ROOT
  66. %post devel
  67. /sbin/install-info %{_infodir}/gpgrt.info %{_infodir}/dir &>/dev/null || :
  68. %preun devel
  69. if [ $1 -eq 0 ]; then
  70. /sbin/install-info --delete %{_infodir}/gpgrt.info %{_infodir}/dir &>/dev/null || :
  71. fi
  72. %files -f %{name}.lang
  73. %defattr(-,root,root)
  74. %license COPYING COPYING.LIB
  75. %doc AUTHORS README INSTALL NEWS ChangeLog
  76. %{_bindir}/gpg-error
  77. %{_libdir}/libgpg-error.so.*
  78. %dir %{_datadir}/libgpg-error
  79. %{_datadir}/libgpg-error/errorref.txt
  80. %files devel
  81. %defattr(-,root,root)
  82. %{_bindir}/gpg-error-config
  83. %{_bindir}/gpgrt-config
  84. %{_bindir}/yat2m
  85. %{_libdir}/libgpg-error.so
  86. %{_libdir}/pkgconfig/gpg-error.pc
  87. %{_includedir}/gpg-error.h
  88. %{_includedir}/gpgrt.h
  89. %{_datadir}/aclocal/gpg-error.m4
  90. %{_datadir}/aclocal/gpgrt.m4
  91. %{_infodir}/gpgrt.info*
  92. %{_mandir}/man1/gpgrt-config.1*
  93. # compat32
  94. %if %{build_compat32}
  95. %files -n compat32-%{name}
  96. %defattr(-,root,root)
  97. %{_libdir}/libgpg-error.so.*
  98. %files -n compat32-%{name}-devel
  99. %defattr(-,root,root)
  100. %{_libdir}/libgpg-error.so
  101. %endif
  102. %changelog
  103. * Mon Mar 22 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.42-1
  104. - updated to 1.42.
  105. - dropped ldconfig scriptlets.
  106. * Tue Feb 02 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.41-1
  107. - updated to 1.41.
  108. * Sat Sep 12 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.39-1
  109. - updated to 1.39.
  110. * Sun Mar 15 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.37-1
  111. - updated to 1.37.
  112. * Sun May 05 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.36-1
  113. - updated to 1.36.
  114. * Thu Mar 01 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.27-1
  115. - updated to 1.27.
  116. * Mon Mar 20 2017 IWAI, Masaharu <iwaim.sub@gmail.com> 1.26-1
  117. - update to 1.26
  118. - add errorref.txt
  119. - update URL tag
  120. - add Packager tag
  121. * Sat May 21 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.22-1
  122. - new upstream release
  123. * Mon Dec 30 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.12-1
  124. - new upstream release
  125. * Mon Apr 4 2011 IWAI, Masaharu <iwai@alib.jp> 1.10-1
  126. - new upstream release
  127. * Sat Oct 02 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.9-1
  128. - new upstream release
  129. * Thu Apr 29 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.7-1
  130. - new upstream release
  131. - added --disable-static to %%configure
  132. - built with new toolchain
  133. * Sat Jun 27 2009 NAKAMURA Kenta <kenta@vinelinux.org> 1.6-3
  134. - added compat32 package for x86_64 arch support
  135. * Tue Mar 31 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.6-2
  136. - spec in utf-8
  137. - remove static lib
  138. * Tue Mar 18 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.6-1vl5
  139. - new upstream release
  140. - used _dist_release macro
  141. * Fri Mar 09 2007 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.4-0vl1
  142. - new upstream release
  143. - add Vendor/Distribution tag
  144. * Sun Apr 09 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.3-0vl1
  145. - new upstream release
  146. * Tue Nov 30 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0-0vl1
  147. - initial build for Vine Linux
  148. * Tue Aug 31 2004 Bill Nottingham <notting@redhat.com> - 1.0-1
  149. - update to 1.0
  150. * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
  151. - rebuilt
  152. * Fri Apr 16 2004 Bill Nottingham <notting@redhat.com> - 0.7-1
  153. - adapt upstream specfile