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

Revision 7516, 7.9 KB checked in by Takemikaduchi, 11 years ago (diff)

new upstream release

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