Your message dated Tue, 30 Jan 2007 12:02:03 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#398143: fixed in gnome-power-manager 2.16.3-1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: gnome-power-manager
Version: 2.16.0-1
Severity: normal
Tags: patch fixed-upstream

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

There's a bug in g-p-m that prevents gnome-screensaver from displaying
any screensavers after g-p-m has put the display into power saving mode.

http://bugzilla.gnome.org/show_bug.cgi?id=355279

This has been fixed in HEAD and in the 2.16 branch, though I don't know
which released version (if any) has the fix.

Attached is the patch for 2.16.0 which I have been using for a while.

- -- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (530, 'testing'), (520, 'unstable'), (510, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-1-k7
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages gnome-power-manager depends on:
ii  gconf2                     2.16.0-2      GNOME configuration database syste
ii  hal                        0.5.8.1-3     Hardware Abstraction Layer
ii  libart-2.0-2               2.3.17-1      Library of functions for 2D graphi
ii  libatk1.0-0                1.12.3-1      The ATK accessibility toolkit
ii  libbonobo2-0               2.16.0-1      Bonobo CORBA interfaces library
ii  libbonoboui2-0             2.16.0-1      The Bonobo UI library
ii  libc6                      2.3.6.ds1-7   GNU C Library: Shared libraries
ii  libcairo2                  1.2.4-4       The Cairo 2D vector graphics libra
ii  libdbus-1-3                0.94-1        simple interprocess messaging syst
ii  libdbus-glib-1-2           0.71-2        simple interprocess messaging syst
ii  libfontconfig1             2.4.1-2       generic font configuration library
ii  libfreetype6               2.2.1-5       FreeType 2 font engine, shared lib
ii  libgconf2-4                2.16.0-2      GNOME configuration database syste
ii  libglade2-0                1:2.6.0-2     library to load .glade files at ru
ii  libglib2.0-0               2.12.4-1      The GLib library of C routines
ii  libgnome-keyring0          0.6.0-2       GNOME keyring services library
ii  libgnome2-0                2.16.0-2      The GNOME 2 library - runtime file
ii  libgnomecanvas2-0          2.14.0-2      A powerful object-oriented display
ii  libgnomeui-0               2.16.1-1      The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0             2.16.1-1      GNOME virtual file-system (runtime
ii  libgtk2.0-0                2.10.6-2      The GTK+ graphical user interface 
ii  libhal1                    0.5.8.1-3     Hardware Abstraction Layer - share
ii  libice6                    1:1.0.1-2     X11 Inter-Client Exchange library
ii  libnotify1                 0.4.2-1+b1    sends desktop notifications to a n
ii  liborbit2                  1:2.14.3-0.1  libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0              1.14.7-1      Layout and rendering of internatio
ii  libpng12-0                 1.2.8rel-7    PNG library - runtime
ii  libpopt0                   1.10-3        lib for parsing cmdline parameters
ii  libsm6                     1:1.0.1-3     X11 Session Management library
ii  libwnck18                  2.14.3-1      Window Navigator Construction Kit 
ii  libx11-6                   2:1.0.3-2     X11 client-side library
ii  libxcursor1                1.1.7-4       X cursor management library
ii  libxext6                   1:1.0.1-2     X11 miscellaneous extension librar
ii  libxfixes3                 1:4.0.1-4     X11 miscellaneous 'fixes' extensio
ii  libxi6                     1:1.0.1-3     X11 Input extension library
ii  libxinerama1               1:1.0.1-4.1   X11 Xinerama extension library
ii  libxml2                    2.6.27.dfsg-1 GNOME XML library
ii  libxrandr2                 2:1.1.0.2-4   X11 RandR extension library
ii  libxrender1                1:0.9.1-3     X Rendering Extension client libra
ii  notification-daemon        0.3.5-1+b1    a daemon that displays passive pop
ii  zlib1g                     1:1.2.3-13    compression library - runtime

gnome-power-manager recommends no packages.

- -- no debconf information

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (GNU/Linux)

iD8DBQFFVmPxshl/216gEHgRAlEmAKDZaYTLWHGvPrrLZXnT8XzSltWprgCgvtcA
jOHIQsdNFawYSAVQFcgyQOQ=
=VSYN
-----END PGP SIGNATURE-----
diff -Nur gnome-power-manager-2.16.0/src/gpm-manager.c gnome-power-manager-2.16.0.new/src/gpm-manager.c
--- gnome-power-manager-2.16.0/src/gpm-manager.c	2006-08-15 20:52:23.000000000 +0100
+++ gnome-power-manager-2.16.0.new/src/gpm-manager.c	2006-11-06 19:53:01.000000000 +0000
@@ -680,6 +680,10 @@
 			manager->priv->dpms_throttle_id = 0;
 		}
 	} else {
+		/* if throttle already exists then remove */
+		if (manager->priv->dpms_throttle_id > 0) {
+			gpm_screensaver_remove_throttle (manager->priv->screensaver, manager->priv->dpms_throttle_id);
+		}
 		manager->priv->dpms_throttle_id = gpm_screensaver_add_throttle (manager->priv->screensaver, _("Display power management activated"));
 	}
 }
