Blame SPECS/gnome-initial-setup.spec

c56eab
%global nm_version 1.2
c56eab
%global nma_version 1.0
c56eab
%global glib_required_version 2.53.0
c56eab
%global gtk_required_version 3.11.3
c56eab
%global geoclue_version 2.3.1
c56eab
c56eab
Name:           gnome-initial-setup
c56eab
Version:        3.28.0
58eb9a
Release:        9%{?dist}
c56eab
Summary:        Bootstrapping your OS
c56eab
c56eab
License:        GPLv2+
c56eab
URL:            https://wiki.gnome.org/Design/OS/InitialSetup
c56eab
Source0:        https://download.gnome.org/sources/%{name}/3.28/%{name}-%{version}.tar.xz
c56eab
Source1:        vendor.conf
c56eab
Patch0:         honor-firstboot-disabled.patch
c56eab
# https://bugzilla.gnome.org/show_bug.cgi?id=793501 and https://bugzilla.gnome.org/show_bug.cgi?id=794166
c56eab
Patch1:         reduce-initial-setup-redundancy.patch
c56eab
# https://bugzilla.gnome.org/show_bug.cgi?id=754213
c56eab
Patch2:         allow-weak-passwords.patch
c56eab
# https://bugzilla.redhat.com/show_bug.cgi?id=1655150
c56eab
Patch3:         quacks-like-fedora.patch
58eb9a
# https://bugzilla.redhat.com/show_bug.cgi?id=1703333
58eb9a
Patch4:         gnome-initial-setup-3.28.0-fix-japanese-defaults.patch
c56eab
c56eab
BuildRequires:  krb5-devel
c56eab
BuildRequires:  desktop-file-utils
c56eab
BuildRequires:  intltool
c56eab
BuildRequires:  libpwquality-devel
c56eab
BuildRequires:  pkgconfig(libnm) >= %{nm_version}
c56eab
BuildRequires:  pkgconfig(libnma) >= %{nma_version}
c56eab
BuildRequires:  pkgconfig(accountsservice)
c56eab
BuildRequires:  pkgconfig(gnome-desktop-3.0)
c56eab
BuildRequires:  pkgconfig(gstreamer-1.0)
c56eab
BuildRequires:  pkgconfig(cheese)
c56eab
BuildRequires:  pkgconfig(cheese-gtk) >= 3.3.5
c56eab
BuildRequires:  pkgconfig(fontconfig)
c56eab
BuildRequires:  pkgconfig(geocode-glib-1.0)
c56eab
BuildRequires:  pkgconfig(gweather-3.0)
c56eab
BuildRequires:  pkgconfig(goa-1.0)
c56eab
BuildRequires:  pkgconfig(goa-backend-1.0)
c56eab
BuildRequires:  pkgconfig(gtk+-3.0) >= %{gtk_required_version}
c56eab
BuildRequires:  pkgconfig(glib-2.0) >= %{glib_required_version}
c56eab
BuildRequires:  pkgconfig(gio-2.0) >= %{glib_required_version}
c56eab
BuildRequires:  pkgconfig(gio-unix-2.0) >= %{glib_required_version}
c56eab
BuildRequires:  pkgconfig(gdm)
c56eab
BuildRequires:  pkgconfig(iso-codes)
c56eab
BuildRequires:  pkgconfig(libgeoclue-2.0) >= %{geoclue_version}
c56eab
BuildRequires:  pkgconfig(packagekit-glib2)
c56eab
BuildRequires:  pkgconfig(webkit2gtk-4.0)
c56eab
BuildRequires:  krb5-devel
c56eab
BuildRequires:  ibus-devel
c56eab
BuildRequires:  rest-devel
c56eab
BuildRequires:  polkit-devel
c56eab
BuildRequires:  libsecret-devel
c56eab
# Needed to run autoreconf, for patches that touch autotools bits
c56eab
BuildRequires:  autoconf
c56eab
BuildRequires:  gnome-common
c56eab
c56eab
# gnome-initial-setup is being run by gdm
c56eab
Requires: gdm
c56eab
Requires: geoclue2-libs%{?_isa} >= %{geoclue_version}
c56eab
Requires: glib2%{?_isa} >= %{glib_required_version}
c56eab
# we install a rules file
c56eab
Requires: polkit-js-engine
c56eab
Requires: /usr/bin/gkbd-keyboard-display
c56eab
c56eab
Requires(pre): shadow-utils
c56eab
c56eab
Provides: user(%name)
c56eab
c56eab
%description
c56eab
GNOME Initial Setup is an alternative to firstboot, providing
c56eab
a good setup experience to welcome you to your system, and walks
c56eab
you through configuring it. It is integrated with gdm.
c56eab
c56eab
%prep
c56eab
%autosetup -p1
c56eab
c56eab
%build
c56eab
# patches touch am files
c56eab
autoreconf -i
c56eab
%configure \
c56eab
  --enable-software-sources \
