56f0ee
%global _changelog_trimtime %(date +%s -d "1 year ago")
56f0ee
56f0ee
%global with_tests 1
56f0ee
56f0ee
%global glib2_version 2.44.0
56f0ee
%global cogl_version 1.21.2
56f0ee
%global json_glib_version 0.12.0
56f0ee
%global cairo_version 1.14.0
56f0ee
%global libinput_version 0.19.0
56f0ee
56f0ee
Name:          clutter
56f0ee
Version:       1.26.2
56f0ee
Release:       8%{?dist}
56f0ee
Summary:       Open Source software library for creating rich graphical user interfaces
56f0ee
56f0ee
License:       LGPLv2+
56f0ee
URL:           http://www.clutter-project.org/
56f0ee
Source0:       https://download.gnome.org/sources/%{name}/1.26/%{name}-%{version}.tar.xz
56f0ee
56f0ee
Patch0:        0001-conform-only-listen-to-after-paint-after-paint.patch
56f0ee
56f0ee
BuildRequires: gettext
56f0ee
BuildRequires: git
56f0ee
BuildRequires: pkgconfig(atk)
56f0ee
BuildRequires: pkgconfig(cairo-gobject) >= %{cairo_version}
56f0ee
BuildRequires: pkgconfig(cogl-1.0) >= %{cogl_version}
56f0ee
BuildRequires: pkgconfig(gdk-pixbuf-2.0)
56f0ee
BuildRequires: pkgconfig(gio-2.0) >= %{glib2_version}
56f0ee
BuildRequires: pkgconfig(gobject-introspection-1.0) >= 1.39.0
56f0ee
BuildRequires: pkgconfig(gdk-3.0)
56f0ee
BuildRequires: pkgconfig(json-glib-1.0) >= %{json_glib_version}
56f0ee
BuildRequires: pkgconfig(pangocairo)
56f0ee
BuildRequires: pkgconfig(xcomposite)
56f0ee
BuildRequires: pkgconfig(xdamage)
56f0ee
BuildRequires: pkgconfig(xi)
56f0ee
BuildRequires: mesa-libGL-devel
56f0ee
BuildRequires: systemd-devel
56f0ee
BuildRequires: pkgconfig(gudev-1.0)
56f0ee
BuildRequires: pkgconfig(libinput) >= %{libinput_version}
56f0ee
BuildRequires: pkgconfig(wayland-client)
56f0ee
BuildRequires: pkgconfig(wayland-cursor)
56f0ee
BuildRequires: pkgconfig(wayland-server)
56f0ee
BuildRequires: pkgconfig(xkbcommon)
56f0ee
56f0ee
Requires:      cairo%{?_isa} >= %{cairo_version}
56f0ee
Requires:      cogl%{?_isa} >= %{cogl_version}
56f0ee
Requires:      glib2%{?_isa} >= %{glib2_version}
56f0ee
Requires:      gobject-introspection
56f0ee
Requires:      json-glib%{?_isa} >= %{json_glib_version}
56f0ee
Requires:      libinput%{?_isa} >= %{libinput_version}
56f0ee
Requires:      mesa-dri-drivers%{?_isa}
56f0ee
56f0ee
%description
56f0ee
Clutter is an open source software library for creating fast,
56f0ee
visually rich graphical user interfaces. The most obvious example
56f0ee
of potential usage is in media center type applications.
56f0ee
We hope however it can be used for a lot more.
56f0ee
56f0ee
%package devel
56f0ee
Summary:       Clutter development environment
56f0ee
Requires:      %{name}%{?_isa} = %{version}-%{release}
56f0ee
56f0ee
%description devel
56f0ee
Header files and libraries for building a extension library for the
56f0ee
clutter
56f0ee
56f0ee
%package       doc
56f0ee
Summary:       Documentation for %{name}
56f0ee
Requires:      %{name} = %{version}-%{release}
56f0ee
56f0ee
%description   doc
56f0ee
Clutter is an open source software library for creating fast,
56f0ee
visually rich graphical user interfaces. The most obvious example
56f0ee
of potential usage is in media center type applications.
56f0ee
We hope however it can be used for a lot more.
56f0ee
56f0ee
This package contains documentation for clutter.
56f0ee
56f0ee
%if 0%{?with_tests}
56f0ee
%package       tests
56f0ee
Summary:       Tests for the clutter package
56f0ee
Requires:      %{name}%{?_isa} = %{version}-%{release}
56f0ee
56f0ee
%description   tests
56f0ee
The clutter-tests package contains tests that can be used to verify
56f0ee
the functionality of the installed clutter package.
56f0ee
%endif
56f0ee
56f0ee
%prep
56f0ee
%autosetup -S git
56f0ee
56f0ee
%build
56f0ee
%configure \
56f0ee
	--enable-xinput \
56f0ee
        --enable-gdk-backend \
56f0ee
	%{?with_tests:--enable-installed-tests} \
56f0ee
        --enable-egl-backend \
56f0ee
        --enable-evdev-input \
56f0ee
        --enable-wayland-backend \
56f0ee
        --enable-wayland-compositor
