gnome-keyring-vl.spec 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. %define gtk3_version 3.8.0
  2. Summary: A framework for managing user passwords and other secrets
  3. Summary(ja): ユーザのパスワードや秘匿情報を管理するためのフレームワーク
  4. Name: gnome-keyring
  5. Version: 3.8.2
  6. Release: 1%{?_dist_release}
  7. License: GPL/LGPL
  8. Group: System Environment/Libraries
  9. Source: http://ftp.gnome.org/pub/GNOME/sources/%{name}/3.8/%{name}-%{version}.tar.xz
  10. URL: http://www.gnome.org
  11. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  12. Requires: gtk3 >= %{gtk3_version}
  13. BuildRequires: gtk3-devel >= %{gtk3_version}
  14. BuildRequires: dbus-devel >= 1.0
  15. BuildRequires: gettext
  16. BuildRequires: libcap-ng-devel
  17. BuildRequires: libgcrypt-devel
  18. BuildRequires: libtasn1-devel
  19. BuildRequires: openssl-devel
  20. BuildRequires: gcr-devel
  21. BuildRequires: pam-devel
  22. BuildRequires: autoconf, automake, libtool
  23. BuildRequires: intltool
  24. BuildRequires: perl(XML::Parser)
  25. Patch2: %{name}-2.31.91-configure-vine.patch
  26. Vendor: Project Vine
  27. Distribution: Vine Linux
  28. %description
  29. gnome-keyring manages passwords and other types of secrets
  30. for the user, storing them encrypted with a main password.
  31. Applications can use the gnome-keyring library to integrate
  32. with the keyring.
  33. %package pam
  34. Summary: A pam module for unlocking keyrings at login time
  35. License: LGPLv2+
  36. Group: System Environment/Libraries
  37. Requires: %{name} = %{version}-%{release}
  38. # for /lib/security
  39. Requires: pam
  40. %description pam
  41. The gnome-keyring-pam package contains a pam module that can
  42. automatically unlock the "login" keyring when the user logs in
  43. and start the keyring daemon.
  44. %prep
  45. %setup -q -n gnome-keyring-%{version}
  46. %patch2 -p1 -b .vine
  47. %build
  48. %configure \
  49. --with-gtk=3.0 \
  50. --disable-gtk-doc \
  51. --disable-update-mime \
  52. --enable-pam \
  53. --with-pam-dir=/%{_lib}/security
  54. make %{?_smp_mflags}
  55. %install
  56. rm -rf $RPM_BUILD_ROOT
  57. make install install-pam DESTDIR=$RPM_BUILD_ROOT
  58. rm -f $RPM_BUILD_ROOT%{_libdir}/pam_gnome_keyring.so
  59. %find_lang %{name}
  60. rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
  61. rm -f $RPM_BUILD_ROOT%{_libdir}/gnome-keyring/*.la
  62. rm -f $RPM_BUILD_ROOT%{_libdir}/gnome-keyring/*/*.la
  63. rm -f $RPM_BUILD_ROOT%{_libdir}/pkcs11/*.la
  64. rm -f $RPM_BUILD_ROOT/%{_lib}/security/*.la
  65. %clean
  66. rm -rf $RPM_BUILD_ROOT
  67. %post
  68. /sbin/ldconfig
  69. if [ -x /usr/bin/gtk-update-icon-cache ]; then
  70. gtk-update-icon-cache -q %{_datadir}/icons/hicolor
  71. fi
  72. update-mime-database %{_datadir}/mime > /dev/null || :
  73. %postun
  74. /sbin/ldconfig
  75. if [ $1 -eq 0 ]; then
  76. glib-compile-schemas %{_datadir}/glib-2.0/schemas
  77. gtk-update-icon-cache -q %{_datadir}/icons/hicolor
  78. update-mime-database %{_datadir}/mime > /dev/null || :
  79. fi
  80. %posttrans
  81. glib-compile-schemas %{_datadir}/glib-2.0/schemas
  82. %files -f %{name}.lang
  83. %defattr(-, root, root)
  84. %doc AUTHORS NEWS README COPYING COPYING.LIB
  85. %{_sysconfdir}/xdg/autostart/gnome-keyring-pkcs11.desktop
  86. %{_sysconfdir}/xdg/autostart/gnome-keyring-secrets.desktop
  87. %{_sysconfdir}/xdg/autostart/gnome-keyring-ssh.desktop
  88. %{_sysconfdir}/xdg/autostart/gnome-keyring-gpg.desktop
  89. %{_datadir}/p11-kit/modules/gnome-keyring.module
  90. %{_bindir}/*
  91. %dir %{_libdir}/gnome-keyring
  92. %{_libdir}/gnome-keyring/devel/*.so
  93. %{_libdir}/pkcs11/gnome-keyring-pkcs11.so
  94. %{_datadir}/dbus-1/services/*
  95. %{_datadir}/GConf/gsettings/*
  96. %{_datadir}/glib-2.0/schemas/*
  97. %files pam
  98. %defattr(-, root, root)
  99. /%{_lib}/security/*.so
  100. %changelog
  101. * Sat May 18 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.8.2-1
  102. - new upstream release
  103. * Wed Apr 17 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.8.1-1
  104. - new upstream release
  105. * Sun Mar 03 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.3-1
  106. - new upstream release
  107. * Wed Nov 14 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.2-1
  108. - new upstream release
  109. * Tue Oct 16 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.1-1
  110. - new upstream release
  111. * Fri Sep 28 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.0-1
  112. - new upstream release
  113. * Sun Apr 22 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.4.1-1
  114. - new upstream release
  115. - remove BuildRequires: p11-kit-devel
  116. - add BuildRequires: gcr-devel
  117. - remove devel sub package
  118. - remove compat32 sub packages
  119. * Wed Nov 16 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.2-1
  120. - new upstream release
  121. * Thu Oct 20 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.1-1
  122. - new upstream release
  123. * Wed Sep 28 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.0-1
  124. - new upstream release
  125. * Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.92-1
  126. - new upstream release
  127. * Sat Sep 03 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.90-1
  128. - new upstream release
  129. - remove Patch3
  130. * Sun Aug 14 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.4-1
  131. - new upstream release
  132. - change BuildRequires: gtk3-devel instead of gtk2-devel
  133. - add BuildRequires: openssl-devel, p11-kit-devel, libcap-ng-devel
  134. - add Patch3 (gnome-keyring-3.1.4-git20110729.patch)
  135. * Sat Nov 20 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.32.1-1
  136. - new upstream release
  137. * Sun Oct 03 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.32.0-1
  138. - new upstream release
  139. - add configure option (--enable-pam)
  140. - remove configure option (--disable-schemas-install)
  141. - add Patch2 (%{name}-2.31.91-configure-vine.patch)
  142. * Tue Sep 21 2010 IWAI, Masaharu <iwai@alib.jp> 2.30.3-2
  143. - build with rpm-4.8.1-1 for pkg-config file
  144. * Sat Jun 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.3-1
  145. - new upstream release
  146. * Sat May 01 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.1-1
  147. - new upstream release
  148. * Wed Mar 31 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.0-1
  149. - new upstream release
  150. - remove BuildRequires: hal-devel
  151. * Sun Mar 14 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.28.2-1
  152. - new upstream release
  153. - add BuildRequires: GConf2-devel
  154. * Sat Oct 31 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.28.1-1
  155. - new upstream release
  156. * Sun Jul 12 2009 NAKAMURA Kenta <kenta@vinelinux.org> 2.26.3-2
  157. - added compat32 package for x86_64 arch support
  158. * Sat Jul 04 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.3-1
  159. - new upstream release
  160. * Sat Apr 25 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.1-1
  161. - new upstream release
  162. * Mon Mar 23 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-1
  163. - new upstream release
  164. * Tue Oct 28 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.24.1-1
  165. - new upstream release
  166. * Tue Sep 23 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.24.0-1
  167. - new upstream release
  168. * Sat May 31 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.22.2-1
  169. - new upstream release
  170. * Wed Apr 9 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.22.1-1vl5
  171. - new upstream release
  172. * Sat Mar 22 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.22.0-1vl5
  173. - new upstream release
  174. - added BuildRequires: libtasn1-devel
  175. * Tue Dec 11 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.20.2-0vl1
  176. - new upstream release
  177. - added a pam subpackage
  178. * Fri Apr 27 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 0.8.1-0vl1
  179. - new upstream release
  180. * Tue May 16 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.4.9-0vl1
  181. - new upstream release
  182. * Mon Mar 06 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.4.8-0vl1
  183. - new upstream release
  184. * Sat Oct 08 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 0.4.5-0vl1
  185. - new upstream release
  186. * Wed Sep 21 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 0.4.4-0vl1
  187. - new upstream release
  188. * Fri Mar 25 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 0.4.2-0vl1
  189. - new upstream version
  190. * Sun Dec 12 2004 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.4.0-0vl1
  191. - new upstream release
  192. * Sun Aug 01 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.2-0vl1
  193. - initial build for Vine Linux based on fedora's spec file.
  194. * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
  195. - rebuilt
  196. * Thu Apr 1 2004 Alex Larsson <alexl@redhat.com> 0.2.0-1
  197. - update to 0.2.0
  198. * Wed Mar 10 2004 Alexander Larsson <alexl@redhat.com> 0.1.90-1
  199. - update to 0.1.90
  200. * Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
  201. - rebuilt
  202. * Tue Feb 24 2004 Alexander Larsson <alexl@redhat.com> 0.1.4-1
  203. - update to 0.1.4
  204. * Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
  205. - rebuilt
  206. * Fri Jan 30 2004 Alexander Larsson <alexl@redhat.com> 0.1.3-1
  207. - update to 0.1.3
  208. * Mon Jan 26 2004 Bill Nottingham <notting@redhat.com>
  209. - tweak summary
  210. * Mon Jan 26 2004 Alexander Larsson <alexl@redhat.com> 0.1.2-2
  211. - devel package only needs glib2-devel, not gtk2-devel
  212. * Fri Jan 23 2004 Alexander Larsson <alexl@redhat.com> 0.1.2-1
  213. - First version