diff --git a/.clutter.metadata b/.clutter.metadata new file mode 100644 index 0000000..d40c210 --- /dev/null +++ b/.clutter.metadata @@ -0,0 +1 @@ +57f87cacb2d0133656e627e16eefaa6150b4a4a2 SOURCES/clutter-1.14.4.tar.xz diff --git a/README.md b/README.md deleted file mode 100644 index 0e7897f..0000000 --- a/README.md +++ /dev/null @@ -1,5 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 - -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SOURCES/0001-cally-Use-a-weak-pointer-to-hold-the-key-focus-in-Ca.patch b/SOURCES/0001-cally-Use-a-weak-pointer-to-hold-the-key-focus-in-Ca.patch new file mode 100644 index 0000000..0e7b6cd --- /dev/null +++ b/SOURCES/0001-cally-Use-a-weak-pointer-to-hold-the-key-focus-in-Ca.patch @@ -0,0 +1,53 @@ +From 19391a9626b087bd4df452e8699d53caa54c350f Mon Sep 17 00:00:00 2001 +From: Emmanuele Bassi +Date: Mon, 6 May 2013 15:46:25 -0700 +Subject: [PATCH] cally: Use a weak pointer to hold the key focus in CallyStage + +We want to avoid the pointer getting stale, and causing crashes. + +https://bugzilla.gnome.org/show_bug.cgi?id=692706 +--- + clutter/cally/cally-stage.c | 20 ++++++++++++++++++-- + 1 file changed, 18 insertions(+), 2 deletions(-) + +diff --git a/clutter/cally/cally-stage.c b/clutter/cally/cally-stage.c +index 2b1cfd1..c95ccb0 100644 +--- a/clutter/cally/cally-stage.c ++++ b/clutter/cally/cally-stage.c +@@ -139,7 +139,11 @@ cally_stage_notify_key_focus_cb (ClutterStage *stage, + AtkObject *old = NULL; + + if (self->priv->key_focus != NULL) +- old = clutter_actor_get_accessible (self->priv->key_focus); ++ { ++ g_object_remove_weak_pointer (G_OBJECT (self->priv->key_focus), ++ (gpointer *) &self->priv->key_focus); ++ old = clutter_actor_get_accessible (self->priv->key_focus); ++ } + else + old = clutter_actor_get_accessible (CLUTTER_ACTOR (stage)); + +@@ -154,7 +158,19 @@ cally_stage_notify_key_focus_cb (ClutterStage *stage, + self->priv->key_focus = key_focus; + + if (key_focus != NULL) +- new = clutter_actor_get_accessible (key_focus); ++ { ++ /* ensure that if the key focus goes away, the field inside ++ * CallyStage is reset. see bug: ++ * ++ * https://bugzilla.gnome.org/show_bug.cgi?id=692706 ++ * ++ * we remove the weak pointer above. ++ */ ++ g_object_add_weak_pointer (G_OBJECT (self->priv->key_focus), ++ (gpointer *) &self->priv->key_focus); ++ ++ new = clutter_actor_get_accessible (key_focus); ++ } + else + new = clutter_actor_get_accessible (CLUTTER_ACTOR (stage)); + +-- +1.8.1.4 + diff --git a/SOURCES/0001-x11-trap-errors-when-calling-XIQueryDevice.patch b/SOURCES/0001-x11-trap-errors-when-calling-XIQueryDevice.patch new file mode 100644 index 0000000..dac8407 --- /dev/null +++ b/SOURCES/0001-x11-trap-errors-when-calling-XIQueryDevice.patch @@ -0,0 +1,70 @@ +From d343cc6289583a7b0d929b82b740499ed588b1ab Mon Sep 17 00:00:00 2001 +From: Matthias Clasen +Date: Mon, 10 Jun 2013 21:41:24 -0400 +Subject: [PATCH] x11: trap errors when calling XIQueryDevice + +Devices can disappear at any time, causing XIQueryDevice +to throw an error. At the same time, plug a memory leak. + +https://bugzilla.gnome.org/show_bug.cgi?id=701974 +--- + clutter/x11/clutter-device-manager-xi2.c | 30 ++++++++++++++++++++++-------- + 1 file changed, 22 insertions(+), 8 deletions(-) + +diff --git a/clutter/x11/clutter-device-manager-xi2.c b/clutter/x11/clutter-device-manager-xi2.c +index 6a06cec..49ee212 100644 +--- a/clutter/x11/clutter-device-manager-xi2.c ++++ b/clutter/x11/clutter-device-manager-xi2.c +@@ -408,10 +408,16 @@ translate_hierarchy_event (ClutterBackendX11 *backend_x11, + + CLUTTER_NOTE (EVENT, "Hierarchy event: device enabled"); + ++ clutter_x11_trap_x_errors (); + info = XIQueryDevice (backend_x11->xdpy, + ev->info[i].deviceid, + &n_devices); +- add_device (manager_xi2, backend_x11, &info[0], FALSE); ++ clutter_x11_untrap_x_errors (); ++ if (info != NULL) ++ { ++ add_device (manager_xi2, backend_x11, &info[0], FALSE); ++ XIFreeDeviceInfo (info); ++ } + } + else if (ev->info[i].flags & XIDeviceDisabled) + { +@@ -448,16 +454,24 @@ translate_hierarchy_event (ClutterBackendX11 *backend_x11, + /* and attach the slave to the new master if needed */ + if (ev->info[i].flags & XISlaveAttached) + { ++ clutter_x11_trap_x_errors (); + info = XIQueryDevice (backend_x11->xdpy, + ev->info[i].deviceid, + &n_devices); +- master = g_hash_table_lookup (manager_xi2->devices_by_id, +- GINT_TO_POINTER (info->attachment)); +- _clutter_input_device_set_associated_device (slave, master); +- _clutter_input_device_add_slave (master, slave); +- +- send_changed = TRUE; +- XIFreeDeviceInfo (info); ++ clutter_x11_untrap_x_errors (); ++ if (info != NULL) ++ { ++ master = g_hash_table_lookup (manager_xi2->devices_by_id, ++ GINT_TO_POINTER (info->attachment)); ++ if (master != NULL) ++ { ++ _clutter_input_device_set_associated_device (slave, master); ++ _clutter_input_device_add_slave (master, slave); ++ ++ send_changed = TRUE; ++ } ++ XIFreeDeviceInfo (info); ++ } + } + + if (send_changed) +-- +1.8.3.1 + diff --git a/SPECS/clutter.spec b/SPECS/clutter.spec new file mode 100644 index 0000000..ebc2cbc --- /dev/null +++ b/SPECS/clutter.spec @@ -0,0 +1,532 @@ +%global _changelog_trimtime %(date +%s -d "1 year ago") + +Name: clutter +Version: 1.14.4 +Release: 3%{?dist} +Summary: Open Source software library for creating rich graphical user interfaces + +Group: Development/Libraries +License: LGPLv2+ +URL: http://www.clutter-project.org/ +Source0: http://download.gnome.org/sources/clutter/1.14/clutter-%{version}.tar.xz +# https://bugzilla.gnome.org/show_bug.cgi?id=692706 +Patch0: 0001-cally-Use-a-weak-pointer-to-hold-the-key-focus-in-Ca.patch +# https://bugzilla.gnome.org/show_bug.cgi?id=701974 +Patch1: 0001-x11-trap-errors-when-calling-XIQueryDevice.patch + +BuildRequires: glib2-devel mesa-libGL-devel pkgconfig pango-devel +BuildRequires: cairo-gobject-devel gdk-pixbuf2-devel atk-devel +BuildRequires: cogl-devel >= 1.14.0 +BuildRequires: gobject-introspection-devel >= 0.9.6 +BuildRequires: gtk3-devel +BuildRequires: json-glib-devel >= 0.12.0 +BuildRequires: libXcomposite-devel +BuildRequires: libXdamage-devel +BuildRequires: libXi-devel +Requires: gobject-introspection + +# F18 +Obsoletes: clutter-gtk010 < 0.11.4-9 +Obsoletes: clutter-gtk010-devel < 0.11.4-9 +Obsoletes: clutter-sharp < 0-0.17 +Obsoletes: clutter-sharp-devel < 0-0.17 +Obsoletes: pyclutter < 1.3.2-13 +Obsoletes: pyclutter-devel < 1.3.2-13 +Obsoletes: pyclutter-gst < 1.0.0-10 +Obsoletes: pyclutter-gst-devel < 1.0.0-10 +Obsoletes: pyclutter-gtk < 0.10.0-14 +Obsoletes: pyclutter-gtk-devel < 0.10.0-14 + +%description +Clutter is an open source software library for creating fast, +visually rich graphical user interfaces. The most obvious example +of potential usage is in media center type applications. +We hope however it can be used for a lot more. + +%package devel +Summary: Clutter development environment +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} +Requires: pkgconfig glib2-devel pango-devel fontconfig-devel +Requires: mesa-libGL-devel +Requires: gobject-introspection-devel + +%description devel +Header files and libraries for building a extension library for the +clutter + +%package doc +Summary: Documentation for %{name} +Group: Documentation +Requires: %{name} = %{version}-%{release} + +%description doc +Clutter is an open source software library for creating fast, +visually rich graphical user interfaces. The most obvious example +of potential usage is in media center type applications. +We hope however it can be used for a lot more. + +This package contains documentation for clutter. + +%prep +%setup -q +%patch0 -p1 -b .cally_crash +%patch1 -p1 -b .xi2-crash + +%build +(if ! test -x configure; then NOCONFIGURE=1 ./autogen.sh; CONFIGFLAGS=--enable-gtk-doc; fi; + %configure $CONFIGFLAGS \ + --enable-xinput + # clutter git ships with some magic to put the git log in shipped tarballs + # which gets listed in files; don't blow up if it's missing + if ! test -f ChangeLog; then + echo "Created from snapshot" > ChangeLog + fi +) + +make %{?_smp_mflags} V=1 + +%install +make install DESTDIR=%{buildroot} INSTALL='install -p' + +#Remove libtool archives. +find %{buildroot} -name '*.la' -exec rm -f {} ';' + +%find_lang clutter-1.0 + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%files -f clutter-1.0.lang +%doc COPYING NEWS README +%{_libdir}/*.so.0 +%{_libdir}/*.so.0.* +%{_libdir}/girepository-1.0/*.typelib + +%files devel +%doc ChangeLog +%{_includedir}/* +%{_libdir}/*.so +%{_libdir}/pkgconfig/*.pc +%{_datadir}/gir-1.0/*.gir + +%files doc +%{_datadir}/gtk-doc/html/clutter +%{_datadir}/gtk-doc/html/cally + +%changelog +* Sun Jun 23 2013 Matthias Clasen - 1.14.4-3 +- Backport another upstream patch for gnome-shell crashes (#954054) + +* Fri May 17 2013 Kalev Lember - 1.14.4-2 +- Backport an upstream patch for frequent gnome-shell crashes (#827158) + +* Wed May 15 2013 Peter Robinson 1.14.4-1 +- Update to 1.14.4 + +* Wed Apr 17 2013 Richard Hughes - 1.14.2-1 +- Update to 1.14.2 + +* Tue Mar 26 2013 Kalev Lember - 1.14.0-1 +- Update to 1.14.0 + +* Tue Mar 19 2013 Ray Strode 1.13.10-1 +- Update to 1.3.10 + +* Tue Mar 5 2013 Matthias Clasen 1.13.8-1 +- Update to 1.13.8 + +* Thu Feb 21 2013 Bastien Nocera 1.13.6-1 +- Update to 1.13.6 + +* Tue Feb 05 2013 Kalev Lember - 1.13.4-4 +- Backport a patch to use XI2.3, so that clutter keeps working with gtk+ 3.7.8 + +* Wed Jan 30 2013 Matthias Clasen - 1.13.4-3 +- Fix a gnome-shell crash + +* Fri Jan 25 2013 Peter Robinson 1.13.4-2 +- Rebuild for new cogl + +* Wed Jan 16 2013 Matthias Clasen - 1.13.4-1 +- Update to 1.13.4 + +* Tue Dec 18 2012 Peter Robinson 1.13.2-1 +- Update to 1.13.2 + +* Wed Oct 17 2012 Kalev Lember - 1.12.2-1 +- Update to 1.12.2 + +* Tue Sep 25 2012 Kalev Lember - 1.12.0-2 +- Obsolete clutter-gtk010 and clutter-sharp as well + +* Tue Sep 25 2012 Kalev Lember - 1.12.0-1 +- Update to 1.12.0 +- Obsolete pyclutter, -gst and -gtk packages + +* Tue Sep 18 2012 Kalev Lember - 1.11.16-1 +- Update to 1.11.16 + +* Wed Sep 05 2012 Kalev Lember - 1.11.14-2 +- Rebuilt with gobject-introspection 1.33.10 (bgo #682124) + +* Mon Sep 3 2012 Peter Robinson - 1.11.14-1 +- Update to 1.11.12 + +* Tue Aug 28 2012 Matthias Clasen - 1.11.12-3 +- Rebuild against new cogl + +* Tue Aug 21 2012 Richard Hughes - 1.11.12-1 +- Update to 1.11.12 + +* Tue Aug 7 2012 Peter Robinson - 1.11.10-1 +- Update to 1.11.10 + +* Fri Jul 27 2012 Fedora Release Engineering - 1.11.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Tue Jul 17 2012 Peter Robinson - 1.11.8-1 +- Update to 1.11.8 + +* Tue Jun 26 2012 Richard Hughes - 1.11.6-1 +- Update to 1.11.6 + +* Tue Jun 5 2012 Peter Robinson - 1.11.4-1 +- Update to 1.11.4 + +* Thu May 10 2012 Kalev Lember - 1.11.2-1 +- Update to 1.11.2 + +* Thu May 03 2012 Bastien Nocera 1.10.4-2 +- Add patches to fix crashes with touch events + +* Tue May 1 2012 Peter Robinson - 1.10.4-1 +- Update to 1.10.4 + +* Tue Apr 17 2012 Peter Robinson - 1.10.2-1 +- Update to 1.10.2 + +* Thu Apr 12 2012 Peter Hutterer 1.10.0-5 +- Fix misnamed define to enable XI 2.2 support (#809864) + +* Fri Apr 06 2012 Zeeshan Ali - 1.10.0-4 +- Include layout fix (Needed by gnome-boxes at least). + +* Wed Apr 04 2012 Kalev Lember - 1.10.0-3 +- Obsolete clutter-gesture and clutter-imcontext packages (#809864) + +* Thu Mar 29 2012 Kalev Lember - 1.10.0-2 +- Build with xi2.2 support (#803430) +- Enable the GDK backend + +* Thu Mar 22 2012 Matthias Clasen - 1.10.0-1 +- Update to 1.10.0 + +* Tue Mar 20 2012 Kalev Lember - 1.9.16-1 +- Update to 1.9.16 + +* Sat Mar 10 2012 Matthias Clasen - 1.9.14-1 +- Update to 1.9.14 + +* Sat Feb 25 2012 Matthias Clasen - 1.9.12-1 +- Update to 1.9.12 + +* Mon Feb 6 2012 Matthias Clasen - 1.9.10-1 +- Update to 1.9.10 + +* Wed Jan 25 2012 Peter Robinson - 1.9.8-1 +- 1.9.8 release +- http://ftp.gnome.org/pub/GNOME/sources/clutter/1.9/clutter-1.9.8.news +- Back to tar file releases + +* Sat Jan 21 2012 Matthias Clasen - 1.9.7-0.1.20120121 +- A snapshot that may now really work with gnome-shell + +* Thu Jan 19 2012 Matthias Clasen - 1.9.6-1 +- 1.9.6 release +- http://ftp.gnome.org/pub/GNOME/sources/clutter/1.9/clutter-1.9.6.news +- Should work with gnome-shell again + +* Wed Jan 18 2012 Peter Robinson - 1.9.4-1 +- 1.9.4 release +- http://ftp.gnome.org/pub/GNOME/sources/clutter/1.9/clutter-1.9.4.news + +* Thu Jan 12 2012 Fedora Release Engineering - 1.9.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Tue Nov 22 2011 Tomas Bzatek - 1.9.2-1 +- Update to 1.9.2 + +* Wed Oct 26 2011 Fedora Release Engineering - 1.8.2-2 +- Rebuilt for glibc bug#747377 + +* Mon Oct 17 2011 Peter Robinson - 1.8.2-1 +- 1.8.2 stable release +- http://ftp.gnome.org/pub/GNOME/sources/clutter/1.8/clutter-1.8.2.news + +* Mon Sep 19 2011 Peter Robinson - 1.8.0-1 +- 1.8.0 stable release +- http://ftp.gnome.org/pub/GNOME/sources/clutter/1.8/clutter-1.8.0.news + +* Mon Sep 12 2011 Peter Robinson - 1.7.90-1 +- Update to 1.7.90 +- http://ftp.gnome.org/pub/GNOME/sources/clutter/1.7/clutter-1.7.90.news + +* Mon Sep 5 2011 Peter Robinson - 1.7.14-1 +- Update to 1.7.14 + +* Wed Aug 31 2011 Matthias Clasen - 1.7.12-1 +- Update to 1.7.12 + +* Thu Aug 18 2011 Matthias Clasen - 1.7.10-1 +- Update to 1.7.10 + +* Mon Aug 15 2011 Peter Robinson - 1.7.8-1 +- Update to 1.7.8 + +* Tue Jul 26 2011 Matthias Clasen - 1.7.6-1 +- Update to 1.7.6 + +* Mon Jul 4 2011 Peter Robinson - 1.7.4-1 +- Update to 1.7.4 devel build +- Build against cogl +- Add patch to fix DSO linking + +* Fri Jun 24 2011 Adam Jackson 1.6.16-3 +- clutter-1.6.16-no-drm-hax.patch: Remove the insane DRM-banging fallback for + sync to vblank. + +* Fri Jun 17 2011 Tomas Bzatek - 1.6.16-2 +- Fix G_CONST_RETURN usage + +* Wed Jun 15 2011 Tomas Bzatek - 1.6.16-1 +- Update to 1.6.16 + +* Tue Apr 5 2011 Matthias Clasen - 1.6.14-1 +- Update to 1.6.14 + +* Mon Apr 4 2011 Matthias Clasen - 1.6.12-1 +- Update to 1.6.12 + +* Mon Mar 21 2011 Matthias Clasen - 1.6.10-1 +- Update to 1.6.10 + +* Mon Mar 7 2011 Matthias Clasen - 1.6.8-1 +- Update to 1.6.8 + +* Wed Mar 2 2011 Matthias Clasen - 1.6.6-2 +- Fix icon corruption in gnome-shell + +* Mon Feb 21 2011 Peter Robinson - 1.6.6-1 +- Update to 1.6.6 + +* Mon Feb 14 2011 Peter Robinson - 1.6.4-1 +- Update to 1.6.4 + +* Tue Feb 08 2011 Fedora Release Engineering - 1.6.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Mon Feb 7 2011 Peter Robinson - 1.6.2-1 +- Update to 1.6.2 + +* Mon Jan 31 2011 Peter Robinson - 1.6.0-1 +- Update to 1.6.0 + +* Mon Jan 24 2011 Peter Robinson - 1.5.14-1 +- Update to 1.5.14 + +* Wed Jan 12 2011 Peter Robinson - 1.5.12-1 +- Update to 1.5.12 + +* Tue Dec 28 2010 Peter Robinson - 1.5.10-1 +- Update to 1.5.10 + +* Mon Dec 6 2010 Peter Robinson - 1.5.8-3 +- Drop unneeded gtk2-devel builddep that causes issues for gtk3 clutter apps +- Add the independent deps that were pulled in by gtk2-devel + +* Mon Nov 29 2010 Owen Taylor - 1.5.8-2 +- Update to 1.5.8 +- Add cairo-gobject-devel dependency +- Drop unneeded patches + +* Mon Nov 22 2010 Dan Williams - 1.4.0-4 +- Add a patch cherry-picked from upstream for + http://bugzilla.clutter-project.org/attachment.cgi?id=2366 + (gnome-shell/mutter hang when gnome-settings-daemon restarts) + +* Tue Oct 5 2010 Owen Taylor - 1.4.0-3 +- Add a patch cherry-picked from upstream for + http://bugzilla.clutter-project.org/show_bug.cgi?id=2324 + (gnome-shell crashes on root background changes) + +* Wed Sep 29 2010 jkeating - 1.4.0-2 +- Rebuilt for gcc bug 634757 + +* Fri Sep 24 2010 Peter Robinson 1.4.0-1 +- Update to stable 1.4.0 release + +* Wed Sep 22 2010 Matthias Clasen - 1.3.14-1 +- Update to 1.3.14 + +* Tue Sep 21 2010 Matthias Clasen - 1.3.12-2 +- Rebuild against newer gobject-introspection + +* Tue Aug 31 2010 Colin Walters - 1.3.12-1 +- New upstream + +* Thu Jul 15 2010 Colin Walters - 1.2.10-3 +- Rebuild with new gobject-introspection + +* Mon Jul 12 2010 Colin Walters - 1.2.10-2 +- Rebuild against new gobject-introspection + +* Sun Jul 11 2010 Peter Robinson 1.2.10-1 +- Update to new upstream stable 1.2.10 release + +* Tue Jul 6 2010 Colin Walters - 1.2.8-4 +- Changes to support git snapshot builds + +* Thu Jul 1 2010 Mamoru Tasaka - 1.2.8-3 +- Rebuild for "Incompatible version 1.0 (supported: 1.1)" + for introspection file + +* Thu Jun 10 2010 Colin Walters 1.2.8-2 +- Drop gir-repository dependency, we don't need it anymore + +* Sat May 15 2010 Peter Robinson 1.2.8-1 +- Update to new upstream stable 1.2.8 release +- Drop upstreamed patches + +* Fri Apr 30 2010 Owen Taylor 1.2.6-1 +- Update to new upstream stable 1.2.6 release +- Work around Radeon driver problem with color channel confusion. +- Fix Mutter not seeing BufferSwapComplete events and freezing +- Remove incorrect warning message about BufferSwapComplete events + +* Tue Mar 20 2010 Peter Robinson 1.2.4-1 +- Update to new upstream stable 1.2.4 release + +* Mon Mar 15 2010 Peter Robinson 1.2.2-1 +- Update to new upstream stable 1.2.2 release + +* Tue Mar 2 2010 Peter Robinson 1.2.0-1 +- Update to new upstream stable 1.2.0 release + +* Sun Feb 28 2010 Peter Robinson 1.1.14-1 +- Update to 1.1.14 + +* Wed Feb 11 2010 Peter Robinson 1.1.10-2 +- Add patch to fix 64bit build + +* Wed Feb 11 2010 Peter Robinson 1.1.10-1 +- Update to 1.1.10 + +* Thu Feb 4 2010 Peter Robinson 1.1.6-1 +- Update to 1.1.6 + +* Thu Jan 7 2010 Peter Robinson 1.0.8-2 +- A few minor spec cleanups + +* Mon Jan 4 2010 Peter Robinson 1.0.8-1 +- Update to 1.0.8 + +* Tue Sep 22 2009 Bastien Nocera 1.0.6-1 +- Update to 1.0.6 + +* Sun Aug 30 2009 Owen Taylor - 1.0.4-1 +- Update to 1.0.4, update gobject-introspection requirement + +* Fri Aug 14 2009 Bastien Nocera 1.0.2-1 +- Update to 1.0.2 + +* Sun Aug 1 2009 Matthias Clasen 1.0.0-4 +- Move ChangeLog to -devel to save some space + +* Fri Jul 31 2009 Matthias Clasen 1.0.0-3 +- Drop the gir-repository-devel dep, which pulls a bunch of -devel + onto the live cd + +* Wed Jul 29 2009 Bastien Nocera 1.0.0-1 +- Update to 1.0.0 + +* Tue Jul 28 2009 Itamar Reis Peixoto - 0.9.8-3 +- fix bz #507389 + +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Fri Jul 17 2009 Bastien Nocera 0.9.8-1 +- Update to 0.9.8 + +* Fri Jul 17 2009 Bastien Nocera 0.9.6-2 +- Patch from Owen Taylor to add gobject- + introspection support to clutter (#512260) + +* Fri Jul 10 2009 Bastien Nocera 0.9.6-1 +- Update to 0.9.6 + +* Sat Jun 20 2009 Bastien Nocera 0.9.4-1 +- Update to 0.9.4 + +* Mon May 18 2009 Bastien Nocera 0.9.2-1 +- Update to 0.9.2 + +* Tue Feb 24 2009 Fedora Release Engineering - 0.8.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + + +* Wed Jan 21 2009 Allisson Azevedo 0.8.6-3 +- Remove noarch from doc subpackage + +* Wed Jan 21 2009 Allisson Azevedo 0.8.6-2 +- Added gtk-doc for cogl +- Created doc subpackage + +* Wed Jan 21 2009 Allisson Azevedo 0.8.6-1 +- Update to 0.8.6 + +* Mon Oct 6 2008 Allisson Azevedo 0.8.2-1 +- Update to 0.8.2 +- Removed clutter-0.8.0-clutter-fixed.patch + +* Sat Sep 6 2008 Allisson Azevedo 0.8.0-1 +- Update to 0.8.0 +- Added clutter-0.8.0-clutter-fixed.patch + +* Sat Jun 14 2008 Allisson Azevedo 0.6.4-1 +- Update to 0.6.4 + +* Sat May 17 2008 Allisson Azevedo 0.6.2-1 +- Update to 0.6.2 + +* Tue Feb 19 2008 Allisson Azevedo 0.6.0-1 +- Update to 0.6.0 + +* Mon Feb 18 2008 Fedora Release Engineering - 0.4.2-2 +- Autorebuild for GCC 4.3 + +* Wed Oct 3 2007 Allisson Azevedo 0.4.2-1 +- Update to 0.4.2 + +* Mon Sep 3 2007 Allisson Azevedo 0.4.1-1 +- Update to 0.4.1 + +* Sat Jul 21 2007 Allisson Azevedo 0.3.1-1 +- Update to 0.3.1 + +* Thu Apr 12 2007 Allisson Azevedo 0.2.3-1 +- Update to 0.2.3 + +* Sun Mar 28 2007 Allisson Azevedo 0.2.2-4 +- Changed buildrequires and requires + +* Sun Mar 27 2007 Allisson Azevedo 0.2.2-3 +- Fix .spec + +* Sun Mar 24 2007 Allisson Azevedo 0.2.2-2 +- Fix .spec + +* Sun Mar 23 2007 Allisson Azevedo 0.2.2-1 +- Initial RPM release