source: projects/specs/trunk/g/gnome-keyring/gnome-keyring-vl.spec @ 10716

Revision 10716, 9.4 KB checked in by Takemikaduchi, 8 years ago (diff)

GNOME-3.20

RevLine 
[10716]1%define gtk3_version 3.20.0
[521]2
3Summary: A framework for managing user passwords and other secrets
4Summary(ja): ユーザのパスワードや秘匿情報を管理するためのフレームワーク
5Name: gnome-keyring
[10716]6Version: 3.20.0
[8353]7Release: 1%{?_dist_release}
[521]8License: GPL/LGPL
9Group: System Environment/Libraries
[10716]10Source: http://ftp.gnome.org/pub/GNOME/sources/%{name}/3.20/%{name}-%{version}.tar.xz
[521]11URL: http://www.gnome.org
12BuildRoot: %{_tmppath}/%{name}-%{version}-root
[9602]13
14Patch2: %{name}-2.31.91-configure-vine.patch
15
[4616]16Requires: gtk3 >= %{gtk3_version}
17BuildRequires: gtk3-devel >= %{gtk3_version}
[521]18BuildRequires: dbus-devel >= 1.0
19BuildRequires: gettext
20BuildRequires: libgcrypt-devel
21BuildRequires: libtasn1-devel
[4616]22BuildRequires: openssl-devel
[6011]23BuildRequires: gcr-devel
[521]24BuildRequires: pam-devel
[7938]25BuildRequires: p11-kit-devel
26BuildRequires: libxslt
27BuildRequires: docbook-style-xsl
[521]28BuildRequires: autoconf, automake, libtool
29BuildRequires: intltool
30BuildRequires: perl(XML::Parser)
31
[9602]32# remove mate-keyring package
33Obsoletes: mate-keyring < 1.8.0
34Obsoletes: mate-keyring-devel < 1.8.0
35Obsoletes: mate-keyring-doc < 1.8.0
[521]36
[4616]37Vendor: Project Vine
38Distribution: Vine Linux
[9602]39Packager: Takemikaduchi
[521]40
41%description
42gnome-keyring manages passwords and other types of secrets
43for the user, storing them encrypted with a main password.
44Applications can use the gnome-keyring library to integrate
45with the keyring.
46
47%package pam
48Summary: A pam module for unlocking keyrings at login time
49License: LGPLv2+
50Group: System Environment/Libraries
51Requires: %{name} = %{version}-%{release}
52# for /lib/security
53Requires: pam
54
55%description pam
56The gnome-keyring-pam package contains a pam module that can
57automatically unlock the "login" keyring when the user logs in
58and start the keyring daemon.
59
60
61%prep
62%setup -q -n gnome-keyring-%{version}
[2041]63%patch2 -p1 -b .vine
[521]64
65%build
[4616]66%configure \
67        --with-gtk=3.0 \
68        --disable-gtk-doc \
[4704]69        --disable-update-mime \
[4616]70        --enable-pam \
[9073]71        --without-libcap-ng \
[7633]72        --with-pam-dir=/%{_lib}/security
[4704]73
[521]74make %{?_smp_mflags}
75
76%install
77rm -rf $RPM_BUILD_ROOT
78make install install-pam DESTDIR=$RPM_BUILD_ROOT
79
80rm -f $RPM_BUILD_ROOT%{_libdir}/pam_gnome_keyring.so
81
82%find_lang %{name}
83
84rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
85rm -f $RPM_BUILD_ROOT%{_libdir}/gnome-keyring/*.la
86rm -f $RPM_BUILD_ROOT%{_libdir}/gnome-keyring/*/*.la
[4616]87rm -f $RPM_BUILD_ROOT%{_libdir}/pkcs11/*.la
[521]88rm -f $RPM_BUILD_ROOT/%{_lib}/security/*.la
89
90%clean
91rm -rf $RPM_BUILD_ROOT
92
[4616]93%post
94/sbin/ldconfig
95if [ -x /usr/bin/gtk-update-icon-cache ]; then
96  gtk-update-icon-cache -q %{_datadir}/icons/hicolor
97fi
[4704]98update-mime-database %{_datadir}/mime > /dev/null || :
[521]99
[4616]100
[2041]101%postun
102/sbin/ldconfig
103if [ $1 -eq 0 ]; then
[4616]104        glib-compile-schemas %{_datadir}/glib-2.0/schemas
105        gtk-update-icon-cache -q %{_datadir}/icons/hicolor
[4704]106        update-mime-database %{_datadir}/mime > /dev/null || :
[521]107fi
108
[2041]109%posttrans
110glib-compile-schemas %{_datadir}/glib-2.0/schemas
[521]111
112
113%files -f %{name}.lang
114%defattr(-, root, root)
115%doc AUTHORS NEWS README COPYING COPYING.LIB
[805]116%{_sysconfdir}/xdg/autostart/gnome-keyring-pkcs11.desktop
117%{_sysconfdir}/xdg/autostart/gnome-keyring-secrets.desktop
118%{_sysconfdir}/xdg/autostart/gnome-keyring-ssh.desktop
[7633]119%{_datadir}/p11-kit/modules/gnome-keyring.module
[521]120%{_bindir}/*
121%dir %{_libdir}/gnome-keyring
122%{_libdir}/gnome-keyring/devel/*.so
[4616]123%{_libdir}/pkcs11/gnome-keyring-pkcs11.so
[521]124%{_datadir}/dbus-1/services/*
[2041]125%{_datadir}/GConf/gsettings/*
126%{_datadir}/glib-2.0/schemas/*
[8447]127%{_mandir}/man1/gnome-keyring-3.1.gz
128%{_mandir}/man1/gnome-keyring-daemon.1.gz
129%{_mandir}/man1/gnome-keyring.1.gz
[521]130
131%files pam
132%defattr(-, root, root)
133/%{_lib}/security/*.so
134
135
136%changelog
[10716]137* Sun Jul 17 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.20.0-1
138- new upstream release
139
[9791]140* Sat Oct 31 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.18.3-1
141- new upstream release
142
[9602]143* Sun Jun 14 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.16.0-1
144- new upstream release
145- add Obsoletes: mate-keyring
146
[9475]147* Sun Mar 29 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.15.92-1
148- new upstream release
149
[9073]150* Sun Oct 26 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.14.0-1
151- new upstream release
152- remove BuildRequires: libcap-ng-devel
153
[8447]154* Wed May 14 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.12.2-1
155- new upstream release
156
[8353]157* Sat Mar 29 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.12.0-1
158- new upstream release
159
[8273]160* Wed Feb 19 2014 NAKAMURA Kenta <kenta@vinelinux.org> 3.10.1-3
161- rebuilt libtasn1-3.4 and libgcrypt-1.6
162
[8085]163* Tue Dec 31 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.10.1-2
164- rebuild with VineSeed environment
165
[7938]166* Sat Oct 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.10.1-1
167- new upstream release
168- add BuildRequires: p11-kit-devel, libxslt, docbook-style-xsl
169
[7681]170* Sat May 18 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.8.2-1
171- new upstream release
172
[7633]173* Wed Apr 17 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.8.1-1
174- new upstream release
175
[7516]176* Sun Mar 03 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.3-1
177- new upstream release
178
[7119]179* Wed Nov 14 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.2-1
180- new upstream release
181
[6951]182* Tue Oct 16 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.1-1
183- new upstream release
184
[6890]185* Fri Sep 28 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.0-1
186- new upstream release
187
[6078]188* Sun Apr 22 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.4.1-1
[6011]189- new upstream release
190- remove BuildRequires: p11-kit-devel
191- add BuildRequires: gcr-devel
192- remove devel sub package
193- remove compat32 sub packages
194
[5168]195* Wed Nov 16 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.2-1
196- new upstream release
197
[5038]198* Thu Oct 20 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.1-1
199- new upstream release
200
[4850]201* Wed Sep 28 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.0-1
202- new upstream release
203
[4812]204* Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.92-1
205- new upstream release
206
[4704]207* Sat Sep 03 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.90-1
208- new upstream release
209- remove Patch3
210
[4616]211* Sun Aug 14 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.4-1
212- new upstream release
213- change BuildRequires: gtk3-devel instead of gtk2-devel
214- add BuildRequires: openssl-devel, p11-kit-devel, libcap-ng-devel
215- add Patch3 (gnome-keyring-3.1.4-git20110729.patch)
216
[2219]217* Sat Nov 20 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.32.1-1
218- new upstream release
219
[2041]220* Sun Oct 03 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.32.0-1
221- new upstream release
222- add configure option (--enable-pam)
223- remove configure option (--disable-schemas-install)
224- add Patch2 (%{name}-2.31.91-configure-vine.patch)
225
[1858]226* Tue Sep 21 2010 IWAI, Masaharu <iwai@alib.jp> 2.30.3-2
227- build with rpm-4.8.1-1 for pkg-config file
228
[1251]229* Sat Jun 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.3-1
230- new upstream release
231
[926]232* Sat May 01 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.1-1
233- new upstream release
234
[805]235* Wed Mar 31 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.0-1
236- new upstream release
237- remove BuildRequires: hal-devel
238
[623]239* Sun Mar 14 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.28.2-1
240- new upstream release
241- add BuildRequires: GConf2-devel
242
[521]243* Sat Oct 31 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.28.1-1
244- new upstream release
245
246* Sun Jul 12 2009 NAKAMURA Kenta <kenta@vinelinux.org> 2.26.3-2
247- added compat32 package for x86_64 arch support
248
249* Sat Jul 04 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.3-1
250- new upstream release
251
252* Sat Apr 25 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.1-1
253- new upstream release
254
255* Mon Mar 23 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-1
256- new upstream release
257
[7633]258* Tue Oct 28 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.24.1-1
[521]259- new upstream release
260
261* Tue Sep 23 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.24.0-1
262- new upstream release
263
264* Sat May 31 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.22.2-1
265- new upstream release
266
267* Wed Apr  9 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.22.1-1vl5
268- new upstream release
269
270* Sat Mar 22 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.22.0-1vl5
271- new upstream release
272- added BuildRequires: libtasn1-devel
273
274* Tue Dec 11 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.20.2-0vl1
275- new upstream release
276- added a pam subpackage
277
278* Fri Apr 27 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 0.8.1-0vl1
279- new upstream release
280
281* Tue May 16 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.4.9-0vl1
282- new upstream release
283
284* Mon Mar 06 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.4.8-0vl1
285- new upstream release
286
287* Sat Oct 08 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 0.4.5-0vl1
288- new upstream release
289
290* Wed Sep 21 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 0.4.4-0vl1
291- new upstream release
292
293* Fri Mar 25 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 0.4.2-0vl1
294- new upstream version
295
296* Sun Dec 12 2004 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.4.0-0vl1
297- new upstream release
298
299* Sun Aug 01 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.2-0vl1
300- initial build for Vine Linux based on fedora's spec file.
301
302* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
303- rebuilt
304
305* Thu Apr  1 2004 Alex Larsson <alexl@redhat.com> 0.2.0-1
306- update to 0.2.0
307
308* Wed Mar 10 2004 Alexander Larsson <alexl@redhat.com> 0.1.90-1
309- update to 0.1.90
310
311* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
312- rebuilt
313
314* Tue Feb 24 2004 Alexander Larsson <alexl@redhat.com> 0.1.4-1
315- update to 0.1.4
316
317* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
318- rebuilt
319
320* Fri Jan 30 2004 Alexander Larsson <alexl@redhat.com> 0.1.3-1
321- update to 0.1.3
322
323* Mon Jan 26 2004 Bill Nottingham <notting@redhat.com>
324- tweak summary
325
326* Mon Jan 26 2004 Alexander Larsson <alexl@redhat.com> 0.1.2-2
327- devel package only needs glib2-devel, not gtk2-devel
328
329* Fri Jan 23 2004 Alexander Larsson <alexl@redhat.com> 0.1.2-1
330- First version
Note: See TracBrowser for help on using the repository browser.