56f0ee
56f0ee
make %{?_smp_mflags} V=1
56f0ee
56f0ee
%install
56f0ee
%make_install
56f0ee
56f0ee
#Remove libtool archives.
56f0ee
find %{buildroot} -name '*.la' -delete
56f0ee
56f0ee
%find_lang clutter-1.0
56f0ee
56f0ee
%ldconfig_scriptlets
56f0ee
56f0ee
%files -f clutter-1.0.lang
56f0ee
%doc NEWS README
56f0ee
%license COPYING
56f0ee
%{_libdir}/*.so.0
56f0ee
%{_libdir}/*.so.0.*
56f0ee
%{_libdir}/girepository-1.0/*.typelib
56f0ee
56f0ee
%files devel
56f0ee
%{_includedir}/*
56f0ee
%{_libdir}/*.so
56f0ee
%{_libdir}/pkgconfig/*.pc
56f0ee
%{_datadir}/gir-1.0/*.gir
56f0ee
56f0ee
%files doc
56f0ee
%{_datadir}/gtk-doc/html/clutter
56f0ee
56f0ee
%if 0%{?with_tests}
56f0ee
%files tests
56f0ee
%{_libexecdir}/installed-tests/clutter
56f0ee
%{_datadir}/installed-tests
56f0ee
%endif
56f0ee
56f0ee
%changelog
56f0ee
* Wed Feb 19 2020 Tomas Pelka <tpelka@redhat.com> - 1.26.2-8
56f0ee
- rebuild to get the new in 8.2.0
56f0ee
- plus address #1785233
56f0ee
56f0ee
* Mon Dec 17 2018 Ray Strode <rstrode@redhat.com> - 1.26.2-7
56f0ee
- rebuild
56f0ee
56f0ee
* Wed Apr 18 2018 Kalev Lember <klember@redhat.com> - 1.26.2-6
56f0ee
- Remove wayland conditionals
56f0ee
- Require mesa-dri-drivers (#1568881)
56f0ee
56f0ee
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.26.2-5
56f0ee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
56f0ee
56f0ee
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.26.2-4
56f0ee
- Switch to %%ldconfig_scriptlets
56f0ee
56f0ee
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.26.2-3
56f0ee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
56f0ee
56f0ee
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.26.2-2
56f0ee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
56f0ee
56f0ee
* Fri May 12 2017 Kalev Lember <klember@redhat.com> - 1.26.2-1
56f0ee
- Update to 1.26.2
56f0ee
56f0ee
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.26.0-2
56f0ee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
56f0ee
56f0ee
* Tue Mar 22 2016 Kalev Lember <klember@redhat.com> - 1.26.0-1
56f0ee
- Update to 1.26.0
56f0ee
56f0ee
* Fri Feb 19 2016 David King <amigadave@amigadave.com> - 1.25.6-1
56f0ee
- Update to 1.25.6 (#1310079)
56f0ee
- Use pkgconfig for BuildRequires
56f0ee
56f0ee
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.25.4-2
56f0ee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
56f0ee
56f0ee
* Thu Jan 21 2016 Kalev Lember <klember@redhat.com> - 1.25.4-1
56f0ee
- Update to 1.25.4
56f0ee
56f0ee
* Thu Dec 17 2015 Kalev Lember <klember@redhat.com> - 1.25.2-1
56f0ee
- Update to 1.25.2
56f0ee
56f0ee
* Mon Oct 12 2015 Kalev Lember <klember@redhat.com> - 1.24.2-1
56f0ee
- Update to 1.24.2
56f0ee
56f0ee
* Tue Sep 15 2015 Kalev Lember <klember@redhat.com> - 1.24.0-1
56f0ee
- Update to 1.24.0
56f0ee
56f0ee
* Fri Aug 21 2015 Kalev Lember <klember@redhat.com> - 1.23.6-1
56f0ee
- Update to 1.23.6
56f0ee
56f0ee
* Fri Aug 21 2015 Kalev Lember <klember@redhat.com> - 1.23.4-2
56f0ee
- Re-enable parallel make
56f0ee
- Use make_install macro
56f0ee
56f0ee
* Thu Jul 23 2015 Florian Müllner <fmuellner@redhat.com> - 1.23.4-1
56f0ee
- Update to 1.23.4
56f0ee
56f0ee
* Tue Jun 30 2015 Kalev Lember <klember@redhat.com> - 1.23.2-2
56f0ee
- Add minimum version requirements for a few deps
56f0ee
56f0ee
* Mon Jun 29 2015 Kalev Lember <klember@redhat.com> - 1.23.2-1
56f0ee
- Update to 1.23.2
56f0ee
56f0ee
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.22.2-3
56f0ee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
56f0ee
56f0ee
* Sun May 17 2015 Kalev Lember <kalevlember@gmail.com> - 1.22.2-2
56f0ee
- x11: Fix touchpad detection (#1206961)
56f0ee
56f0ee
* Tue May 12 2015 Kalev Lember <kalevlember@gmail.com> - 1.22.2-1
56f0ee
- Update to 1.22.2
56f0ee
56f0ee
* Thu May 07 2015 Kalev Lember <kalevlember@gmail.com> - 1.22.0-2
56f0ee
- gdk: Use RGBA visual if there is one (#1206960)
56f0ee
56f0ee
* Mon Mar 23 2015 Kalev Lember <kalevlember@gmail.com> - 1.22.0-1
56f0ee
- Update to 1.22.0
56f0ee
56f0ee
* Sun Mar 15 2015 Kalev Lember <kalevlember@gmail.com> - 1.21.8-1
56f0ee
- Update to 1.21.8
56f0ee
- Use %%license macro for the COPYING file
56f0ee
56f0ee
* Tue Mar 10 2015 Peter Hutterer <peter.hutterer@redhat.com> - 1.21.6-2
56f0ee
- Rebuild for libinput soname bump
56f0ee
56f0ee
* Tue Mar 03 2015 Kalev Lember <kalevlember@gmail.com> - 1.21.6-1
56f0ee
- Update to 1.21.6
56f0ee
56f0ee
* Thu Jan 22 2015 Florian Müllner <fmuellner@redhat.com> - 1.21.4-1
56f0ee
- Do not run "make check" (which requires access to an X display)
56f0ee
56f0ee
* Thu Jan 22 2015 Florian Müllner <fmuellner@redhat.com> - 1.21.4-1
56f0ee
- Update to 1.21.4
56f0ee
56f0ee
* Mon Jan 19 2015 Peter Hutterer <peter.hutterer@redhat.com> 1.21.2-3
56f0ee
- Run autoreconf
56f0ee
56f0ee
* Mon Jan 19 2015 Peter Hutterer <peter.hutterer@redhat.com> 1.21.2-2
56f0ee
- Update to libinput 0.8
56f0ee
56f0ee
* Thu Dec 18 2014 Richard Hughes <rhughes@redhat.com> - 1.21.2-1
56f0ee
- Update to 1.21.2
56f0ee
56f0ee
* Tue Oct 28 2014 Richard Hughes <rhughes@redhat.com> - 1.20.0-3
56f0ee
- Fix compile when not using Wayland, harder.
56f0ee
56f0ee
* Tue Oct 28 2014 Richard Hughes <rhughes@redhat.com> - 1.20.0-2
56f0ee
- Fix compile when not using Wayland.
56f0ee
56f0ee
* Mon Sep 22 2014 Kalev Lember <kalevlember@gmail.com> - 1.20.0-1
56f0ee
- Update to 1.20.0
56f0ee
56f0ee
* Wed Sep 17 2014 Kalev Lember <kalevlember@gmail.com> - 1.19.10-1
56f0ee
- Update to 1.19.10
56f0ee
56f0ee
* Fri Sep 12 2014 Peter Hutterer <peter.hutterer@redhat.com> - 1.19.8-2
56f0ee
- Rebuild for libinput soname bump
56f0ee
56f0ee
* Thu Aug 21 2014 Kalev Lember <kalevlember@gmail.com> - 1.19.8-1
56f0ee
- Update to 1.19.8
56f0ee
56f0ee
* Wed Aug 20 2014 Kalev Lember <kalevlember@gmail.com> - 1.19.6-3
56f0ee
- Backport an upstream patch for setting xkb layout index
56f0ee
56f0ee
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org>
56f0ee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
56f0ee
56f0ee
* Thu Jul 24 2014 Kalev Lember <kalevlember@gmail.com> - 1.19.6-1
56f0ee
- Update to 1.19.6
56f0ee
56f0ee
* Tue Jul 22 2014 Kalev Lember <kalevlember@gmail.com> - 1.19.4-4
56f0ee
- Rebuilt for gobject-introspection 1.41.4
56f0ee
56f0ee
* Fri Jul 11 2014 Peter Robinson <pbrobinson@fedoraproject.org> 1.19.4-2
56f0ee
- Enable make check
56f0ee
- Build installed tests (thanks Vadim Rutkovsky) RHBZ 1117375
56f0ee
- Drop old obsoletes
56f0ee
56f0ee
* Wed Jun 25 2014 Richard Hughes <rhughes@redhat.com> - 1.19.4-1
56f0ee
- Update to 1.19.4
56f0ee
56f0ee
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.19.2-2
56f0ee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
56f0ee
56f0ee
* Thu May 29 2014 Florian Müllner <fmuellner@redhat.com> - 1.19.2-1
56f0ee
- Update to 1.19.2
56f0ee
56f0ee
* Tue Apr 15 2014 Kalev Lember <kalevlember@gmail.com> - 1.18.2-1
56f0ee
- Update to 1.18.2
56f0ee
56f0ee
* Wed Mar 19 2014 Florian Müllner <fmuellner@redhat.com> - 1.18.0-1
56f0ee
- Update to 1.18.0
56f0ee
56f0ee
* Tue Mar 04 2014 Richard Hughes <rhughes@redhat.com> - 1.17.6-1
56f0ee
- Update to 1.17.6
56f0ee
56f0ee
* Wed Feb 19 2014 Richard Hughes <rhughes@redhat.com> - 1.17.4-1
56f0ee
- Update to 1.17.4
56f0ee
56f0ee
* Sun Feb 09 2014 Peter Hutterer <peter.hutterer@redhat.com> - 1.17.2-2
56f0ee
- Rebuild for libevdev soname bump
56f0ee
56f0ee
* Wed Feb 05 2014 Richard Hughes <rhughes@redhat.com> - 1.17.2-1
56f0ee
- Update to 1.17.2
56f0ee
56f0ee
* Wed Jan 29 2014 Richard Hughes <rhughes@redhat.com> - 1.16.4-1
56f0ee
- Update to 1.16.4
56f0ee
56f0ee
* Thu Dec 26 2013 Adam Williamson <awilliam@redhat.com> - 1.16.2-4
56f0ee
- backport upstream patch to stop using deprecated libevdev functions
56f0ee
56f0ee
* Mon Dec  9 2013 Matthias Clasen <mclasen@redhat.com> - 1.16.2-3
56f0ee
- A followup fix to the previous changes
56f0ee
56f0ee
* Tue Nov 26 2013 Matthias Clasen <mclasen@redhat.com> - 1.16.2-2
56f0ee
- Avoid excessive redraws when windows are moved in gnome-shell
56f0ee
56f0ee
* Thu Nov 21 2013 Richard Hughes <rhughes@redhat.com> - 1.16.2-1
56f0ee
- Update to 1.16.2
56f0ee
56f0ee
* Mon Oct 07 2013 Adam Jackson <ajax@redhat.com> 1.16.0-2
56f0ee
- Fix touchpads to not warp to bizarre places on initial touch.
56f0ee
56f0ee
* Tue Sep 24 2013 Kalev Lember <kalevlember@gmail.com> - 1.16.0-1
56f0ee
- Update to 1.16.0
56f0ee
56f0ee
* Fri Sep 20 2013 Kalev Lember <kalevlember@gmail.com> - 1.15.96-1
56f0ee
- Update to 1.15.96
56f0ee
56f0ee
* Fri Sep 20 2013 Matthias Clasen <mclasen@redhat.com> - 1.15.94-2
56f0ee
- Fix a shell crash
56f0ee
56f0ee
* Thu Sep 19 2013 Kalev Lember <kalevlember@gmail.com> - 1.15.94-1
56f0ee
- Update to 1.15.94
56f0ee
56f0ee
* Thu Sep 12 2013 Kalev Lember <kalevlember@gmail.com> - 1.15.92-3
56f0ee
- Add missing build deps
56f0ee
56f0ee
* Thu Sep 12 2013 Kalev Lember <kalevlember@gmail.com> - 1.15.92-2
56f0ee
- Add configure options that are needed to enable the gnome-shell
56f0ee
  Wayland compositor
56f0ee
56f0ee
* Tue Sep 03 2013 Kalev Lember <kalevlember@gmail.com> - 1.15.92-1
56f0ee
- Update to 1.15.92
56f0ee
56f0ee
* Thu Aug 22 2013 Kalev Lember <kalevlember@gmail.com> - 1.15.90-1
56f0ee
- Update to 1.15.90
56f0ee
56f0ee
* Fri Aug 09 2013 Kalev Lember <kalevlember@gmail.com> - 1.15.2-1
56f0ee
- Update to 1.15.2
56f0ee
- Dropped upstream patches
56f0ee
- Backport patches for wayland / cogl 1.15.4 API changes
56f0ee
56f0ee
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.14.4-4
56f0ee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
56f0ee
56f0ee
* Sun Jun 23 2013 Matthias Clasen <mclasen@redhat.com> - 1.14.4-3
56f0ee
- Backport another upstream patch for gnome-shell crashes (#954054)
56f0ee
56f0ee
* Fri May 17 2013 Kalev Lember <kalevlember@gmail.com> - 1.14.4-2
56f0ee
- Backport an upstream patch for frequent gnome-shell crashes (#827158)
56f0ee
56f0ee
* Wed May 15 2013 Peter Robinson <pbrobinson@fedoraproject.org> 1.14.4-1
56f0ee
- Update to 1.14.4
56f0ee
56f0ee
* Wed Apr 17 2013 Richard Hughes <rhughes@redhat.com> - 1.14.2-1
56f0ee
- Update to 1.14.2
56f0ee
56f0ee
* Tue Mar 26 2013 Kalev Lember <kalevlember@gmail.com> - 1.14.0-1
56f0ee
- Update to 1.14.0
56f0ee
56f0ee
* Tue Mar 19 2013 Matthias Clasen <mclasen@redhat.com> - 1.13.10-1
56f0ee
- Update to 1.13.10
56f0ee
56f0ee
* Thu Mar 14 2013 Bastien Nocera <bnocera@redhat.com> 1.13.8-4
56f0ee
- Prefer the X11 backend to the Wayland one, and enable wayland
56f0ee
56f0ee
* Thu Mar 14 2013 Matthias Clasen <mclasen@redhat.com> 1.13.8-3
56f0ee
- Enabling Wayland broke the login screen, so disable for now
56f0ee
56f0ee
* Wed Mar 13 2013 Matthias Clasen <mclasen@redhat.com> 1.13.8-2
56f0ee
- Enable Wayland backend
56f0ee
56f0ee
* Tue Mar  5 2013 Matthias Clasen <mclasen@redhat.com> 1.13.8-1
56f0ee
- Update to 1.13.8
56f0ee
56f0ee
* Thu Feb 21 2013 Bastien Nocera <bnocera@redhat.com> 1.13.6-1
56f0ee
- Update to 1.13.6
56f0ee
56f0ee
* Tue Feb 05 2013 Kalev Lember <kalevlember@gmail.com> - 1.13.4-4
56f0ee
- Backport a patch to use XI2.3, so that clutter keeps working with gtk+ 3.7.8
56f0ee
56f0ee
* Wed Jan 30 2013 Matthias Clasen <mclasen@redhat.com> - 1.13.4-3
56f0ee
- Fix a gnome-shell crash
56f0ee
56f0ee
* Fri Jan 25 2013 Peter Robinson <pbrobinson@fedoraproject.org> 1.13.4-2
56f0ee
- Rebuild for new cogl
56f0ee
56f0ee
* Wed Jan 16 2013 Matthias Clasen <mclasen@redhat.com> - 1.13.4-1
56f0ee
- Update to 1.13.4
56f0ee
56f0ee
* Tue Dec 18 2012 Peter Robinson <pbrobinson@fedoraproject.org> 1.13.2-1
56f0ee
- Update to 1.13.2
56f0ee
56f0ee
* Wed Oct 17 2012 Kalev Lember <kalevlember@gmail.com> - 1.12.2-1
56f0ee
- Update to 1.12.2
56f0ee
56f0ee
* Tue Sep 25 2012 Kalev Lember <kalevlember@gmail.com> - 1.12.0-2
56f0ee
- Obsolete clutter-gtk010 and clutter-sharp as well
56f0ee
56f0ee
* Tue Sep 25 2012 Kalev Lember <kalevlember@gmail.com> - 1.12.0-1
56f0ee
- Update to 1.12.0
56f0ee
- Obsolete pyclutter, -gst and -gtk packages
56f0ee
56f0ee
* Tue Sep 18 2012 Kalev Lember <kalevlember@gmail.com> - 1.11.16-1
56f0ee
- Update to 1.11.16
56f0ee
56f0ee
* Wed Sep 05 2012 Kalev Lember <kalevlember@gmail.com> - 1.11.14-2
56f0ee
- Rebuilt with gobject-introspection 1.33.10 (bgo #682124)
56f0ee
56f0ee
* Mon Sep  3 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.11.14-1
56f0ee
- Update to 1.11.12
56f0ee
56f0ee
* Tue Aug 28 2012 Matthias Clasen <mclasen@redhat.com> - 1.11.12-3
56f0ee
- Rebuild against new cogl
56f0ee
56f0ee
* Tue Aug 21 2012 Richard Hughes <hughsient@gmail.com> - 1.11.12-1
56f0ee
- Update to 1.11.12
56f0ee
56f0ee
* Tue Aug  7 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.11.10-1
56f0ee
- Update to 1.11.10
56f0ee
56f0ee
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.11.8-2
56f0ee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
56f0ee
56f0ee
* Tue Jul 17 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.11.8-1
56f0ee
- Update to 1.11.8
56f0ee
56f0ee
* Tue Jun 26 2012 Richard Hughes <hughsient@gmail.com> - 1.11.6-1
56f0ee
- Update to 1.11.6
56f0ee
56f0ee
* Tue Jun  5 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.11.4-1
56f0ee
- Update to 1.11.4
56f0ee
56f0ee
* Thu May 10 2012 Kalev Lember <kalevlember@gmail.com> - 1.11.2-1
56f0ee
- Update to 1.11.2
56f0ee
56f0ee
* Thu May 03 2012 Bastien Nocera <bnocera@redhat.com> 1.10.4-2
56f0ee
- Add patches to fix crashes with touch events
56f0ee
56f0ee
* Tue May  1 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.10.4-1
56f0ee
- Update to 1.10.4
56f0ee
56f0ee
* Tue Apr 17 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.10.2-1
56f0ee
- Update to 1.10.2
56f0ee
56f0ee
* Thu Apr 12 2012 Peter Hutterer <peter.hutterer@redhat.com> 1.10.0-5
56f0ee
- Fix misnamed define to enable XI 2.2 support (#809864)
56f0ee
56f0ee
* Fri Apr 06 2012 Zeeshan Ali <zeenix@redhat.com> - 1.10.0-4
56f0ee
- Include layout fix (Needed by gnome-boxes at least).
56f0ee
56f0ee
* Wed Apr 04 2012 Kalev Lember <kalevlember@gmail.com> - 1.10.0-3
56f0ee
- Obsolete clutter-gesture and clutter-imcontext packages (#809864)
56f0ee
56f0ee
* Thu Mar 29 2012 Kalev Lember <kalevlember@gmail.com> - 1.10.0-2
56f0ee
- Build with xi2.2 support (#803430)
56f0ee
- Enable the GDK backend
56f0ee
56f0ee
* Thu Mar 22 2012 Matthias Clasen <mclasen@redhat.com> - 1.10.0-1
56f0ee
- Update to 1.10.0
56f0ee
56f0ee
* Tue Mar 20 2012 Kalev Lember <kalevlember@gmail.com> - 1.9.16-1
56f0ee
- Update to 1.9.16
56f0ee
56f0ee
* Sat Mar 10 2012 Matthias Clasen <mclasen@redhat.com> - 1.9.14-1
56f0ee
- Update to 1.9.14
56f0ee
56f0ee
* Sat Feb 25 2012 Matthias Clasen <mclasen@redhat.com> - 1.9.12-1
56f0ee
- Update to 1.9.12
56f0ee
56f0ee
* Mon Feb  6 2012 Matthias Clasen <mclasen@redhat.com> - 1.9.10-1
56f0ee
- Update to 1.9.10
56f0ee
56f0ee
* Wed Jan 25 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.9.8-1
56f0ee
- 1.9.8 release
56f0ee
- http://ftp.gnome.org/pub/GNOME/sources/clutter/1.9/clutter-1.9.8.news
56f0ee
- Back to tar file releases
56f0ee
56f0ee
* Sat Jan 21 2012 Matthias Clasen <mclasen@redhat.com> - 1.9.7-0.1.20120121
56f0ee
- A snapshot that may now really work with gnome-shell
56f0ee
56f0ee
* Thu Jan 19 2012 Matthias Clasen <mclasen@redhat.com> - 1.9.6-1
56f0ee
- 1.9.6 release
56f0ee
- http://ftp.gnome.org/pub/GNOME/sources/clutter/1.9/clutter-1.9.6.news
56f0ee
- Should work with gnome-shell again
56f0ee
56f0ee
* Wed Jan 18 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.9.4-1
56f0ee
- 1.9.4 release
56f0ee
- http://ftp.gnome.org/pub/GNOME/sources/clutter/1.9/clutter-1.9.4.news
56f0ee
56f0ee
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.2-2
56f0ee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
56f0ee
56f0ee
* Tue Nov 22 2011 Tomas Bzatek <tbzatek@redhat.com> - 1.9.2-1
56f0ee
- Update to 1.9.2
56f0ee
56f0ee
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.2-2
56f0ee
- Rebuilt for glibc bug#747377
56f0ee
56f0ee
* Mon Oct 17 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 1.8.2-1
56f0ee
- 1.8.2 stable release
56f0ee
- http://ftp.gnome.org/pub/GNOME/sources/clutter/1.8/clutter-1.8.2.news
56f0ee
56f0ee
* Mon Sep 19 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 1.8.0-1
56f0ee
- 1.8.0 stable release
56f0ee
- http://ftp.gnome.org/pub/GNOME/sources/clutter/1.8/clutter-1.8.0.news
56f0ee
56f0ee
* Mon Sep 12 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 1.7.90-1
56f0ee
- Update to 1.7.90
56f0ee
- http://ftp.gnome.org/pub/GNOME/sources/clutter/1.7/clutter-1.7.90.news
56f0ee
56f0ee
* Mon Sep  5 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 1.7.14-1
56f0ee
- Update to 1.7.14
56f0ee
56f0ee
* Wed Aug 31 2011 Matthias Clasen <mclasen@redhat.com> - 1.7.12-1
56f0ee
- Update to 1.7.12
56f0ee
56f0ee
* Thu Aug 18 2011 Matthias Clasen <mclasen@redhat.com> - 1.7.10-1
56f0ee
- Update to 1.7.10
56f0ee
56f0ee
* Mon Aug 15 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 1.7.8-1
56f0ee
- Update to 1.7.8
56f0ee
56f0ee
* Tue Jul 26 2011 Matthias Clasen <mclasen@redhat.com> - 1.7.6-1
56f0ee
- Update to 1.7.6
56f0ee
56f0ee
* Mon Jul  4 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 1.7.4-1
56f0ee
- Update to 1.7.4 devel build
56f0ee
- Build against cogl
56f0ee
- Add patch to fix DSO linking
56f0ee
56f0ee
* Fri Jun 24 2011 Adam Jackson <ajax@redhat.com> 1.6.16-3
56f0ee
- clutter-1.6.16-no-drm-hax.patch: Remove the insane DRM-banging fallback for
56f0ee
  sync to vblank.
56f0ee
56f0ee
* Fri Jun 17 2011 Tomas Bzatek <tbzatek@redhat.com> - 1.6.16-2
56f0ee
- Fix G_CONST_RETURN usage
56f0ee
56f0ee
* Wed Jun 15 2011 Tomas Bzatek <tbzatek@redhat.com> - 1.6.16-1
56f0ee
- Update to 1.6.16
56f0ee
56f0ee
* Tue Apr  5 2011 Matthias Clasen <mclasen@redhat.com> - 1.6.14-1
56f0ee
- Update to 1.6.14
56f0ee
56f0ee
* Mon Apr  4 2011 Matthias Clasen <mclasen@redhat.com> - 1.6.12-1
56f0ee
- Update to 1.6.12
56f0ee
56f0ee
* Mon Mar 21 2011 Matthias Clasen <mclasen@redhat.com> - 1.6.10-1
56f0ee
- Update to 1.6.10
56f0ee
56f0ee
* Mon Mar  7 2011 Matthias Clasen <mclasen@redhat.com> - 1.6.8-1
56f0ee
- Update to 1.6.8
56f0ee
56f0ee
* Wed Mar  2 2011 Matthias Clasen <mclasen@redhat.com> - 1.6.6-2
56f0ee
- Fix icon corruption in gnome-shell
56f0ee
56f0ee
* Mon Feb 21 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 1.6.6-1
56f0ee
- Update to 1.6.6
56f0ee
56f0ee
* Mon Feb 14 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 1.6.4-1
56f0ee
- Update to 1.6.4
56f0ee
56f0ee
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.2-2
56f0ee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
56f0ee
56f0ee
* Mon Feb  7 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 1.6.2-1
56f0ee
- Update to 1.6.2
56f0ee
56f0ee
* Mon Jan 31 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 1.6.0-1
56f0ee
- Update to 1.6.0
56f0ee
56f0ee
* Mon Jan 24 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 1.5.14-1
56f0ee
- Update to 1.5.14
56f0ee
56f0ee
* Wed Jan 12 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 1.5.12-1
56f0ee
- Update to 1.5.12
56f0ee
56f0ee
* Tue Dec 28 2010 Peter Robinson <pbrobinson@fedoraproject.org> - 1.5.10-1
56f0ee
- Update to 1.5.10
56f0ee
56f0ee
* Mon Dec  6 2010 Peter Robinson <pbrobinson@fedoraproject.org> - 1.5.8-3
56f0ee
- Drop unneeded gtk2-devel builddep that causes issues for gtk3 clutter apps
56f0ee
- Add the independent deps that were pulled in by gtk2-devel
56f0ee
56f0ee
* Mon Nov 29 2010 Owen Taylor <otaylor@redhat.com> - 1.5.8-2
56f0ee
- Update to 1.5.8
56f0ee
- Add cairo-gobject-devel dependency
56f0ee
- Drop unneeded patches
56f0ee
56f0ee
* Mon Nov 22 2010 Dan Williams <dcbw@redhat.com> - 1.4.0-4
56f0ee
- Add a patch cherry-picked from upstream for
56f0ee
  http://bugzilla.clutter-project.org/attachment.cgi?id=2366
56f0ee
  (gnome-shell/mutter hang when gnome-settings-daemon restarts)
56f0ee
56f0ee
* Tue Oct  5 2010 Owen Taylor <otaylor@redhat.com> - 1.4.0-3
56f0ee
- Add a patch cherry-picked from upstream for
56f0ee
  http://bugzilla.clutter-project.org/show_bug.cgi?id=2324
56f0ee
  (gnome-shell crashes on root background changes)
56f0ee
56f0ee
* Wed Sep 29 2010 jkeating - 1.4.0-2
56f0ee
- Rebuilt for gcc bug 634757
56f0ee
56f0ee
* Fri Sep 24 2010 Peter Robinson <pbrobinson@fedoraproject.org> 1.4.0-1
56f0ee
- Update to stable 1.4.0 release
56f0ee
56f0ee
* Wed Sep 22 2010 Matthias Clasen <mclasen@redhat.com> - 1.3.14-1
56f0ee
- Update to 1.3.14
56f0ee
56f0ee
* Tue Sep 21 2010 Matthias Clasen <mclasen@redhat.com> - 1.3.12-2
56f0ee
- Rebuild against newer gobject-introspection
56f0ee
56f0ee
* Tue Aug 31 2010 Colin Walters <walters@verbum.org> - 1.3.12-1
56f0ee
- New upstream
56f0ee
56f0ee
* Thu Jul 15 2010 Colin Walters <walters@verbum.org> - 1.2.10-3
56f0ee
- Rebuild with new gobject-introspection
56f0ee
56f0ee
* Mon Jul 12 2010 Colin Walters <walters@verbum.org> - 1.2.10-2
56f0ee
- Rebuild against new gobject-introspection
56f0ee
56f0ee
* Sun Jul 11 2010 Peter Robinson <pbrobinson@fedoraproject.org> 1.2.10-1
56f0ee
- Update to new upstream stable 1.2.10 release
56f0ee
56f0ee
* Tue Jul  6 2010 Colin Walters <walters@verbum.org> - 1.2.8-4
56f0ee
- Changes to support git snapshot builds
56f0ee
56f0ee
* Thu Jul  1 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.2.8-3
56f0ee
- Rebuild for "Incompatible version 1.0 (supported: 1.1)"
56f0ee
  for introspection file
56f0ee
56f0ee
* Thu Jun 10 2010 Colin Walters <walters@verbum.org> 1.2.8-2
56f0ee
- Drop gir-repository dependency, we don't need it anymore 
56f0ee
56f0ee
* Sat May 15 2010 Peter Robinson <pbrobinson@fedoraproject.org> 1.2.8-1
56f0ee
- Update to new upstream stable 1.2.8 release
56f0ee
- Drop upstreamed patches
56f0ee
56f0ee
* Fri Apr 30 2010 Owen Taylor <otaylor@redhat.com> 1.2.6-1
56f0ee
- Update to new upstream stable 1.2.6 release
56f0ee
- Work around Radeon driver problem with color channel confusion.
56f0ee
- Fix Mutter not seeing BufferSwapComplete events and freezing
56f0ee
- Remove incorrect warning message about BufferSwapComplete events
56f0ee
56f0ee
* Tue Mar 20 2010 Peter Robinson <pbrobinson@fedoraproject.org> 1.2.4-1
56f0ee
- Update to new upstream stable 1.2.4 release
56f0ee
56f0ee
* Mon Mar 15 2010 Peter Robinson <pbrobinson@fedoraproject.org> 1.2.2-1
56f0ee
- Update to new upstream stable 1.2.2 release
56f0ee
56f0ee
* Tue Mar  2 2010 Peter Robinson <pbrobinson@fedoraproject.org> 1.2.0-1
56f0ee
- Update to new upstream stable 1.2.0 release
56f0ee
56f0ee
* Sun Feb 28 2010 Peter Robinson <pbrobinson@fedoraproject.org> 1.1.14-1
56f0ee
- Update to 1.1.14
56f0ee
56f0ee
* Wed Feb 11 2010 Peter Robinson <pbrobinson@fedoraproject.org> 1.1.10-2
56f0ee
- Add patch to fix 64bit build 
56f0ee
56f0ee
* Wed Feb 11 2010 Peter Robinson <pbrobinson@fedoraproject.org> 1.1.10-1
56f0ee
- Update to 1.1.10
56f0ee
56f0ee
* Thu Feb  4 2010 Peter Robinson <pbrobinson@fedoraproject.org> 1.1.6-1
56f0ee
- Update to 1.1.6
56f0ee
56f0ee
* Thu Jan  7 2010 Peter Robinson <pbrobinson@fedoraproject.org> 1.0.8-2
56f0ee
- A few minor spec cleanups
56f0ee
56f0ee
* Mon Jan  4 2010 Peter Robinson <pbrobinson@fedoraproject.org> 1.0.8-1
56f0ee
- Update to 1.0.8
56f0ee
56f0ee
* Tue Sep 22 2009 Bastien Nocera <bnocera@redhat.com> 1.0.6-1
56f0ee
- Update to 1.0.6
56f0ee
56f0ee
* Sun Aug 30 2009 Owen Taylor <otaylor@redhat.com> - 1.0.4-1
56f0ee
- Update to 1.0.4, update gobject-introspection requirement
56f0ee
56f0ee
* Fri Aug 14 2009 Bastien Nocera <bnocera@redhat.com> 1.0.2-1
56f0ee
- Update to 1.0.2
56f0ee
56f0ee
* Sun Aug  1 2009 Matthias Clasen <mclasen@redhat.com> 1.0.0-4
56f0ee
- Move ChangeLog to -devel to save some space
56f0ee
56f0ee
* Fri Jul 31 2009 Matthias Clasen <mclasen@redhat.com> 1.0.0-3
56f0ee
- Drop the gir-repository-devel dep, which pulls a bunch of -devel
56f0ee
  onto the live cd
56f0ee
56f0ee
* Wed Jul 29 2009 Bastien Nocera <bnocera@redhat.com> 1.0.0-1
56f0ee
- Update to 1.0.0
56f0ee
56f0ee
* Tue Jul 28 2009 Itamar Reis Peixoto <itamar@ispbrasil.com.br> - 0.9.8-3
56f0ee
- fix bz #507389
56f0ee
56f0ee
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.8-2
56f0ee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
56f0ee
56f0ee
* Fri Jul 17 2009 Bastien Nocera <bnocera@redhat.com> 0.9.8-1
56f0ee
- Update to 0.9.8
56f0ee
56f0ee
* Fri Jul 17 2009 Bastien Nocera <bnocera@redhat.com> 0.9.6-2
56f0ee
- Patch from Owen Taylor <otaylor@redhat.com> to add gobject-
56f0ee
  introspection support to clutter (#512260)
56f0ee
56f0ee
* Fri Jul 10 2009 Bastien Nocera <bnocera@redhat.com> 0.9.6-1
56f0ee
- Update to 0.9.6
56f0ee
56f0ee
* Sat Jun 20 2009 Bastien Nocera <bnocera@redhat.com> 0.9.4-1
56f0ee
- Update to 0.9.4
56f0ee
56f0ee
* Mon May 18 2009 Bastien Nocera <bnocera@redhat.com> 0.9.2-1
56f0ee
- Update to 0.9.2
56f0ee
56f0ee
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.6-4
56f0ee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
56f0ee
56f0ee
56f0ee
* Wed Jan 21 2009 Allisson Azevedo <allisson@gmail.com> 0.8.6-3
56f0ee
- Remove noarch from doc subpackage
56f0ee
56f0ee
* Wed Jan 21 2009 Allisson Azevedo <allisson@gmail.com> 0.8.6-2
56f0ee
- Added gtk-doc for cogl
56f0ee
- Created doc subpackage
56f0ee
56f0ee
* Wed Jan 21 2009 Allisson Azevedo <allisson@gmail.com> 0.8.6-1
56f0ee
- Update to 0.8.6
56f0ee
56f0ee
* Mon Oct  6 2008 Allisson Azevedo <allisson@gmail.com> 0.8.2-1
56f0ee
- Update to 0.8.2
56f0ee
- Removed clutter-0.8.0-clutter-fixed.patch
56f0ee
56f0ee
* Sat Sep  6 2008 Allisson Azevedo <allisson@gmail.com> 0.8.0-1
56f0ee
- Update to 0.8.0
56f0ee
- Added clutter-0.8.0-clutter-fixed.patch
56f0ee
56f0ee
* Sat Jun 14 2008 Allisson Azevedo <allisson@gmail.com> 0.6.4-1
56f0ee
- Update to 0.6.4
56f0ee
56f0ee
* Sat May 17 2008 Allisson Azevedo <allisson@gmail.com> 0.6.2-1
56f0ee
- Update to 0.6.2
56f0ee
56f0ee
* Tue Feb 19 2008 Allisson Azevedo <allisson@gmail.com> 0.6.0-1
56f0ee
- Update to 0.6.0
56f0ee
56f0ee
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.4.2-2
56f0ee
- Autorebuild for GCC 4.3
56f0ee
56f0ee
* Wed Oct  3 2007 Allisson Azevedo <allisson@gmail.com> 0.4.2-1
56f0ee
- Update to 0.4.2
56f0ee
56f0ee
* Mon Sep  3 2007 Allisson Azevedo <allisson@gmail.com> 0.4.1-1
56f0ee
- Update to 0.4.1
56f0ee
56f0ee
* Sat Jul 21 2007 Allisson Azevedo <allisson@gmail.com> 0.3.1-1
56f0ee
- Update to 0.3.1
56f0ee
56f0ee
* Thu Apr 12 2007 Allisson Azevedo <allisson@gmail.com> 0.2.3-1
56f0ee
- Update to 0.2.3
56f0ee
56f0ee
* Sun Mar 28 2007 Allisson Azevedo <allisson@gmail.com> 0.2.2-4
56f0ee
- Changed buildrequires and requires
56f0ee
56f0ee
* Sun Mar 27 2007 Allisson Azevedo <allisson@gmail.com> 0.2.2-3
56f0ee
- Fix .spec
56f0ee
56f0ee
* Sun Mar 24 2007 Allisson Azevedo <allisson@gmail.com> 0.2.2-2
56f0ee
- Fix .spec
56f0ee
56f0ee
* Sun Mar 23 2007 Allisson Azevedo <allisson@gmail.com> 0.2.2-1
56f0ee
- Initial RPM release