gnome-desktop3/gnome-desktop3.spec

548 lines
16 KiB
RPMSpec
Raw Normal View History

2015-10-28 09:06:13 +00:00
%global gdk_pixbuf2_version 2.33.0
%global gtk3_version 3.3.6
2015-09-15 14:27:51 +00:00
%global glib2_version 2.44.0
%global gtk_doc_version 1.14
%global gsettings_desktop_schemas_version 3.5.91
%global po_package gnome-desktop-3.0
2010-06-21 08:17:58 +00:00
Summary: Shared code among gnome-panel, gnome-session, nautilus, etc
Name: gnome-desktop3
2016-02-16 13:05:50 +00:00
Version: 3.19.90
Release: 1%{?dist}
2010-06-21 08:17:58 +00:00
URL: http://www.gnome.org
2015-10-28 09:06:13 +00:00
Source0: http://download.gnome.org/sources/gnome-desktop/3.19/gnome-desktop-%{version}.tar.xz
Patch0: 0001-default-input-sources-Switch-ja_JP-default-to-ibus-k.patch
2011-05-02 18:39:19 +00:00
2010-06-21 08:17:58 +00:00
License: GPLv2+ and LGPLv2+
Group: System Environment/Libraries
2011-09-20 01:23:19 +00:00
# needed for GnomeWallClock
Requires: gsettings-desktop-schemas >= %{gsettings_desktop_schemas_version}
2011-09-20 01:23:19 +00:00
2010-06-21 08:17:58 +00:00
# Make sure to update libgnome schema when changing this
2010-10-29 03:01:26 +00:00
Requires: system-backgrounds-gnome
2010-06-21 08:17:58 +00:00
2011-04-15 20:16:59 +00:00
# Make sure that gnome-themes-standard gets pulled in for upgrades
Requires: gnome-themes-standard
2010-06-21 08:17:58 +00:00
BuildRequires: gnome-common
2015-10-28 09:06:13 +00:00
BuildRequires: pkgconfig(gdk-pixbuf-2.0) >= %{gdk_pixbuf2_version}
BuildRequires: pkgconfig(gio-2.0) >= %{glib2_version}
BuildRequires: pkgconfig(gobject-introspection-1.0)
BuildRequires: pkgconfig(gsettings-desktop-schemas) >= %{gsettings_desktop_schemas_version}
BuildRequires: pkgconfig(gtk+-3.0) >= %{gtk3_version}
BuildRequires: pkgconfig(iso-codes)
BuildRequires: pkgconfig(xext)
BuildRequires: pkgconfig(xkeyboard-config)
BuildRequires: pkgconfig(xrandr)
2010-06-21 08:17:58 +00:00
BuildRequires: gettext
BuildRequires: gtk-doc >= %{gtk_doc_version}
BuildRequires: automake autoconf libtool intltool
2012-08-07 07:40:43 +00:00
BuildRequires: itstool
2010-06-21 08:17:58 +00:00
2015-10-28 09:06:13 +00:00
Requires: gdk-pixbuf2%{?_isa} >= %{gdk_pixbuf2_version}
# GnomeIdleMonitor API change breaks older gnome-shell versions
Conflicts: gnome-shell < 3.7.90
%if 0%{?fedora}
# From rhughes-f20-gnome-3-12 copr
Obsoletes: compat-gnome-desktop310 < 3.12
%endif
2010-06-21 08:17:58 +00:00
%description
The %{name} package contains an internal library
2010-06-21 08:17:58 +00:00
(libgnomedesktop) used to implement some portions of the GNOME
desktop, and also some data files and other shared components of the
GNOME user environment.
%package devel
Summary: Libraries and headers for %{name}
2010-06-21 08:17:58 +00:00
License: LGPLv2+
Group: Development/Libraries
2014-04-16 11:40:19 +00:00
Requires: %{name}%{?_isa} = %{version}-%{release}
2010-06-21 08:17:58 +00:00
%description devel
Libraries and header files for the GNOME-internal private library
libgnomedesktop.
2014-11-12 11:45:17 +00:00
%package tests
Summary: Tests for the %{name} package
2014-11-12 11:45:17 +00:00
Group: Development/Libraries
Requires: %{name}%{?_isa} = %{version}-%{release}
%description tests
The %{name}-tests package contains tests that can be used to verify
the functionality of the installed %{name} package.
2014-11-12 11:45:17 +00:00
2010-06-21 08:17:58 +00:00
%prep
%setup -q -n gnome-desktop-%{version}
%patch0 -p1
2010-06-21 08:17:58 +00:00
%build
2014-11-12 11:45:17 +00:00
%configure --with-pnp-ids-path="/usr/share/hwdata/pnp.ids" --enable-installed-tests
2010-06-21 08:17:58 +00:00
make %{?_smp_mflags}
%install
2015-08-18 13:16:04 +00:00
%make_install
2010-06-21 08:17:58 +00:00
# stuff we don't want
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
%find_lang %{po_package} --all-name --with-gnome
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files -f %{po_package}.lang
%doc AUTHORS NEWS README
%license COPYING COPYING.LIB
2011-01-12 01:55:07 +00:00
%{_datadir}/gnome/gnome-version.xml
2012-06-07 08:27:35 +00:00
%{_libexecdir}/gnome-rr-debug
2010-06-21 08:17:58 +00:00
# LGPL
%{_libdir}/lib*.so.*
2011-01-28 16:40:45 +00:00
%{_libdir}/girepository-1.0/GnomeDesktop-3.0.typelib
2010-06-21 08:17:58 +00:00
%files devel
%{_libdir}/lib*.so
%{_libdir}/pkgconfig/*
%{_includedir}/*
2011-01-28 16:40:45 +00:00
%{_datadir}/gir-1.0/GnomeDesktop-3.0.gir
%dir %{_datadir}/gtk-doc/
%dir %{_datadir}/gtk-doc/html/
2010-06-21 08:17:58 +00:00
%doc %{_datadir}/gtk-doc/html/gnome-desktop3/
2014-11-12 11:45:17 +00:00
%files tests
%{_libexecdir}/installed-tests/gnome-desktop
%{_datadir}/installed-tests
2010-06-21 08:17:58 +00:00
%changelog
2016-02-16 13:05:50 +00:00
* Tue Feb 16 2016 Richard Hughes <rhughes@redhat.com> - 3.19.90-1
- Update to 3.19.90
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.19.3-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
2015-12-16 07:07:19 +00:00
* Wed Dec 16 2015 Kalev Lember <klember@redhat.com> - 3.19.3-1
- Update to 3.19.3
2015-11-24 07:00:35 +00:00
* Tue Nov 24 2015 Kalev Lember <klember@redhat.com> - 3.19.2-1
- Update to 3.19.2
2015-10-28 09:06:13 +00:00
* Wed Oct 28 2015 Kalev Lember <klember@redhat.com> - 3.19.1-1
- Update to 3.19.1
2015-10-13 06:55:48 +00:00
* Tue Oct 13 2015 Kalev Lember <klember@redhat.com> - 3.18.1-1
- Update to 3.18.1
2015-09-21 15:11:24 +00:00
* Mon Sep 21 2015 Kalev Lember <klember@redhat.com> - 3.18.0-1
- Update to 3.18.0
2015-09-15 14:27:51 +00:00
* Tue Sep 15 2015 Kalev Lember <klember@redhat.com> - 3.17.92-1
- Update to 3.17.92
2015-09-03 18:38:37 +00:00
* Thu Sep 03 2015 Kalev Lember <klember@redhat.com> - 3.17.91-1
- Update to 3.17.91
2015-08-18 13:15:31 +00:00
* Tue Aug 18 2015 Kalev Lember <klember@redhat.com> - 3.17.90-1
- Update to 3.17.90
2015-08-18 13:16:04 +00:00
- Use make_install macro
2015-08-18 13:15:31 +00:00
2015-07-21 07:32:26 +00:00
* Tue Jul 21 2015 David King <amigadave@amigadave.com> - 3.17.4-1
- Update to 3.17.4
- Preserve timestamps during install
2015-07-21 07:32:26 +00:00
2015-06-24 14:00:21 +00:00
* Wed Jun 24 2015 David King <amigadave@amigadave.com> - 3.17.3-1
- Update to 3.17.3
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.17.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2015-05-31 20:40:54 +00:00
* Sun May 31 2015 Kalev Lember <kalevlember@gmail.com> - 3.17.2-1
- Update to 3.17.2
2015-05-12 09:04:09 +00:00
* Tue May 12 2015 Kalev Lember <kalevlember@gmail.com> - 3.16.2-1
- Update to 3.16.2
2015-04-15 10:12:54 +00:00
* Wed Apr 15 2015 Kalev Lember <kalevlember@gmail.com> - 3.16.1-1
- Update to 3.16.1
2015-03-23 14:31:04 +00:00
* Mon Mar 23 2015 Kalev Lember <kalevlember@gmail.com> - 3.16.0-1
- Update to 3.16.0
2015-03-17 20:29:56 +00:00
* Tue Mar 17 2015 Kalev Lember <kalevlember@gmail.com> - 3.15.92-1
- Update to 3.15.92
2015-03-02 20:26:33 +00:00
* Mon Mar 02 2015 Kalev Lember <kalevlember@gmail.com> - 3.15.91-1
- Update to 3.15.91
2015-02-16 14:57:02 +00:00
* Mon Feb 16 2015 David King <amigadave@amigadave.com> - 3.15.90-1
- Update to 3.15.90
- Use license macro for COPYING and COPYING.LIB
- Use pkgconfig for BuildRequires
2015-02-16 14:57:02 +00:00
2015-01-22 11:37:16 +00:00
* Thu Jan 22 2015 Richard Hughes <rhughes@redhat.com> - 3.15.4-1
- Update to 3.15.4
2014-12-18 19:59:21 +00:00
* Thu Dec 18 2014 Richard Hughes <rhughes@redhat.com> - 3.15.3-1
- Update to 3.15.3
2014-12-05 14:08:48 +00:00
* Fri Dec 05 2014 Kalev Lember <kalevlember@gmail.com> - 3.15.2.1-1
- Update to 3.15.2.1
2014-11-25 12:00:16 +00:00
* Tue Nov 25 2014 Kalev Lember <kalevlember@gmail.com> - 3.15.2-1
- Update to 3.15.2
* Sun Nov 16 2014 Kalev Lember <kalevlember@gmail.com> - 3.14.2-2
- Obsolete compat-gnome-desktop310 from rhughes-f20-gnome-3-12 copr
2014-11-12 16:53:36 +00:00
* Wed Nov 12 2014 Kalev Lember <kalevlember@gmail.com> - 3.14.2-1
- Update to 3.14.2
2014-11-12 11:45:17 +00:00
* Wed Nov 12 2014 Vadim Rutkovsky <vrutkovs@redhat.com> - 3.14.1-2
- Build installed tests
2014-10-14 17:10:44 +00:00
* Tue Oct 14 2014 Kalev Lember <kalevlember@gmail.com> - 3.14.1-1
- Update to 3.14.1
2014-09-23 08:51:40 +00:00
* Tue Sep 23 2014 Kalev Lember <kalevlember@gmail.com> - 3.14.0-2
- Drop redhat-menus dependency
2014-09-22 19:56:23 +00:00
* Mon Sep 22 2014 Kalev Lember <kalevlember@gmail.com> - 3.14.0-1
- Update to 3.14.0
2014-09-16 09:10:44 +00:00
* Tue Sep 16 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.92-1
- Update to 3.13.92
2014-09-03 07:28:59 +00:00
* Wed Sep 03 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.91-1
- Update to 3.13.91
2014-08-21 12:28:41 +00:00
* Thu Aug 21 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.90-1
- Update to 3.13.90
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.13.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
2014-07-23 20:18:32 +00:00
* Wed Jul 23 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.4-1
- Update to 3.13.4
* Tue Jul 22 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.3-2
- Rebuilt for gobject-introspection 1.41.4
2014-06-27 08:02:12 +00:00
* Fri Jun 27 2014 Richard Hughes <rhughes@redhat.com> - 3.13.3-1
- Update to 3.13.3
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.13.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2014-05-28 15:21:47 +00:00
* Wed May 28 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.2-1
- Update to 3.13.2
2014-05-02 13:13:06 +00:00
* Fri May 02 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.1-1
- Update to 3.13.1
2014-04-16 11:35:04 +00:00
* Wed Apr 16 2014 Kalev Lember <kalevlember@gmail.com> - 3.12.1-1
- Update to 3.12.1
2014-04-16 11:40:19 +00:00
- Tighten -devel deps with %%{_isa}
2014-04-16 11:35:04 +00:00
2014-03-24 16:34:59 +00:00
* Mon Mar 24 2014 Richard Hughes <rhughes@redhat.com> - 3.12.0-1
- Update to 3.12.0
2014-03-18 14:51:00 +00:00
* Tue Mar 18 2014 Richard Hughes <rhughes@redhat.com> - 3.11.91-1
- Update to 3.11.91
2014-02-19 09:37:56 +00:00
* Wed Feb 19 2014 Richard Hughes <rhughes@redhat.com> - 3.11.90-1
- Update to 3.11.90
2014-02-04 08:54:01 +00:00
* Tue Feb 04 2014 Richard Hughes <rhughes@redhat.com> - 3.11.5-1
- Update to 3.11.5
2014-01-16 14:13:31 +00:00
* Thu Jan 16 2014 Richard Hughes <rhughes@redhat.com> - 3.11.4-1
- Update to 3.11.4
2013-11-25 14:02:11 +00:00
* Mon Nov 25 2013 Richard Hughes <rhughes@redhat.com> - 3.11.2-1
- Update to 3.11.2
2013-11-01 22:06:03 +00:00
* Fri Nov 01 2013 Kalev Lember <kalevlember@gmail.com> - 3.11.1-1
- Update to 3.11.1
2013-10-28 17:21:40 +00:00
* Mon Oct 28 2013 Richard Hughes <rhughes@redhat.com> - 3.10.1-1
- Update to 3.10.1
2013-09-24 21:29:01 +00:00
* Tue Sep 24 2013 Kalev Lember <kalevlember@gmail.com> - 3.10.0-1
- Update to 3.10.0
2013-09-18 09:20:14 +00:00
* Wed Sep 18 2013 Kalev Lember <kalevlember@gmail.com> - 3.9.92-1
- Update to 3.9.92
* Mon Sep 9 2013 Rui Matos <rmatos@redhat.com> - 3.9.91-2
- Add patch to default to ibus-kkc for Japanese
2013-09-03 17:43:13 +00:00
* Tue Sep 03 2013 Kalev Lember <kalevlember@gmail.com> - 3.9.91-1
- Update to 3.9.91
2013-08-21 22:15:35 +00:00
* Thu Aug 22 2013 Kalev Lember <kalevlember@gmail.com> - 3.9.90-1
- Update to 3.9.90
2013-08-09 12:45:56 +00:00
* Fri Aug 09 2013 Kalev Lember <kalevlember@gmail.com> - 3.9.5-1
- Update to 3.9.5
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.9.1.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2013-06-02 14:30:47 +00:00
* Sun Jun 02 2013 Kalev Lember <kalevlember@gmail.com> - 3.9.1.1-1
- Update to 3.9.1.1
- Remove unused startup-notification dependency
2013-06-02 14:30:47 +00:00
2013-05-14 07:55:32 +00:00
* Tue May 14 2013 Richard Hughes <rhughes@redhat.com> - 3.8.2-1
- Update to 3.8.2
2013-04-15 20:21:07 +00:00
* Mon Apr 15 2013 Kalev Lember <kalevlember@gmail.com> - 3.8.1-1
- Update to 3.8.1
2013-03-27 20:38:46 +00:00
* Wed Mar 27 2013 Kalev Lember <kalevlember@gmail.com> - 3.8.0.1-1
- Update to 3.8.0.1
2013-03-26 23:41:33 +00:00
* Tue Mar 26 2013 Kalev Lember <kalevlember@gmail.com> - 3.8.0-1
- Update to 3.8.0
2013-03-20 02:42:11 +00:00
* Tue Mar 19 2013 Matthias Clasen <mclasen@redhat.com> - 3.7.92-1
- Update to 3.7.92
2013-03-06 11:36:43 +00:00
* Wed Mar 6 2013 Matthias Clasen <mclasen@redhat.com> - 3.7.91.1-1
- Update to 3.7.91.1
* Thu Feb 21 2013 Kalev Lember <kalevlember@gmail.com> - 3.7.90-2
- Conflict with older gnome-shell versions
2013-02-20 09:49:45 +00:00
* Wed Feb 20 2013 Richard Hughes <rhughes@redhat.com> - 3.7.90-1
- Update to 3.7.90
2013-02-05 21:13:10 +00:00
* Tue Feb 05 2013 Richard Hughes <rhughes@redhat.com> - 3.7.5-1
- Update to 3.7.5
2013-01-16 04:48:25 +00:00
* Tue Jan 15 2013 Matthias Clasen <mclasen@redhat.com> - 3.7.4-1
- Update to 3.7.4
2012-12-20 21:30:31 +00:00
* Thu Dec 20 2012 Kalev Lember <kalevlember@gmail.com> - 3.7.3-1
- Update to 3.7.3
2012-11-20 18:12:13 +00:00
* Tue Nov 20 2012 Richard Hughes <hughsient@gmail.com> - 3.7.2-1
- Update to 3.7.2
2012-11-09 15:23:49 +00:00
* Fri Nov 09 2012 Kalev Lember <kalevlember@gmail.com> - 3.7.1-1
- Update to 3.7.1
* Wed Oct 17 2012 Kalev Lember <kalevlember@gmail.com> - 3.6.1-1
- Update to 3.6.1
2012-09-26 09:19:38 +00:00
* Wed Sep 26 2012 Richard Hughes <hughsient@gmail.com> - 3.6.0.1-1
- Update to 3.6.0.1
2012-09-25 15:24:43 +00:00
* Tue Sep 25 2012 Richard Hughes <hughsient@gmail.com> - 3.6.0-1
- Update to 3.6.0
2012-09-06 07:24:26 +00:00
* Thu Sep 06 2012 Richard Hughes <hughsient@gmail.com> - 3.5.91-1
- Update to 3.5.91
2012-08-22 08:52:31 +00:00
* Wed Aug 22 2012 Richard Hughes <hughsient@gmail.com> - 3.5.90-1
- Update to 3.5.90
2012-08-07 07:08:39 +00:00
* Tue Aug 07 2012 Richard Hughes <hughsient@gmail.com> - 3.5.5-1
- Update to 3.5.5
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2012-07-17 09:03:23 +00:00
* Tue Jul 17 2012 Richard Hughes <hughsient@gmail.com> - 3.5.4-1
- Update to 3.5.4
2012-06-26 13:40:10 +00:00
* Tue Jun 26 2012 Richard Hughes <hughsient@gmail.com> - 3.5.3-1
- Update to 3.5.3
2012-06-07 08:27:35 +00:00
* Thu Jun 07 2012 Richard Hughes <hughsient@gmail.com> - 3.5.2-3
- Add missing files
2012-06-07 08:09:10 +00:00
* Thu Jun 07 2012 Richard Hughes <hughsient@gmail.com> - 3.5.2-2
- Add missing BRs
2012-06-06 22:26:27 +00:00
* Wed Jun 06 2012 Richard Hughes <hughsient@gmail.com> - 3.5.2-1
- Update to 3.5.2
2012-05-14 14:12:59 +00:00
* Mon May 14 2012 Richard Hughes <hughsient@gmail.com> - 3.4.2-1
- Update to 3.4.2
2012-04-16 15:44:53 +00:00
* Mon Apr 16 2012 Daniel Drake <dsd@laptop.org> - 3.4.1-2
- Add upstream patch to fix crash when the system clock is wrong
- Fixes GNOME#673551, OLPC#11714
2012-04-16 15:07:05 +00:00
* Mon Apr 16 2012 Richard Hughes <hughsient@gmail.com> - 3.4.1-1
- Update to 3.4.1
2012-03-26 16:47:55 +00:00
* Mon Mar 26 2012 Richard Hughes <rhughes@redhat.com> - 3.4.0-1
- New upstream version.
2012-03-19 14:29:13 +00:00
* Mon Mar 19 2012 Richard Hughes <rhughes@redhat.com> 3.3.92-1
- Update to 3.3.92
2012-02-07 12:47:34 +00:00
* Tue Feb 6 2012 Matthias Clasen <mclasen@redhat.com> - 3.3.5-1
- Update to 3.3.5
2012-01-17 05:08:06 +00:00
* Tue Jan 17 2012 Matthias Clasen <mclasen@redhat.com> - 3.3.4-1
- Update to 3.3.4
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.3-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
2011-12-21 00:56:26 +00:00
* Tue Dec 20 2011 Matthias Clasen <mclasen@redhat.com> - 3.3.3-1
- Update to 3.3.3
2011-11-21 21:30:40 +00:00
* Mon Nov 21 2011 Matthias Clasen <mclasen@redhat.com> - 3.3.2-1
- Update to 3.3.2
2011-11-02 19:03:01 +00:00
* Wed Nov 2 2011 Matthias Clasen <mclasen@redhat.com> - 3.3.1-1
- Update to 3.3.1
2011-10-26 23:52:59 +00:00
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.1-2
- Rebuilt for glibc bug#747377
2011-10-18 04:28:23 +00:00
* 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
2011-09-27 04:46:39 +00:00
* Tue Sep 27 2011 Ray <rstrode@redhat.com> - 3.2.0-1
- Update to 3.2.0
2011-09-20 01:23:19 +00:00
* 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
2011-09-06 11:52:02 +00:00
- Update to 3.1.91
2011-09-20 01:23:19 +00:00
* 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
2011-07-25 23:58:43 +00:00
* Mon Jul 25 2011 Matthias Clasen <mclasen@redhat.com> - 3.1.4-1
- Update to 3.1.4
2011-07-04 16:57:54 +00:00
* Mon Jul 04 2011 Bastien Nocera <bnocera@redhat.com> 3.1.3-1
- Update to 3.1.3
2011-06-14 14:19:14 +00:00
* Tue Jun 14 2011 Tomas Bzatek <tbzatek@redhat.com> - 3.1.2-1
- Update to 3.1.2
2011-05-11 15:27:34 +00:00
* Wed May 11 2011 Tomas Bzatek <tbzatek@redhat.com> - 3.1.1-1
- Update to 3.1.1
2011-05-02 18:39:19 +00:00
* Mon May 2 2011 Matthias Clasen <mclasen@redhat.com> - 3.0.1-2
- Prevent segfaults in gnome-rr users on randr-less displays
2011-04-26 23:53:31 +00:00
* Tue Apr 26 2011 Matthias Clasen <mclasen@redhat.com> - 3.0.1-1
- Update to 3.0.1
2011-04-15 20:16:59 +00:00
* Fri Apr 15 2011 Matthias Clasen <mclasen@redhat.com> - 3.0.0-2
- Require gnome-themes-standard (#674799)
2011-04-04 21:09:03 +00:00
* Mon Apr 4 2011 Christopher Aillon <caillon@redhat.com> - 3.0.0-1
- Update to 3.0.0
2011-03-24 17:48:51 +00:00
* Thu Mar 24 2011 Christopher Aillon <caillon@redhat.com> - 2.91.93-1
- Update to 2.91.93
2011-03-22 12:49:03 +00:00
* Tue Mar 22 2011 Matthias Clasen <mclasen@redhat.com> - 2.91.92-1
- Update to 2.91.92
2011-03-08 01:13:35 +00:00
* Mon Mar 7 2011 Matthias Clasen <mclasen@redhat.com> - 2.91.91-1
- Update to 2.91.91
2011-02-22 04:44:52 +00:00
* Mon Feb 21 2011 Matthias Clasen <mclasen@redhat.com> - 2.91.90-1
- 2.91.90
- Drop obsolete GConf dep
2011-02-11 03:54:38 +00:00
* Thu Feb 10 2011 Matthias Clasen <mclasen@redhat.com> - 2.91.6.1-4
- Rebuild against newer gtk
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.91.6.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
2011-02-04 03:27:14 +00:00
* Fri Feb 04 2011 Bastien Nocera <bnocera@redhat.com> 2.91.6.1-2
- Fix refcount issue in GnomeRRLabeler
2011-02-02 18:07:50 +00:00
* Wed Feb 2 2011 Matthias Clasen <mclasen@redhat.com> 2.91.6.1-1
- Update to 2.91.6.1
2011-02-02 16:46:13 +00:00
* Wed Feb 2 2011 Matthias Clasen <mclasen@redhat.com> 2.91.6-3
- Rebuild against newer gtk
2011-01-28 16:40:45 +00:00
* Fri Jan 28 2011 Matthias Clasen <mclasen@redhat.com> 2.91.6-2
- Build with introspection support
2011-01-12 00:43:18 +00:00
* Tue Jan 11 2011 Matthias Clasen <mclasen@redhat.com> 2.91.6-1
- Update to 2.91.6
2011-01-10 15:28:12 +00:00
* Mon Jan 10 2011 Matthias Clasen <mclasen@redhat.com> 2.91.5-1
- Update to 2.91.5
2011-01-07 17:33:19 +00:00
* Fri Jan 7 2011 Matthias Clasen <mclasen@redhat.com> 2.91.4-1
- Update to 2.91.4
2010-12-03 17:13:14 +00:00
* Fri Dec 3 2010 Matthias Clasen <mclasen@redhat.com> 2.91.3-2
- Rebuild against new gtk
2010-11-25 12:51:59 +00:00
* Thu Nov 25 2010 Bastien Nocera <bnocera@redhat.com> 2.91.3-1
- Update to 2.91.3
2010-11-17 16:32:48 +00:00
* Wed Nov 17 2010 Bastien Nocera <bnocera@redhat.com> 2.91.2-1
- Update to 2.91.2
2010-11-11 20:02:47 +00:00
* Thu Nov 11 2010 Bill Nottingham <notting@redhat.com> 2.91.1-3
- remove some extraneous deps
2010-11-11 14:01:09 +00:00
* Thu Nov 11 2010 Bastien Nocera <bnocera@redhat.com> 2.91.1-2
- Fix a possible double-free crasher
2010-11-10 12:01:54 +00:00
* Wed Nov 10 2010 Bastien Nocera <bnocera@redhat.com> 2.91.1-1
- Update to 2.91.1
2010-11-02 04:15:40 +00:00
* Tue Nov 2 2010 Matthias Clasen <mclasen@redhat.com> 2.91.0-3
- Rebuild against newer gtk3
2010-10-29 03:01:26 +00:00
* Thu Oct 28 2010 Bill Nottingham <notting@redhat.com> 2.91.0-2
- flip background to match F-14
2010-10-04 21:52:04 +00:00
* Mon Oct 4 2010 Matthias Clasen <mclasen@redhat.com> 2.91.0-1
- Update to 2.91.0
2010-09-29 21:18:37 +00:00
* Wed Sep 29 2010 jkeating - 2.90.4-4
- Rebuilt for gcc bug 634757
2010-09-22 04:24:33 +00:00
* Wed Sep 22 2010 Matthias Clasen <mclasen@redhat.com> 2.90.4-3
- Rebuild against newer gobject-introspection
- Rebuild against newer gtk
2010-08-19 23:18:33 +00:00
* Thu Aug 19 2010 Matthias Clasen <mclasen@redhat.com> 2.90.4-2
- Prevent file conflict with gnome-desktop
2010-06-30 03:04:58 +00:00
* Tue Jun 29 2010 Matthias Clasen <mclasen@redhat.com> 2.90.4-1
- Update to 2.90.4
2010-06-29 02:10:08 +00:00
* Mon Jun 28 2010 Matthias Clasen <mclasen@redhat.com> 2.90.2-1
- 2.90.2
2010-06-29 01:19:51 +00:00
2010-06-21 08:17:58 +00:00
* Thu Jun 17 2010 Richard Hughes <richard@hughsie.com> 2.90.1-1
- Initial build for review.