c56eab
  --with-vendor-conf-file=%{_datadir}/gnome-initial-setup/vendor.conf
c56eab
make %{?_smp_mflags}
c56eab
c56eab
%install
c56eab
%make_install
c56eab
find %{buildroot} -name '*.la' -exec rm -f {} ';'
c56eab
c56eab
# Desktop file does not (and probably will not) ever validate, as it uses
c56eab
# an absolute path /tmp/-style trigger to determine whether to autostart.
c56eab
# desktop-file-validate %%{buildroot}/%%{_sysconfdir}/xdg/autostart/gnome-welcome-tour.desktop
c56eab
desktop-file-validate %{buildroot}%{_sysconfdir}/xdg/autostart/gnome-initial-setup-copy-worker.desktop
c56eab
desktop-file-validate %{buildroot}%{_datadir}/gdm/greeter/applications/gnome-initial-setup.desktop
c56eab
desktop-file-validate %{buildroot}%{_datadir}/gdm/greeter/applications/setup-shell.desktop
c56eab
c56eab
mkdir -p %{buildroot}%{_datadir}/gnome-initial-setup
c56eab
cp %{SOURCE1} %{buildroot}%{_datadir}/gnome-initial-setup/
c56eab
c56eab
%find_lang %{name}
c56eab
c56eab
%pre
c56eab
useradd -rM -d /run/gnome-initial-setup/ -s /sbin/nologin %{name} &>/dev/null || :
c56eab
c56eab
%files -f %{name}.lang
c56eab
%license COPYING
c56eab
%doc README
c56eab
%{_libexecdir}/gnome-initial-setup
c56eab
%{_libexecdir}/gnome-initial-setup-copy-worker
c56eab
%{_libexecdir}/gnome-welcome-tour
c56eab
%{_sysconfdir}/xdg/autostart/gnome-welcome-tour.desktop
c56eab
%{_sysconfdir}/xdg/autostart/gnome-initial-setup-copy-worker.desktop
c56eab
%{_sysconfdir}/xdg/autostart/gnome-initial-setup-first-login.desktop
c56eab
c56eab
%{_datadir}/gdm/greeter/applications/gnome-initial-setup.desktop
c56eab
%{_datadir}/gdm/greeter/applications/setup-shell.desktop
c56eab
%{_datadir}/gnome-session/sessions/gnome-initial-setup.session
c56eab
%{_datadir}/gnome-shell/modes/initial-setup.json
c56eab
%{_datadir}/polkit-1/rules.d/20-gnome-initial-setup.rules
c56eab
c56eab
%dir %{_datadir}/gnome-initial-setup
c56eab
%{_datadir}/gnome-initial-setup/vendor.conf
c56eab
c56eab
%changelog
58eb9a
* Mon Oct 19 2020 David King <dking@redhat.com> - 3.28.0-9
58eb9a
- Fix Japanese language default (#1703333)
58eb9a
c56eab
* Mon Feb 18 2019 Ray Strode <rstrode@redhat.com> - 3.28.0-8
c56eab
- Ensure vendora logo gets used instead of foot
c56eab
  Resolves: #1655150
c56eab
c56eab
* Mon Apr 30 2018 Adam Williamson <awilliam@redhat.com> - 3.28.0-7
c56eab
- Drop unnecessary pkgconfig(NetworkManager) BuildRequire
c56eab
- Run autoreconf to avoid automake version mismatch
c56eab
c56eab
* Wed Apr 11 2018 Michael Catanzaro <mcatanzaro@gnome.org> - 3.28.0-6
c56eab
- Allow setting weak passwords
c56eab
c56eab
* Mon Apr 02 2018 Michael Catanzaro <mcatanzaro@gnome.org> - 3.28.0-5
c56eab
- Move vendor.conf to /usr/share
c56eab
c56eab
* Sat Mar 31 2018 Michael Catanzaro <mcatanzaro@gnome.org> - 3.28.0-4
c56eab
- Forgot to update vendor.conf in the previous build
c56eab
c56eab
* Sat Mar 31 2018 Michael Catanzaro <mcatanzaro@gnome.org> - 3.28.0-3
c56eab
- Update reduce initial setup redundancy patch again
c56eab
c56eab
* Sat Mar 31 2018 Michael Catanzaro <mcatanzaro@gnome.org> - 3.28.0-2
c56eab
- Update reduce initial setup redundancy patches
c56eab
c56eab
* Tue Mar 13 2018 Kalev Lember <klember@redhat.com> - 3.28.0-1
c56eab
- Update to 3.28.0
c56eab
c56eab
* Fri Feb 16 2018 Michael Catanzaro <mcatanzaro@gnome.org> - 3.27.90-2
c56eab
- Install vendor.conf to conditionally suppress certain pages
c56eab
c56eab
* Fri Feb 16 2018 Michael Catanzaro <mcatanzaro@gnome.org> - 3.27.90-1
c56eab
- Upgrade to 3.27.90 and add reduce initial setup redundancy patches
c56eab
c56eab
* Tue Feb 13 2018 Björn Esser <besser82@fedoraproject.org> - 3.26.0-5
c56eab
- Rebuild against newer gnome-desktop3 package
c56eab
c56eab
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.26.0-4
c56eab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
c56eab
c56eab
* Mon Feb 05 2018 Kalev Lember <klember@redhat.com> - 3.26.0-3
c56eab
- Rebuilt for libgweather soname bump
c56eab
c56eab
* Sat Jan 20 2018 Björn Esser <besser82@fedoraproject.org> - 3.26.0-2
c56eab
- Rebuilt for switch to libxcrypt
c56eab
c56eab
* Thu Sep 14 2017 Kalev Lember <klember@redhat.com> - 3.26.0-1
c56eab
- Update to 3.26.0
c56eab
c56eab
* Thu Sep 07 2017 Kalev Lember <klember@redhat.com> - 3.25.92-1
c56eab
- Update to 3.25.92
c56eab
c56eab
* Mon Jul 31 2017 Kalev Lember <klember@redhat.com> - 3.25.4-1
c56eab
- Update to 3.25.4
c56eab
c56eab
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.25.3-2
c56eab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
c56eab
c56eab
* Sun Jun 25 2017 Kalev Lember <klember@redhat.com> - 3.25.3-1
c56eab
- Update to 3.25.3
c56eab
c56eab
* Wed May 10 2017 Kalev Lember <klember@redhat.com> - 3.24.2-1
c56eab
- Update to 3.24.2
c56eab
c56eab
* Tue Mar 21 2017 Rui Matos <rmatos@redhat.com> - 3.24.0-1
c56eab
- Update to 3.24.0
c56eab
c56eab
* Tue Mar 14 2017 Florian Müllner <fmuellner@redhat.com> - 3.23.92-1
c56eab
- Update to 3.23.92
c56eab
c56eab
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.23.1-3
c56eab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
c56eab
c56eab
* Tue Jan 31 2017 Rui Matos <rmatos@redhat.com> - 3.23.1-2
c56eab
- Honor anaconda's firstboot being disabled
c56eab
c56eab
* Sun Oct 30 2016 Kalev Lember <klember@redhat.com> - 3.23.1-1
c56eab
- Update to 3.23.1
c56eab
c56eab
* Wed Oct 12 2016 Kalev Lember <klember@redhat.com> - 3.22.1-1
c56eab
- Update to 3.22.1
c56eab
c56eab
* Mon Sep 19 2016 Kalev Lember <klember@redhat.com> - 3.22.0-1
c56eab
- Update to 3.22.0
c56eab
c56eab
* Tue Sep 13 2016 Kalev Lember <klember@redhat.com> - 3.21.92-1
c56eab
- Update to 3.21.92
c56eab
c56eab
* Mon Sep 05 2016 Kalev Lember <klember@redhat.com> - 3.21.91-2
c56eab
- Build the software sources page
c56eab
c56eab
* Sat Sep 03 2016 Kalev Lember <klember@redhat.com> - 3.21.91-1
c56eab
- Update to 3.21.91
c56eab
- Update project URL
c56eab
c56eab
* Wed Apr 13 2016 Kalev Lember <klember@redhat.com> - 3.20.1-1
c56eab
- Update to 3.20.1
c56eab
c56eab
* Tue Mar 22 2016 Kalev Lember <klember@redhat.com> - 3.20.0-1
c56eab
- Update to 3.20.0
c56eab
c56eab
* Tue Mar 15 2016 Kalev Lember <klember@redhat.com> - 3.19.92-1
c56eab
- Update to 3.19.92
c56eab
c56eab
* Tue Mar 01 2016 Richard Hughes <rhughes@redhat.com> - 3.19.91-1
c56eab
- Update to 3.19.91
c56eab
c56eab
* Tue Feb 16 2016 Richard Hughes <rhughes@redhat.com> - 3.19.2-1
c56eab
- Update to 3.19.2
c56eab
c56eab
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.19.1-2
c56eab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
c56eab
c56eab
* Wed Oct 28 2015 Kalev Lember <klember@redhat.com> - 3.19.1-1
c56eab
- Update to 3.19.1
c56eab
c56eab
* Mon Sep 21 2015 Kalev Lember <klember@redhat.com> - 3.18.0-1
c56eab
- Update to 3.18.0
c56eab
c56eab
* Mon Aug 31 2015 Kalev Lember <klember@redhat.com> - 3.17.91-1
c56eab
- Update to 3.17.91
c56eab
c56eab
* Mon Aug 17 2015 Kalev Lember <klember@redhat.com> - 3.17.90-1
c56eab
- Update to 3.17.90
c56eab
- Use make_install macro
c56eab
c56eab
* Mon Aug 17 2015 Kalev Lember <klember@redhat.com> - 3.17.4-2
c56eab
- Rebuilt for libcheese soname bump
c56eab
c56eab
* Mon Jul 27 2015 David King <amigadave@amigadave.com> - 3.17.4-1
c56eab
- Update to 3.17.4
c56eab
c56eab
* Wed Jul 22 2015 David King <amigadave@amigadave.com> - 3.16.3-3
c56eab
- Bump for new gnome-desktop3
c56eab
c56eab
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.16.3-2
c56eab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
c56eab
c56eab
* Mon May 18 2015 Matthias Clasen <mclasen@redhat.com> - 3.16.3-1
c56eab
- Update to 3.16.3
c56eab
c56eab
* Tue May 12 2015 Kalev Lember <kalevlember@gmail.com> - 3.16.2-1
c56eab
- Update to 3.16.2
c56eab
c56eab
* Wed Apr 15 2015 Kalev Lember <kalevlember@gmail.com> - 3.16.1-1
c56eab
- Update to 3.16.1
c56eab
c56eab
* Mon Mar 23 2015 Kalev Lember <kalevlember@gmail.com> - 3.16.0-1
c56eab
- Update to 3.16.0
c56eab
c56eab
* Wed Mar 18 2015 Kalev Lember <kalevlember@gmail.com> - 3.15.92-1
c56eab
- Update to 3.15.92
c56eab
c56eab
* Thu Mar 05 2015 Kalev Lember <kalevlember@gmail.com> - 3.15.91.1-1
c56eab
- Update to 3.15.91.1
c56eab
c56eab
* Mon Mar 02 2015 Kalev Lember <kalevlember@gmail.com> - 3.15.91-1
c56eab
- Update to 3.15.91
c56eab
- Use the %%license macro for the COPYING file
c56eab
c56eab
* Thu Feb 19 2015 Matthias Clasen <mclasen@redhat.com> - 3.15.90.1-1
c56eab
- Update to 3.15.90.1
c56eab
c56eab
* Tue Dec 16 2014 Rui Matos <rmatos@redhat.com> - 3.14.2.1-2
c56eab
- Resolves: rhbz#1172363
c56eab
c56eab
* Tue Nov 11 2014 Rui Matos <rmatos@redhat.com> - 3.14.2.1-1
c56eab
- Update to 3.14.2.1
c56eab
c56eab
* Mon Nov 10 2014 Rui Matos <rmatos@redhat.com> - 3.14.2-1
c56eab
- Update to 3.14.2
c56eab
- Resolves: rhbz#1158442
c56eab
c56eab
* Fri Oct 31 2014 Rui Matos <rmatos@redhat.com> - 3.14.1-3
c56eab
- Resolves: rhbz#1151519
c56eab
c56eab
* Tue Oct 21 2014 Rui Matos <rmatos@redhat.com> - 3.14.1-2
c56eab
- Resolves: rhbz#1154206
c56eab
c56eab
* Sat Oct 11 2014 Kalev Lember <kalevlember@gmail.com> - 3.14.1-1
c56eab
- Update to 3.14.1
c56eab
c56eab
* Tue Sep 23 2014 Kalev Lember <kalevlember@gmail.com> - 3.14.0-1
c56eab
- Update to 3.14.0
c56eab
c56eab
* Wed Sep 17 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.7-1
c56eab
- Update to 3.13.7
c56eab
c56eab
* Tue Sep 16 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.6-1
c56eab
- Update to 3.13.6
c56eab
c56eab
* Mon Sep 08 2014 Adam Williamson <awilliam@redhat.com> - 3.13.5-2
c56eab
- backport upstream patch to offer full list of keyboard layouts (BGO #729208)
c56eab
c56eab
* Wed Sep 03 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.5-1
c56eab
- Update to 3.13.5
c56eab
c56eab
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.13.4-3
c56eab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
c56eab
c56eab
* Wed Aug 13 2014 Matthias Clasen <mclasen@redhat.com> - 3.13.4-2
c56eab
- Drop the yelp focus patch (we've dropped the yelp patch it depends on)
c56eab
c56eab
* Fri Jul 25 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.4-1
c56eab
- Update to 3.13.4
c56eab
c56eab
* Thu Jul 24 2014 Matthias Clasen <mclasen@redhat.com> - 3.12.1-3
c56eab
- Fix a memory corruption crash (#1116478)
c56eab
c56eab
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.12.1-2
c56eab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
c56eab
c56eab
* Thu May 15 2014 Kalev Lember <kalevlember@gmail.com> - 3.12.1-1
c56eab
- Update to 3.12.1
c56eab
c56eab
* Tue Mar 25 2014 Kalev Lember <kalevlember@gmail.com> - 3.12.0-1
c56eab
- Update to 3.12.0
c56eab
c56eab
* Thu Mar 20 2014 Richard Hughes <rhughes@redhat.com> - 3.11.92-1
c56eab
- Update to 3.11.92
c56eab
c56eab
* Sat Mar 08 2014 Richard Hughes <rhughes@redhat.com> - 3.11.91-1
c56eab
- Update to 3.11.91
c56eab
c56eab
* Fri Feb 28 2014 Richard Hughes <rhughes@redhat.com> - 3.11.90-1
c56eab
- Update to 3.11.90
c56eab
c56eab
* Wed Feb 19 2014 Kalev Lember <kalevlember@gmail.com> - 3.10.1.1-5
c56eab
- Rebuilt for libgnome-desktop soname bump
c56eab
c56eab
* Fri Nov 29 2013 Rui Matos <rmatos@redhat.com> - 3.10.1.1-4
c56eab
- Resolves: rhbz#1035548 - Disables the GOA page in new user mode
c56eab
c56eab
* Thu Nov 28 2013 Rui Matos <rmatos@redhat.com> - 3.10.1.1-3
c56eab
- Resolves: rhbz#1027507 - [abrt] gnome-initial-setup-3.10.1.1-2.fc20: magazine_chain_pop_head
c56eab
c56eab
* Fri Nov  1 2013 Matthias Clasen <mclasen@redhat.com> - 3.10.1.1-2
c56eab
- Fix goa add dialog to not be empty
c56eab
c56eab
* Mon Oct 28 2013 Richard Hughes <rhughes@redhat.com> - 3.10.1.1-1
c56eab
- Update to 3.10.1.1
c56eab
c56eab
* Thu Sep 26 2013 Kalev Lember <kalevlember@gmail.com> - 3.10.0.1-1
c56eab
- Update to 3.10.0.1
c56eab
c56eab
* Wed Sep 25 2013 Kalev Lember <kalevlember@gmail.com> - 3.10.0-1
c56eab
- Update to 3.10.0
c56eab
c56eab
* Tue Sep 03 2013 Kalev Lember <kalevlember@gmail.com> - 0.12-7
c56eab
- Rebuilt for libgnome-desktop soname bump
c56eab
c56eab
* Fri Aug 23 2013 Kalev Lember <kalevlember@gmail.com> - 0.12-6
c56eab
- Rebuilt for gnome-online-accounts soname bump
c56eab
c56eab
* Fri Aug 09 2013 Kalev Lember <kalevlember@gmail.com> - 0.12-5
c56eab
- Rebuilt for cogl 1.15.4 soname bump
c56eab
c56eab
* Tue Aug 06 2013 Adam Williamson <awilliam@redhat.com> - 0.12-4
c56eab
- rebuild for new libgweather
c56eab
c56eab
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12-3
c56eab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
c56eab
c56eab
* Fri Jun 21 2013 Kalev Lember <kalevlember@gmail.com> - 0.12-2
c56eab
- Rebuilt for libgweather 3.9.3 soname bump
c56eab
c56eab
* Mon Jun 17 2013 Rui Matos <rmatos@redhat.com> - 0.12-1
c56eab
- Update to 0.12
c56eab
c56eab
* Fri Jun  7 2013 Matthias Clasen <mclasen@redhat.com> - 0.11-2
c56eab
- Require polkit-js-engine
c56eab
c56eab
* Tue May 28 2013 Matthias Clasen <mclasen@redhat.com> - 0.11-1
c56eab
- Update to 0.11
c56eab
c56eab
* Tue May 14 2013 Rui Matos <rmatos@redhat.com> - 0.10-1
c56eab
- Update to 0.10
c56eab
- Add BuildRequires on polkit-devel
c56eab
- Update files list
c56eab
c56eab
* Thu May  2 2013 Rui Matos <rmatos@redhat.com> - 0.9-2
c56eab
- Remove unused patches
c56eab
- Add build requires for ibus
c56eab
c56eab
* Tue Apr 16 2013 Matthias Clasen <mclasen@redhat.com> - 0.9-1
c56eab
- Update to 0.9
c56eab
c56eab
* Tue Apr 16 2013 Ray Strode <rstrode@redhat.com> 0.8-4
c56eab
- Add requires for keyboard viewer app
c56eab
c56eab
* Wed Mar 20 2013 Ray Strode <rstrode@redhat.com> 0.8-3
c56eab
- Add cosimoc fix for gd page transitions
c56eab
c56eab
* Wed Mar 20 2013 Ray Strode <rstrode@redhat.com> 0.8-2
c56eab
- Disable gd page transitions for now since they don't
c56eab
  completely work right (ask adamw).
c56eab
- Fix crasher when realmd goes away
c56eab
c56eab
* Tue Mar 19 2013 Matthias Clasen <mclasen@redhat.com> - 0.8-1
c56eab
- Update to 0.8
c56eab
c56eab
* Tue Mar 12 2013 Matthias Clasen <mclasen@redhat.com> - 0.7-1
c56eab
- Update to 0.7
c56eab
c56eab
* Thu Feb 21 2013 Kalev Lember <kalevlember@gmail.com> - 0.6-4
c56eab
- Rebuilt for cogl soname bump
c56eab
c56eab
* Wed Feb 20 2013 Kalev Lember <kalevlember@gmail.com> - 0.6-3
c56eab
- Rebuilt for libgnome-desktop soname bump
c56eab
c56eab
* Fri Jan 25 2013 Peter Robinson <pbrobinson@fedoraproject.org> 0.6-2
c56eab
- Rebuild for new cogl
c56eab
c56eab
* Wed Jan 16 2013 Matthias Clasen <mclasen@redhat.com> - 0.6-1
c56eab
- 0.6
c56eab
c56eab
* Fri Jan 11 2013 Matthias Clasen <mclasen@redhat.com> - 0.5-1
c56eab
- 0.5
c56eab
c56eab
* Fri Dec 21 2012 Kalev Lember <kalevlember@gmail.com> - 0.4-2
c56eab
- Rebuilt for libgweather soname bump
c56eab
c56eab
* Thu Nov 22 2012 Matthias Clasen <mclasen@redhat.com> - 0.4-1
c56eab
- 0.4
c56eab
c56eab
* Fri Oct 26 2012 Jasper St. Pierre <jstpierre@mecheye.net> - 0.3-3
c56eab
- Add krb5
c56eab
c56eab
* Fri Oct 26 2012 Jasper St. Pierre <jstpierre@mecheye.net> - 0.3-2
c56eab
- 0.3-2
c56eab
c56eab
* Thu Oct 18 2012 Matthias Clsaen <mclasen@redhat.com> - 0.3-1
c56eab
- 0.3
c56eab
c56eab
* Fri Sep 14 2012 Matthias Clasen <mclasen@redhat.com> - 0.2-2
c56eab
- Add Requires: gdm
c56eab
c56eab
* Wed Aug 29 2012 Jasper St. Pierre <jstpierre@mecheye.net> - 0.2-1
c56eab
- Update to 0.2
c56eab
c56eab
* Fri Jun 08 2012 Jasper St. Pierre <jstpierre@mecheye.net> - 0.1
c56eab
- Initial packaging.