Blame SPECS/gnome-session.spec

3c437c
%global _changelog_trimtime %(date +%s -d "1 year ago")
3c437c
3c437c
%define po_package gnome-session-3.0
3c437c
%define _default_patch_fuzz 2
3c437c
3c437c
%if 0%{?fedora}
3c437c
%else
3c437c
%global with_session_selector 1
3c437c
%endif
3c437c
3c437c
Summary: GNOME session manager
3c437c
Name: gnome-session
3c437c
Version: 3.8.4
3c437c
Release: 2%{?dist}
3c437c
URL: http://www.gnome.org
3c437c
#VCS: git:git://git.gnome.org/gnome-session
3c437c
Source0: http://download.gnome.org/sources/gnome-session/3.8/%{name}-%{version}.tar.xz
3c437c
3c437c
# Blacklist NV30: https://bugzilla.redhat.com/show_bug.cgi?id=745202
3c437c
Patch1: gnome-session-3.3.92-nv30.patch
3c437c
Patch2: 0001-main-Set-XDG_MENU_PREFIX.patch
3c437c
Patch3: gnome-session-3.6.2-swrast.patch
3c437c
Patch4: 0001-Fix-a-possible-crash-in-the-presence-interface.patch
3c437c
3c437c
License: GPLv2+
3c437c
Group: User Interface/Desktops
3c437c
3c437c
Requires: system-logos
3c437c
# Needed for gnome-settings-daemon
3c437c
Requires: control-center-filesystem
3c437c
3c437c
Requires: gsettings-desktop-schemas >= 0.1.7
3c437c
3c437c
# pull in dbus-x11, see bug 209924
3c437c
Requires: dbus-x11
3c437c
3c437c
BuildRequires: gtk3-devel >= 2.99.0
3c437c
BuildRequires: dbus-glib-devel
3c437c
BuildRequires: gnome-desktop3-devel
3c437c
BuildRequires: libnotify-devel >= 0.7.0
3c437c
BuildRequires: GConf2-devel
3c437c
BuildRequires: pango-devel
3c437c
BuildRequires: gnome-settings-daemon-devel
3c437c
BuildRequires: desktop-file-utils
3c437c
BuildRequires: libXau-devel
3c437c
BuildRequires: libXrandr-devel
3c437c
BuildRequires: xorg-x11-xtrans-devel
3c437c
BuildRequires: mesa-libGL-devel
3c437c
BuildRequires: librsvg2-devel
3c437c
BuildRequires: json-glib-devel
3c437c
3c437c
# this is so the configure checks find /usr/bin/halt etc.
3c437c
BuildRequires: usermode
3c437c
3c437c
BuildRequires: intltool, autoconf, automake
3c437c
BuildRequires: libtool
3c437c
BuildRequires: gettext
3c437c
BuildRequires: libX11-devel libXt-devel
3c437c
BuildRequires: libXtst-devel
3c437c
BuildRequires: xmlto
3c437c
BuildRequires: upower-devel
3c437c
BuildRequires: gnome-common
3c437c
BuildRequires: systemd-devel
3c437c
BuildRequires: polkit-devel
3c437c
3c437c
# an artificial requires to make sure we get dconf, for now
3c437c
Requires: dconf
3c437c
3c437c
%description
3c437c
gnome-session manages a GNOME desktop or GDM login session. It starts up
3c437c
the other core GNOME components and handles logout and saving the session.
3c437c
3c437c
%package xsession
3c437c
Summary: Desktop file for gnome-session
3c437c
Group: User Interface/Desktops
3c437c
Requires: gnome-session = %{version}-%{release}
3c437c
3c437c
%description xsession
3c437c
Desktop file to add GNOME to display manager session menu.
3c437c
3c437c
%prep
3c437c
%setup -q
3c437c
%patch1 -p1 -b .nv30
3c437c
%patch2 -p1 -b .set-xdg-menu-prefix
3c437c
%patch3 -p1 -b .swrast
3c437c
%patch4 -p1 -b .dfuzz
3c437c
3c437c
echo "ACLOCAL_AMFLAGS = -I m4" >> Makefile.am
3c437c
3c437c
autoreconf -i -f
3c437c
3c437c
%build
3c437c
%configure --enable-docbook-docs                                \
3c437c
%if 0%{?with_session_selector}
3c437c
           --enable-session-selector                            \
3c437c
%endif
3c437c
           --docdir=%{_datadir}/doc/%{name}-%{version}          \
3c437c
           --enable-systemd
3c437c
make %{?_smp_mflags} V=1
3c437c
3c437c
%install
3c437c
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
3c437c
3c437c
desktop-file-install --vendor gnome --delete-original                   \
3c437c
  --dir $RPM_BUILD_ROOT%{_datadir}/applications           \
3c437c
  --add-only-show-in GNOME                                              \
