Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
d3c797944d | ||
|
e98f87b38f | ||
|
69bc70714b | ||
|
7c0b29d01a | ||
|
4a3899ac9c | ||
|
21ab21989b | ||
|
1e82b90d57 | ||
|
9b7d7f5723 | ||
|
fdb6b0dae5 | ||
|
aefe0cc60e | ||
|
7e058efb89 | ||
|
10fd83c929 |
4
.gitignore
vendored
4
.gitignore
vendored
@ -17,3 +17,7 @@ gnome-desktop-2.90.4.tar.bz2
|
||||
/gnome-desktop-3.1.2.tar.xz
|
||||
/gnome-desktop-3.1.3.tar.xz
|
||||
/gnome-desktop-3.1.4.tar.xz
|
||||
/gnome-desktop-3.1.91.tar.xz
|
||||
/gnome-desktop-3.1.92.tar.xz
|
||||
/gnome-desktop-3.2.0.tar.xz
|
||||
/gnome-desktop-3.2.1.tar.xz
|
||||
|
@ -0,0 +1,32 @@
|
||||
From a65613bf0a507a226c172bb6f503e27532efb0fa Mon Sep 17 00:00:00 2001
|
||||
From: Vincent Untz <vuntz@gnome.org>
|
||||
Date: Thu, 8 Sep 2011 19:01:35 +0200
|
||||
Subject: [PATCH] GnomeWallClock: Remove the date/time source on dispose
|
||||
|
||||
We don't do it in finalize since the dispose handler needs the objects
|
||||
that are being disposed.
|
||||
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=658583
|
||||
---
|
||||
libgnome-desktop/gnome-wall-clock.c | 5 +++++
|
||||
1 files changed, 5 insertions(+), 0 deletions(-)
|
||||
|
||||
diff --git a/libgnome-desktop/gnome-wall-clock.c b/libgnome-desktop/gnome-wall-clock.c
|
||||
index 49437d8..167619d 100644
|
||||
--- a/libgnome-desktop/gnome-wall-clock.c
|
||||
+++ b/libgnome-desktop/gnome-wall-clock.c
|
||||
@@ -84,6 +84,11 @@ gnome_wall_clock_dispose (GObject *object)
|
||||
{
|
||||
GnomeWallClock *self = GNOME_WALL_CLOCK (object);
|
||||
|
||||
+ if (self->priv->clock_update_id) {
|
||||
+ g_source_remove (self->priv->clock_update_id);
|
||||
+ self->priv->clock_update_id = 0;
|
||||
+ }
|
||||
+
|
||||
if (self->priv->tz_monitor != NULL) {
|
||||
g_object_unref (self->priv->tz_monitor);
|
||||
self->priv->tz_monitor = NULL;
|
||||
--
|
||||
1.7.6.2
|
||||
|
@ -9,14 +9,17 @@
|
||||
|
||||
Summary: Shared code among gnome-panel, gnome-session, nautilus, etc
|
||||
Name: gnome-desktop3
|
||||
Version: 3.1.4
|
||||
Release: 1%{?dist}
|
||||
Version: 3.2.1
|
||||
Release: 2%{?dist}
|
||||
URL: http://www.gnome.org
|
||||
Source0: http://download.gnome.org/sources/gnome-desktop/3.1/gnome-desktop-%{version}.tar.xz
|
||||
Source0: http://download.gnome.org/sources/gnome-desktop/3.2/gnome-desktop-%{version}.tar.xz
|
||||
|
||||
License: GPLv2+ and LGPLv2+
|
||||
Group: System Environment/Libraries
|
||||
|
||||
# needed for GnomeWallClock
|
||||
Requires: gsettings-desktop-schemas >= 3.1.91
|
||||
|
||||
Requires: redhat-menus
|
||||
### uncomment when gnome-about is packaged here
|
||||
#Requires: pycairo
|
||||
@ -89,7 +92,6 @@ rm -f $RPM_BUILD_ROOT%{_libdir}/*.a
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
%files -f %{po_package}.lang
|
||||
%defattr(-,root,root,-)
|
||||
%doc AUTHORS COPYING COPYING.LIB NEWS README
|
||||
%{_datadir}/gnome/gnome-version.xml
|
||||
# LGPL
|
||||
@ -97,7 +99,6 @@ rm -f $RPM_BUILD_ROOT%{_libdir}/*.a
|
||||
%{_libdir}/girepository-1.0/GnomeDesktop-3.0.typelib
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root,-)
|
||||
%{_libdir}/lib*.so
|
||||
%{_libdir}/pkgconfig/*
|
||||
%{_includedir}/*
|
||||
@ -105,6 +106,36 @@ rm -f $RPM_BUILD_ROOT%{_libdir}/*.a
|
||||
%doc %{_datadir}/gtk-doc/html/gnome-desktop3/
|
||||
|
||||
%changelog
|
||||
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.1-2
|
||||
- Rebuilt for glibc bug#747377
|
||||
|
||||
* Tue Oct 18 2011 Matthias Clasen <mclasen@redhat.com> - 3.2.1-1
|
||||
- Update to 3.2.1
|
||||
|
||||
* Tue Sep 27 2011 Ray <rstrode@redhat.com> - 3.2.0-1
|
||||
- Update to 3.2.0
|
||||
|
||||
* Tue Sep 27 2011 Ray <rstrode@redhat.com> - 3.2.0-1
|
||||
- Update to 3.2.0
|
||||
|
||||
* Mon Sep 19 2011 Matthias Clasen <mclasen@redhat.com> - 3.1.92-1
|
||||
- Update to 3.1.92
|
||||
|
||||
* Mon Sep 12 2011 Matthias Clasen <mclasen@redhat.com> - 3.1.91-3
|
||||
- Fix a gnome-screensaver crash
|
||||
|
||||
* Fri Sep 9 2011 Matthias Clasen <mclasen@redhat.com> - 3.1.91-2
|
||||
- Require gsettings-desktop-schemas
|
||||
|
||||
* Tue Sep 5 2011 Matthias Clasen <mclasen@redhat.com> - 3.1.91-1
|
||||
- Update to 3.1.91
|
||||
|
||||
* Tue Aug 30 2011 Matthias Clasen <mclasen@redhat.com> - 3.1.90.1-1
|
||||
- Update to 3.1.90.1
|
||||
|
||||
* Tue Aug 16 2011 Matthias Clasen <mclasen@redhat.com> - 3.1.5-1
|
||||
- Update to 3.1.5
|
||||
|
||||
* Mon Jul 25 2011 Matthias Clasen <mclasen@redhat.com> - 3.1.4-1
|
||||
- Update to 3.1.4
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user