2b1b6cf
%define hal_version  0.5.8
2b1b6cf
%define dbus_version 0.61
David Zeuthen e71610c
David Zeuthen e71610c
Summary: GNOME Power Manager
David Zeuthen e71610c
Name: gnome-power-manager
3ff3cc7
Version: 2.26.2
3ff3cc7
Release: 1%{?dist}
73a89c7
License: GPLv2+ and GFDL
David Zeuthen e71610c
Group: Applications/System
3ff3cc7
Source: http://download.gnome.org/sources/gnome-power-manager/2.26/gnome-power-manager-%{version}.tar.gz
2ccd4f7
David Zeuthen e71610c
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
3ed583a
URL: http://projects.gnome.org/gnome-power-manager/
3ed03f0
77a2167
BuildRequires: libgnomeui-devel
77a2167
BuildRequires: libglade2-devel
77a2167
BuildRequires: libwnck-devel
77a2167
BuildRequires: hal-devel >= %{hal_version}
77a2167
BuildRequires: dbus-devel >= %{dbus_version}
77a2167
BuildRequires: libnotify-devel
77a2167
BuildRequires: gnome-panel-devel
1bcee49
BuildRequires: scrollkeeper
11da298
BuildRequires: gnome-doc-utils >= 0.3.2
41d892d
BuildRequires: desktop-file-utils
525738c
BuildRequires: gettext
b4de09c
BuildRequires: libtool
889a997
BuildRequires: cairo-devel
2b1b6cf
BuildRequires: libcanberra-devel
71a8fe9
BuildRequires: unique-devel
08fa54a
BuildRequires: PolicyKit-devel
f2a21c5
BuildRequires: PolicyKit-gnome-devel
2b1b6cf
BuildRequires: DeviceKit-devel >= 002
a61d49b
BuildRequires: intltool
2b1b6cf
Requires: gtk2 >= 2.10.0
David Zeuthen e71610c
Requires: gnome-icon-theme
2b1b6cf
Requires: libnotify >= 0.4.3
2b1b6cf
Requires: libcanberra
David Zeuthen e71610c
Requires: hal >= %{hal_version}
David Zeuthen e71610c
Requires: dbus-glib >= %{dbus_version}
f4a4e14
Requires: dbus-x11 >= %{dbus_version}
71a8fe9
Requires: unique >= 0.9.4
08fa54a
Requires: PolicyKit
08fa54a
Requires: PolicyKit-authentication-agent
2b1b6cf
Requires: DeviceKit-power >= 003
a7ea0b3
Requires(post): scrollkeeper
8029a0e
Requires(pre): GConf2
a7ea0b3
Requires(post): GConf2
a7ea0b3
Requires(preun): GConf2
a7ea0b3
Requires(postun): scrollkeeper
c885c8b
David Zeuthen e71610c
%description
William Jon McCann 3ec4db8
GNOME Power Manager uses the information and facilities provided by HAL
William Jon McCann 3ec4db8
displaying icons and handling user callbacks in an interactive GNOME session.
William Jon McCann 3ec4db8
GNOME Power Preferences allows authorised users to set policy and
David Zeuthen e71610c
change preferences.
David Zeuthen e71610c
David Zeuthen e71610c
%prep
David Zeuthen e71610c
%setup -q
David Zeuthen e71610c
David Zeuthen e71610c
%build
8c82a43
%configure \
2b1b6cf
	--enable-devicekit-power \
8c82a43
	--disable-scrollkeeper \
2b1b6cf
	--enable-libnotify \
1fbd28b
	--enable-legacy-buttons \
f56d53e
	--enable-policykit
David Zeuthen e71610c
make
David Zeuthen e71610c
b91ef74
# strip unneeded translations from .mo files
b91ef74
# ideally intltool (ha!) would do that for us
b91ef74
# http://bugzilla.gnome.org/show_bug.cgi?id=474987
b91ef74
cd po
b91ef74
grep -v ".*[.]desktop[.]in[.]in$\|.*[.]server[.]in[.]in$\|.*[.]schemas[.]in$" POTFILES.in > POTFILES.keep
b91ef74
mv POTFILES.keep POTFILES.in
b91ef74
intltool-update --pot
b91ef74
for p in *.po; do
b91ef74
  msgmerge $p %{name}.pot > $p.out
