OBS User unknown 2008-11-17 15:37:06 +00:00 committed by Git OBS Bridge
parent 00252b8db2
commit a057fd229b
3 changed files with 15 additions and 6 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Sun Nov 16 13:31:51 CET 2008 - hmacht@suse.de
- Don't shutdown if a kde4 session is running and the power button
is pressed, powerdevil will care (bnc#443210)
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Oct 16 14:44:39 CEST 2008 - thoenig@suse.de Thu Oct 16 14:44:39 CEST 2008 - thoenig@suse.de

View File

@ -21,7 +21,7 @@
Name: acpid Name: acpid
Url: http://acpid.sourceforge.net/ Url: http://acpid.sourceforge.net/
Version: 1.0.6 Version: 1.0.6
Release: 88 Release: 89
%define acpi_version 0.09 %define acpi_version 0.09
License: GPL v2 or later License: GPL v2 or later
Group: System/Daemons Group: System/Daemons
@ -129,6 +129,9 @@ rm -rf %{buildroot}
%ghost %config(noreplace,missingok) %_var/log/acpid %ghost %config(noreplace,missingok) %_var/log/acpid
%changelog %changelog
* Sun Nov 16 2008 hmacht@suse.de
- Don't shutdown if a kde4 session is running and the power button
is pressed, powerdevil will care (bnc#443210)
* Thu Oct 16 2008 thoenig@suse.de * Thu Oct 16 2008 thoenig@suse.de
- Fix documentation reference and vendor names in thinkpad_acpi - Fix documentation reference and vendor names in thinkpad_acpi
(bnc#410684) (bnc#410684)
@ -137,7 +140,7 @@ rm -rf %{buildroot}
* Mon Sep 01 2008 hmacht@suse.de * Mon Sep 01 2008 hmacht@suse.de
- different config files for different rules: - different config files for different rules:
events.thinkpad and events.power_button events.thinkpad and events.power_button
* Fri Aug 08 2008 hmacht@suse.de * Thu Aug 07 2008 hmacht@suse.de
- add power_button script to care about button presses if there - add power_button script to care about button presses if there
is no active X session is no active X session
* Sun Jun 08 2008 hmacht@suse.de * Sun Jun 08 2008 hmacht@suse.de
@ -191,7 +194,7 @@ rm -rf %{buildroot}
- ignore editor backup files for the event configuration. - ignore editor backup files for the event configuration.
- package the provided action script samples under documentation. - package the provided action script samples under documentation.
- cleanup the specfile %%prep section. - cleanup the specfile %%prep section.
* Wed Oct 18 2006 hmacht@suse.de * Tue Oct 17 2006 hmacht@suse.de
- load CPUFreq modules before acpi modules, otherwise we would - load CPUFreq modules before acpi modules, otherwise we would
exit without acpi support exit without acpi support
* Tue Sep 12 2006 hmacht@suse.de * Tue Sep 12 2006 hmacht@suse.de
@ -208,7 +211,7 @@ rm -rf %{buildroot}
* Wed Feb 15 2006 thoenig@suse.de * Wed Feb 15 2006 thoenig@suse.de
- revert hotkey mask for IBM ACPI back to 0xffff (bug #150357) - revert hotkey mask for IBM ACPI back to 0xffff (bug #150357)
- add documentation hints for IBM ACPI driver - add documentation hints for IBM ACPI driver
* Fri Feb 10 2006 seife@suse.de * Thu Feb 09 2006 seife@suse.de
- do not try the hotkey modules on ia64 (bug #146291) - do not try the hotkey modules on ia64 (bug #146291)
* Mon Feb 06 2006 seife@suse.de * Mon Feb 06 2006 seife@suse.de
- do not load ac and battery modules on ia64 (bug #140249) - do not load ac and battery modules on ia64 (bug #140249)
@ -255,7 +258,7 @@ rm -rf %{buildroot}
* toshiba_acpi * toshiba_acpi
- added $SYSCONFDIR/modprobe.d/ibm_acpi for ibm_acpi to load the - added $SYSCONFDIR/modprobe.d/ibm_acpi for ibm_acpi to load the
module with "experimental=1" module with "experimental=1"
* Sat Aug 06 2005 seife@suse.de * Fri Aug 05 2005 seife@suse.de
- load ACPI modules in /etc/init.d/acpid. - load ACPI modules in /etc/init.d/acpid.
* Fri Aug 05 2005 trenn@suse.de * Fri Aug 05 2005 trenn@suse.de
- Activate acpid by default again (use -Y to force, was disabled - Activate acpid by default again (use -Y to force, was disabled

View File

@ -47,7 +47,7 @@ while read A; do
if [ "$IS_ACTIVE" = "true" -a -n "$DISP" ]; then if [ "$IS_ACTIVE" = "true" -a -n "$DISP" ]; then
# additional check, if none of these two apps are running, go on # additional check, if none of these two apps are running, go on
if [ -n "`pidof kpowersave`" -o -n "`pidof gnome-power-manager`" ]; then if [ -n "`pidof kpowersave`" -o -n "`pidof gnome-power-manager`" -o -n "`pidof kded4`" ]; then
echo doing nothing... echo doing nothing...
exit 0 exit 0
fi fi