gnome-keyring/gnome-keyring.spec

238 lines
6.2 KiB
RPMSpec
Raw Normal View History

%define gtk2_version 2.3.1
Summary: A framework for managing user passwords and other secrets
Name: gnome-keyring
2007-07-30 23:45:04 +00:00
Version: 2.19.6.1
Release: 1%{?dist}
2005-03-02 15:49:43 +00:00
License: GPL/LGPL
Group: System Environment/Libraries
2007-05-21 03:43:09 +00:00
Source: http://download.gnome.org/sources/gnome-keyring/2.19/gnome-keyring-%{version}.tar.bz2
2007-07-31 00:18:42 +00:00
Patch0: pam.patch
URL: http://www.gnome.org
2006-12-19 06:12:52 +00:00
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: gtk2-devel >= %{gtk2_version}
2007-02-12 18:38:15 +00:00
BuildRequires: dbus-devel >= 1.0
BuildRequires: gettext
2007-05-21 03:43:09 +00:00
BuildRequires: libgcrypt-devel
2007-07-27 22:42:05 +00:00
BuildRequires: pam-devel
2007-07-27 22:50:42 +00:00
BuildRequires: hal-devel
2007-07-27 20:39:37 +00:00
BuildRequires: autoconf, automake, libtool
2007-07-27 20:53:17 +00:00
BuildRequires: intltool
BuildRequires: perl(XML::Parser)
%description
gnome-keyring manages passwords and other types of secrets
for the user, storing them encrypted with a main password.
Applications can use the gnome-keyring library to integrate
with the keyring.
%package devel
2006-06-13 14:53:00 +00:00
Summary: The files needed for gnome-keyring application development
Group: Development/Libraries
2006-11-07 03:24:58 +00:00
Requires: %name = %{version}-%{release}
Requires: glib2-devel
2006-11-07 03:24:58 +00:00
Requires: pkgconfig
2007-07-09 04:35:41 +00:00
# for /usr/share/gtk-doc/html
Requires: gtk-doc
%description devel
The gnome-keyring-devel package contains the libraries and
include files that you can use to develop applications that
use gnome-keyring.
2007-07-27 20:02:29 +00:00
%package pam
Summary: A pam module for unlocking keyrings at login time
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
# for /lib/security
Requires: pam
%description pam
The gnome-keyring-pam package contains a pam module that can
automatically unlock the "login" keyring when the user logs in
and start the keyring daemon.
%prep
%setup -q -n gnome-keyring-%{version}
2007-07-31 00:18:42 +00:00
%patch0 -p1 -b .pam
%build
2007-07-27 22:34:54 +00:00
aclocal
automake
autoconf
2007-07-27 23:02:54 +00:00
%configure --disable-gtk-doc --with-pam-dir=/%{_lib}/security
make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
2007-07-27 20:02:29 +00:00
make install install-pam DESTDIR=$RPM_BUILD_ROOT
rm -f $RPM_BUILD_ROOT%{_libdir}/pam_gnome_keyring.so
%find_lang gnome-keyring
rm $RPM_BUILD_ROOT%{_libdir}/*.la
%clean
rm -rf $RPM_BUILD_ROOT
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files -f gnome-keyring.lang
%defattr(-, root, root)
%doc AUTHORS NEWS README COPYING COPYING.LIB
%{_libdir}/lib*.so.*
%{_bindir}/*
%{_libexecdir}/*
%files devel
%defattr(-, root, root)
%{_libdir}/lib*.so
%{_libdir}/pkgconfig/*
%{_includedir}/*
2006-06-13 14:53:00 +00:00
%{_datadir}/gtk-doc/html/gnome-keyring/
2007-07-27 20:02:29 +00:00
%files pam
%defattr(-, root, root)
/%{_lib}/security/*
%changelog
2007-07-30 23:45:04 +00:00
* Mon Jul 30 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.6.1-1
- Update to 2.19.6.1
2007-07-30 17:43:12 +00:00
* Mon Jul 30 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.6-2
- Backport a fix from upstream
2007-07-27 20:02:29 +00:00
* Fri Jul 27 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.6-1
- Update to 2.19.6
- Add a pam subpackage
2007-07-09 04:35:41 +00:00
* Mon Jul 9 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.5-1
- Update to 2.19.5
2007-05-21 03:43:09 +00:00
* Sun May 20 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.2-1
- Update to 2.19.2
2007-03-13 17:14:06 +00:00
* Tue Mar 13 2007 Matthias Clasen <mclasen@redhat.com> - 0.8-1
- Update to 0.8
2007-02-25 04:20:14 +00:00
* Sat Feb 24 2007 Matthias Clasen <mclasen@redhat.com> - 0.7.92-1
- Update to 0.7.92
2007-02-12 18:38:15 +00:00
* Mon Feb 12 2007 Matthias Clasen <mclasen@redhat.com> - 0.7.91-1
- Update to 0.7.91
2007-02-08 20:36:20 +00:00
* Thu Feb 8 2007 Matthias Clasen <mclasen@redhat.com> - 0.7.3-2
- Package review cleanup
2007-01-11 02:30:27 +00:00
* Wed Jan 10 2007 Matthias Clasen <mclasen@redhat.com> - 0.7.3-1
- Update to 0.7.3
2006-12-19 06:12:52 +00:00
* Tue Dec 19 2006 Matthias Clasen <mclasen@redhat.com> - 0.7.2-1
- Update to 0.7.2
2006-11-07 03:24:58 +00:00
* Mon Nov 6 2006 Matthias Clasen <mclasen@redhat.com> - 0.7.1-1
- Update to 0.7.1
2006-09-04 09:05:47 +00:00
* Mon Sep 4 2006 Alexander Larsson <alexl@redhat.com> - 0.6.0-1
- update to 0.6.0
* Wed Aug 23 2006 Dan Williams <dcbw@redhat.com> - 0.5.2-2.fc6
- Fix null pointer dereference (Gnome.org #352587)
2006-08-21 13:42:45 +00:00
* Mon Aug 21 2006 Matthias Clasen <mclasen@redhat.com> - 0.5.2-1.fc6
- Update to 0.5.2
2006-07-12 05:59:15 +00:00
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.5.1-1.1
- rebuild
2006-06-13 14:22:42 +00:00
* Tue Jun 13 2006 Matthias Clasen <mclasen@redhat.com> - 0.5.1-1
- Update to 0.5.1
* Mon May 29 2006 Alexander Larsson <alexl@redhat.com> - 0.4.9-2
- buildrequire gettext (#193377)
2006-03-13 13:06:55 +00:00
* Mon Mar 13 2006 Matthias Clasen <mclasen@redhat.com> - 0.4.9-1
- Update to 0.4.9
2006-02-27 18:33:31 +00:00
* Mon Feb 27 2006 Matthias Clasen <mclasen@redhat.com> - 0.4.8-1
- Update to 0.4.8
2006-02-13 12:38:47 +00:00
* Mon Feb 13 2006 Matthias Clasen <mclasen@redhat.com> - 0.4.7-1
- Update to 0.4.7
2006-02-11 03:13:51 +00:00
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.4.6-1.2.1
- bump again for double-long bug on ppc(64)
2006-02-07 11:51:53 +00:00
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.4.6-1.2
- rebuilt for new gcc4.1 snapshot and glibc changes
2005-12-09 22:40:39 +00:00
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
- rebuilt
2005-11-30 18:41:52 +00:00
* Wed Nov 30 2005 Matthias Clasen <mclasen@redhat.com> 0.4.6-1
- Update to 0.4.6
2005-09-29 19:47:36 +00:00
* Thu Sep 29 2005 Matthias Clasen <mclasen@redhat.com> 0.4.5-1
- Update to 0.4.5
2005-09-07 18:52:40 +00:00
* Wed Sep 7 2005 Matthias Clasen <mclasen@redhat.com> 0.4.4-1
- Update to 0.4.4
2005-08-16 18:27:04 +00:00
* Tue Aug 16 2005 David Zeuthen <davidz@redhat.com> 0.4.3-2
- Rebuilt
2005-08-04 17:56:06 +00:00
* Thu Aug 4 2005 Matthias Clasen <mclasen@redhat.com> 0.4.3-1
- New upstream version
2005-03-18 16:24:39 +00:00
* Fri Mar 18 2005 David Zeuthen <davidz@redhat.com> 0.4.2-1
- New upstream version
2005-03-02 15:39:23 +00:00
* Wed Mar 2 2005 Alex Larsson <alexl@redhat.com> 0.4.1-2
- Rebuild
2005-02-01 21:20:31 +00:00
* Tue Feb 1 2005 Matthias Clasen <mclasen@redhat.com> - 0.4.1-1
- Update to 0.4.1
2004-09-13 09:52:34 +00:00
* Mon Sep 13 2004 Alexander Larsson <alexl@redhat.com> - 0.4.0-1
- update to 0.4.0
* Tue Aug 31 2004 Alex Larsson <alexl@redhat.com> 0.3.3-1
- update to 0.3.3
* Thu Aug 12 2004 Alexander Larsson <alexl@redhat.com> - 0.3.2-1
- update to 0.3.2
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
- rebuilt
* Thu Apr 1 2004 Alex Larsson <alexl@redhat.com> 0.2.0-1
- update to 0.2.0
* Wed Mar 10 2004 Alexander Larsson <alexl@redhat.com> 0.1.90-1
- update to 0.1.90
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
- rebuilt
* Tue Feb 24 2004 Alexander Larsson <alexl@redhat.com> 0.1.4-1
- update to 0.1.4
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
- rebuilt
* Fri Jan 30 2004 Alexander Larsson <alexl@redhat.com> 0.1.3-1
- update to 0.1.3
* Mon Jan 26 2004 Bill Nottingham <notting@redhat.com>
- tweak summary
* Mon Jan 26 2004 Alexander Larsson <alexl@redhat.com> 0.1.2-2
- devel package only needs glib2-devel, not gtk2-devel
* Fri Jan 23 2004 Alexander Larsson <alexl@redhat.com> 0.1.2-1
- First version