Your message dated Wed, 27 Feb 2008 15:47:03 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#459239: fixed in serpentine 0.9-2
has caused the Debian Bug report #459239,
regarding Doesn't support gnome-power-manager >= 2.20
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)
--
459239: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=459239
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: serpentine
Version: 0.9-1
Severity: normal
Tags: patch
Hi,
serpentine 0.9-1 doesn't work with gnome-power-manager >= 2.20.
> DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name
> org.gnome.PowerManager was not provided by any .service files
Attached patch fixes this while keeping support for the old version.
Would be nice if you could upload a version with that patch (if you need
a sponsor ask me :) ) and forward the patch upstream.
Bye
--- serpentine-0.9.orig/serpentine/plugins/plugsuspend.py
+++ serpentine-0.9/serpentine/plugins/plugsuspend.py
@@ -28,9 +28,17 @@
"""
def __init__(self):
self.bus = dbus.Bus(dbus.Bus.TYPE_SESSION)
- self.devobj = self.bus.get_object('org.gnome.PowerManager',
- '/org/gnome/PowerManager')
- self.dev = dbus.Interface(self.devobj, "org.gnome.PowerManager")
+ try:
+ self.devobj = self.bus.get_object('org.freedesktop.PowerManagement',
+ '/org/freedesktop/PowerManagement/Inhibit')
+ self.dev = dbus.Interface(self.devobj, "org.freedesktop.PowerManagement.Inhibit")
+ except dbus.DBusException:
+ try:
+ self.devobj = self.bus.get_object('org.gnome.PowerManager',
+ '/org/gnome/PowerManager')
+ self.dev = dbus.Interface(self.devobj, "org.gnome.PowerManager")
+ except dbus.DBusException:
+ raise Exception ("No gnome-power-manager running")
def on_writing_started(self, app):
self.cookie = self.dev.Inhibit('Serpentine', _('Writing audio disc'))
signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil
--- End Message ---
--- Begin Message ---
Source: serpentine
Source-Version: 0.9-2
We believe that the bug you reported is fixed in the latest version of
serpentine, which is due to be installed in the Debian FTP archive:
muine-plugin-serpentine_0.9-2_all.deb
to pool/main/s/serpentine/muine-plugin-serpentine_0.9-2_all.deb
serpentine_0.9-2.diff.gz
to pool/main/s/serpentine/serpentine_0.9-2.diff.gz
serpentine_0.9-2.dsc
to pool/main/s/serpentine/serpentine_0.9-2.dsc
serpentine_0.9-2_all.deb
to pool/main/s/serpentine/serpentine_0.9-2_all.deb
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.
Sam Morris <[EMAIL PROTECTED]> (supplier of updated serpentine 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: Sat, 16 Feb 2008 12:11:48 +0000
Source: serpentine
Binary: serpentine muine-plugin-serpentine
Architecture: source all
Version: 0.9-2
Distribution: unstable
Urgency: low
Maintainer: Sam Morris <[EMAIL PROTECTED]>
Changed-By: Sam Morris <[EMAIL PROTECTED]>
Description:
muine-plugin-serpentine - Audio CD burning plugin for the Muine audio player
serpentine - An application for creating audio CDs
Closes: 450859 459239
Changes:
serpentine (0.9-2) unstable; urgency=low
.
* Register as a CD-audio burning application with gnome-volume-manager
(closes: #450859).
* Added plugsuspend_new-interface.patch: work with the new dbus interface
provided by gnome-power-manager 2.20 (closes: #459239). Thanks Sebastian
Dröge!
* Build-Depend upon cli-common-dev 0.4.4 as needed by dh_clideps.
* Add Dm-Upload-Allowed field to control fields.
* No longer run the obsolete dh_python.
* Split build dependencies over multiple lines.
* Build-depend on gconf2 because the configure script tries to run
gconftool-2.
* Update to policy 3.7.3 (no changes).
* Quote the '.' characters in the domain name in the watch file.
* Relax build-dependancy on cdbs: remove the Debian revision.
Files:
fd05d36f1b79cee4de405f220e1fb11d 928 gnome optional serpentine_0.9-2.dsc
b341c5c5f0f55d9b65bac7c551827d40 5772 gnome optional serpentine_0.9-2.diff.gz
14e3337fee7f8150186ee2e29b686b73 123828 gnome optional serpentine_0.9-2_all.deb
76de00bf689e3294fbd2b57746ca8db0 22752 gnome optional
muine-plugin-serpentine_0.9-2_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
iD8DBQFHxYCx4VUX8isJIMARAoAvAKCgQkNGj6SBgWXZ2+v4nBKhJw0sGQCfWlZR
Mwd4Z9M8L8HiwIefQpVFMZg=
=APA2
-----END PGP SIGNATURE-----
--- End Message ---