Package: python-brasero Version: 2.27.3-1 Severity: normal Hi,
Some of the classes in the braseroburn module have methods like set_flags() and add_flags() but the module does not provide the constants which are to be passed to them. The constants are shown here in the C library's docs: http://library.gnome.org/devel/libbrasero-burn/unstable/libbrasero-burn-brasero-enums.html The module is effectively unusable without these constants as they govern the behaviour of the CD burning process. Anyway, the attached patch brings all the constants back into the braseroburn module. I don't see any reason that line needs to stay commented out. Cheers, Andrew -- System Information: Debian Release: squeeze/sid APT prefers testing APT policy: (990, 'testing'), (400, 'unstable'), (10, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.31 (SMP w/1 CPU core; PREEMPT) Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages python-brasero depends on: ii libatk1.0-0 1.26.0-1 The ATK accessibility toolkit ii libbrasero-media0 2.27.92-2 CD/DVD burning library for GNOME - ii libc6 2.9-25 GNU C Library: Shared libraries ii libcairo2 1.8.8-2 The Cairo 2D vector graphics libra ii libdbus-1-3 1.2.16-2 simple interprocess messaging syst ii libdbus-glib-1-2 0.82-1 simple interprocess messaging syst ii libfontconfig1 2.6.0-4 generic font configuration library ii libfreetype6 2.3.9-5 FreeType 2 font engine, shared lib ii libglib2.0-0 2.21.5-1 The GLib library of C routines ii libgtk2.0-0 2.16.6-1 The GTK+ graphical user interface ii libpango1.0-0 1.24.5-1 Layout and rendering of internatio ii python 2.5.4-2 An interactive high-level object-o ii python-gtk2 2.14.1-3 Python bindings for the GTK+ widge ii python-support 1.0.3 automated rebuilding support for P ii zlib1g 1:1.2.3.3.dfsg-15 compression library - runtime python-brasero recommends no packages. Versions of packages python-brasero suggests: ii brasero 2.27.92-2 CD/DVD burning application for GNO -- no debconf information
--- braseroburn/brasero_burn_module.c.orig 2009-09-16 14:14:27.000000000 +0100 +++ braseroburn/brasero_burn_module.c 2009-09-16 14:14:50.000000000 +0100 @@ -69,6 +69,6 @@ /* init auto-gened classes */ brasero_burn_register_classes (d); -/* brasero_burn_add_constants (m, "BRASERO_BURN_"); */ + brasero_burn_add_constants (m, "BRASERO_BURN_"); }