From 866bff04786147bd3c720b487f40a05270bde8ea Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Fri, 25 Oct 2024 14:52:54 +0300 Subject: [PATCH] import gnome-keyring-42.1-18.el10 --- .gitignore | 1 + .gnome-keyring.metadata | 1 + SOURCES/gnome-keyring-42.0-fix-strncpy.patch | 78 ++ SOURCES/gnome-keyring-c89.patch | 21 + SPECS/gnome-keyring.spec | 971 +++++++++++++++++++ 5 files changed, 1072 insertions(+) create mode 100644 .gitignore create mode 100644 .gnome-keyring.metadata create mode 100644 SOURCES/gnome-keyring-42.0-fix-strncpy.patch create mode 100644 SOURCES/gnome-keyring-c89.patch create mode 100644 SPECS/gnome-keyring.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..99eb72a --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/gnome-keyring-42.1.tar.xz diff --git a/.gnome-keyring.metadata b/.gnome-keyring.metadata new file mode 100644 index 0000000..3f85b33 --- /dev/null +++ b/.gnome-keyring.metadata @@ -0,0 +1 @@ +f1b606b08cb4af40c4b4c9f305d559357ad47779 SOURCES/gnome-keyring-42.1.tar.xz diff --git a/SOURCES/gnome-keyring-42.0-fix-strncpy.patch b/SOURCES/gnome-keyring-42.0-fix-strncpy.patch new file mode 100644 index 0000000..1e2a3f1 --- /dev/null +++ b/SOURCES/gnome-keyring-42.0-fix-strncpy.patch @@ -0,0 +1,78 @@ +From f532e3de2bd77465c976abc913e3f0a5cd09a5d2 Mon Sep 17 00:00:00 2001 +From: Matt Turner +Date: Sun, 22 May 2022 13:00:46 -0400 +Subject: [PATCH] pkcs11: Don't use strncpy when copying paths +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Using strncpy produces the following warning, which indicates that the +destination string could be left unterminated. + + CC daemon/control/gkd-control-server.lo + CCLD libgkd-control.la + CC pkcs11/rpc-layer/libgkm_rpc_layer_la-gkm-rpc-dispatch.lo +In file included from /usr/include/string.h:519, + from /usr/include/glib-2.0/glib/galloca.h:33, + from /usr/include/glib-2.0/glib.h:30, + from ./egg/egg-error.h:24, + from pkcs11/rpc-layer/gkm-rpc-dispatch.c:31: +In function ‘strncpy’, + inlined from ‘gkm_rpc_layer_startup’ at pkcs11/rpc-layer/gkm-rpc-dispatch.c:2382:2: +/usr/include/bits/string_fortified.h:95:10: warning: ‘__builtin_strncpy’ specified bound 108 equals destination size [-Wstringop-truncation] + 95 | return __builtin___strncpy_chk (__dest, __src, __len, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 96 | __glibc_objsize (__dest)); + | ~~~~~~~~~~~~~~~~~~~~~~~~~ +--- + pkcs11/rpc-layer/gkm-rpc-dispatch.c | 4 +++- + pkcs11/rpc-layer/gkm-rpc-module.c | 4 +++- + 2 files changed, 6 insertions(+), 2 deletions(-) + +diff --git a/pkcs11/rpc-layer/gkm-rpc-dispatch.c b/pkcs11/rpc-layer/gkm-rpc-dispatch.c +index 72d2ced1..dbedb355 100644 +--- a/pkcs11/rpc-layer/gkm-rpc-dispatch.c ++++ b/pkcs11/rpc-layer/gkm-rpc-dispatch.c +@@ -31,6 +31,8 @@ + #include "egg/egg-error.h" + #include "egg/egg-unix-credentials.h" + ++#include ++ + #include + #include + #include +@@ -2379,7 +2381,7 @@ gkm_rpc_layer_startup (const char *prefix) + memset(&addr, 0, sizeof(addr)); + addr.sun_family = AF_UNIX; + unlink (pkcs11_socket_path); +- strncpy (addr.sun_path, pkcs11_socket_path, sizeof (addr.sun_path)); ++ g_strlcpy (addr.sun_path, pkcs11_socket_path, sizeof (addr.sun_path)); + if (bind (sock, (struct sockaddr*)&addr, sizeof (addr)) < 0) { + gkm_rpc_warn ("couldn't bind to pkcs11 socket: %s: %s", + pkcs11_socket_path, strerror (errno)); +diff --git a/pkcs11/rpc-layer/gkm-rpc-module.c b/pkcs11/rpc-layer/gkm-rpc-module.c +index 24457ce1..515b18a4 100644 +--- a/pkcs11/rpc-layer/gkm-rpc-module.c ++++ b/pkcs11/rpc-layer/gkm-rpc-module.c +@@ -29,6 +29,8 @@ + + #include "egg/egg-unix-credentials.h" + ++#include ++ + #include + #include + #include +@@ -233,7 +235,7 @@ call_connect (CallState *cs) + debug (("connecting to: %s", pkcs11_socket_path)); + + addr.sun_family = AF_UNIX; +- strncpy (addr.sun_path, pkcs11_socket_path, sizeof (addr.sun_path)); ++ g_strlcpy (addr.sun_path, pkcs11_socket_path, sizeof (addr.sun_path)); + + sock = socket (AF_UNIX, SOCK_STREAM, 0); + if (sock < 0) { +-- +GitLab + diff --git a/SOURCES/gnome-keyring-c89.patch b/SOURCES/gnome-keyring-c89.patch new file mode 100644 index 0000000..d24cb6c --- /dev/null +++ b/SOURCES/gnome-keyring-c89.patch @@ -0,0 +1,21 @@ +S-expressions test: Call gkm_crypto_sign_xsa with correct size type + +The underlying type for gsize can be unsigned int, which is a distinct +type from unsigned long (the type behind CK_ULONG). The mismatch +results in compilation failures with GCC 14. + +Submitted upstream: + +diff --git a/pkcs11/gkm/test-sexp.c b/pkcs11/gkm/test-sexp.c +index ba104a0e5b776669..fccf672353ddf42f 100644 +--- a/pkcs11/gkm/test-sexp.c ++++ b/pkcs11/gkm/test-sexp.c +@@ -224,7 +224,7 @@ test_sign_verify (Test *test, gconstpointer unused) + guchar data[] = TEST_DATA; + guchar data_size = TEST_DATA_SIZE; + guchar signature[128]; +- gsize signature_size = 128; ++ CK_ULONG signature_size = 128; + + /* RSA */ + /* sign some data */ diff --git a/SPECS/gnome-keyring.spec b/SPECS/gnome-keyring.spec new file mode 100644 index 0000000..8e74235 --- /dev/null +++ b/SPECS/gnome-keyring.spec @@ -0,0 +1,971 @@ +## START: Set by rpmautospec +## (rpmautospec version 0.6.1) +## RPMAUTOSPEC: autorelease, autochangelog +%define autorelease(e:s:pb:n) %{?-p:0.}%{lua: + release_number = 18; + base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}")); + print(release_number + base_release_number - 1); +}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}} +## END: Set by rpmautospec + +%global glib2_version 2.44.0 +%global gcr_version 3.27.90 +%global gcrypt_version 1.2.2 + +%bcond_without ssh_agent + +Name: gnome-keyring +Version: 42.1 +Release: %autorelease +Summary: Framework for managing passwords and other secrets + +# egg/ is (GPL-2.0-or-later OR LGPL-3.0-or-later) OR BSD-3-Clause +# pkcs11/ is MPL-1.1 OR GPL-2.0-or-later OR LGPL-2.1-or-later +License: GPL-2.0-only AND GPL-2.0-or-later AND LGPL-2.1-or-later AND ((GPL-2.0-or-later OR LGPL-3.0-or-later) OR BSD-3-Clause) AND (MPL-1.1 OR GPL-2.0-or-later OR LGPL-2.1-or-later) +URL: https://wiki.gnome.org/Projects/GnomeKeyring +Source0: https://download.gnome.org/sources/%{name}/42/%{name}-%{version}.tar.xz +# https://gitlab.gnome.org/GNOME/gnome-keyring/-/merge_requests/52 +Patch0: gnome-keyring-42.0-fix-strncpy.patch +Patch1: gnome-keyring-c89.patch + +BuildRequires: pkgconfig(gcr-3) >= %{gcr_version} +BuildRequires: pkgconfig(glib-2.0) >= %{glib2_version} +BuildRequires: pkgconfig(libsystemd) +BuildRequires: pkgconfig(systemd) +BuildRequires: pkgconfig(p11-kit-1) +BuildRequires: docbook-dtds +BuildRequires: docbook-style-xsl +BuildRequires: gcc +BuildRequires: gettext +BuildRequires: intltool +BuildRequires: libgcrypt-devel >= %{gcrypt_version} +BuildRequires: libselinux-devel +BuildRequires: make +BuildRequires: pam-devel +BuildRequires: systemd-rpm-macros +%if %{with ssh_agent} +BuildRequires: /usr/bin/ssh-add +BuildRequires: /usr/bin/ssh-agent +%endif +BuildRequires: /usr/bin/xsltproc + +%if %{with ssh_agent} +Requires: /usr/bin/ssh-add +Requires: /usr/bin/ssh-agent +%endif +# for /usr/libexec/gcr-ssh-askpass +Requires: gcr3 + +%description +The gnome-keyring session daemon 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 pam +Summary: Pam module for unlocking keyrings +License: LGPL-2.1-or-later +Requires: %{name}%{?_isa} = %{version}-%{release} +# for /lib/security +Requires: pam%{?_isa} + +%description pam +The gnome-keyring-pam package contains a pam module that can +automatically unlock the "login" keyring when the user logs in. + + +%prep +%autosetup -p1 + + +%build +%configure \ + --with-pam-dir=%{_libdir}/security \ + --enable-pam \ + --with-systemd \ + --without-libcap-ng \ + --with-pkcs11-config=%{_datadir}/p11-kit/modules \ +%if %{with ssh_agent} + --enable-ssh-agent +%else + --disable-ssh-agent +%endif + +# avoid unneeded direct dependencies +sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' libtool + +%make_build + + +%install +%make_install + +rm $RPM_BUILD_ROOT%{_libdir}/security/*.la +rm $RPM_BUILD_ROOT%{_libdir}/pkcs11/*.la +rm $RPM_BUILD_ROOT%{_libdir}/gnome-keyring/devel/*.la + +%find_lang gnome-keyring + +%post +%systemd_user_post gnome-keyring-daemon.service + +%preun +%systemd_user_preun gnome-keyring-daemon.service + +%files -f gnome-keyring.lang +%doc AUTHORS NEWS README +%license COPYING COPYING.LIB +# LGPL +%dir %{_libdir}/gnome-keyring +%dir %{_libdir}/gnome-keyring/devel +%{_libdir}/gnome-keyring/devel/*.so +%dir %{_libdir}/pkcs11 +%{_libdir}/pkcs11/*.so +# GPL +%{_bindir}/gnome-keyring-daemon +%{_bindir}/gnome-keyring +%{_bindir}/gnome-keyring-3 +%{_datadir}/dbus-1/services/*.service +%{_sysconfdir}/xdg/autostart/* +%{_datadir}/GConf/gsettings/*.convert +%{_datadir}/glib-2.0/schemas/*.gschema.xml +%{_datadir}/p11-kit/modules/gnome-keyring.module +%dir %{_datadir}/xdg-desktop-portal +%dir %{_datadir}/xdg-desktop-portal/portals +%{_datadir}/xdg-desktop-portal/portals/gnome-keyring.portal +%{_mandir}/man1/gnome-keyring.1* +%{_mandir}/man1/gnome-keyring-3.1* +%{_mandir}/man1/gnome-keyring-daemon.1* +%{_userunitdir}/gnome-keyring-daemon.service +%{_userunitdir}/gnome-keyring-daemon.socket + +%files pam +%{_libdir}/security/*.so + + +%changelog +## START: Generated by rpmautospec +* Mon Jun 24 2024 Troy Dawson - 42.1-18 +- Bump release for June 2024 mass rebuild + +* Fri Jan 26 2024 Florian Weimer - 42.1-10 +- Fix C compatibility issue + +* Wed Jan 24 2024 Fedora Release Engineering - 42.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Fri Jan 19 2024 Fedora Release Engineering - 42.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Tue Nov 21 2023 Daiki Ueno - 42.1-7 +- Re-enable ssh-agent support (#2250704) + +* Fri Oct 20 2023 Dhanuka Warusadura - 42.1-6 +- ssh-agent: update build instructions to disable ssh component +- Introduced conditional builds based on ssh component required or not + +* Wed Jul 19 2023 Fedora Release Engineering - 42.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Thu Apr 20 2023 Carl George - 42.1-4 +- Switch dependency from /usr/libexec/gcr-ssh-askpass to gcr3 +- Resolves: rhbz#2188431 + +* Thu Jan 19 2023 Fedora Release Engineering - 42.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Thu Jul 21 2022 Fedora Release Engineering - 42.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Mon May 23 2022 David King - 42.1-1 +- Update to 42.1 + +* Thu Jan 20 2022 Fedora Release Engineering - 40.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild +- Update the path of the PKCS#11 module + +* Tue Sep 21 2021 Michael Catanzaro - 40.0-3 +- Drop dependency on libcapng +- Drop cap_ipc_lock to unbreak the D-Bus service +- Fixes #2005625 + +* Thu Jul 22 2021 Fedora Release Engineering - 40.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Fri Mar 26 2021 Kalev Lember - 40.0-1 +- Update to 40.0 + +* Fri Mar 05 2021 David King - 3.36.0-6 +- Apply upstream patch to fix capng usage (#1888978) + +* Tue Jan 26 2021 Fedora Release Engineering - 3.36.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Sat Aug 01 2020 Fedora Release Engineering - 3.36.0-4 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Mon Jul 27 2020 Fedora Release Engineering - 3.36.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Mon Jul 13 2020 Tom Stellard - 3.36.0-2 +- Use make macros +- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro + +* Wed Mar 11 2020 Kalev Lember - 3.36.0-1 +- Update to 3.36.0 + +* Mon Feb 17 2020 Kalev Lember - 3.35.90-1 +- Update to 3.35.90 + +* Tue Jan 28 2020 Fedora Release Engineering - 3.35.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Jan 16 2020 Kalev Lember - 3.35.1-1 +- Update to 3.35.1 + +* Mon Sep 30 2019 Kalev Lember - 3.34.0-1 +- Update to 3.34.0 + +* Thu Jul 25 2019 Fedora Release Engineering - 3.31.91-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sat Mar 02 2019 Kalev Lember - 3.31.91-1 +- Update to 3.31.91 + +* Sun Feb 10 2019 Kalev Lember - 3.31.90-1 +- Update to 3.31.90 + +* Thu Jan 31 2019 Fedora Release Engineering - 3.28.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Fri Jul 13 2018 Fedora Release Engineering - 3.28.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Tue May 08 2018 Kalev Lember - 3.28.2-1 +- Update to 3.28.2 + +* Mon Mar 26 2018 Kalev Lember - 3.28.0.2-1 +- Update to 3.28.0.2 + +* Tue Mar 13 2018 Kalev Lember - 3.28.0.1-1 +- Update to 3.28.0.1 + +* Mon Mar 12 2018 Kalev Lember - 3.28.0-1 +- Update to 3.28.0 + +* Mon Mar 05 2018 Kalev Lember - 3.27.92-1 +- Update to 3.27.92 +- Don't set group tags +- Remove ancient obsoletes +- Remove gsettings schema scriptlets + +* Wed Feb 07 2018 Fedora Release Engineering - 3.20.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Fri Dec 08 2017 Nikos Mavrogiannopoulos - 3.20.1-4 +- No longer register gnome-keyring as a local PKCS#11 module (#1520268) + +* Wed Aug 02 2017 Fedora Release Engineering - 3.20.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 3.20.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Tue Jul 04 2017 Debarshi Ray - 3.20.1-1 +- Update to 3.20.1 + +* Fri Feb 10 2017 Fedora Release Engineering - 3.20.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Fri Mar 25 2016 Kalev Lember - 3.20.0-1 +- Update to 3.20.0 + +* Thu Feb 18 2016 Richard Hughes - 3.19.90-1 +- Update to 3.19.90 + +* Wed Feb 03 2016 Fedora Release Engineering - 3.19.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Wed Jan 20 2016 Kalev Lember - 3.19.4-1 +- Update to 3.19.4 + +* Wed Oct 28 2015 Kalev Lember - 3.18.3-1 +- Update to 3.18.3 + +* Fri Oct 23 2015 Kalev Lember - 3.18.2-1 +- Update to 3.18.2 + +* Sat Oct 17 2015 Kalev Lember - 3.18.1-2 +- dbus: Fix object path regression from GDBus port + +* Sat Oct 17 2015 Kalev Lember - 3.18.1-1 +- Update to 3.18.1 +- Drop unused dbus build dependency +- Use make_install macro + +* Thu Oct 15 2015 Ray Strode 3.18.0-4 +- Fix password handoff in non-autologin case +- Remove unneccessary part of autologin fix + Related: #1269581 + +* Thu Oct 15 2015 Ray Strode 3.18.0-3 +- Fix deadlock in gnome-keyring when using autologin + Resolves: #1269581 + +* Wed Oct 14 2015 Kalev Lember - 3.18.0-2 +- dbus: Initialize secret service before claiming name + +* Mon Sep 28 2015 Kalev Lember - 3.18.0-1 +- Update to 3.18.0 + +* Tue Sep 15 2015 Richard Hughes - 3.17.91-1 +- Update to 3.17.91 + +* Wed Jun 17 2015 Fedora Release Engineering - 3.16.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Wed Apr 08 2015 David King - 3.16.0-1 +- Update to 3.16.0 + +* Tue Mar 17 2015 Kalev Lember - 3.15.92-1 +- Update to 3.15.92 + +* Sun Mar 08 2015 David King - 3.15.90-2 +- Add patch to fix repeated SSH agent requests + +* Thu Feb 26 2015 David King - 3.15.90-1 +- Update to 3.15.90 +- Update URL +- Use pkgconfig for BuildRequires +- Use license macro for COPYING and COPYING.LIB +- Preserve timestamps during install + +* Sat Feb 21 2015 Till Maas - 3.14.0-2 +- Rebuilt for Fedora 23 Change + https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code + +* Tue Sep 23 2014 Kalev Lember - 3.14.0-1 +- Update to 3.14.0 +- Tighten deps with the _isa macro + +* Thu Sep 11 2014 Kalev Lember - 3.13.91-1 +- Update to 3.13.91 + +* Sat Aug 16 2014 Fedora Release Engineering - 3.12.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sat Jun 07 2014 Fedora Release Engineering - 3.12.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Thu May 15 2014 Kalev Lember - 3.12.2-1 +- Update to 3.12.2 + +* Sun Mar 23 2014 Kalev Lember - 3.12.0-1 +- Update to 3.12.0 + +* Mon Mar 17 2014 Richard Hughes - 3.11.92-1 +- Update to 3.11.92 + +* Sat Dec 21 2013 Ville Skyttä - 3.10.1-2 +- Drop unneeded ldconfig calls from %%post* scriptlets. +- Fix bogus dates in %%changelog. + +* Mon Oct 28 2013 Richard Hughes - 3.10.1-1 +- Update to 3.10.1 + +* Wed Sep 25 2013 Kalev Lember - 3.10.0-1 +- Update to 3.10.0 + +* Wed Aug 28 2013 Kalev Lember - 3.9.90-1 +- Update to 3.9.90 + +* Sat Aug 03 2013 Fedora Release Engineering - 3.9.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Tue Jul 2 2013 Matthias Clasen - 3.9.1-2 +- usrmove stragglers: move pam modules to /usr/lib/security + +* Sat May 04 2013 Kalev Lember - 3.9.1-1 +- Update to 3.9.1 + +* Tue Apr 16 2013 Richard Hughes - 3.8.1-1 +- Update to 3.8.1 + +* Tue Mar 26 2013 Kalev Lember - 3.8.0-1 +- Update to 3.8.0 + +* Tue Mar 19 2013 Richard Hughes - 3.7.92-1 +- Update to 3.7.92 + +* Thu Mar 7 2013 Matthias Clasen - 3.7.91-1 +- Update to 3.7.91 + +* Wed Feb 06 2013 Kalev Lember - 3.7.5-1 +- Update to 3.7.5 + +* Mon Jan 14 2013 Tomas Bzatek - 3.7.2-2 +- Fix crash on parsing some certificates (#893162) + +* Fri Nov 23 2012 Tomas Bzatek - 3.7.2-1 +- Update to 3.7.2 + +* Fri Nov 09 2012 Kalev Lember - 3.7.1-1 +- Update to 3.7.1 + +* Fri Nov 09 2012 Rex Dieter 3.6.1-2 +- WARNING: couldn't connect to: /tmp/keyring-... (#783568, gnome#665961) + +* Tue Oct 16 2012 Kalev Lember - 3.6.1-1 +- Update to 3.6.1 + +* Tue Sep 25 2012 Matthias Clasen - 3.6.0-1 +- Update to 3.6.0 + +* Wed Sep 19 2012 Richard Hughes - 3.5.92-1 +- Update to 3.5.92 + +* Tue Sep 04 2012 Richard Hughes - 3.5.91-1 +- Update to 3.5.91 + +* Tue Aug 21 2012 Richard Hughes - 3.5.90-1 +- Update to 3.5.90 + +* Tue Aug 07 2012 Stef Walter - 3.5.5-2 +- Update for renamed gnome-keyring.module file +- Update sources + +* Tue Aug 07 2012 Richard Hughes - 3.5.5-1 +- Update to 3.5.5 + +* Fri Jul 27 2012 Fedora Release Engineering - 3.5.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Tue Jul 17 2012 Richard Hughes - 3.5.3-1 +- Update to 3.5.3 + +* Tue Apr 24 2012 Kalev Lember - 3.4.1-2 +- Silence rpm scriptlet output + +* Mon Apr 16 2012 Richard Hughes - 3.4.1-1 +- Update to 3.4.1 + +* Mon Mar 26 2012 Debarshi Ray - 3.4.0-1 +- Update to 3.4.0 + +* Wed Mar 21 2012 Kalev Lember - 3.3.92-1 +- Update to 3.3.92 + +* Fri Mar 9 2012 Matthias Clasen - 3.3.91-1 +- Update to 3.3.91 + +* Tue Feb 7 2012 Matthias Clasen - 3.3.5-1 +- Update to 3.3.5 + +* Wed Jan 18 2012 Matthias Clasen - 3.3.4-2 +- Fix a problem that prevents the ssh-agent from working + +* Tue Jan 17 2012 Matthias Clasen - 3.3.4-1 +- Update to 3.3.4 + +* Fri Jan 13 2012 Fedora Release Engineering - 3.3.3.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Tue Jan 3 2012 Tomas Bzatek - 3.3.3.1-3 +- Properly obsolete dead -devel subpackage (#771299) + +* Mon Dec 26 2011 Ville Skyttä - 3.3.3.1-2 +- Fix libgnome-keyring dep version syntax. + +* Thu Dec 22 2011 Matthias Clasen - 3.3.3.1-1 +- Update to 3.3.3.1 +- No more devel package + +* Wed Nov 2 2011 Matthias Clasen - 3.3.1-1 +- Update to 3.3.1 + +* Wed Oct 26 2011 Fedora Release Engineering - 3.2.1-2 +- Rebuilt for glibc bug#747377 + +* Tue Oct 18 2011 Matthias Clasen - 3.2.1-1 +- Update to 3.2.1 + +* Mon Sep 26 2011 Ray - 3.2.0-1 +- Update to 3.2.0 + +* Mon Sep 19 2011 Matthias Clasen - 3.1.92-1 +- Update to 3.1.92 + +* Tue Sep 6 2011 Matthias Clasen - 3.1.91-1 +- Update to 3.1.91 + +* Wed Aug 31 2011 Matthias Clasen - 3.1.90-1 +- Update to 3.1.90 + +* Thu Aug 18 2011 Matthias Clasen - 3.1.4-1 +- Update to 3.1.4 + +* Tue May 10 2011 Tomas Bzatek - 3.1.1-2 +- Improved libcap-ng patches + +* Mon May 9 2011 Tomas Bzatek - 3.1.1-1 +- Update to 3.1.1 + +* Mon Apr 25 2011 Matthias Clasen - 3.0.1-1 +- Update to 3.0.1 + +* Mon Apr 4 2011 Tomas Bzatek - 3.0.0-1 +- Update to 3.0.0 + +* Mon Mar 21 2011 Matthias Clasen - 2.91.93-1 +- Update to 2.91.93 + +* Tue Mar 15 2011 Tomas Bzatek - 2.91.92-3 +- Update the pam module selinux patch + +* Tue Mar 15 2011 Tomas Bzatek - 2.91.92-2 +- Set correct SELinux context of daemon started from the pam module (#684225) + +* Fri Mar 11 2011 Tomas Bzatek - 2.91.92-1 +- Update to 2.91.92 + +* Mon Mar 7 2011 Matthias Clasen 2.91.91-1 +- Update to 2.91.91 + +* Fri Feb 11 2011 Matthias Clasen 2.91.4-7 +- Rebuild against newer gtk + +* Tue Feb 08 2011 Fedora Release Engineering - 2.91.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Feb 2 2011 Matthias Clasen - 2.91.4-5 +- Rebuild against new gtk + +* Sat Jan 29 2011 Ville Skyttä - 2.91.4-4 +- Dir ownership fixes. + +* Mon Jan 17 2011 Tomas Bzatek - 2.91.4-3 +- Use file system based capabilities instead of suid bit (#668831) + +* Fri Jan 7 2011 Matthias Clasen - 2.91.4-2 +- Rebuild against new gtk + +* Mon Jan 3 2011 Tomas Bzatek - 2.91.4-1 +- Update to 2.91.4 + +* Fri Dec 3 2010 Matthias Clasen - 2.91.3-2 +- Rebuild against new gtk + +* Tue Nov 30 2010 Tomas Bzatek - 2.91.3-1 +- Update to 2.91.3 + +* Tue Nov 9 2010 Tomas Bzatek - 2.91.2-1 +- Update to 2.91.2 + +* Mon Nov 1 2010 Matthias Clasen - 2.91.1-2 +- Rebuild against newer gtk3 + +* Mon Oct 11 2010 Tomas Bzatek - 2.91.1-1 +- Update to 2.91.1 + +* Mon Oct 4 2010 Tomas Bzatek - 2.91.0-1 +- Update to 2.91.0 + +* Tue Sep 28 2010 Matthias Clasen - 2.32.0-1 +- Update to 2.32.0 + +* Sat Sep 25 2010 Owen Taylor - 2.31.92-2 +- Bump and rebuild for GTK3 ABI changes + +* Mon Sep 13 2010 Tomas Bzatek - 2.31.92-1 +- Update to 2.31.92 +- Built against gtk3 + +* Tue Aug 31 2010 Matthias Clasen - 2.31.91-1 +- Update to 2.31.91 + +* Mon Aug 23 2010 Matthias Clasen - 2.31.4-3 +- Co-own /usr/share/gtk-doc (#604359) +- Some spec file cleanups + +* Tue Jul 20 2010 Tomas Bzatek - 2.31.4-2 +- ssh-agent: fix key unlocking (#611642) + +* Tue Jun 29 2010 Tomas Bzatek - 2.31.4-1 +- Update to 2.31.4 + +* Thu Jun 24 2010 Tomas Bzatek - 2.30.3-1 +- Update to 2.30.3 + +* Mon May 3 2010 Tomas Bzatek - 2.30.1-2 +- Enable daemon autostart in XFCE +- Fix Networkmanager can no longer find secrets service (#572137) + +* Tue Apr 27 2010 Tomas Bzatek - 2.30.1-1 +- Update to 2.30.1 + +* Tue Mar 30 2010 Matthias Clasen - 2.30.0-1 +- Update to 2.30.0 + +* Mon Mar 22 2010 Tomas Bzatek - 2.29.92-2 +- More robust error display and handling +- [secret-store] Don't save session keyring to disk +- [dbus] Allow unlocking even when always unlock is not available +- [dbus] Hide the automatically unlock check when login not usable +- [login] Fix various issues storing and using auto unlock passwords + +* Wed Mar 10 2010 Tomas Bzatek - 2.29.92-1 +- Update to 2.29.92 + +* Tue Feb 16 2010 Tomas Bzatek - 2.29.90-2 +- Backport fixes from master related to storing secret value + +* Tue Feb 9 2010 Tomas Bzatek - 2.29.90-1 +- Update to 2.29.90 + +* Mon Feb 8 2010 Tomas Bzatek - 2.29.5-4 +- Backport some fixes related to password saving + +* Mon Feb 1 2010 Tomas Bzatek - 2.29.5-3 +- Fix hidden entry boxes in the new password prompt (#560345) + +* Mon Jan 25 2010 Tomas Bzatek - 2.29.5-2 +- Fix endless loop when looking for password in login keyring +- Fix undefined reference to S_ISSOCK (#557970) + +* Mon Jan 11 2010 Tomas Bzatek - 2.29.5-1 +- Update to 2.29.5 + +* Thu Jan 7 2010 Tomas Bzatek - 2.29.4-1 +- Update to 2.29.4 + +* Mon Sep 21 2009 Tomas Bzatek - 2.28.0-1 +- Update to 2.28.0 + +* Mon Sep 14 2009 Matthias Clasen - 2.27.92-1 +- Update to 2.27.92 + +* Tue Aug 11 2009 Matthias Clasen - 2.27.90-1 +- Update to 2.27.90 + +* Tue Jul 28 2009 Matthias Clasen - 2.27.5-1 +- Update to 2.27.5 + +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Mon Jul 13 2009 Matthias Clasen - 2.27.4-1 +- Update to 2.27.4 + +* Thu Jul 2 2009 Matthias Clasen - 2.26.1-2 +- Rebuild + +* Sun Apr 12 2009 Matthias Clasen - 2.26.1-1 +- Update to 2.26.1 +- See http://download.gnome.org/sources/gnome-keyring/2.26/gnome-keyring-2.26.1.news + +* Wed Apr 8 2009 Matthias Clasen - 2.26.0-4 +- Fix service activation + +* Tue Apr 7 2009 Matthias Clasen - 2.26.0-3 +- Revert the previous patch since it causes crashes + +* Thu Apr 02 2009 Richard Hughes - 2.26.0-2 +- Fix a nasty bug that's been fixed upstream where gnome-keyring-daemon + would hang when re-allocating from a pool of secure memory. + +* Mon Mar 16 2009 Tomas Bzatek - 2.26.0-1 +- Update to 2.26.0 + +* Mon Mar 2 2009 Tomas Bzatek - 2.25.92-1 +- Update to 2.25.92 + +* Tue Feb 24 2009 Fedora Release Engineering - 2.25.91-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Sat Feb 14 2009 Matthias Clasen - 2.25.91-1 +- Update to 2.25.91 + +* Tue Feb 3 2009 Matthias Clasen - 2.25.90-4 +- Update to 2.25.90 + +* Tue Jan 20 2009 Tomas Bzatek - 2.25.5-1 +- Update to 2.25.5 + +* Thu Jan 8 2009 Matthias Clasen - 2.25.4.2-1 +- Update to 2.25.4.2 + +* Tue Jan 6 2009 Tomas Bzatek - 2.25.4.1-1 +- Update to 2.25.4.1 + +* Mon Jan 5 2009 Tomas Bzatek - 2.25.4-1 +- Update to 2.25.4 + +* Sat Dec 20 2008 Ray Strode - 2.25.2-3 +- Init dbus later (fixes ssh-agent, + patch from Yanko Kaneti, bug 476300) + +* Fri Dec 12 2008 Matthias Clasen - 2.25.2-2 +- Update to 2.25.2 + +* Sun Nov 23 2008 Matthias Clasen - 2.25.1-2 +- Tweak description + +* Mon Nov 10 2008 Tomas Bzatek - 2.25.1-1 +- Update to 2.25.1 + +* Sun Oct 19 2008 Matthias Clasen - 2.24.1-1 +- Update to 2.24.1 + +* Sun Sep 21 2008 Matthias Clasen - 2.24.0-2 +- Update to 2.24.0 + +* Sun Sep 7 2008 Matthias Clasen - 2.23.92-1 +- Update to 2.23.92 + +* Thu Sep 4 2008 Matthias Clasen - 2.23.91-1 +- Update to 2.23.91 + +* Wed Aug 20 2008 Tomas Bzatek - 2.23.90-1 +- Update to 2.23.90 + +* Mon Aug 11 2008 Colin Walters - 2.22.3.6-2 +- Add --disable-acl-prompts; you can't try to maintain integrity + between two processes with the same UID and no other form of + access control. + +* Mon Aug 4 2008 Tomas Bzatek - 2.23.6-1 +- Update to 2.23.6 + +* Tue Jul 22 2008 Matthias Clasen - 2.23.5-1 +- Update to 2.23.5 + +* Thu May 29 2008 Colin Walters - 2.22.2-2 +- Add patch to nuke allow-deny dialog, see linked upstream bug + for discussion + +* Tue May 27 2008 Tomas Bzatek - 2.22.2-1 +- Update to 2.22.2 + +* Mon Apr 7 2008 Matthias Clasen - 2.22.1-1 +- Update to 2.22.1 + +* Mon Mar 10 2008 Matthias Clasen - 2.22.0-1 +- Update to 2.22.0 + +* Sun Feb 24 2008 Matthias Clasen - 2.21.92-1 +- Update to 2.21.92 + +* Tue Feb 12 2008 Matthias Clasen - 2.21.91-1 +- Update to 2.21.91 +- Drop upstreamed patch + +* Wed Feb 6 2008 Ray Strode - 2.21.90-2 +- Fix problem in patch for bug 430525 + +* Tue Jan 29 2008 Matthias Clasen - 2.21.90-1 +- Update to 2.21.90 + +* Mon Jan 28 2008 Ray Strode - 2.21.5-3 +- Don't ask for a password...ever (bug 430525) + +* Mon Jan 21 2008 Matthew Barnes - 2.21.5-2 +- Fix a race condition that was causing Evolution to hang (#429097) + +* Mon Jan 14 2008 Matthias Clasen - 2.21.5-1 +- Update to 2.21.5 + +* Tue Dec 18 2007 Matthias Clasen - 2.21.4-1 +- Update to 2.21.4 + +* Fri Dec 7 2007 Matthias Clasen - 2.21.3.2-1 +- Update to 2.21.3.2 + +* Fri Nov 30 2007 Matthias Clasen - 2.20.2-2 +- Reenable auto-unlock + +* Mon Nov 26 2007 Matthias Clasen - 2.20.2-1 +- Update to 2.20.2 + +* Sun Nov 11 2007 Matthias Clasen - 2.20.1-4 +- Don't ship a .la file (#370531) + +* Thu Oct 25 2007 Christopher Aillon - 2.20.1-3 +- Rebuild + +* Mon Oct 15 2007 Matthias Clasen - 2.20.1-2 +- Disable the auto-unlock question for now (#312531) + +* Mon Oct 15 2007 Matthias Clasen - 2.20.1-1 +- Update to 2.20.1 +- Drop obsolete patches +- Add bug ref for selinux patch + +* Tue Oct 9 2007 Matthias Clasen - 2.20-6 +- Avoid undefined symbols in the pam module + +* Mon Oct 8 2007 Alexander Larsson - 2.20-5 +- Fixed minor issue with pam-selinux issue pointed out by stef + +* Thu Oct 4 2007 Alexander Larsson - 2.20-4 +- Have the pam module tell the daemon to init the login keyring + without using the socket as selinux limits access to that + +* Thu Oct 4 2007 Alexander Larsson - 2.20-3 +- Add NO_MATCH error patch from svn. Will fix apps that + can't handle empty list matches + +* Wed Oct 3 2007 Alexander Larsson - 2.20-2 +- Backport fix from svn where newly created keyrings weren't + found +- Don't unset default keyring on daemon shutdown + +* Mon Sep 17 2007 Matthias Clasen - 2.20-1 +- Update to 2.20 + +* Tue Sep 4 2007 Matthias Clasen - 2.19.91-1 +- Update to 2.19.91 + +* Sun Aug 12 2007 Matthias Clasen - 2.19.90-1 +- Update to 2.19.90 + +* Thu Aug 2 2007 Matthias Clasen - 2.19.6.1-2 +- Update License fields + +* Mon Jul 30 2007 Matthias Clasen - 2.19.6.1-1 +- Update to 2.19.6.1 + +* Mon Jul 30 2007 Matthias Clasen - 2.19.6-2 +- Backport a fix from upstream + +* Fri Jul 27 2007 Matthias Clasen - 2.19.6-1 +- Update to 2.19.6 +- Add a pam subpackage + +* Mon Jul 9 2007 Matthias Clasen - 2.19.5-1 +- Update to 2.19.5 + +* Sun May 20 2007 Matthias Clasen - 2.19.2-1 +- Update to 2.19.2 + +* Tue Mar 13 2007 Matthias Clasen - 0.8-1 +- Update to 0.8 + +* Sat Feb 24 2007 Matthias Clasen - 0.7.92-1 +- Update to 0.7.92 + +* Mon Feb 12 2007 Matthias Clasen - 0.7.91-1 +- Update to 0.7.91 + +* Thu Feb 8 2007 Matthias Clasen - 0.7.3-2 +- Package review cleanup + +* Wed Jan 10 2007 Matthias Clasen - 0.7.3-1 +- Update to 0.7.3 + +* Tue Dec 19 2006 Matthias Clasen - 0.7.2-1 +- Update to 0.7.2 + +* Mon Nov 6 2006 Matthias Clasen - 0.7.1-1 +- Update to 0.7.1 + +* Mon Sep 4 2006 Alexander Larsson - 0.6.0-1 +- update to 0.6.0 + +* Wed Aug 23 2006 Dan Williams - 0.5.2-2.fc6 +- Fix null pointer dereference (Gnome.org #352587) + +* Mon Aug 21 2006 Matthias Clasen - 0.5.2-1.fc6 +- Update to 0.5.2 + +* Wed Jul 12 2006 Jesse Keating - 0.5.1-1.1 +- rebuild + +* Tue Jun 13 2006 Matthias Clasen - 0.5.1-1 +- Update to 0.5.1 + +* Mon May 29 2006 Alexander Larsson - 0.4.9-2 +- buildrequire gettext (#193377) + +* Mon Mar 13 2006 Matthias Clasen - 0.4.9-1 +- Update to 0.4.9 + +* Mon Feb 27 2006 Matthias Clasen - 0.4.8-1 +- Update to 0.4.8 + +* Mon Feb 13 2006 Matthias Clasen - 0.4.7-1 +- Update to 0.4.7 + +* Fri Feb 10 2006 Jesse Keating - 0.4.6-1.2.1 +- bump again for double-long bug on ppc(64) + +* Tue Feb 07 2006 Jesse Keating - 0.4.6-1.2 +- rebuilt for new gcc4.1 snapshot and glibc changes + +* Fri Dec 09 2005 Jesse Keating +- rebuilt + +* Wed Nov 30 2005 Matthias Clasen 0.4.6-1 +- Update to 0.4.6 + +* Thu Sep 29 2005 Matthias Clasen 0.4.5-1 +- Update to 0.4.5 + +* Wed Sep 7 2005 Matthias Clasen 0.4.4-1 +- Update to 0.4.4 + +* Tue Aug 16 2005 David Zeuthen 0.4.3-2 +- Rebuilt + +* Thu Aug 4 2005 Matthias Clasen 0.4.3-1 +- New upstream version + +* Fri Mar 18 2005 David Zeuthen 0.4.2-1 +- New upstream version + +* Wed Mar 2 2005 Alex Larsson 0.4.1-2 +- Rebuild + +* Tue Feb 1 2005 Matthias Clasen - 0.4.1-1 +- Update to 0.4.1 + +* Mon Sep 13 2004 Alexander Larsson - 0.4.0-1 +- update to 0.4.0 + +* Tue Aug 31 2004 Alex Larsson 0.3.3-1 +- update to 0.3.3 + +* Thu Aug 12 2004 Alexander Larsson - 0.3.2-1 +- update to 0.3.2 + +* Tue Jun 15 2004 Elliot Lee +- rebuilt + +* Thu Apr 1 2004 Alex Larsson 0.2.0-1 +- update to 0.2.0 + +* Wed Mar 10 2004 Alexander Larsson 0.1.90-1 +- update to 0.1.90 + +* Tue Mar 02 2004 Elliot Lee +- rebuilt + +* Tue Feb 24 2004 Alexander Larsson 0.1.4-1 +- update to 0.1.4 + +* Fri Feb 13 2004 Elliot Lee +- rebuilt + +* Fri Jan 30 2004 Alexander Larsson 0.1.3-1 +- update to 0.1.3 + +* Mon Jan 26 2004 Bill Nottingham +- tweak summary + +* Mon Jan 26 2004 Alexander Larsson 0.1.2-2 +- devel package only needs glib2-devel, not gtk2-devel + +* Fri Jan 23 2004 Alexander Larsson 0.1.2-1 +- First version + +## END: Generated by rpmautospec