gnome-keyring-vl.spec 9.5 KB

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