@@ -2880,6 +2884,9 @@
 	manager->priv->ignore_inhibits = gconf_client_get_bool (manager->priv->gconf_client,
 								GPM_PREF_IGNORE_INHIBITS, NULL);
 
+	/* set no throttle */
+	manager->priv->dpms_throttle_id = -1;
+
 	/* poll the lid periodically to avoid #346082 */
 	g_timeout_add (1000 * 60, (GSourceFunc) manager_rescan_buttons, manager);
 }

--- End Message ---
--- Begin Message ---
Source: gnome-power-manager
Source-Version: 2.16.3-1

We believe that the bug you reported is fixed in the latest version of
gnome-power-manager, which is due to be installed in the Debian FTP archive:

gnome-power-manager_2.16.3-1.diff.gz
  to pool/main/g/gnome-power-manager/gnome-power-manager_2.16.3-1.diff.gz
gnome-power-manager_2.16.3-1.dsc
  to pool/main/g/gnome-power-manager/gnome-power-manager_2.16.3-1.dsc
gnome-power-manager_2.16.3-1_i386.deb
  to pool/main/g/gnome-power-manager/gnome-power-manager_2.16.3-1_i386.deb
gnome-power-manager_2.16.3.orig.tar.gz
  to pool/main/g/gnome-power-manager/gnome-power-manager_2.16.3.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Riccardo Setti <[EMAIL PROTECTED]> (supplier of updated gnome-power-manager 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Sun, 19 Nov 2006 14:19:55 +0100
Source: gnome-power-manager
Binary: gnome-power-manager
Architecture: source i386
Version: 2.16.3-1
Distribution: experimental
Urgency: low
Maintainer: Riccardo Setti <[EMAIL PROTECTED]>
Changed-By: Riccardo Setti <[EMAIL PROTECTED]>
Description: 
 gnome-power-manager - frontend for gnome-powermanager
Closes: 398143 405941
Changes: 
 gnome-power-manager (2.16.3-1) experimental; urgency=low
 .
   * New upstream release.
   * Rebuilt with latest libdbus (closes: 405941)
   * Fixed a bug in g-p-m that prevents gnome-screensaver
     from displaying any screensavers after g-p-m has put
     the display into power saving mode. (closes: 398143)
Files: 
 fffda6164302514056f25d7113834a3b 976 gnome optional 
gnome-power-manager_2.16.3-1.dsc
 7cf8b9a7543c9d77d25a2d87b9655f87 2382038 gnome optional 
gnome-power-manager_2.16.3.orig.tar.gz
 bdf7d24beef0e54d94d4faa9b38c65ce 5465 gnome optional 
gnome-power-manager_2.16.3-1.diff.gz
 53b891737e09e58d4293b2a0ab7763cc 2382256 gnome optional 
gnome-power-manager_2.16.3-1_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFFvzG2gvBwcIjSJLYRAgsnAJ9ckxEl3eAl4ySwg0wjGMgg80rVKgCglJNg
0bw3hSsSTEotqdaEJShQgpQ=
=i7Ek
-----END PGP SIGNATURE-----


--- End Message ---

Reply via email to