3c437c
  $RPM_BUILD_ROOT%{_datadir}/applications/*
3c437c
3c437c
cp -p AUTHORS COPYING NEWS README $RPM_BUILD_ROOT%{_datadir}/doc/%{name}-%{version}
3c437c
3c437c
%find_lang %{po_package}
3c437c
3c437c
%post
3c437c
/sbin/ldconfig
3c437c
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
3c437c
3c437c
%postun
3c437c
/sbin/ldconfig
3c437c
if [ $1 -eq 0 ] ; then
3c437c
  touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
3c437c
  gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
3c437c
  glib-compile-schemas %{_datadir}/glib-2.0/schemas &>/dev/null || :
3c437c
fi
3c437c
3c437c
%posttrans
3c437c
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
3c437c
glib-compile-schemas %{_datadir}/glib-2.0/schemas &>/dev/null || :
3c437c
3c437c
%files xsession
3c437c
%{_datadir}/xsessions/*
3c437c
3c437c
%files -f %{po_package}.lang
3c437c
%doc %dir %{_datadir}/doc/%{name}-%{version}
3c437c
%doc %{_datadir}/doc/%{name}-%{version}/AUTHORS
3c437c
%doc %{_datadir}/doc/%{name}-%{version}/COPYING
3c437c
%doc %{_datadir}/doc/%{name}-%{version}/NEWS
3c437c
%doc %{_datadir}/doc/%{name}-%{version}/README
3c437c
%doc %dir %{_datadir}/doc/%{name}-%{version}/dbus
3c437c
%doc %{_datadir}/doc/%{name}-%{version}/dbus/*
3c437c
%doc %{_mandir}/man*/*
3c437c
%{_datadir}/applications/gnome-session-properties.desktop
3c437c
%dir %{_datadir}/gnome-session
3c437c
%dir %{_datadir}/gnome-session/sessions
3c437c
%{_datadir}/gnome-session/sessions/gnome.session
3c437c
%{_datadir}/gnome-session/sessions/gnome-dummy.session
3c437c
%{_bindir}/*
3c437c
%{_libexecdir}/gnome-session-check-accelerated
3c437c
%{_libexecdir}/gnome-session-check-accelerated-helper
3c437c
%{_libexecdir}/gnome-session-failed
3c437c
%{_datadir}/gnome-session/*
3c437c
%{_datadir}/icons/hicolor/*/apps/session-properties.png
3c437c
%{_datadir}/icons/hicolor/scalable/apps/session-properties.svg
3c437c
%{_datadir}/GConf/gsettings/gnome-session.convert
3c437c
%{_datadir}/glib-2.0/schemas/org.gnome.SessionManager.gschema.xml
3c437c
3c437c
%changelog
3c437c
* Fri Nov  1 2013 Matthias Clasen <mclasen@redhat.com> - 3.8.4-2
3c437c
- Fix a possible crash in the presence interface
3c437c
- Resolves: #1022521
3c437c
3c437c
* Tue Jul 30 2013 Ray Strode <rstrode@redhat.com> - 3.8.4-1
3c437c
- Update to 3.8.4
3c437c
3c437c
* Tue Jul 30 2013 Matthias Clasen <mclasen@redhat.com> - 3.8.3-1
3c437c
- Fix a crash when talking to systemd (#977575)
3c437c
3c437c
* Sat Jun 22 2013 Matthias Clasen <mclasen@redhat.com> - 3.8.2.1-2
3c437c
- Trim %%changelog
3c437c
3c437c
* Wed May 15 2013 Matthias Clasen <mclasen@redhat.com> - 3.8.2.1-1
3c437c
- Update to 3.8.2.1
3c437c
- Conditionally build session selector
3c437c
3c437c
* Mon May 13 2013 Matthias Clasen <mclasen@redhat.com> - 3.8.2-1
3c437c
- Update to 3.8.2
3c437c
3c437c
* Tue Apr 30 2013 Kalev Lember <kalevlember@gmail.com> - 3.8.1-2
3c437c
- Use the upstream xsession desktop file
3c437c
- Drop the fallback mode authentication agent autostart file
3c437c
3c437c
* Mon Apr 15 2013 Kalev Lember <kalevlember@gmail.com> - 3.8.1-1
3c437c
- Update to 3.8.1
3c437c
3c437c
* Thu Apr 11 2013 Adam Jackson <ajax@redhat.com> 3.8.0-2
3c437c
- gnome-session-3.6.2-swrast.patch: Allow running on the classic software
3c437c
  renderer.  No effect on arches where we build llvmpipe, but on ppc/s390
3c437c
  classic swrast is marginally less painful than softpipe.
3c437c
3c437c
* Tue Mar 26 2013 Kalev Lember <kalevlember@gmail.com> - 3.8.0-1
3c437c
- Update to 3.8.0
3c437c
3c437c
* Wed Mar 20 2013 Richard Hughes <rhughes@redhat.com> - 3.7.92-1
3c437c
- Update to 3.7.92
3c437c
3c437c
* Wed Mar  6 2013 Matthias Clasen <mclasen@redhat.com> - 3.7.91-1
3c437c
- Update to 3.7.91
3c437c
3c437c
* Sun Feb 24 2013 Matthias Clasen <mclasen@redhat.com> - 3.7.90-2
3c437c
- Drop obsolete requires (polkit-gnome, polkit-desktop-policy,
3c437c
  notification-daemon)
3c437c
3c437c
* Wed Feb 20 2013 Richard Hughes <rhughes@redhat.com> - 3.7.90-1
3c437c
- Update to 3.7.90
3c437c
3c437c
* Wed Feb 06 2013 Kalev Lember <kalevlember@gmail.com> - 3.7.4-1
3c437c
- Update to 3.7.4
3c437c
3c437c
* Thu Dec 20 2012 Kalev Lember <kalevlember@gmail.com> - 3.7.3-1
3c437c
- Update to 3.7.3
3c437c
- Drop the upstreamed llvmpipe patch
3c437c
- Adjust buildrequires
3c437c
3c437c
* Tue Nov 20 2012 Richard Hughes <hughsient@gmail.com> - 3.7.2-1
3c437c
- Update to 3.7.2
3c437c
3c437c
* Fri Nov 09 2012 Kalev Lember <kalevlember@gmail.com> - 3.7.1-1
3c437c
- Update to 3.7.1
3c437c
3c437c
* Thu Oct 18 2012 Florian Müllner <fmuellner@redhat.com> - 3.6.1-2
3c437c
- Set XDG_MENU_PREFIX to pick the correct menu layout in
3c437c
  gnome-shell and alacarte
3c437c
3c437c
* Tue Oct 16 2012 Kalev Lember <kalevlember@gmail.com> - 3.6.1-1
3c437c
- Update to 3.6.1
3c437c
3c437c
* Tue Sep 25 2012 Matthias Clasen <mclasen@redhat.com> - 3.6.0-1
3c437c
- Update to 3.6.0
3c437c
3c437c
* Thu Sep 06 2012 Richard Hughes <hughsient@gmail.com> - 3.5.91-1
3c437c
- Update to 3.5.91
3c437c
3c437c
* Tue Aug 07 2012 Richard Hughes <hughsient@gmail.com> - 3.5.5-1
3c437c
- Update to 3.5.5
3c437c
3c437c
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5.4-2
3c437c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
3c437c
3c437c
* Tue Jul 17 2012 Richard Hughes <hughsient@gmail.com> - 3.5.4-1
3c437c
- Update to 3.5.4
3c437c
3c437c
* Thu Jun 07 2012 Richard Hughes <hughsient@gmail.com> - 3.5.2-1
3c437c
- Update to 3.5.2
3c437c
3c437c
* Fri May 18 2012 Richard Hughes <hughsient@gmail.com> - 3.4.2-1
3c437c
- Update to 3.4.2
3c437c
3c437c
* Tue Apr 24 2012 Kalev Lember <kalevlember@gmail.com> - 3.4.1-2
3c437c
- Silence rpm scriptlet output
3c437c
3c437c
* Tue Apr 17 2012 Kalev Lember <kalevlember@gmail.com> - 3.4.1-1
3c437c
- Update to 3.4.1
3c437c
- Dropped upstreamed systemd patch
3c437c
3c437c
* Thu Apr  5 2012 Matthias Clasen <mclasen@redhat.com> - 3.4.0-2
3c437c
- Fix a looping PolicyKit dialog on shutdown
3c437c
3c437c
* Tue Mar 27 2012 Richard Hughes <hughsient@gmail.com> - 3.4.0-1
3c437c
- Update to 3.4.0
3c437c
3c437c
* Thu Mar 22 2012 Adam Williamson <awilliam@redhat.com> - 3.3.92-2
3c437c
- blacklist NV30 family until RH #745202 is resolved
3c437c
3c437c
* Wed Mar 21 2012 Kalev Lember <kalevlember@gmail.com> - 3.3.92-1
3c437c
- Update to 3.3.92
3c437c
3c437c
* Sun Feb 26 2012 Matthias Clasen <mclasen@redhat.com> - 3.3.90-1
3c437c
- Update to 3.3.90
3c437c
3c437c
* Thu Feb  9 2012 Matthias Clasen <mclasen@redhat.com> - 3.3.5-2
3c437c
- Fix a bug in the new system interface registration
3c437c
3c437c
* Tue Feb  7 2012 Matthias Clasen <mclasen@redhat.com> - 3.3.5-1
3c437c
- Update to 3.3.5
3c437c
- Use systemd for session tracking
3c437c
3c437c
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.3-2
3c437c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
3c437c
3c437c
* Wed Dec 21 2011 Matthias Clasen <mclasen@redhat.com> 3.3.3-1
3c437c
- Update to 3.3.3
3c437c
3c437c
* Tue Dec 13 2011 Adam Jackson <ajax@redhat.com> 3.3.2-2
3c437c
- gnome-session-3.3.2-radeon.patch: Blacklist pre-R300 radeons (#758422)
3c437c
3c437c
* Wed Nov 23 2011 Matthias Clasen <mclasen@redhat.com> 3.3.2-1
3c437c
- Update to 3.3.2
3c437c
3c437c
* Thu Nov 03 2011 Adam Jackson <ajax@redhat.com> 3.3.1-2
3c437c
- gnome-session-3.3.1-llvmpipe.patch: Don't consider llvmpipe unsupported.
3c437c
3c437c
* Wed Nov  2 2011 Matthias Clasen <mclasen@redhat.com> - 3.3.1-1
3c437c
- Update to 3.3.1
3c437c
3c437c
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.1-2
3c437c
- Rebuilt for glibc bug#747377
3c437c
3c437c
* Tue Oct 18 2011 Matthias Clasen <mclasen@redhat.com> - 3.2.1-1
3c437c
- Update to 3.2.1
3c437c
3c437c
* Tue Sep 27 2011 Ray <rstrode@redhat.com> - 3.2.0-1
3c437c
- Update to 3.2.0
3c437c
3c437c
* Tue Sep 20 2011 Matthias Clasen <mclasen@redhat.com> 3.1.92-1
3c437c
- Update to 3.1.92
3c437c
3c437c
* Fri Sep  9 2011 Matthias Clasen <mclasen@redhat.com> 3.1.91-3
3c437c
- Some fixes to make gdm fallback mode login work
3c437c
3c437c
* Thu Sep  8 2011 Matthias Clasen <mclasen@redhat.com> 3.1.91-2
3c437c
- Drop GConf2-gtk dep
3c437c
3c437c
* Tue Sep  6 2011 Matthias Clasen <mclasen@redhat.com> 3.1.91-1
3c437c
- Update to 3.1.91
3c437c
3c437c
* Wed Aug 31 2011 Matthias Clasen <mclasen@redhat.com> 3.1.90-1
3c437c
- Update to 3.1.90
3c437c
3c437c
* Wed Aug 17 2011 Matthias Clasen <mclasen@redhat.com> 3.1.5-1
3c437c
- Update to 3.1.5
3c437c
3c437c
* Mon Jul 04 2011 Bastien Nocera <bnocera@redhat.com> 3.1.3-1
3c437c
- Update to 3.1.3
3c437c
3c437c
* Wed Jun 15 2011 Tomas Bzatek <tbzatek@redhat.com> - 3.1.2-1
3c437c
- Update to 3.1.2
3c437c
3c437c
* Wed Apr 27 2011 Owen Taylor <otaylor@redhat.com> - 3.0.1-2
3c437c
- Add a quick-and-dirty blacklist for Radeon R100, R200, Intel 8xx
3c437c
3c437c
* Tue Apr 26 2011 Matthias Clasen <mclasen@redhat.com> 3.0.1-1
3c437c
- Update to 3.0.1
3c437c
3c437c
* Mon Apr  4 2011 Matthias Clasen <mclasen@redhat.com> 3.0.0-1
3c437c
- Update to 3.0.0
3c437c
3c437c
* Mon Mar 28 2011 Matthias Clasen <mclasen@redhat.com> 2.91.94-1
3c437c
- Update to 2.91.94
3c437c
3c437c
* Wed Mar 23 2011 Ray Strode <rstrode@redhat.com> 2.91.93-1
3c437c
- Update to 2.91.93
3c437c
3c437c
* Wed Mar 23 2011 Matthias Clasen <mclasen@redhat.com> 2.91.92-1
3c437c
- Update to 2.91.92
3c437c
3c437c
* Wed Mar  9 2011 Matthias Clasen <mclasen@redhat.com> 2.91.91.3-1
3c437c
- Update to 2.91.91.3
3c437c
3c437c
* Wed Mar  9 2011 Matthias Clasen <mclasen@redhat.com> 2.91.91.2-1
3c437c
- Update to 2.91.91.2
3c437c
3c437c
* Tue Mar  8 2011 Matthias Clasen <mclasen@redhat.com> 2.91.91-2
3c437c
- Fix the check-accel utility exit status
3c437c
3c437c
* Mon Mar  7 2011 Matthias Clasen <mclasen@redhat.com> 2.91.91-1
3c437c
- Update to 2.91.91
3c437c
3c437c
* Mon Feb 28 2011 Matthias Clasen <mclasen@redhat.com> 2.91.90-5
3c437c
- Make the new if-session Autostart condition work
3c437c
3c437c
* Mon Feb 28 2011 Matthias Clasen <mclasen@redhat.com> 2.91.90-4
3c437c
- Fix the autostart syntax
3c437c
3c437c
* Tue Feb 22 2011 Matthias Clasen <mclasen@redhat.com> 2.91.90-3
3c437c
- Install an autostart file for the authentication agent
3c437c
  in the fallback session
3c437c
3c437c
* Tue Feb 22 2011 Ray Strode <rstrode@redhat.com> 2.91.90-2
3c437c
- Fix crashity crash crash
3c437c
3c437c
* Mon Feb 21 2011 Matthias Clasen <mclasen@redhat.com> 2.91.90-1
3c437c
- Update to 2.91.90
3c437c
3c437c
* Fri Feb 11 2011 Matthias Clasen <mclasen@redhat.com> 2.91.6-3
3c437c
- Rebuild against newer gtk
3c437c
3c437c
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.91.6-2
3c437c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
3c437c
3c437c
* Wed Feb  2 2011 Matthias Clasen <mclasen@redhat.com> 2.91.6-1
3c437c
- 2.91.6
3c437c
3c437c
* Tue Jan 25 2011 Matthias Clasen <mclasen@redhat.com> 2.91.4-3
3c437c
- Just require control-center-filesystem (#661565)
3c437c
3c437c
* Fri Jan 14 2011 Matthias Clasen <mclasen@redhat.com> 2.91.4-2
3c437c
- Don't run the shell on softpipe
3c437c
3c437c
* Sun Jan  9 2011 Matthias Clasen <mclasen@redhat.com> 2.91.4-1
3c437c
- Update to 2.91.4
3c437c
3c437c
* Fri Dec  3 2010 Matthias Clasen <mclasen@redhat.com> 2.91.0-7
3c437c
- Rebuild against new gtk
3c437c
3c437c
* Sun Nov 07 2010 Ray Strode <rstrode@redhat.com> 2.91.0-6
3c437c
- Fix some cases where the inhibitor dialog shows up when it isn't
3c437c
  supposed to.
3c437c
3c437c
* Tue Nov  2 2010 Matthias Clasen <mclasen@redhat.com> - 2.91.0-5
3c437c
- Prepare for libnotify 0.7.0
3c437c
3c437c
* Mon Nov  1 2010 Matthias Clasen <mclasen@redhat.com> - 2.91.0-4
3c437c
- Rebuild against newer gtk3
3c437c
3c437c
* Tue Oct 26 2010 Parag Nemade <paragn AT fedoraproject.org> - 2.91.0-3
3c437c
- Gconf2 scriptlet accepts schema file names without file extension.
3c437c
3c437c
* Fri Oct 15 2010 Parag Nemade <paragn AT fedoraproject.org> - 2.91.0-2
3c437c
- Merge-review cleanup (#225835)
3c437c
3c437c
* Wed Oct  6 2010 Matthias Clasen <mclasen@redhat.com> - 2.91.0-1
3c437c
- Update to 2.91.0
3c437c
3c437c
* Thu Sep 30 2010 Matthias Clasen <mclasen@redhat.com> - 2.32.0-1
3c437c
- Update to 2.32.0
3c437c
3c437c
* Wed Sep 29 2010 jkeating - 2.31.6-3
3c437c
- Rebuilt for gcc bug 634757
3c437c
3c437c
* Tue Sep 21 2010 Ray Strode <rstrode@redhat.com> - 2.31.6-2
3c437c
- build fixes
3c437c
3c437c
* Fri Aug  6 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.6-1
3c437c
- Update to 2.31.6
3c437c
3c437c
* Thu Jul  8 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.2-2
3c437c
- Require dconf
3c437c
3c437c
* Thu May 27 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.2-1
3c437c
- Update to 2.31.2
3c437c
3c437c
* Fri May 07 2010 Colin Walters <walters@verbum.org> - 2.30.0-2
3c437c
- Use upstream commit for library linking
3c437c
3c437c
* Mon Mar 29 2010 Matthias Clasen <mclasen@redhat.com> - 2.30.0-1
3c437c
- Update to 2.30.0
3c437c
3c437c
* Tue Mar 09 2010 Bastien Nocera <bnocera@redhat.com> 2.29.92-1
3c437c
- Update to 2.29.92
3c437c
3c437c
* Thu Feb 11 2010 Matthias Clasen <mclasen@redhat.com> - 2.29.6-1
3c437c
- Update to 2.29.6
3c437c
3c437c
* Fri Jan 15 2010 Ray Strode <rstrode@redhat.com> - 2.28.0-4
3c437c
- Nag user if they try to log in as root
3c437c
3c437c
* Fri Nov  6 2009 Matthias Clasen  <mclasen@redhat.com> - 2.28.0-3
3c437c
- Add ability to perform actions after a period of idleness
3c437c
3c437c
* Fri Oct 23 2009 Matthias Clasen  <mclasen@redhat.com> - 2.28.0-2
3c437c
- Avoid a crash on certain xsmp error conditions
3c437c
3c437c
* Wed Sep 23 2009 Matthias Clasen  <mclasen@redhat.com> - 2.28.0-1
3c437c
- Update to 2.28.0
3c437c
3c437c
* Wed Sep  9 2009 Matthias Clasen  <mclasen@redhat.com> - 2.27.92-1
3c437c
- Update to 2.27.92
3c437c
3c437c
* Thu Aug 13 2009 Matthias Clasen  <mclasen@redhat.com> - 2.27.5-2
3c437c
- Require polkit-desktop-policy
3c437c
3c437c
* Tue Jul 28 2009 Matthias Clasen  <mclasen@redhat.com> - 2.27.5-1
3c437c
- Update to 2.27.5
3c437c
3c437c
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.27.4-3
3c437c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
3c437c
3c437c
* Mon Jul 20 2009 Matthias Clasen  <mclasen@redhat.com> - 2.27.4-2
3c437c
- Require polkit-gnome, we need an authentication agent in the session
3c437c
3c437c
* Wed Jul 15 2009 Matthias Clasen  <mclasen@redhat.com> - 2.27.4-1
3c437c
- Update to 2.27.4
3c437c
3c437c
* Fri Jul 10 2009 Matthias Clasen  <mclasen@redhat.com> - 2.26.1-5
3c437c
- Avoid pointless warnings
3c437c
3c437c
* Sun Jun 14 2009 Matthias Clasen  <mclasen@redhat.com> - 2.26.1-4
3c437c
- Drop unused files
3c437c
3c437c
* Fri Jun 12 2009 Matthias Clasen  <mclasen@redhat.com> - 2.26.1-3
3c437c
- Fix some oversights in the PolicyKit port
3c437c
3c437c
* Tue May 12 2009 Matthias Clasen  <mclasen@redhat.com> - 2.26.1-2
3c437c
- Port to PolicyKit 1
3c437c
3c437c
* Tue Apr 14 2009 Matthias Clasen  <mclasen@redhat.com> - 2.26.1-1
3c437c
- Update to 2.26.1
3c437c
- See http://download.gnome.org/sources/gnome-session/2.26/gnome-session-2.26.1.news
3c437c
3c437c
* Wed Apr  8 2009 Matthias Clasen  <mclasen@redhat.com> - 2.26.0.90-1
3c437c
- Update to 2.26.0.90
3c437c
3c437c
* Sun Apr  5 2009 Matthias Clasen  <mclasen@redhat.com> - 2.26.0-2
3c437c
- Avoid some warnings (#493688)
3c437c
3c437c
* Mon Mar 16 2009 Matthias Clasen  <mclasen@redhat.com> - 2.26.0-1
3c437c
- Update to 2.26.0
3c437c
3c437c
* Fri Mar  6 2009 Matthias Clasen  <mclasen@redhat.com> - 2.25.92-2
3c437c
- Turn off excessive debug spew
3c437c
3c437c
* Tue Mar  3 2009 Matthias Clasen  <mclasen@redhat.com> - 2.25.92-1
3c437c
- Update to 2.25.92
3c437c
3c437c
* Thu Feb 26 2009 Matthias Clasen  <mclasen@redhat.com> - 2.25.91-4
3c437c
- Make -xsession arch again
3c437c
- Fix xsync usage
3c437c
3c437c
* Tue Feb 24 2009 Matthias Clasen  <mclasen@redhat.com> - 2.25.91-3
3c437c
- Make -xsession noarch
3c437c
3c437c
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.25.91-2
3c437c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
3c437c
3c437c
* Wed Feb 18 2009 Matthias Clasen  <mclasen@redhat.com> - 2.25.91-1
3c437c
- Update to 2.25.91
3c437c
3c437c
* Tue Feb  3 2009 Matthias Clasen  <mclasen@redhat.com> - 2.25.90-1
3c437c
- Update to 2.25.90
3c437c
3c437c
* Tue Jan 20 2009 Matthias Clasen  <mclasen@redhat.com> - 2.25.5-2
3c437c
- Update to 2.25.5
3c437c
- Fix BuildRequires
3c437c
3c437c
* Wed Dec 17 2008 Matthias Clasen  <mclasen@redhat.com> - 2.25.3-1
3c437c
- Update to 2.25.3
3c437c
3c437c
* Thu Dec  4 2008 Matthias Clasen  <mclasen@redhat.com> - 2.25.2-2
3c437c
- Update to 2.25.2
3c437c
3c437c
* Tue Nov 25 2008 Matthias Clasen  <mclasen@redhat.com> - 2.24.1-5
3c437c
- Spec file cleanups
3c437c
3c437c
* Mon Nov 10 2008 Matthias Clasen  <mclasen@redhat.com> - 2.24.1-4
3c437c
- Fix client registration in some cases 
3c437c
3c437c
* Sun Oct 26 2008 Matthias Clasen  <mclasen@redhat.com> - 2.24.1-3
3c437c
- Make the capplet resizable (#468577)
3c437c
3c437c
* Wed Oct 22 2008 Matthias Clasen  <mclasen@redhat.com> - 2.24.1-1
3c437c
- Update to 2.24.1
3c437c
- Drop upstreamed patches
3c437c
3c437c
* Wed Oct 15 2008 Ray Strode <rstrode@redhat.com> - 2.24.0-11
3c437c
- Remove some dubious code to fix panel race at startup that
3c437c
  would make shutdown menu item disappear for some users.
3c437c
3c437c
* Fri Oct 10 2008 Ray Strode <rstrode@redhat.com> - 2.24.0-10
3c437c
- Rewrite patch another time leverage better api and be more
3c437c
  terse
3c437c
3c437c
* Fri Oct 10 2008 Ray Strode <rstrode@redhat.com> - 2.24.0-9
3c437c
- Bring shutdown menu item back.  More fallout from my buggy
3c437c
  patch introduced in -7
3c437c
3c437c
* Thu Oct  9 2008 Ray Strode <rstrode@redhat.com> - 2.24.0-8
3c437c
- Fix assertion failure in last patch
3c437c
3c437c
* Thu Oct  9 2008 Ray Strode <rstrode@redhat.com> - 2.24.0-7
3c437c
- Add new api for panel to figure out whether or not to show
3c437c
  Shutdown menu item.
3c437c
3c437c
* Fri Oct  3 2008 Matthias Clasen  <mclasen@redhat.com> - 2.24.0-6
3c437c
- Fix missing translations in the capplet
3c437c
- Fix small UI issues in the capplet
3c437c
3c437c
* Sun Sep 28 2008 Matthias Clasen  <mclasen@redhat.com> - 2.24.0-5
3c437c
- BR xorg-x11-xtrans-devel (#464316)
3c437c
3c437c
* Fri Sep 26 2008 Ray Strode  <rstrode@redhat.com> - 2.24.0-4
3c437c
- Make the new xsession subpackage require the version of
3c437c
  gnome-session it's built against
3c437c
3c437c
* Thu Sep 25 2008 Ray Strode  <rstrode@redhat.com> - 2.24.0-3
3c437c
- Split gnome-session.desktop off into subpackage
3c437c
3c437c
* Mon Sep 22 2008 Matthias Clasen  <mclasen@redhat.com> - 2.24.0-2
3c437c
- Update to 2.24.0
3c437c
- Drop upstreamed patches
3c437c
3c437c
* Thu Sep 18 2008 Matthias Clasen  <mclasen@redhat.com> - 2.23.92-6
3c437c
- Plug memory leaks
3c437c
3c437c
* Thu Sep 18 2008 Matthias Clasen  <mclasen@redhat.com> - 2.23.92-5
3c437c
- Plug memory leaks
3c437c
3c437c
* Mon Sep 15 2008 Matthias Clasen  <mclasen@redhat.com> - 2.23.92-4
3c437c
- Plug memory leaks
3c437c
3c437c
* Sun Sep 14 2008 Matthias Clasen  <mclasen@redhat.com> - 2.23.92-3
3c437c
- Plug memory leaks
3c437c
3c437c
* Sun Sep 14 2008 Matthias Clasen  <mclasen@redhat.com> - 2.23.92-2
3c437c
- Plug memory leaks
3c437c
3c437c
* Mon Sep  8 2008 Jon McCann  <jmccann@redhat.com> - 2.23.92-1
3c437c
- Update to 2.23.92
3c437c
3c437c
* Tue Sep  2 2008 Matthias Clasen  <mclasen@redhat.com> - 2.23.91-1
3c437c
- Update to 2.23.91
3c437c
3c437c
* Thu Aug 28 2008 Jon McCann  <jmccann@redhat.com> - 2.23.91.0.2008.08.28.1
3c437c
- Update to snapshot
3c437c
3c437c
* Fri Aug 22 2008 Matthias Clasen  <mclasen@redhat.com> - 2.23.90-1
3c437c
- Update to 2.23.90
3c437c
3c437c
* Thu Aug 14 2008 Lennart Poettering  <lpoetter@redhat.com> - 2.23.6-4
3c437c
- Drop login/logout sound scripts since we do this now in libcanberra
3c437c
3c437c
* Tue Aug 12 2008 Matthias Clasen  <mclasen@redhat.com> - 2.23.6-3
3c437c
- Fix a crash in the at-spi-registryd-wrapper
3c437c
3c437c
* Thu Aug  7 2008 Matthias Clasen  <mclasen@redhat.com> - 2.23.6-2
3c437c
- Fix another icon name
3c437c
3c437c
* Tue Aug  5 2008 Matthias Clasen  <mclasen@redhat.com> - 2.23.6-1
3c437c
- Update to 2.23.6
3c437c
3c437c
* Wed Jul 30 2008 Jon McCann  <jmccann@redhat.com> - 2.23.6.0.2008.07.30.1
3c437c
- New snapshot from DBus branch
3c437c
3c437c
* Mon Jul 29 2008 Jon McCann  <jmccann@redhat.com> - 2.23.6.0.2008.07.29.1
3c437c
- New snapshot from DBus branch
3c437c
3c437c
* Mon Jul 28 2008 Jon McCann  <jmccann@redhat.com> - 2.23.5.0.2008.07.28.1
3c437c
- New snapshot from DBus branch
3c437c
3c437c
* Thu Jul 24 2008 Matthias Clasen  <mclasen@redhat.com> - 2.23.5.0.2008.07.21.4
3c437c
- Fix a crash
3c437c
3c437c
* Mon Jul 22 2008 Jon McCann  <jmccann@redhat.com> - 2.23.5.0.2008.07.21.3
3c437c
- Add BuildRequires PolicyKit-gnome-devel
3c437c
3c437c
* Mon Jul 21 2008 Jon McCann  <jmccann@redhat.com> - 2.23.5.0.2008.07.21.2
3c437c
- New snapshot to fix build
3c437c
3c437c
* Mon Jul 21 2008 Jon McCann  <jmccann@redhat.com> - 2.23.5.0.2008.07.21.1
3c437c
- Snapshot from DBus branch
3c437c
3c437c
* Wed Jul  9 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.4.1-4
3c437c
- Fix a typo in the previous patch
3c437c
3c437c
* Wed Jul  9 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.4.1-3
3c437c
- Use more standard icon names
3c437c
3c437c
* Tue Jul  8 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.4.1-2
3c437c
- Escape comments for markup
3c437c
3c437c
* Wed Jun 18 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.4.1-1
3c437c
- Update to 2.23.4.1
3c437c
3c437c
* Wed Jun  4 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.3-1
3c437c
- Update to 2.23.3
3c437c
3c437c
* Fri May 16 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.2.2-3
3c437c
- Make nautilus start again
3c437c
3c437c
* Thu May 15 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.2.2-2
3c437c
- Don't crash while handling legacy sessions
3c437c
3c437c
* Wed May 14 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.2.2-1
3c437c
- Update to 2.23.2.2
3c437c
3c437c
* Fri Apr 25 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.1-1
3c437c
- Update to 2.23.1
3c437c
3c437c
* Thu Apr 10 2008 Matthias Clasen <mclasen@redhat.com> - 2.22.1.1-1
3c437c
- Update to 2.22.1.1 (fixes a crash in the trash migration code)
3c437c
3c437c
* Mon Apr  7 2008 Matthias Clasen <mclasen@redhat.com> - 2.22.1-1
3c437c
- Update to 2.22.1
3c437c
3c437c
* Sun Apr  6 2008 Matthias Clasen <mclasen@redhat.com> - 2.22.0-2
3c437c
- Drop gnome-volume-manager from the default session
3c437c
3c437c
* Mon Mar 10 2008 Matthias Clasen <mclasen@redhat.com> - 2.22.0-1
3c437c
- Update to 2.22.0
3c437c
3c437c
* Thu Mar 06 2008 - Bastien Nocera <bnocera@redhat.com> - 2.21.93-1
3c437c
- Update to 2.21.93, drop esound dependencies and patches
3c437c
3c437c
* Tue Feb 26 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.92-1
3c437c
- Update to 2.21.92
3c437c
3c437c
* Tue Feb 12 2008  Matthias Clasen <mclasen@redhat.com> - 2.21.91-1
3c437c
- Update to 2.21.91
3c437c
3c437c
* Mon Feb 11 2008 - Bastien Nocera <bnocera@redhat.com> - 2.21.90-2
3c437c
- Add patch to make login sounds work
3c437c
- Remove unneeded patch to launch gnome-user-share, it launches
3c437c
  using autostart now
3c437c
3c437c
* Tue Jan 29 2008  Matthias Clasen <mclasen@redhat.com> - 2.21.90-1
3c437c
- Update to 2.21.90
3c437c
3c437c
* Tue Jan 15 2008  Matthias Clasen <mclasen@redhat.com> - 2.21.5-1
3c437c
- Update to 2.21.5
3c437c
3c437c
* Tue Nov 27 2007  Matthias Clasen <mclasen@redhat.com> - 2.20.2-1
3c437c
- Update to 2.20.2 (translation updates)
3c437c
3c437c
* Tue Oct 30 2007 - Bastien Nocera <bnocera@redhat.com> - 2.20.1-2
3c437c
- Enable sound by default, without looking at the prefs
3c437c
3c437c
* Mon Oct 15 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.1-1
3c437c
- Update to 2.20.1 (translation updates)
3c437c
3c437c
* Thu Sep 27 2007 Ray Strode <rstrode@redhat.com> - 2.20.0-2
3c437c
- drop redhat-artwork dep.  We don't need it.
3c437c
3c437c
* Mon Sep 17 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.0-1
3c437c
- Update to 2.20.0
3c437c
3c437c
* Tue Sep 11 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.92-3
3c437c
- Plug memory leaks in the ICE code
3c437c
3c437c
* Wed Sep  5 2007 Kristian Høgsberg <krh@redhat.com> - 2.19.92-2
3c437c
- Update gnome-session-2.17.5-window-manager.patch to apply (remove
3c437c
  chunks that are now upstream).
3c437c
3c437c
* Tue Sep  4 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.92-1
3c437c
- Update to 2.19.92
3c437c
3c437c
* Thu Aug 23 2007 Adam Jackson <ajax@redhat.com> - 2.19.90-2
3c437c
- Rebuild for build ID
3c437c
3c437c
* Mon Aug 13 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.90-1
3c437c
- Update to 2.19.90
3c437c
3c437c
* Fri Aug 10 2007 Kristian Høgsberg <krh@redhat.com> - 2.19.6-5
3c437c
- Edit window manager patch again to add 'glib' to compiz launch.
3c437c
3c437c
* Thu Aug  9 2007 Kristian Høgsberg <krh@redhat.com> - 2.19.6-4
3c437c
- Edit the right window manager patch and delete the old one.
3c437c
3c437c
* Thu Aug  9 2007 Kristian Høgsberg <krh@redhat.com> - 2.19.6-3
3c437c
- Export LIBGL_ALWAYS_INDIRECT before starting compiz.
3c437c
3c437c
* Fri Aug  3 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.6-2
3c437c
- Update license field
3c437c
3c437c
* Mon Jul 30 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.6-1
3c437c
- Update to 2.19.6
3c437c
3c437c
* Sun Jul  8 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.5-1
3c437c
- Update to 2.19.5
3c437c
3c437c
* Fri Jul  6 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.4-3
3c437c
- Move /usr/share/gnome/wm-properties to control-center-filesystem
3c437c
3c437c
* Tue Jun 19 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.4-2
3c437c
- Fix a hang on login with a11y
3c437c
3c437c
* Sun Jun 17 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.4-1
3c437c
- Update to 2.19.4
3c437c
3c437c
* Mon Jun  4 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.3-1
3c437c
- Update to 2.19.3
3c437c
- Drop upstreamed patch
3c437c
3c437c
* Tue May 22 2007 - Bastien Nocera <bnocera@redhat.com> - 2.19.2-2
3c437c
- Fix up logic in iris patch
3c437c
3c437c
* Sun May 20 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.2-1
3c437c
- Update to 2.19.2
3c437c
3c437c
* Tue May 15 2007 Ray Strode <rstrode@redhat.com> - 2.18.0-7
3c437c
- Don't show iris animation when using compiz (bug 237842)
3c437c
3c437c
* Sun May  6 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.0-6
3c437c
- Don't own /usr/share/applications
3c437c
3c437c
* Sat Apr 14 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.0-5
3c437c
- Add a dependency on dbus-x11
3c437c
3c437c
* Thu Apr 12 2007 David Zeuthen <davidz@redhat.com> - 2.18.0-4
3c437c
- start same kind of AT's in session as started in gdm (#229912)
3c437c
3c437c
* Fri Mar 30 2007 Ray Strode <rstrode@redhat.com> - 2.18.0-3
3c437c
- remove xdg autostart dir since it's part of filesystem now
3c437c
3c437c
* Wed Mar 21 2007 Ray Strode <rstrode@redhat.com> - 2.18.0-2
3c437c
- remove eggcups from default session (bug 233261)
3c437c
3c437c
* Tue Mar 13 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.0-1
3c437c
- Update to 2.18.0
3c437c
3c437c
* Wed Feb 28 2007 Matthias Clasen <mclasen@redhat.com> - 2.17.92-1
3c437c
- Update to 2.17.92
3c437c
3c437c
* Fri Feb 23 2007 Jeremy Katz <katzj@redhat.com> - 2.17.91-2
3c437c
- disable a11y registry timeout so that we don't get the popup with 
3c437c
  the livecd (#227214)
3c437c
3c437c
* Tue Feb 13 2007 Matthisa Clasen <mclasen@redhat.com> - 2.17.91-1
3c437c
- Update to 2.17.91
3c437c
3c437c
* Tue Feb  6 2007 Kristian Høgsberg <krh@redhat.com> - 2.17.90.1-3
3c437c
- Update gnome-session-2.15.90-window-manager.patch to start
3c437c
  gtk-window-decorator instead of gnome-window-decorator for compiz.
3c437c
3c437c
  [ Update: the patch is not applied and upstream gnome-session does
3c437c
    the right thing. ]
3c437c
3c437c
* Mon Feb  5 2007 Matthias Clasen <mclasen@redhat.com> - 2.17.90.1-2
3c437c
- Require GConf2-gtk for gconf-sanity-check 
3c437c
3c437c
* Tue Jan 23 2007 Matthias Clasen <mclasen@redhat.com> - 2.17.90.1-1
3c437c
- Update to 2.17.90.1
3c437c
3c437c
* Sun Jan 21 2007 Matthias Clasen <mclasen@redhat.com> - 2.17.90-1
3c437c
- Update to 2.17.90
3c437c
- Clean up BuildRequires
3c437c
3c437c
* Wed Jan 10 2007 Matthias Clasen <mclasen@redhat.com> - 2.17.5-1
3c437c
- Update to 2.17.5
3c437c
3c437c
* Mon Nov 27 2006 Ray Strode <rstrode@redhat.com> - 2.17.2-6
3c437c
- don't set http_proxy variable if proxy requires password (bug
3c437c
  217332)
3c437c
3c437c
* Wed Nov 22 2006 Matthias Clasen <mclasen@redhat.com> - 2.17.2-4
3c437c
- Own the /usr/share/gnome/wm-properties directory (#216514)
3c437c
3c437c
* Mon Nov 20 2006 Ray Strode <rstrode@redhat.com> - 2.17.2-3
3c437c
- don't make gnome.desktop executable (bug 196105)
3c437c
3c437c
* Sat Nov 11 2006 Matthias Clasen  <mclasen@redhat.com> - 2.17.2-2
3c437c
- Fix gnome-wm for compiz
3c437c
3c437c
* Tue Nov  7 2006 Matthias Clasen  <mclasen@redhat.com> - 2.17.2-1
3c437c
- Update to 2.17.2
3c437c
3c437c
* Thu Oct 26 2006 Ray Strode <rstrode@redhat.com> - 2.16.1-2.fc7
3c437c
- don't hose users with a stale http_proxy variable if they
3c437c
  use autoconfiguration and uses to use manual configuration.
3c437c
  Patch by Mark McLoughlin (bug 212319)
3c437c
3c437c
* Sat Oct 21 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.1-1
3c437c
- Update to 2.16.1
3c437c
3c437c
* Wed Oct 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.0-4
3c437c
- Fix scripts according to the packaging guidelines
3c437c
3c437c
* Thu Sep  7 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.0-3.fc6
3c437c
- Fix position of icons in the splash screen  (#205508)
3c437c
3c437c
* Wed Sep  6 2006 Ray Strode <rstrode@redhat.com> - 2.16.0-2.fc6
3c437c
- set http_proxy environment variable from GNOME settings 
3c437c
  (bug 190041)
3c437c
3c437c
* Mon Sep  4 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.0-1.fc6
3c437c
- Update to 2.16.0
3c437c
3c437c
* Mon Aug 21 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.92-1.fc6
3c437c
- Update to 2.15.92
3c437c
- Add %%preun and %%postun scripts
3c437c
3c437c
* Mon Aug 14 2006 Ray Strode <rstrode@redhat.com> - 2.15.91-1.fc6
3c437c
- Update to 2.15.91
3c437c
3c437c
* Sun Aug 13 2006 Ray Strode <rstrode@redhat.com> - 2.15.90-4.fc6
3c437c
- fix window manager launching script. Patch from 
3c437c
  Tim Vismor <tvismor@acm.org> (bug 202312)
3c437c
3c437c
* Fri Aug 11 2006 Ray Strode <rstrode@redhat.com> - 2.15.90-3.fc6
3c437c
- start gnome-window-decorator and pass "gconf" when invoking
3c437c
  compiz
3c437c
3c437c
* Thu Aug 10 2006 Ray Strode <rstrode@redhat.com> - 2.15.90-2.fc6
3c437c
- update patch from 2.15.4-3 to be more session friendly (bug 201473)
3c437c
3c437c
* Fri Aug  4 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.90-1.fc6
3c437c
- Update to 2.15.90
3c437c
3c437c
* Thu Aug  3 2006 Soren Sandmann <sandmann@redhat.com> - 2.15.4-3
3c437c
- Add patch to (a) add configuration option for window manager, (b) start the window
3c437c
  manager, and (c) disable splash screen by default.
3c437c
3c437c
* Wed Jul 19 2006 John (J5) Palmieri <johnp@redhat.com> - 2.15.4-2
3c437c
- Add BR for dbus-glib-devel
3c437c
3c437c
* Thu Jul 13 2006 Ray Strode <rstrode@redhat.com> - 2.15.4-1
3c437c
- Update to 2.15.4
3c437c
3c437c
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.15.1-5.1
3c437c
- rebuild
3c437c
3c437c
* Mon Jun 12 2006 Bill Nottingham  <notting@redhat.com> 2.15.1-5
3c437c
- remove obsolete automake14 buildreq
3c437c
3c437c
* Fri Jun  9 2006 Matthias Clasen  <mclasen@redhat.com> 2.15.1-4
3c437c
- Add more missing BuildRequires
3c437c
3c437c
* Tue Jun  6 2006 Matthias Clasen  <mclasen@redhat.com> 2.15.1-3
3c437c
- Add BuildRequires: intltool, autoconf, automake 
3c437c
3c437c
* Mon Jun  5 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.1-2
3c437c
- Require system-logos, not fedora-logos
3c437c
3c437c
* Wed May 10 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.1-1
3c437c
- Update to 2.15.1
3c437c
3c437c
* Mon Apr 10 2006 Matthias Clasen <mclasen@redhat.com> - 2.14.1-2
3c437c
- Update to 2.14.1
3c437c
3c437c
* Mon Mar 13 2006 Matthias Clasen <mclasen@redhat.com> - 2.14.0-1
3c437c
- Update to 2.14.0
3c437c
3c437c
* Thu Mar 09 2006 Ray Strode <rstrode@redhat.com> - 2.13.92-5
3c437c
- fix up path creation functions 
3c437c
3c437c
* Thu Mar 09 2006 Ray Strode <rstrode@redhat.com> - 2.13.92-4
3c437c
- create ~/.config/autostart before trying to migrate
3c437c
  session-manual to it (bug 179602).
3c437c
3c437c
* Mon Mar 06 2006 Ray Strode <rstrode@redhat.com> - 2.13.92-3
3c437c
- Patch from Vincent Untz to fix session editing (upstream bug 333641)
3c437c
- Desensitize buttons for operations that the user isn't allowed
3c437c
  to do (bug 179479).
3c437c
3c437c
* Wed Mar 01 2006 Karsten Hopp <karsten@redhat.de> 2.13.92-2
3c437c
- BuildRequires: gnome-desktop-devel, libX11-devel, libXt-devel
3c437c
3c437c
* Tue Feb 28 2006 Ray Strode <rstrode@redhat.com> - 2.13.92-1
3c437c
- Update to 2.13.92
3c437c
- Add patch from CVS HEAD to maintain compatibility with
3c437c
  version 2.13.91
3c437c
3c437c
* Thu Feb 23 2006 Ray Strode <rstrode@redhat.com> - 2.13.91-2
3c437c
- take ownership of autostart dir (bug 182335)
3c437c
3c437c
* Mon Feb 13 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.91-1
3c437c
- Update to 2.13.91
3c437c
3c437c
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.13.90-1.2
3c437c
- bump again for double-long bug on ppc(64)
3c437c
3c437c
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.13.90-1.1
3c437c
- rebuilt for new gcc4.1 snapshot and glibc changes
3c437c
3c437c
* Sat Jan 28 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.90-1
3c437c
- Update to 2.13.90
3c437c
3c437c
* Tue Jan 17 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.5-1
3c437c
- Update to 2.13.5
3c437c
3c437c
* Mon Jan 16 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.4-2
3c437c
- Disable the fatal-criticals, since it crashes too much 
3c437c
3c437c
* Fri Jan 13 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.4-1
3c437c
- Update to 2.13.4
3c437c
3c437c
* Thu Jan 12 2006 Ray Strode <rstrode@redhat.com> - 2.12.0-6
3c437c
- Fix screen corruption around splash screen shape (bug 177502)
3c437c
3c437c
* Tue Dec 20 2005 John (J5) Palmieri <johnp@redhat.com> - 2.12.0-5
3c437c
- Handle shaped window for splash screen
3c437c
3c437c
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
3c437c
- rebuilt
3c437c
3c437c
* Wed Nov  9 2005 Alexander Larsson <alexl@redhat.com> - 2.12.0-4
3c437c
- Add gnome-user-share patch
3c437c
3c437c
* Tue Nov 8 2005 Ray Strode <rstrode@redhat.com> - 2.12.0-3
3c437c
- fix up the dummy client ids to match the id passed initially
3c437c
  passed to the programs in the default session 
3c437c
  (broke in last update).
3c437c
3c437c
* Mon Oct 31 2005 Ray Strode <rstrode@redhat.com> - 2.12.0-2
3c437c
- remove rhn applet from default session
3c437c
- s/magicdev/gnome-volume-manager/
3c437c
3c437c
* Thu Sep  8 2005 Matthias Clasen <mclasen@redhat.com> - 2.12.0-1
3c437c
- Update to 2.12.0
3c437c
3c437c
* Tue Sep  6 2005 Ray Strode <rstrode@redhat.com> - 2.11.91-3
3c437c
- Don't take ownership of /usr/share/xsessions (bug 145791).
3c437c
3c437c
* Tue Aug 16 2005 Warren Togami <wtogami@redhat.com> - 2.11.91-2
3c437c
- rebuild for new cairo
3c437c
3c437c
* Tue Aug  9 2005 Ray Strode <rstrode@redhat.com> - 2.11.91-1
3c437c
- Update to upstream version 2.11.91 (fixes bug 165357).
3c437c
- drop some patches
3c437c
3c437c
* Thu Apr 18 2005 Ray Strode <rstrode@redhat.com> - 2.10.0-2
3c437c
- Install gnome.desktop to /usr/share/xsessions (bug 145791)
3c437c
3c437c
* Thu Mar 17 2005 Ray Strode <rstrode@redhat.com> - 2.10.0-1
3c437c
- Update to upstream version 2.10.0
3c437c
3c437c
* Wed Feb  2 2005 Matthias Clasen <mclasen@redhat.com> 2.9.4-1
3c437c
- Update to 2.9.4
3c437c
3c437c
* Mon Dec 20 2004 Daniel Reed <djr@redhat.com> 2.8.0-7
3c437c
- rebuild for new libhowl.so.0 library (for GnomeMeeting 1.2) (this was a mistake)
3c437c
3c437c
* Tue Nov 02 2004 Ray Strode <rstrode@redhat.com> 2.8.0-6
3c437c
- Rebuild for devel branch
3c437c
3c437c
 * Tue Nov 02 2004 Ray Strode <rstrode@redhat.com> 2.8.0-5
3c437c
- Convert Tamil translation to UTF8 
3c437c
  (Patch from Lawrence Lim <llim@redhat.com>, bug 135351)
3c437c
3c437c
* Fri Oct 08 2004 Ray Strode <rstrode@redhat.com> 2.8.0-4
3c437c
- Add g-v-m to default session since it wasn't already (?).
3c437c
- Remove g-v-m from default session on s390
3c437c
3c437c
* Thu Oct 07 2004 Ray Strode <rstrode@redhat.com> 2.8.0-3
3c437c
- Check for NULL program name when looking for client
3c437c
  match in session.
3c437c
3c437c
* Fri Sep 24 2004 Ray Strode <rstrode@redhat.com> 2.8.0-2
3c437c
- Add "Session" item to More Preferences menu
3c437c
3c437c
* Fri Sep 17 2004 Ray Strode <rstrode@redhat.com> 2.8.0-1
3c437c
- Update to 2.8.0 
3c437c
- Remove "Session" item from Preferences menu
3c437c
3c437c
* Fri Sep 03 2004 Ray Strode <rstrode@redhat.com> 2.7.91-2
3c437c
- Fix from Federico for infamous hanging splash screen problem.
3c437c
  (http://bugzilla.gnome.org/show_bug.cgi?id=151664)
3c437c
3c437c
* Tue Aug 31 2004 Ray Strode <rstrode@redhat.com> 2.7.91-1
3c437c
- Update to 2.7.91
3c437c
3c437c
* Wed Aug 18 2004 Ray Strode <rstrode@redhat.com> 2.7.4-3
3c437c
- Change folder name from "autostart" to more aptly named
3c437c
  "session-upgrades" from suggestion by Colin Walters.
3c437c
- put non-upstream gconf key in rh_extensions
3c437c
3c437c
* Wed Aug 18 2004 Ray Strode <rstrode@redhat.com> 2.7.4-2
3c437c
- Provide drop-a-desktop-file method of adding programs
3c437c
  to the user's session.
3c437c
3c437c
* Fri Jul 30 2004 Ray Strode <rstrode@redhat.com> 2.7.4-1
3c437c
- Update to 2.7.4
3c437c
3c437c
* Wed Jul 14 2004 root <markmc@localhost.localdomain> - 2.6.0-7
3c437c
- Add patch to activate vino based on the "remote_access/enabled"
3c437c
  preference
3c437c
3c437c
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
3c437c
- rebuilt
3c437c
3c437c
* Mon Jun 14 2004 Ray Strode <rstrode@redhat.com> 2.6.0-5
3c437c
- Prevent having duplicate packages in different collections
3c437c
3c437c
* Mon Jun 14 2004 Ray Strode <rstrode@redhat.com> 2.6.0-4
3c437c
- Use desktop-file-install instead of patching 
3c437c
  session-properties.desktop.  Add X-Red-Hat-Base category.
3c437c
3c437c
* Thu Jun 10 2004 Ray Strode <rstrode@redhat.com> 2.6.0-3
3c437c
- Add terminating list delimiter to OnlyShowIn entry of 
3c437c
  session-properties.desktop
3c437c
3c437c
* Fri Apr 16 2004 Warren Togami <wtogami@redhat.com> 2.6.0-2
3c437c
- #110725 BR automake14 autoconf gettext
3c437c
3c437c
* Wed Mar 31 2004 Mark McLoughlin <markmc@redhat.com> 2.6.0-1
3c437c
- Update to 2.6.0
3c437c
3c437c
* Wed Mar 10 2004 Mark McLoughlin <markmc@redhat.com>
3c437c
- Update to 2.5.91
3c437c
3c437c
* Tue Feb 24 2004 Mark McLoughlin <markmc@redhat.com> 2.5.90-1
3c437c
- Update to 2.5.90
3c437c
- Remove extraneous fontconfig BuildRequires
3c437c
- Resolve conflicts with the icons and splash-repaint patches
3c437c
3c437c
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
3c437c
- rebuilt
3c437c
3c437c
* Mon Jan 26 2004 Alexander Larsson <alexl@redhat.com> 2.5.3-1
3c437c
- Update to 2.5.3
3c437c
3c437c
* Wed Nov 05 2003 Than Ngo <than@redhat.com> 2.4.0-2
3c437c
- don't show gnome-session-properties in KDE (bug #102533)
3c437c
3c437c
* Fri Aug 29 2003 Alexander Larsson <alexl@redhat.com> 2.3.7-3
3c437c
- fix up gnome.desktop location
3c437c
3c437c
* Fri Aug 29 2003 Alexander Larsson <alexl@redhat.com> 2.3.7-2
3c437c
- add gnome.desktop session for new gdm
3c437c
3c437c
* Wed Aug 27 2003 Alexander Larsson <alexl@redhat.com> 2.3.7-1
3c437c
- update to 2.3.7
3c437c
- require control-center (#100562)
3c437c
3c437c
* Fri Aug 15 2003 Alexander Larsson <alexl@redhat.com> 2.3.6.2-1
3c437c
- update for gnome 2.3
3c437c
3c437c
* Sun Aug 10 2003 Elliot Lee <sopwith@redhat.com> 2.2.2-4
3c437c
- Rebuild
3c437c
3c437c
* Tue Jul 22 2003 Jonathan Blandford <jrb@redhat.com>
3c437c
- at-startup patch to add let at's start
3c437c
3c437c
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
3c437c
- rebuilt
3c437c
3c437c
* Tue Jun  3 2003 Jeff Johnson <jbj@redhat.com>
3c437c
- add explicit epoch's where needed.
3c437c
3c437c
* Tue May 27 2003 Alexander Larsson <alexl@redhat.com> 2.2.2-1
3c437c
- Update to 2.2.2
3c437c
- Add XRandR backport
3c437c
- Fix up old patches, patch7 was upstream
3c437c
3c437c
* Mon Feb 24 2003 Owen Taylor <otaylor@redhat.com> 2.2.0.2-5
3c437c
- Wait for GSD to start before continuing with session
3c437c
3c437c
* Tue Feb 18 2003 Havoc Pennington <hp@redhat.com> 2.2.0.2-4
3c437c
- repaint proper area of text in splash screen, #84527
3c437c
3c437c
* Tue Feb 18 2003 Havoc Pennington <hp@redhat.com> 2.2.0.2-3
3c437c
- change icon for magicdev to one that exists in Bluecurve theme
3c437c
  (part of #84491)
3c437c
3c437c
* Thu Feb 13 2003 Havoc Pennington <hp@redhat.com> 2.2.0.2-2
3c437c
- load icons from icon theme
3c437c
3c437c
* Wed Feb  5 2003 Havoc Pennington <hp@redhat.com> 2.2.0.2-1
3c437c
- 2.2.0.2
3c437c
3c437c
* Tue Feb  4 2003 Jonathan Blandford <jrb@redhat.com>
3c437c
- remove extraneous separator.  Still ugly.
3c437c
3c437c
* Wed Jan 29 2003 Havoc Pennington <hp@redhat.com>
3c437c
- add icons for the stuff in the default session #81489
3c437c
3c437c
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
3c437c
- rebuilt
3c437c
3c437c
* Sat Jan 11 2003 Havoc Pennington <hp@redhat.com>
3c437c
- 2.1.90
3c437c
- drop purgedelay patch, as it was increased upstream (though only to 2 minutes instead of 5)
3c437c
3c437c
* Fri Dec  6 2002 Tim Waugh <twaugh@redhat.com> 2.1.2-2
3c437c
- Add eggcups to default session.
3c437c
3c437c
* Wed Nov 13 2002 Havoc Pennington <hp@redhat.com>
3c437c
- 2.1.2
3c437c
3c437c
* Tue Sep  3 2002 Owen Taylor <otaylor@redhat.com>
3c437c
- Up purge delay for session manager to 5 minutes to avoid problem 
3c437c
  with openoffice.org timing out
3c437c
3c437c
* Wed Aug 28 2002 Havoc Pennington <hp@redhat.com>
3c437c
- put gdm session in here, conflict with old gdm
3c437c
- use DITHER_MAX for dithering to make splash screen look good in 16
3c437c
  bit
3c437c
3c437c
* Tue Aug 27 2002 Havoc Pennington <hp@redhat.com>
3c437c
- fix missing icons and misaligned text in splash
3c437c
3c437c
* Fri Aug 23 2002 Tim Waugh <twaugh@redhat.com>
3c437c
- Fix login sound disabling (bug #71664).
3c437c
3c437c
* Wed Aug 14 2002 Havoc Pennington <hp@redhat.com>
3c437c
- put rhn applet in default session
3c437c
3c437c
* Wed Aug 14 2002 Havoc Pennington <hp@redhat.com>
3c437c
- fix the session file, should speed up login a lot
3c437c
- put magicdev in default session
3c437c
3c437c
* Thu Aug  8 2002 Havoc Pennington <hp@redhat.com>
3c437c
- 2.0.5 with more translations
3c437c
3c437c
* Tue Aug  6 2002 Havoc Pennington <hp@redhat.com>
3c437c
- 2.0.4
3c437c
- remove gnome-settings-daemon from default session
3c437c
3c437c
* Wed Jul 31 2002 Havoc Pennington <hp@redhat.com>
3c437c
- 2.0.3
3c437c
- remove splash screen, require redhat-artwork instead
3c437c
3c437c
* Wed Jul 24 2002 Owen Taylor <otaylor@redhat.com>
3c437c
- Set GTK_RC_FILES so we can change the gtk1 theme
3c437c
3c437c
* Tue Jul 16 2002 Havoc Pennington <hp@redhat.com>
3c437c
- pass --with-halt-command=/usr/bin/poweroff
3c437c
  --with-reboot-command=/usr/bin/reboot
3c437c
3c437c
* Tue Jun 25 2002 Owen Taylor <otaylor@redhat.com>
3c437c
- Version 2.0.1, fixing missing po files
3c437c
3c437c
* Wed Jun 19 2002 Havoc Pennington <hp@redhat.com>
3c437c
- put in new default session with pam-panel-icon
3c437c
- disable schema install in make install, fixes rebuild failure.
3c437c
3c437c
* Sun Jun 16 2002 Havoc Pennington <hp@redhat.com>
3c437c
- rebuild with new libraries
3c437c
3c437c
* Thu Jun 13 2002 Havoc Pennington <hp@redhat.com>
3c437c
- rebuild in different environment
3c437c
3c437c
* Thu Jun 13 2002 Havoc Pennington <hp@redhat.com>
3c437c
- add fix from Nalin to build require usermode
3c437c
3c437c
* Tue Jun 11 2002 Havoc Pennington <hp@redhat.com>
3c437c
- 2.0.0
3c437c
3c437c
* Mon Jun 10 2002 Havoc Pennington <hp@redhat.com>
3c437c
- install the schemas, so we get a logout dialog and splash
3c437c
- put in the splash from 7.3
3c437c
3c437c
* Sun Jun 09 2002 Havoc Pennington <hp@redhat.com>
3c437c
- rebuild in different environment
3c437c
3c437c
* Sun Jun 09 2002 Havoc Pennington <hp@redhat.com>
3c437c
- rebuild in new environment, require newer gtk2
3c437c
3c437c
* Sun Jun  9 2002 Havoc Pennington <hp@redhat.com>
3c437c
- remove obsoletes/provides gnome-core
3c437c
3c437c
* Fri Jun 07 2002 Havoc Pennington <hp@redhat.com>
3c437c
- rebuild in different environment
3c437c
3c437c
* Wed Jun  5 2002 Havoc Pennington <hp@redhat.com>
3c437c
- 1.5.21
3c437c
3c437c
* Sun May 26 2002 Tim Powers <timp@redhat.com>
3c437c
- automated rebuild
3c437c
3c437c
* Tue May 21 2002 Havoc Pennington <hp@redhat.com>
3c437c
- rebuild in different environment
3c437c
3c437c
* Tue May 21 2002 Havoc Pennington <hp@redhat.com>
3c437c
- 1.5.19
3c437c
- add more build reqs to chill out build system
3c437c
- provide gnome-core
3c437c
3c437c
* Fri May  3 2002 Havoc Pennington <hp@redhat.com>
3c437c
- obsolete gnome-core
3c437c
- 1.5.18
3c437c
3c437c
* Fri Apr 19 2002 Havoc Pennington <hp@redhat.com>
3c437c
- default to metacity
3c437c
3c437c
* Tue Apr 16 2002 Havoc Pennington <hp@redhat.com>
3c437c
- Initial build.
3c437c
3c437c