Your message dated Mon, 04 Jun 2007 20:47:03 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#425406: fixed in brasero 0.5.2-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: brasero
Version: 0.4.4-5~osdesktop2
Severity: wishlist
Tags: patch
Hello,
I've found a boring problem that at first run Brasero shows up with a
wrong window size smaller then is really need making the window ugly
and with scroll bars.
We've produzed a patch to fix it and we'd like to get it inside of
Debian too.
Thanks in advance,
-- System Information:
Debian Release: lenny/sid
APT prefers unstable
APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.18-4-686 (SMP w/1 CPU core)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Versions of packages brasero depends on:
ii libart-2.0-2 2.3.19-3 Library of functions for 2D graphi
ii libatk1.0-0 1.18.0-2 The ATK accessibility toolkit
ii libaudiofile0 0.2.6-6 Open-source version of SGI's audio
ii libavahi-client3 0.6.19-2 Avahi client library
ii libavahi-common3 0.6.19-2 Avahi common library
ii libavahi-glib1 0.6.19-2 Avahi glib integration library
ii libbonobo2-0 2.18.0-2 Bonobo CORBA interfaces library
ii libbonoboui2-0 2.18.0-5 The Bonobo UI library
ii libc6 2.5-7 GNU C Library: Shared libraries
ii libcairo2 1.4.6-1 The Cairo 2D vector graphics libra
ii libdbus-1-3 1.0.2-5 simple interprocess messaging syst
ii libdbus-glib-1-2 0.73-2 simple interprocess messaging syst
ii libesd-alsa0 [libesd 0.2.36-3 Enlightened Sound Daemon (ALSA) -
ii libfontconfig1 2.4.2-1.2 generic font configuration library
ii libfreetype6 2.2.1-5 FreeType 2 font engine, shared lib
ii libgconf2-4 2.18.0.1-3 GNOME configuration database syste
ii libgcrypt11 1.2.4-2 LGPL Crypto library - runtime libr
ii libglib2.0-0 2.12.12-1 The GLib library of C routines
ii libgnome-keyring0 0.8.1-2 GNOME keyring services library
ii libgnome2-0 2.18.0-4 The GNOME 2 library - runtime file
ii libgnomecanvas2-0 2.14.0-2 A powerful object-oriented display
ii libgnomeui-0 2.18.1-2 The GNOME 2 libraries (User Interf
ii libgnomevfs2-0 1:2.18.1-2 GNOME Virtual File System (runtime
ii libgnutls13 1.6.2-2 the GNU TLS library - runtime libr
ii libgpg-error0 1.4-2 library for common error values an
ii libgstreamer-plugins 0.10.12-2 GStreamer libraries from the "base
ii libgstreamer0.10-0 0.10.12-5 Core GStreamer libraries and eleme
ii libgtk2.0-0 2.10.12-2 The GTK+ graphical user interface
ii libice6 1:1.0.3-2 X11 Inter-Client Exchange library
ii libjpeg62 6b-13 The Independent JPEG Group's JPEG
ii libnautilus-burn3 2.14.3-9~osdesktop1 Nautilus Burn Library - runtime ve
ii libnotify1 0.4.4-3 sends desktop notifications to a n
ii liborbit2 1:2.14.7-0.1 libraries for ORBit2 - a CORBA ORB
ii libpango1.0-0 1.16.4-1 Layout and rendering of internatio
ii libpng12-0 1.2.15~beta5-2 PNG library - runtime
ii libpopt0 1.10-3 lib for parsing cmdline parameters
ii libsm6 2:1.0.3-1 X11 Session Management library
ii libtasn1-3 0.3.9-1 Manage ASN.1 structures (runtime)
ii libtotem-plparser1 2.16.6-1 Totem Playlist Parser library - ru
ii libx11-6 2:1.0.3-7 X11 client-side library
ii libxcursor1 1:1.1.8-2 X cursor management library
ii libxext6 1:1.0.3-2 X11 miscellaneous extension librar
ii libxfixes3 1:4.0.3-2 X11 miscellaneous 'fixes' extensio
ii libxi6 1:1.0.1-4 X11 Input extension library
ii libxinerama1 1:1.0.2-1 X11 Xinerama extension library
ii libxml2 2.6.28.dfsg-1 GNOME XML library
ii libxrandr2 2:1.2.1-1 X11 RandR extension library
ii libxrender1 1:0.9.2-1 X Rendering Extension client libra
ii mkisofs 9:1.1.6-1 Dummy transition package for genis
ii wodim 9:1.1.6-1 command line CD/DVD writing tool
ii zlib1g 1:1.2.3-15 compression library - runtime
brasero recommends no packages.
-- no debconf information
--- a/src/main.c 2006-09-07 12:47:40.000000000 -0300
+++ b/src/main.c 2007-02-05 14:20:23.000000000 -0200
@@ -251,6 +251,7 @@
GtkWidget *menubar;
GtkActionGroup *action_group;
GtkAccelGroup *accel_group;
+ GtkRequisition req;
GError *error = NULL;
/* New window */
@@ -305,6 +306,10 @@
/* set up the window geometry */
gtk_window_set_position (GTK_WINDOW (app->mainwin), GTK_WIN_POS_CENTER);
+ gtk_widget_size_request(app->contents, &req);
+ gtk_widget_set_size_request(GTK_WIDGET (app->mainwin),
+ (req.width >= gdk_screen_width() ? 0 : req.width),
+ (req.height >= gdk_screen_height() ? 0 : req.height));
brasero_session_connect (app);
brasero_session_load (app);
--- End Message ---
--- Begin Message ---
Source: brasero
Source-Version: 0.5.2-1
We believe that the bug you reported is fixed in the latest version of
brasero, which is due to be installed in the Debian FTP archive:
bonfire_0.5.2-1_all.deb
to pool/main/b/brasero/bonfire_0.5.2-1_all.deb
brasero_0.5.2-1.diff.gz
to pool/main/b/brasero/brasero_0.5.2-1.diff.gz
brasero_0.5.2-1.dsc
to pool/main/b/brasero/brasero_0.5.2-1.dsc
brasero_0.5.2-1_i386.deb
to pool/main/b/brasero/brasero_0.5.2-1_i386.deb
brasero_0.5.2.orig.tar.gz
to pool/main/b/brasero/brasero_0.5.2.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.
Otavio Salvador <[EMAIL PROTECTED]> (supplier of updated brasero 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: Mon, 04 Jun 2007 17:17:22 -0300
Source: brasero
Binary: brasero bonfire
Architecture: source i386 all
Version: 0.5.2-1
Distribution: unstable
Urgency: low
Maintainer: OndÅej Surý <[EMAIL PROTECTED]>
Changed-By: Otavio Salvador <[EMAIL PROTECTED]>
Description:
bonfire - CD/DVD burning application for GNOME (dummy package)
brasero - CD/DVD burning application for GNOME
Closes: 405143 405144 406152 411274 425406
Changes:
brasero (0.5.2-1) unstable; urgency=low
.
[ Loic Minier ]
* Recommend gstreamer0.10-fluendo-mp3 for mp3 to CD audio conversion.
* Add a get-orig-source target to retrieve the upstream tarball.
.
[ Otavio Salvador ]
* Add a watch file.
* Change get-orig-source target to retrieve from GNOME project instead
of SourceForge.
* New upstream version (Closes: #405143).
* Replace 000_cdrecord2wodim-0.4.4.patch with 000_cdrtools2cdrkit.patch
and try to be as simple as possible to new releases merge easier
(Closes: #411274)
* Drop 002_update_german_po.patch.
* Remove TODO.tasks from brasero.docs.
* Depends on genisoimage instead of mkisofs (Closes: #406152).
* Add a suggestions to gnome-icon-theme (Closes: #405144).
* Add 004_fix-windows-size.patch to fix startup window size (Closes:
#425406).
* Use upstream manpage.
* Remove brasero.dirs and brasero.docs since they has good defaults on CDBS.
.
[ Loic Minier ]
* Track all versions in watch file; track .tar.gz instead of .tar.bz2.
* Add missing build-dep on libglib2.0-dev (>= 2.6.0).
* Bump up build-deps to libgtk2.0-dev >= 2.10.0, libgnomevfs2-dev >= 2.14.2,
libnautilus-burn-dev >= 2.16.0.
Files:
b279a7d14011ac25f942b2ad8366325c 1108 gnome optional brasero_0.5.2-1.dsc
533bb9ee2b413d0e4ecf4debc9d607e9 1323687 gnome optional
brasero_0.5.2.orig.tar.gz
f754d870075cee675353e6fd3af2f55d 4546 gnome optional brasero_0.5.2-1.diff.gz
c7bff9f9903edce84d0e2b55d8bf3719 17536 gnome optional bonfire_0.5.2-1_all.deb
3d81886f3f8d2d2c7421247e53340880 756582 gnome optional brasero_0.5.2-1_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
iD8DBQFGZHZ0LqiZQEml+FURAvFIAJ4j4oCyhiETyEQXb6RxuIXDoxYLRQCdHPvT
ucb70g1Jl4xQ9A3WmeVErew=
=JQ1D
-----END PGP SIGNATURE-----
--- End Message ---