b91ef74
  msgfmt -o `basename $p .po`.gmo $p.out
b91ef74
done
b91ef74
David Zeuthen e71610c
%install
David Zeuthen e71610c
rm -rf $RPM_BUILD_ROOT
David Zeuthen e71610c
export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
fd0ad96
make install DESTDIR=$RPM_BUILD_ROOT
David Zeuthen e71610c
unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
David Zeuthen e71610c
David Zeuthen e71610c
desktop-file-install --vendor gnome --delete-original                   \
44c8997
  --dir $RPM_BUILD_ROOT%{_sysconfdir}/xdg/autostart         		\
44c8997
  $RPM_BUILD_ROOT%{_sysconfdir}/xdg/autostart/gnome-power-manager.desktop
David Zeuthen e71610c
f569050
# save space by linking identical images in translated docs
f569050
helpdir=$RPM_BUILD_ROOT%{_datadir}/gnome/help/%{name}
f569050
for f in $helpdir/C/figures/*.png; do
f569050
  b="$(basename $f)"
f569050
  for d in $helpdir/*; do
f569050
    if [ -d "$d" -a "$d" != "$helpdir/C" ]; then
f569050
      g="$d/figures/$b"
f569050
      if [ -f "$g" ]; then
f569050
        if cmp -s $f $g; then
f569050
          rm "$g"; ln -s "../../C/figures/$b" "$g"
f569050
        fi
f569050
      fi
f569050
    fi
f569050
  done
f569050
done
f569050
7288ae5
%find_lang %name --with-gnome
David Zeuthen e71610c
David Zeuthen e71610c
%clean
David Zeuthen e71610c
rm -rf $RPM_BUILD_ROOT
David Zeuthen e71610c
David Zeuthen e71610c
%post
David Zeuthen e71610c
export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
8029a0e
gconftool-2 --makefile-install-rule \
8029a0e
	%{_sysconfdir}/gconf/schemas/gnome-power-manager.schemas >/dev/null || :
a7ea0b3
scrollkeeper-update -q
fd4332a
touch --no-create %{_datadir}/icons/hicolor
5cfc56f
if [ -x /usr/bin/gtk-update-icon-cache ]; then
5cfc56f
    gtk-update-icon-cache -q %{_datadir}/icons/hicolor
5cfc56f
fi
fd4332a
8029a0e
%pre
8029a0e
if [ "$1" -gt 1 ]; then
8029a0e
    export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
8029a0e
    gconftool-2 --makefile-uninstall-rule \
8029a0e
      %{_sysconfdir}/gconf/schemas/gnome-power-manager.schemas > /dev/null || :
8029a0e
fi
8029a0e
a7ea0b3
%preun
a7ea0b3
if [ "$1" -eq 0 ]; then
a7ea0b3
    export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
a7ea0b3
    gconftool-2 --makefile-uninstall-rule \
a7ea0b3
      %{_sysconfdir}/gconf/schemas/gnome-power-manager.schemas > /dev/null || :
a7ea0b3
fi
a7ea0b3
1bcee49
%postun
a7ea0b3
scrollkeeper-update -q
a7ea0b3
touch --no-create %{_datadir}/icons/hicolor
a7ea0b3
if [ -x /usr/bin/gtk-update-icon-cache ]; then
a7ea0b3
    gtk-update-icon-cache -q %{_datadir}/icons/hicolor
a7ea0b3
fi
1bcee49
David Zeuthen e71610c
%files -f %{name}.lang
David Zeuthen e71610c
%defattr(-,root,root)
ba29d76
%doc AUTHORS COPYING README
David Zeuthen e71610c
%{_bindir}/*
7e61e91
%{_libexecdir}/gnome-brightness-applet
7e61e91
%{_libexecdir}/gnome-inhibit-applet
8029a0e
%{_datadir}/gnome-power-manager
7288ae5
%{_mandir}/*
David Zeuthen e71610c
%{_sysconfdir}/gconf/schemas/*.schemas
fd0ad96
%{_datadir}/dbus-1/services/gnome-power-manager.service
2b1b6cf
%{_datadir}/gnome/help/gnome-power-manager
2b1b6cf
%{_datadir}/omf/gnome-power-manager
44c8997
%{_sysconfdir}/xdg/autostart/gnome-power-manager.desktop
6e00267
%{_datadir}/applications/gnome-power-preferences.desktop
8029a0e
%{_datadir}/applications/gnome-power-statistics.desktop
385e5c2
%{_datadir}/icons/hicolor/*/apps/*
68e1071
%{_libdir}/bonobo/servers/GNOME_BrightnessApplet.server
68e1071
%{_libdir}/bonobo/servers/GNOME_InhibitApplet.server
68e1071
%{_datadir}/gnome-2.0/ui/GNOME_BrightnessApplet.xml
68e1071
%{_datadir}/gnome-2.0/ui/GNOME_InhibitApplet.xml
David Zeuthen e71610c
William Jon McCann 3ec4db8
%changelog
3ff3cc7
* Mon Jun 01 2009 Richard Hughes  <rhughes@redhat.com> - 2.26.2-1
3ff3cc7
- Update to 2.26.2
3ff3cc7
2ccd4f7
* Wed May 06 2009 Richard Hughes  <rhughes@redhat.com> - 2.26.1-3
2ccd4f7
- Backport a patch from upstream to fix backlight DPMS.
2ccd4f7
- Fixes #498041
2ccd4f7
6e1b3a3
* Thu Apr 23 2009 Richard Hughes  <rhughes@redhat.com> - 2.26.1-2
6e1b3a3
- Backport a patch from upstream that was missed for 2.26.1 that fixes
6e1b3a3
  the DPMS timeout slider in gnome-power-preferences.
6e1b3a3
55e2493
* Tue Apr 21 2009 Richard Hughes  <rhughes@redhat.com> - 2.26.1-1
55e2493
- Update to 2.26.1
55e2493
- Fix the low capacity warning to fix rh#489832
55e2493
- Backport DPMS and IDLETIME fixes from master to fix multiple bugs
55e2493
- Connect to gnome-session and exit on logout
55e2493
- Remove upstreamed patches
55e2493
518271c
* Sat Apr 18 2009 Lubomir Rintel <lkundrak@v3.sk> - 2.26.0-2
518271c
- Fix broken battery capacity percentage reporting
518271c
18cc400
* Mon Mar 16 2009 Richard Hughes  <rhughes@redhat.com> - 2.26.0-1
18cc400
- Update to 2.26.0
18cc400
aec0b59
* Mon Mar 09 2009 Richard Hughes  <rhughes@redhat.com> - 2.25.92-1
aec0b59
- Update to 2.25.92
aec0b59
f2a21c5
* Fri Feb 27 2009 Richard Hughes  <rhughes@redhat.com> - 2.25.91-7
f2a21c5
- We actually neeed BuildRequires PolicyKit-gnome-devel too
f2a21c5
08fa54a
* Fri Feb 27 2009 Richard Hughes  <rhughes@redhat.com> - 2.25.91-6
08fa54a
- We actually neeed BuildRequires PolicyKit-devel
08fa54a
f286803
* Fri Feb 27 2009 Richard Hughes  <rhughes@redhat.com> - 2.25.91-5
f286803
- Backport patch from svn to not block logout
f286803
4589230
* Fri Feb 27 2009 Matthias Clasen <mclasen@redhat.com> - 2.25.91-4
4589230
- Require PolicyKit-authentication-agent
4589230
1fbd28b
* Wed Feb 25 2009 Richard Hughes  <rhughes@redhat.com> - 2.25.91-3
1fbd28b
- Enable legacy buttons so we get lid events. Eurgh.
1fbd28b
c9454b4
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.25.91-2
c9454b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
c9454b4
44c8997
* Mon Feb 11 2009 Richard Hughes  <rhughes@redhat.com> - 2.25.91-1
44c8997
- Update to 2.25.91
44c8997
944485b
* Thu Feb 05 2009 Richard Hughes  <rhughes@redhat.com> - 2.25.3-3
944485b
- Rebuild as desktop-files-utils should now be fixed and allow the build.
944485b
9d7d62c
* Wed Feb 04 2009 Adam Jackson <ajax@redhat.com> 2.25.3-2
9d7d62c
- gpm-2.25.3-idletime-hilarity.patch: Ask for edge triggers on system idle
9d7d62c
  time, not level triggers. The latter lead to wakeup storms and sadness.
9d7d62c
989f84a
* Mon Feb 02 2009 Richard Hughes  <rhughes@redhat.com> - 2.25.3-1
989f84a
- Update to 2.25.3
989f84a
- New processor wakeup functionality in gnome-power-statistics
989f84a
09c5a16
* Wed Jan  7 2009 Matthias Clasen <mclasen@redhat.com> - 2.25.2-1
09c5a16
- Update to 2.25.2
09c5a16
ff95785
* Fri Dec 19 2008 Matthias Clasen <mclasen@redhat.com> - 2.25.1-2
ff95785
- Fix the spec file 
ff95785
ff95785
* Thu Dec 18 2008 Richard Hughes  <rhughes@redhat.com> - 2.25.1-1
2b1b6cf
- Update to 2.25.1
2b1b6cf
- Depend on DeviceKit-power
2b1b6cf
- Build with PolicyKit support enabled
2b1b6cf
- Drop gstreamer and pick up libcanberra deps
2b1b6cf
3ed583a
* Fri Nov 21 2008 Matthias Clasen <mclasen@redhat.com> - 2.24.2-3
3ed583a
- Better URL
3ed583a
a2863da
* Tue Nov 18 2008 Richard Hughes  <rhughes@redhat.com> - 2.24.2-2
a2863da
- Update to 2.24.2
a2863da
- Duplicate button presses should now be detected
a2863da
- Drop upstreamed patches
a2863da
e7ff502
* Fri Oct 31 2008 Matthias Clasen  <mclasen@redhat.com> - 2.24.1-3
e7ff502
- Make "Make default" button work
e7ff502
569d64b
* Fri Oct 24 2008 Richard Hughes  <rhughes@redhat.com> - 2.24.1-2
569d64b
- Backport some patches from trunk to fix:
569d64b
 - Duplicate buttons from X and HAL
569d64b
 - Use the Sessionmanager rather than the old gnome_client_request_save
569d64b
 - Ignore policy actions when the session is not active
569d64b
4781009
* Wed Oct 22 2008 Richard Hughes  <rhughes@redhat.com> - 2.24.1-1
4781009
- Update to 2.24.1
4781009
4781009
* Thu Oct 09 2008 Ray Strode <rstrode@redhat.com> - 2.24.0-6
f56d53e
- Enable policy kit support
f56d53e
4781009
* Wed Oct 08 2008 Matthias Clasen <mclasen@redhat.com> - 2.24.0-5
f569050
- Save some more space
f569050
a61d49b
* Thu Sep 25 2008 Matthias Clasen <mclasen@redhat.com> - 2.24.0-4
b91ef74
- Save some space
b91ef74
74f9798
* Mon Sep 22 2008 Matthias Clasen <mclasen@redhat.com> - 2.24.0-2
a125208
- Update to 2.24.0
a125208
fdb38c7
* Mon Sep 01 2008 Richard Hughes  <rhughes@redhat.com> - 2.23.91-1
fdb38c7
- Update to 2.23.91, which should some translation issues.
fdb38c7
e761185
* Mon Aug 25 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.6-4
e761185
- Drop the login session .desktop file, since gdm provides it now
e761185
David Zeuthen c811206
* Thu Aug 14 2008 David Zeuthen <davidz@redhat.com> - 2.23.6-3
David Zeuthen c811206
- Actually make the patch apply and rebuild
David Zeuthen c811206
David Zeuthen c811206
* Thu Aug 14 2008 Richard Hughes  <rhughes@redhat.com> - 2.23.6-2
3ed03f0
- Apply a fix from upstream to fix crashing on percentage change.
3ed03f0
0f9e77d
* Wed Aug 06 2008 Richard Hughes  <rhughes@redhat.com> - 2.23.6-1
0f9e77d
- Update to 2.23.6, which should the Eee and some Policykit stuff.
0f9e77d
d66baaa
* Tue Jul 31 2008 Richard Hughes  <rhughes@redhat.com> - 2.23.3-4
d66baaa
- Rebuild for libunique ABI break.
d66baaa
73a89c7
* Wed Jul 23 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.23.3-3
73a89c7
- fix license tag
73a89c7
4fc9cb3
* Tue Jul 01 2008 Richard Hughes  <rhughes@redhat.com> - 2.23.3-1
4fc9cb3
- Update to 2.23.3, which should fix backlight brightness.
4fc9cb3
774148f
* Fri May 20 2008 Richard Hughes  <rhughes@redhat.com> - 2.23.1-2
774148f
- Add a BR on Policykit-gnome
774148f
71a8fe9
* Fri May 20 2008 Richard Hughes  <rhughes@redhat.com> - 2.23.1-1
71a8fe9
- Update to 2.23.1
71a8fe9
71a8fe9
* Fri May 16 2008 Richard Hughes  <rhughes@redhat.com> - 2.22.1-3
71a8fe9
- Add a BR on unique to make the client tools single instance
71a8fe9
3070779
* Sun Apr 13 2008 Richard Hughes  <rhughes@redhat.com> - 2.22.1-2
3070779
- Fix the homepage URL to http://www.gnome.org/projects/gnome-power-manager/
3070779
bcb2900
* Fri Mar 28 2008 Bill Nottingham <notting@redhat.com> - 2.22.1-1
bcb2900
- update to 2.22.1
bcb2900
William Jon McCann 3ec4db8
* Mon Mar 10 2008 Jon McCann <jmccann@redhat.com> - 2.22.0-1
William Jon McCann 3ec4db8
- Update to 2.22.0
William Jon McCann 3ec4db8
136de6f
* Mon Feb 18 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.92-2
136de6f
- Plug an X resource leak in the brightness applet
136de6f
2a22362
* Thu Feb 14 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.92-1
2a22362
- Update to 2.21.92
2a22362
ba29d76
* Sat Jan 26 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.1-2
ba29d76
- Save some space
ba29d76
bd21cb2
* Mon Dec 17 2007 Matthias Clasen <mclasen@redhat.com> - 2.21.1-1
bd21cb2
- Update to 2.21.1
bd21cb2
77a2167
* Fri Dec 14 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.2-1
77a2167
- Update to 2.20.2
77a2167
147c1b5
* Tue Nov 13 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.1-1
147c1b5
- Update to 2.20.1
57f5699
- Drop upstreamed patches
147c1b5
ab32ebf
* Tue Oct 23 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.0-7
ab32ebf
- Rebuild against new dbus-glib
ab32ebf
David Zeuthen eb32d25
* Tue Oct 16 2007 David Zeuthen <davidz@redhat.com> - 2.20.0-6
David Zeuthen eb32d25
- When hibernate is triggered by system idle, avoid suspending
David Zeuthen eb32d25
  right after resuming from hibernate (#329541)
David Zeuthen eb32d25
d717583
* Sat Oct  6 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.0-5
d717583
- Fix a thinko in the previous patch (#321671)
d717583
David Zeuthen 3b48ece
* Fri Oct  5 2007 David Zeuthen <davidz@redhat.com> - 2.20.0-4
David Zeuthen 3b48ece
- Rebuild
David Zeuthen 3b48ece
David Zeuthen 1e1e6cc
* Fri Oct  5 2007 David Zeuthen <davidz@redhat.com> - 2.20.0-3
David Zeuthen 1e1e6cc
- Fix the "Sleep problem" popup (#312761)
David Zeuthen 1e1e6cc
d7fc3d8
* Fri Oct  5 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.0-2
d7fc3d8
- Make the inhibit applet work with all background settings 
d7fc3d8
  of the panel.
d7fc3d8
3d7a743
* Mon Sep 17 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.0-1
3d7a743
- Update to 2.20.0
3d7a743
b8412f6
* Tue Sep  4 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.92-1
b8412f6
- Update to 2.19.92
b8412f6
55a7464
* Tue Aug 28 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 2.19.6-3
55a7464
- Rebuild for selinux ppc32 issue.
55a7464
7288ae5
* Tue Aug  7 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.6-2
7288ae5
- Update license field
7288ae5
- Use %%find_lang for help files
7288ae5
2382fa4
* Sun Jul 29 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.6-1
2382fa4
- Update to 2.19.6
2382fa4
fb084a5
* Fri Jul  6 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.5-1
fb084a5
- Update to 2.19.5
fb084a5
e75d6e9
* Tue Jun  5 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.2-3
e75d6e9
- Rebuild again
e75d6e9
45f6618
* Mon Jun  4 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.2-2
45f6618
- Rebuild against new libwnck
45f6618
a9b878e
* Sun May 20 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.2-1
a9b878e
- Update to 2.19.2
a9b878e
857fa22
* Wed May 16 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.2-4
857fa22
- Don't put markup in notification summaries (#240258)
857fa22
24ac0bd
* Sun May  6 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.2-3
24ac0bd
- Avoid a crash in gnome-power-statistics if the daemon
24ac0bd
  is not running (#239228)
24ac0bd
David Zeuthen 770fea1
* Fri Apr 27 2007 David Zeuthen <davidz@redhat.com> - 2.18.2-2
David Zeuthen 770fea1
- Remove broken nodefaultbeep patch as it was wrongly applied to disable
David Zeuthen 770fea1
  battery recall warnings - gotta love patch(1) (#238087)
David Zeuthen 770fea1
d58cb96
* Fri Apr 13 2007 Ray Strode <rstrode@redhat.com> - 2.18.2-1
d58cb96
- Update to 2.18.2
d58cb96
d4d7d5f
* Sat Mar 31 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.1-2
d4d7d5f
- Add bug-buddy support to the applets 
d4d7d5f
4043810
* Fri Mar 23 2007 Ray Strode <rstrode@redhat.com> - 2.18.1-1
4043810
- Update to 2.18.1
4043810
3f6f6ce
* Tue Mar 13 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.0-1
3f6f6ce
- Update to 2.18.0
3f6f6ce
3a5bebe
* Thu Mar 08 2007 Adam Jackson <ajax@redhat.com> 2.17.92-2
3a5bebe
- gnome-power-manager-2.17.92-dpms-query-less.patch: DPMSCapable() can never
3a5bebe
  change for a given display, so cache the result and cut our wakeups in half.
3a5bebe
bca1611
* Wed Feb 28 2007 Matthias Clasen <mclasen@redhat.com> - 2.17.92-1
bca1611
- Update to 2.17.92
bca1611
650128f
* Tue Feb 13 2007 Matthias Clasen <mclasen@redhat.com> - 2.17.91-1
650128f
- Update to 2.17.91
650128f
f883aa2
* Tue Jan 23 2007 Matthias Clasen <mclasen@redhat.com> - 2.17.90-1
f883aa2
- Update to 2.17.90
f883aa2
9737552
* Wed Dec 19 2006 Matthias Clasen <mclasen@redhat.com> - 2.17.4-1
9737552
- Update to 2.17.4
9737552
5db3fcc
* Tue Dec  5 2006 Matthias Clasen <mclasen@redhat.com> - 2.17.3-1
5db3fcc
- Update to 2.17.3
5db3fcc
- Remove obsolete patch
5db3fcc
2739e93
* Mon Nov 27 2006 Ray Strode <rstrode@redhat.com> - 2.17.2.1-2.fc7
2739e93
- fix screensaver from going blank even when configured to show
2739e93
  a screensaver (bug 216045)
2739e93
8029a0e
* Sat Oct 21 2006 Matthias Clasen <mclasen@redhat.com> - 2.17.2.1-1
8029a0e
- Update to 2.17.2.1
8029a0e
e641bb9
* Wed Oct  4 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.0-3
e641bb9
- Don't install a broken symlink (#208399)
e641bb9
837bf9d
* Fri Sep 15 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.0-2.fc6
837bf9d
- Make the tray icon re-embed into the tray after a panel crash
837bf9d
a8f530f
* Sun Sep  3 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.0-1.fc6
a8f530f
- Update to 2.16.0
a8f530f
f49426a
* Sun Aug 27 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.92-2.fc6
f49426a
- Wire up preferences in gnome-power-preferences (#203949)
b3c9da1
- Add BR for perl-XML-Parser
f49426a
f49426a
* Sun Aug 20 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.92-1.fc6
dfc76ab
- Update to 2.15.92
dfc76ab
5d77a47
* Tue Aug 15 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.91-2.fc6
5d77a47
- Fix a double free in the smartcart code
5d77a47
8c82a43
* Sun Aug 13 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.91-1.fc6
8c82a43
- Update to 2.15.91
8c82a43
6bf0a7d
* Tue Aug  8 2006 Peter Jones <pjones@redhat.com> - 2.15.4-3
6bf0a7d
- Don't beep by default, since there's no UI to turn it off.
6bf0a7d
5c47a57
* Tue Jul 18 2006 Ray Strode <rstrode@redhat.com> - 2.15.3-2
5c47a57
- explicitly disable policykit since we don't ship it
889a997
8b13aa6
* Tue Jun 13 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.3-1
8b13aa6
- Update to 2.15.3
8b13aa6
525738c
* Fri Jun  9 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.2-3
525738c
- Drop unfounded gnome-mime-data dependency
525738c
- Add missing BuildRequires
525738c
2c45306
* Mon May 22 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.2-2
2c45306
- Rebuild
2c45306
01c05fa
* Mon May 15 2006 John (J5) Palmieri <johnp@redhat.com> - 2.15.2-1
01c05fa
- Update to upstream version 2.15.2
01c05fa
740d6d0
* Mon May 15 2006 John (J5) Palmieri <johnp@redhat.com> - 2.15.1-3
41d892d
- Add BR for desktop-file-utils
41d892d
649462e
* Mon May 15 2006 John (J5) Palmieri <johnp@redhat.com> - 2.15.1-1.1
649462e
- bump and rebuild
649462e
a7ea0b3
* Tue Apr 25 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.1-1
a7ea0b3
- Update to 2.15.1
a7ea0b3
1f95ef7
* Fri Apr  7 2006 Ray Strode <rstrode@redhat.com> - 2.15.0-1
1f95ef7
- update to 2.15.0 to get the cool new runtime analysis
1f95ef7
  graphs.
1f95ef7
1f95ef7
* Mon Mar 27 2006 Ray Strode <rstrode@redhat.com> - 2.14.0-2
1f95ef7
- use blank screensaver when lid is closed instead of
1f95ef7
  of turning off screensaver completly (bug 186849).
1f95ef7
491e0ea
* Tue Mar 14 2006 Ray Strode <rstrode@redhat.com> - 2.14.0-1
491e0ea
- Update to 2.14.0
491e0ea
6d62782
* Mon Mar  6 2006 Ray Strode <rstrode@redhat.com> - 2.13.93-4
6d62782
- fix the fix in -2 and -3
6d62782
5cfc56f
* Mon Mar  6 2006 Ray Strode <rstrode@redhat.com> - 2.13.93-3
5cfc56f
- fix the fix in -2
5cfc56f
fd4332a
* Mon Mar  6 2006 Ray Strode <rstrode@redhat.com> - 2.13.93-2
fd4332a
- fix icon in bubbles (bug 184192). 
fd4332a
d5bf665
* Fri Mar  3 2006 Ray Strode <rstrode@redhat.com> - 2.13.93-1
d5bf665
- Update to 2.13.93
d5bf665
- ignore d-bus timeout errors
d5bf665
c885c8b
* Thu Mar  2 2006 Ray Strode <rstrode@redhat.com> - 2.13.92-3
c885c8b
- Add patch from Richard Hughes to potentially fix a
c885c8b
  crasher bug (bug 183127)
c885c8b
11da298
* Tue Feb 28 2006 Karsten Hopp <karsten@redhat.de> 2.13.92-2
11da298
- Buildrequires: gnome-doc-utils
11da298
8c70afe
* Sun Feb 26 2006 Ray Strode <rstrode@redhat.com> - 2.13.92-1
8c70afe
- Update to 2.13.92
8c70afe
38a13d3
* Tue Feb 21 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.91-1
38a13d3
- Update to 2.13.91
38a13d3
- Drop upstreamed patch
38a13d3
f4a4e14
* Wed Feb 15 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.90-1
f4a4e14
- Update to 2.13.90
f4a4e14
- Require dbus-x11 (#176656)
f4a4e14
5719da9
* Sun Feb 13 2006 Ray Strode <rstrode@redhat.com> - 2.13.5.0.20060207-2
5719da9
- remove Hibernate and Suspend from menus as part of
5719da9
  panel/g-p-m integration effort
5719da9
4352e79
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.13.5.0.20060207-1.1
4352e79
- bump again for double-long bug on ppc(64)
4352e79
324ffd0
* Tue Feb  7 2006 Ray Strode <rstrode@redhat.com> - 2.13.5.0.20060207-1
324ffd0
- pull cvs snapshot from HEAD and drop the patches caillon
324ffd0
  just added
324ffd0
6d5fe4a
* Tue Feb  7 2006 Christopher Aillon <caillon@redhat.com> - 2.13.5-3
6d5fe4a
- Install into the autostart directory
6d5fe4a
- Don't suspend on lid close while on AC power
6d5fe4a
8f54413
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.13.5-2.1
8f54413
- rebuilt for new gcc4.1 snapshot and glibc changes
8f54413
25f6e8f
* Tue Jan 31 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.5-2
25f6e8f
- rebuild 
25f6e8f
6e00267
* Thu Jan 26 2006 Ray Strode <rstrode@redhat.com> - 2.13.5-1
6e00267
- packaging tweaks
6e00267
f5e23f5
* Thu Jan 26 2006 Christopher Aillon <caillon@redhat.com> 2.13.5-1
f5e23f5
- Update to 2.13.5
f5e23f5
2ef3df4
* Tue Jan 24 2006 Christopher Aillon <caillon@redhat.com> - 0.3.4-2
2ef3df4
- Left clicking on the applet should bring up the menu
2ef3df4
728d45e
* Tue Jan 17 2006 Ray Strode <rstrode@redhat.com> - 0.3.4-1
728d45e
- update to 0.3.4
a764e06
- disable updating scrollkeeper database in buildroot
a764e06
  (move to %%post)
728d45e
9aef57c
* Fri Jan  6 2006 Jeremy Katz <katzj@redhat.com> - 0.3.3-0.cvs.20060106
9aef57c
- update to a cvs snap so that it works with hal cvs snap
9aef57c
- make sure we use libnotify
9aef57c
6cb9891
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com> - 0.3.1-2.1
23ad961
- rebuilt
23ad961
323a141
* Thu Dec 01 2005 John (J5) Palmieri <johnp@redhat.com> - 0.3.1-2
323a141
- rebuild for new dbus
323a141
3931dd4
* Mon Nov 28 2005 Christopher Aillon <caillon@redhat.com> 0.3.1-1
3931dd4
- Update to 0.3.1
3931dd4
38f915f
* Fri Nov 25 2005 Christopher Aillon <caillon@redhat.com> 0.3.0-1
38f915f
- Update to 0.3.0
38f915f
fd0ad96
* Wed Oct 19 2005 Ray Strode <rstrode@redhat.com> 0.2.8-1
fd0ad96
- update to 0.2.8
fd0ad96
eac48b7
* Wed Oct  3 2005 Ray Strode <rstrode@redhat.com> 0.2.6-1
eac48b7
- update to 0.2.6
eac48b7
eac48b7
* Wed Sep 28 2005 Ray Strode <rstrode@redhat.com> 0.2.4-1
eac48b7
- update to 0.2.4
eac48b7
David Zeuthen e71610c
* Fri Sep 02 2005 David Zeuthen <davidz@redhat.com> 0.2.3.1-1
David Zeuthen e71610c
- Initial import based on an SRPM from Richard Hughes