Bug#321492: peacock: Peacock still uses gtkFileSelector
Package: peacock Version: 1.9.1-6 Severity: normal Tags: patch Peacock is using GtkFileSelector in peacock-utils.c, that makes the app look old and out of date. I already emailed you the patch but got no response. I'm attaching a patch -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.12 Locale: LANG=es_PE.UTF-8, LC_CTYPE=es_PE.UTF-8 (charmap=UTF-8) Versions of packages peacock depends on: ii gtkhtml3.63.6.2-1HTML rendering/editing library - b ii libart-2.0-2 2.3.17-1 Library of functions for 2D graphi ii libatk1.0-0 1.10.1-2 The ATK accessibility toolkit ii libbonobo2-0 2.10.0-1 Bonobo CORBA interfaces library ii libbonoboui2-02.10.0-1 The Bonobo UI library ii libc6 2.3.5-1GNU C Library: Shared libraries an ii libgconf2-4 2.10.0-2 GNOME configuration database syste ii libglade2-0 1:2.5.1-2 library to load .glade files at ru ii libglib2.0-0 2.6.5-1The GLib library of C routines ii libgnome2-0 2.10.0-3 The GNOME 2 library - runtime file ii libgnomecanvas2-0 2.10.2-2 A powerful object-oriented display ii libgnomeprint2.2-02.10.3-2 The GNOME 2.2 print architecture - ii libgnomeui-0 2.10.0-2 The GNOME 2 libraries (User Interf ii libgnomevfs2-02.10.1-5 The GNOME virtual file-system libr ii libgtk2.0-0 2.6.8-1The GTK+ graphical user interface ii libgtksourceview1.0-0 1.2.0-2shared libraries for the GTK+ synt ii libice6 6.8.2.dfsg.1-3 Inter-Client Exchange library ii liborbit2 1:2.12.2-1 libraries for ORBit2 - a CORBA ORB ii libpango1.0-0 1.8.1-1Layout and rendering of internatio ii libpopt0 1.7-5 lib for parsing cmdline parameters ii libsm66.8.2.dfsg.1-3 X Window System Session Management ii libxml2 2.6.20-1 GNOME XML library ii xlibs 6.8.2.dfsg.1-3 X Window System client libraries m ii zlib1g1:1.2.2-4 compression library - runtime peacock recommends no packages. -- no debconf information diff -uN peacock-1.9.1/src/peacock-file-client.c peacock-1.9.1-d/src/peacock-file-client.c --- peacock-1.9.1/src/peacock-file-client.c 2003-09-06 15:12:28.0 -0500 +++ peacock-1.9.1-d/src/peacock-file-client.c 2005-07-19 15:06:49.0 -0500 @@ -217,7 +217,7 @@ const gchar *uri; PeacockFileClient *fileClient; - uri = peacock_util_get_uri (_("Open URI")); + uri = peacock_util_get_uri ("Open URI", GTK_FILE_CHOOSER_ACTION_OPEN); /* If Ok is not pressed, can be Cancel or delete_event. */ if (uri == NULL) @@ -257,8 +257,8 @@ { PeacockFileClient *fileClient; const gchar *uri; - - uri = peacock_util_get_uri (_("Save As")); + + uri = peacock_util_get_uri ("Save As", GTK_FILE_CHOOSER_ACTION_SAVE); /* In case of Cancel or other failures. */ if (!uri) return; diff -uN peacock-1.9.1/src/peacock-utils.c peacock-1.9.1-d/src/peacock-utils.c --- peacock-1.9.1/src/peacock-utils.c 2003-09-03 14:56:08.0 -0500 +++ peacock-1.9.1-d/src/peacock-utils.c 2005-07-19 15:23:25.0 -0500 @@ -34,28 +34,48 @@ * Show a GtkFileSelector Dialog to get filenames from local harddisk. * * Return Value: filename selected. + *** + * Diego Escalante Urrelo <[EMAIL PROTECTED]> + * 19 - July - 2005 + * Change this function to use GtkFileChooser (the new dialog in gtk 2.4 and forth) **/ static const gchar * -peacock_util_get_local_uri (const gchar *title) +peacock_util_get_local_uri (const gchar *title, GtkFileChooserAction action) { gchar *filename = NULL; - GtkWidget *filesel; + GtkWidget *filechooser; gint response; + + switch (action) { + case GTK_FILE_CHOOSER_ACTION_OPEN: + filechooser = gtk_file_chooser_dialog_new ( title, NULL, + GTK_FILE_CHOOSER_ACTION_OPEN, + GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, + GTK_STOCK_OPEN, GTK_RESPONSE_OK, + NULL); + break; + case GTK_FILE_CHOOSER_ACTION_SAVE: + filechooser = gtk_file_chooser_dialog_new (title, NULL, + GTK_FILE_CHOOSER_ACTION_SAVE, + GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, + GTK_STOCK_SAVE_AS, GTK_RESPONSE_OK, + NULL); + break; + } + + gtk_widget_show (filechooser); - filesel = gtk_file_selection_new (title); - gtk_widget_show (filesel); - - response = gtk_dialog_run (GTK_DIALOG (filesel)); + response = gtk_dialog_run (GTK_DIALOG (filechooser)); switch (response) { case GTK_RESPONSE_OK: - filename = gtk_file_selec
Bug#321500: deborphan: Spelling issue on --help
Package: deborphan Version: 1.7.15 Severity: minor $ deborphan --help: --guess-perl --gess-python As you can read, it should say guess instead of gess. -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.12 Locale: LANG=es_PE.UTF-8, LC_CTYPE=es_PE.UTF-8 (charmap=UTF-8) Versions of packages deborphan depends on: ii bash 3.0-15 The GNU Bourne Again SHell ii dialog1.0-20050306-1 Displays user-friendly dialog boxe ii gettext-base 0.14.5-1 GNU Internationalization utilities ii libc6 2.3.5-1GNU C Library: Shared libraries an Versions of packages deborphan recommends: ii apt 0.6.39.0.1 Advanced front-end for dpkg -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#659567: hamster-applet: /usr/lib/hamster-applet/hamster-service missing in 2.91.3+git20120211.9ebb889-1
Package: hamster-applet Version: 2.91.3+git20120211.9ebb889-1 Severity: grave Justification: renders package unusable Dear Maintainer, running hamster in the latest unstable package fails because of a missing hamster-service: diego:~$ /usr/bin/gnome-time-tracker ** WARNING **: Trying to register gtype 'GMountMountFlags' as enum when in fact it is of type 'GFlags' ** WARNING **: Trying to register gtype 'GDriveStartFlags' as enum when in fact it is of type 'GFlags' Traceback (most recent call last): File "/usr/bin/gnome-time-tracker", line 602, in app = ProjectHamster() File "/usr/bin/gnome-time-tracker", line 78, in __init__ self.create_hamster_window() File "/usr/bin/gnome-time-tracker", line 152, in create_hamster_window self.new_name = widgets.ActivityEntry() File "/usr/lib/python2.7/dist-packages/hamster/widgets/activityentry.py", line 101, in __init__ self.populate_suggestions() File "/usr/lib/python2.7/dist-packages/hamster/widgets/activityentry.py", line 223, in populate_suggestions self.activities = runtime.storage.get_activities(fact.activity) File "/usr/lib/python2.7/dist-packages/hamster/client.py", line 136, in get_activities return self._to_dict(('name', 'category'), self.conn.GetActivities(search)) File "/usr/lib/python2.7/dist-packages/hamster/client.py", line 87, in conn '/org/gnome/Hamster'), File "/usr/lib/python2.7/dist-packages/dbus/bus.py", line 244, in get_object follow_name_owner_changes=follow_name_owner_changes) File "/usr/lib/python2.7/dist-packages/dbus/proxies.py", line 246, in __init__ self._named_service = conn.activate_name_owner(bus_name) File "/usr/lib/python2.7/dist-packages/dbus/bus.py", line 183, in activate_name_owner self.start_service_by_name(bus_name) File "/usr/lib/python2.7/dist-packages/dbus/bus.py", line 281, in start_service_by_name 'su', (bus_name, flags))) File "/usr/lib/python2.7/dist-packages/dbus/connection.py", line 630, in call_blocking message, timeout) dbus.exceptions.DBusException: org.freedesktop.DBus.Error.Spawn.ExecFailed: Failed to execute program /usr/lib/hamster-applet/hamster-service: Success A trivial thing surely. Let me know if you need more info. diego:~$ dpkg -L hamster-applet |grep service /usr/share/applications/hamster-windows-service.desktop /usr/share/dbus-1/services /usr/share/dbus-1/services/org.gnome.hamster.Windows.service /usr/share/dbus-1/services/org.gnome.hamster.service diego:~$ cat /usr/share/dbus-1/services/org.gnome.hamster.service [D-BUS Service] Name=org.gnome.Hamster Exec=/usr/lib/hamster-applet/hamster-service -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 3.2.0-1-686-pae (SMP w/2 CPU cores) Locale: LANG=es_PE.utf8, LC_CTYPE=es_PE.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages hamster-applet depends on: ii gconf2 3.2.3-1 ii python 2.7.2-10 ii python-cairo1.8.8-1+b2 ii python-dbus 0.84.0-3 ii python-gconf2.28.1+dfsg-1 ii python-gnome2 2.28.1+dfsg-1 ii python-gobject 3.1.0-2 ii python-gtk2 2.24.0-3 ii python-wnck 2.32.0+dfsg-1 ii python-xdg 0.19-3 ii python2.6 2.6.7-4 ii python2.7 2.7.2-13 Versions of packages hamster-applet recommends: ii gnome-icon-theme 3.2.1.2-1 ii python-notify 0.1.1-3 Versions of packages hamster-applet suggests: ii python-evolution 2.32.0+dfsg-1 -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#693863: Same for 3.6.9-1~experimental.1
The script is missing, but module-assistant works again if you fetch it from: http://git.kernel.org/?p=linux/kernel/git/stable/linux-stable.git;a=blob;f=scripts/link-vmlinux.sh;h=b3d907eb93a91e7437ec8be8dac4248990eaf1e0;hb=072e44f15d6cfabe5b5f02c58ca7b058c03cc111 and place it under /usr/src/linux-headers-3.6-trunk-common/scripts -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#650681: fuse: i386-linux-gnu/libfuse.so points to /lib/libfuse and not libfuse in the same directory
Package: fuse Version: 2.8.6-3 Severity: important When building gvfs from git, I hit this problem. Apparently the linking is against this file: /usr/lib/gcc/i486-linux-gnu/4.6/../../../i386-linux-gnu/libfuse.so but it points to /lib/libfuse.so which doesn't exist. Changing this symbolic link to point to libfuse.so.2.8.6 in the same directory works fine. So either the file in /lib is missing or this link should be pointing to the same directory, or perhaps even fuse's development files are pointing to the wrong place. For the record, gvfs seems to be using fuse's pkg-config info directly. -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 3.0.0-1-686-pae (SMP w/2 CPU cores) Locale: LANG=es_PE.utf8, LC_CTYPE=es_PE.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages fuse depends on: ii adduser 3.113 ii libc6 2.13-21 ii libfuse2 2.8.6-3 ii mount 2.20.1-1 ii sed 4.2.1-9 ii udev 175-2 fuse recommends no packages. fuse suggests no packages. -- Configuration Files: /etc/fuse.conf [Errno 13] Permiso denegado: u'/etc/fuse.conf' -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#666307: (no subject)
Hi Artur, On Thu, Jun 7, 2012 at 10:35 AM, Artur Rona wrote: > Hello maintainers, > > I've working a bit on this bug and I concluded upgrade to 1.17 fixes FTBFS > (including refreshed patches etc.). If you want to fix it, let's upgrade it. > If you don't have time, I'm going to go on with NMU. Since a long time now htp was in the to-be-removed list and just a few days ago I got an email that it had been officially removed from testing. Considering that I don't use it anymore and that popcon always says there are -1 users... I don't know if it is worth further maintaining. That said, feel free to take over the package if you use htp or have an interest in maintaining it. Thanks for the email :-) Diego -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#676574: O: htp - html simple command line pre-processor
Package: wnpp Severity: normal htp is a small utility that parses template files and produces html. I has a few handy elements in its pseudo-language, useful for small static pages that get updated once in a while. I am no longer interested in maintaining it because I do not use it anymore. htp has a somewhat old/slow upstream: http://htp.sourceforge.net/ I suggest to adopt this package if you are looking for a small, simple, project to work on and learn about Debian packaging. Diego -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#666307: (no subject)
On Thu, Jun 7, 2012 at 4:21 PM, Artur Rona wrote: > > I'm not sure whether do I want to adopt this one. Since 1.17 upstream > tarball is not clear, e.g. there are no pic directory (including all .png > files) which makes htp a bit ugly. I've sent a question to upstream, though. > > Could you please then orphan a package? Here it is: http://bugs.debian.org/676574 Thanks for the heads up. Diego -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#676574: O: htp -- html simple command line pre-processor
Hey Stéphane! Please go ahead. And thanks for helping Debian :). Diego Hello Diego, I am interested to adopt HTP because I want to learn to package smoothly. So far I've only done bug triage. Regards, -- Stéphane Aulery
Bug#1016505: patch: Fix `Incorrect netdev->dev_addr` errors in linux-5.17+ patch
Package: broadcom-sta-dkms Version: 6.30.223.271-22 Followup-For: Bug #1016505 X-Debbugs-Cc: die...@gnome.org Bump. I have pushed this and other fixes as a branch in salsa: https://salsa.debian.org/diegoe/broadcom-sta/-/commits/2022-various-fixes At least the patch in this bug report is important, the other stuff is mostly lintian warnings and nitpicks. Thanks! -- System Information: Debian Release: bookworm/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Kernel: Linux 6.0.0-3-amd64 (SMP w/4 CPU threads; PREEMPT) Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_USER, TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE=en_US:en Shell: /bin/sh linked to /usr/bin/dash Init: systemd (via /run/systemd/system) LSM: AppArmor: enabled Versions of packages broadcom-sta-dkms depends on: ii dkms 3.0.6-4 Versions of packages broadcom-sta-dkms recommends: ii wireless-tools 30~pre9-13.1 broadcom-sta-dkms suggests no packages. -- no debconf information
Bug#504363: Upstream Python path bugs please
Hey James, would you please take a minute to file the Python path patches upstream in bugzilla.gnome.org? We will appreciate it. Please do so for the following products that share this code: nautilus, totem, epiphany, eog. I might be missing one, so don't feel restricted to only those :-). Thanks in advance! Diego -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#197726: mpg321: displays wrong MPEG version
reassign 197726 libmad thanks Indeed a libmad thing, a quick look at the code doesn't show mpg321 obtaining such info by itself. Thanks! -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#488499: gnome-applets: cpufreq-selector does not change the cpu frequency
tag 488499 +moreinfo thanks What cpufreq governor was in use? Does the applet change the freq correctly? Is the cpufreq-userspace selector available in your processor? Which processor do you have? What modules are loaded (lsmod)? Thanks! -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#506831: Updating severity
severity 506831 normal thanks Forgot to update severity. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#315726: gnome-applets: cpufreq-applet doesn't show percentage freq on gnome startup
Is this still valid for testing's gnome-applets 2.20/2.22? I had used this setting before and never saw this problem. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#493019: gnome-applets: volume applet: 'preferences' dialog pops up on the wrong screen
tag 493019 +moreinfo thanks Leszek, I seem unable to reproduce this on my local machine, perhaps you can include your xorg.conf and rephrase how exactly is your setup? And maybe even list where are your panels and where are you launching the volume applet?. I haven't been able to reproduce what you see using my intel card (on the laptop + external monitor), neither I have been able to find any "suspicious" code, on a quick check. I suspect it might be a driver bug given that you are using nvidia... greetings -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#506831: random crashes
tag 506831 +moreinfo thanks We need more details to be able to help you with your bug. The crash report you posted doesn't help, perhaps you can be specific about what were you doing when the crash happened. Thanks -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#448833: Same problem in lenny
tag 448833 +moreinfo thanks Manuel, If you load the cpufreq modules before starting the cpufreq applet, does it work properly? Also, testing now has 2.22 gnome-applets, could you please try again after updating? Everyone, The cpufreq drivers should be loaded automatically by the system (whatever takes care of that nowadays), but I'm 100% sure that not by gnome-applets :-). So this is not precisely a bug in gnome-applets but more on your setups, as I just asked Manuel, would you please try with latest version available in testing?. greetings -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#197726: [pkg-mad-maintainers] Processed: Re: mpg321: displays wrong MPEG version
On 11/26/08, brian m. carlson <[EMAIL PROTECTED]> wrote: > Playing MPEG stream from css_descramble.mp3 ... > MPEG 1.0 layer III, 64 kbit/s, 22050 Hz joint-stereo > ^C > [0:05] Decoding of css_descramble.mp3 finished. > lakeview ok % file css_descramble.mp3 css_descramble.mp3: MPEG ADTS, layer > III, v2, 64 kbps, 22.05 kHz, JntStereo > I checked mpg321's code again. It's hardcoding the MPEG 1.0 part. A look at mad's struct from where the other info is retrieved didn't revealed a way to get the MPEG 1.0/2.0 info. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#448833: gnome-applets: CPU Freq Applet Shows nothing on Panel
Shouldn't we recommend cpufrequtils then?. We can upstream a request to have /something/ shown in case there's no support for cpufreq. greetings -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#507509:
Install de debug packages for libgtk, libglib, libgconf and similar, both the mm (C++) and usual C versions, example: ii libglib2.0-0-dbg 2.18.2-0ubuntu2 The GLib libraries and debugging symbols ii libgtk2.0-0-dbg 2.14.4-0ubuntu1 The GTK+ libraries and debugging symbols Try to reproduce the trace with that installed. Thanks! -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#506338: gnome-terminal: Fixed-10 font is borken
So this is done/notabug Josselin? -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#505351: gnome-terminal unexpectedly hides output in specific conditions
Still on 2.24 also... Mmmm, perhaps this is more a vte thing, 2.24 is a rewritten gnome-terminal. It would be interesting to try trunk of g-t and/or vte. Do you know if there's an upstream bug for this Gustavo? -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#474156: epiphany-browser: sometimes places 1px-wide window at top left of screen
I recall this happening time ago, it was a flash/epiphany interaction thing, but it is now fixed. Can you please try again with the latest ephy in testing/unstable? I recently installed lenny and didn't have this issue. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#507927: Fix suspend-resume in Thinkpad R50e (intel 855gm card)
Package: acpi-support Version: 0.109-9 Severity: serious Thinkpad R50e won't resume correctly (corrupted X) unless its acpi-support file contains this: # R50e 1834 - see LP: #40621, #211285 1834*) ACPI_SLEEP=true; SAVE_VIDEO_PCI_STATE=true; SAVE_VBE_STATE=true; POST_VIDEO=true; ;; 1842*|2670*) ACPI_SLEEP=true; SAVE_VIDEO_PCI_STATE=true; SAVE_VBE_STATE=false; POST_VIDEO=false; ;; instead of this: # R50e 1834*|1842*|2670*) ACPI_SLEEP=true; SAVE_VIDEO_PCI_STATE=true; SAVE_VBE_STATE=false; POST_VIDEO=false; ;; I confirmed this two days ago after a test Lenny install on my own R50e. Please apply this change so R50e users of Lenny have working out-of-the-box suspend/resume. greetings PD: I hope you don't mind that I set serious, but I considered that despite not being a negative thing it's an enhancement worth doing. Feel free to disagree obviously. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#507509:
On 12/7/08, George Kiagiadakis <[EMAIL PROTECTED]> wrote: > > > ALSO, I tried this with a different user and it seems to work! So, it's > obviously some problem with the configuration. I tried to move away > ~/.config/subtitleeditor, but that didn't help and I noticed that it still > could remember the recently opened files, so it must be saving some > configuration bits somewhere else. Any ideas where is that? > ~/.recently-used*, keep your current copy before deleting so we can try to debug the problem further (perhaps it's a crash on missing files being on the r-u list) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#507509:
severity 507509 normal thanks On 12/9/08, George Kiagiadakis <[EMAIL PROTECTED]> wrote: > > > I tried moving those files away, but it didn't help. I discovered though a > very > odd thing. If subtitleeditor is running in my kde 4.2 (beta) session, it > crashes. If it is not, it doesn't crash. Something like that: > Honestly, no idea, perhaps KDE 4.2 is breaking the recently-used stuff or something from the X env. The test case for you should be: log into GNOME (the default desktop) with the problematic user, open subtitle editor, check if it crashes. Also, if I'm right this subtitleeditor version is a bit old, try with a newer one like 0.30. In the process perhaps you want to confirm if the tarball release for the version you have *now* from *debian packages* crashes. greetings -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#197726: [pkg-mad-maintainers] Bug#197726: Processed: Re: mpg321: displays wrong MPEG version
On 12/10/08, Kurt Roeckx <[EMAIL PROTECTED]> wrote: > On Wed, Nov 26, 2008 at 02:37:29PM -0500, Diego Escalante Urrelo wrote: > > On 11/26/08, brian m. carlson <[EMAIL PROTECTED]> wrote: > > > Playing MPEG stream from css_descramble.mp3 ... > > > MPEG 1.0 layer III, 64 kbit/s, 22050 Hz joint-stereo > > > ^C > > > [0:05] Decoding of css_descramble.mp3 finished. > > > lakeview ok % file css_descramble.mp3 css_descramble.mp3: MPEG ADTS, > layer > > > III, v2, 64 kbps, 22.05 kHz, JntStereo > > > > > > > I checked mpg321's code again. It's hardcoding the MPEG 1.0 part. A > > look at mad's struct from where the other info is retrieved didn't > > revealed a way to get the MPEG 1.0/2.0 info. > > It the struct mad_header is a member called "flags". If the bit > MAD_FLAG_MC_EXT is set it's MPEG 2.0, if MAD_FLAG_MPEG_2_5_EXT is > set it's MPEG 2.5. Otherwise it's MPEG 1.0. > Great. Anyone feel free to do a simple patch for this. :-) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#524524: gnome-system-tools: Distro version unsupported - version not recognized; in Lenny after last update to 5.0.1
Package: gnome-system-tools Version: 2.22.0-3 Severity: important After a dist-upgrade in Lenny today, g-s-t apps are no longer recognizing the system as Lenny, instead they prompt you to pick a version. I suppose this is because it's not 5.0.1 and not 5 anymore. -- System Information: Debian Release: 5.0.1 APT prefers proposed-updates APT policy: (500, 'proposed-updates'), (500, 'stable') Architecture: i386 (i686) Kernel: Linux 2.6.26-2-686 (SMP w/1 CPU core) Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages gnome-system-tools depends on: ii gconf2 2.22.0-1 GNOME configuration database syste ii gksu2.0.0-8 graphical frontend to su ii libatk1.0-0 1.22.0-1 The ATK accessibility toolkit ii libc6 2.7-18 GNU C Library: Shared libraries ii libcairo2 1.6.4-7fonts The Cairo 2D vector graphics libra ii libdbus-1-3 1.2.1-5 simple interprocess messaging syst ii libgconf2-4 2.22.0-1 GNOME configuration database syste ii libglib2.0-02.16.6-1+lenny1 The GLib library of C routines ii libgnomevfs2-0 1:2.22.0-5 GNOME Virtual File System (runtime ii libgtk2.0-0 2.12.12-1~lenny1 The GTK+ graphical user interface ii libnautilus-extension1 2.20.0-7 libraries for nautilus components ii liboobs-1-4 2.22.0-2 GObject based interface to system- ii libpango1.0-0 1.20.5-3 Layout and rendering of internatio ii perl5.10.0-19Larry Wall's Practical Extraction ii system-tools-backends 2.6.0-2lenny1System Tools to manage computer co Versions of packages gnome-system-tools recommends: ii gnome-control-center1:2.22.2.1-2 utilities to configure the GNOME d Versions of packages gnome-system-tools suggests: pn ntp(no description available) pn samba-common (no description available) pn wvdial (no description available) -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#524576: pidgin crashes when verifying certs
Package: pidgin Version: 2.5.5-1 Severity: grave Justification: renders package unusable On sid, pidgin crashes at startup, apparently trying to verify certificates. This happens even after removing .purple/ dir completely. Funny, I lost my whole .purple dir while trying to properly report this. Not related to the bug but to a mv. #0 0xb5046178 in ?? () #1 0xb7451ef6 in __xmlRaiseError (schannel=0xb50461e0, channel=0, data=0x948c614, ctx=0x992cdf8, nod=0x0, domain=1, code=5, level=XML_ERR_FATAL, file=0x0, line=1, str1=0x0, str2=0x0, str3=0x0, int1=0, col=193, msg=0xb7544068 "Extra content at the end of the document\n") at error.c:612 #2 0xb745651b in xmlFatalErr (ctxt=0x992cdf8, error=155764244, info=0xb7567678 "\002") at parser.c:464 #3 0xb746b8da in xmlParseChunk__internal_alias (ctxt=0x992cdf8, chunk=0x0, size=0, terminate=1) at parser.c:11473 #4 0xb5b6a571 in jabber_parser_free (js=0x9921068) at ../../../../libpurple/protocols/jabber/parser.c:210 #5 0xb5b6a5ad in jabber_parser_setup (js=0x9921068) at ../../../../libpurple/protocols/jabber/parser.c:205 #6 0xb5b63e6e in jabber_stream_init (js=0x9921068) at ../../../../libpurple/protocols/jabber/jabber.c:81 #7 0xb5b6524b in jabber_login_callback_ssl (data=0x9910108, gsc=0x9218630, cond=PURPLE_INPUT_READ) at ../../../../libpurple/protocols/jabber/jabber.c:579 #8 0xb57de475 in ssl_nss_verified_cb (st=PURPLE_CERTIFICATE_VALID, userdata=0x9218630) at ../../../../libpurple/plugins/ssl/ssl-nss.c:251 #9 0xb771f1b9 in purple_certificate_verify_complete (vrq=0x994cca8, st=PURPLE_CERTIFICATE_VALID) at ../../libpurple/certificate.c:105 #10 0xb771fab0 in x509_tls_cached_start_verify (vrq=0x994cca8) at ../../libpurple/certificate.c:1273 #11 0xb772032f in purple_certificate_verify (verifier=0xb77bb5e0, subject_name=0x9910080 "gmail.com", cert_chain=0x9923990, cb=0xb57de410 , cb_data=0x9218630) at ../../libpurple/certificate.c:80 #12 0xb57de6ee in ssl_nss_handshake_cb (data=0x9218630, fd=11, cond=PURPLE_INPUT_READ) at ../../../../libpurple/plugins/ssl/ssl-nss.c:357 #13 0x080a8943 in pidgin_io_invoke (source=0x992a580, condition=, data=0x99101a8) at ../../pidgin/gtkeventloop.c:78 #14 0xb78314ad in g_io_unix_dispatch (source=0x992c870, callback=0x80a8900 , user_data=0x99101a8) at /build/buildd-glib2.0_2.20.1-1-i386-SPuBUJ/glib2.0-2.20.1/glib/giounix.c:162 #15 0xb77fa848 in IA__g_main_context_dispatch (context=0x9237a50) at /build/buildd-glib2.0_2.20.1-1-i386-SPuBUJ/glib2.0-2.20.1/glib/gmain.c:1814 #16 0xb77fddab in g_main_context_iterate (context=0x9237a50, block=1, dispatch=1, self=0x920f3e8) at /build/buildd-glib2.0_2.20.1-1-i386-SPuBUJ/glib2.0-2.20.1/glib/gmain.c:2448 #17 0xb77fe27a in IA__g_main_loop_run (loop=0x99203d0) at /build/buildd-glib2.0_2.20.1-1-i386-SPuBUJ/glib2.0-2.20.1/glib/gmain.c:2656 #18 0xb7ae9209 in gtk_main () from /usr/lib/libgtk-x11-2.0.so.0 #19 0x080c29f6 in main (argc=-912820261, argv=0x0) at ../../pidgin/gtkmain.c:881 -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.26-2-686 (SMP w/1 CPU core) Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages pidgin depends on: ii gconf2 2.26.0-1 GNOME configuration database syste ii libatk1.0-01.24.0-2 The ATK accessibility toolkit ii libc6 2.9-7 GNU C Library: Shared libraries ii libcairo2 1.8.6-2.1fontsThe Cairo 2D vector graphics libra ii libdbus-1-31.2.12-1 simple interprocess messaging syst ii libdbus-glib-1-2 0.80-3simple interprocess messaging syst ii libfontconfig1 2.6.0-3 generic font configuration library ii libfreetype6 2.3.9-4 FreeType 2 font engine, shared lib ii libglib2.0-0 2.20.1-1 The GLib library of C routines ii libgstreamer0.10-0 0.10.22-3 Core GStreamer libraries and eleme ii libgtk2.0-02.16.1-2 The GTK+ graphical user interface ii libgtkspell0 2.0.13-2 a spell-checking addon for GTK's T ii libice62:1.0.5-1 X11 Inter-Client Exchange library ii libpango1.0-0 1.24.0-3+b1 Layout and rendering of internatio ii libpurple0 2.5.5-1 multi-protocol instant messaging l ii libsm6 2:1.1.0-2 X11 Session Management library ii libstartup-notificatio 0.10-1library for program launch feedbac ii libx11-6 2:1.2.1-1 X11 client-side library ii libxss11:1.1.3-1 X11 Screen Saver extension library ii perl 5.10.0-19 Larry Wall's Practical Extraction ii perl-base [perlapi-5.1 5.10.0-1
Bug#504450: policykit: It is possible to grant sudo like access to a group
Package: policykit Version: 0.9-3 Severity: normal You can also add to the config file and so any user in the adm group will be allowed to auth with their own password. I think this is what Ubuntu does, but must confirm. The package should detect if root is enabled before installing and in consecuence add such option, I understand 'adm' group is for people somehow trusted. -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.26-2-686 (SMP w/1 CPU core) Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages policykit depends on: ii adduser 3.110 add and remove users and groups ii consolekit0.3.0-2framework for defining and trackin ii dbus 1.2.12-1 simple interprocess messaging syst ii libc6 2.9-7 GNU C Library: Shared libraries ii libdbus-1-3 1.2.12-1 simple interprocess messaging syst ii libdbus-glib-1-2 0.80-3 simple interprocess messaging syst ii libglib2.0-0 2.20.1-1 The GLib library of C routines ii libpam0g 1.0.1-9Pluggable Authentication Modules l ii libpolkit-dbus2 0.9-3 library for accessing PolicyKit vi ii libpolkit-grant2 0.9-3 library for obtaining privileges v ii libpolkit20.9-3 library for accessing PolicyKit policykit recommends no packages. Versions of packages policykit suggests: ii policykit-gnome 0.9.2-1GNOME dialogs for PolicyKit -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#486559: ftbfs
Hey Marc, I think you are missing a "make" in build:, otherwise index.theme.in hasn't be processed so index.theme doesn't exist. +1 for this package, did the license thing cleared out? cheers! -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#523703: update-manager: Patch to fix the problem
Package: update-manager Version: 0.68.debian-7 Severity: normal Inline, a patch to fix this: --- UpdateManager.py2009-04-22 01:08:19.0 -0500 +++ UpdateManager.new.py2009-04-22 01:08:47.0 -0500 @@ -159,7 +159,7 @@ # assume "main" section src_section = "main" # use the section of the candidate as a starting point -section = pkg._depcache.GetCandidateVer(pkg._pkg).Section +section = self._depcache.GetCandidateVer(pkg._pkg).Section # get the source version, start with the binaries version binver = pkg.candidateVersion Simple! -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.26-2-686 (SMP w/1 CPU core) Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages update-manager depends on: ii gconf2 2.26.0-1GNOME configuration database syste ii libgnome2-perl 1.042-2 Perl interface to the GNOME librar ii python 2.5.4-2 An interactive high-level object-o ii python-dbus 0.83.0-1simple interprocess messaging syst ii python-glade22.14.1-2GTK+ bindings: Glade support ii python-gnome22.22.3-3Python bindings for the GNOME desk ii python-support 1.0.2 automated rebuilding support for P ii python-vte 1:0.17.4-2+b1 Python bindings for the VTE widget ii software-properties-gtk 0.60.debian-1.1 manage the repositories that you i ii synaptic 0.62.5+b1 Graphical package manager ii update-manager-core 0.68.debian-7 APT update manager core functional update-manager recommends no packages. Versions of packages update-manager suggests: ii update-notifier 0.70.7.debian-5 Daemon which notifies about packag -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#524956: Same as #523415?
Hey would you check if this your bug is the same as http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=523415 ? It is for me, using 855GM on a Thinkpad R50e, kernel 2.6.29 + UXA. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#530275: fortunes package is not Recommended by gnome-panel, makes wanda useless
Package: gnome-panel Version: 2.24.3-1+b1 Severity: important Wanda needs fortunes to show its nice quote popup, but right now the package is not installed as a Recommends: of gnome-panel; I think it should since most users won't know that the 'missing command' is actually 'fortunes'. -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.30-rc5-686 (SMP w/1 CPU core) Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages gnome-panel depends on: ii gnome-about 2.26.1-1 The GNOME about box ii gnome-control-center 1:2.24.0.1-4 utilities to configure the GNOME d ii gnome-desktop-data2.26.1-1 Common files for GNOME 2 desktop a ii gnome-menus 2.24.2-2 an implementation of the freedeskt ii gnome-panel-data 2.24.3-1 common files for the GNOME Panel ii libatk1.0-0 1.26.0-1 The ATK accessibility toolkit ii libbonobo2-0 2.24.1-1 Bonobo CORBA interfaces library ii libbonoboui2-02.24.1-1 The Bonobo UI library ii libc6 2.9-7 GNU C Library: Shared libraries ii libcairo2 1.8.6-2.1fonts The Cairo 2D vector graphics libra ii libdbus-1-3 1.2.14-2 simple interprocess messaging syst ii libdbus-glib-1-2 0.80-4 simple interprocess messaging syst ii libecal1.2-7 2.26.1.1-2 Client library for evolution calen ii libedataserver1.2-11 2.26.1.1-2 Utility library for evolution data ii libedataserverui1.2-8 2.26.1.1-2 GUI utility library for evolution ii libgconf2-4 2.26.0-1 GNOME configuration database syste ii libglade2-0 1:2.6.4-1 library to load .glade files at ru ii libglib2.0-0 2.20.1-1 The GLib library of C routines ii libgnome-desktop-2-11 2.26.1-1 Utility library for loading .deskt ii libgnome-menu22.24.2-2 an implementation of the freedeskt ii libgnome2-0 2.26.0-1 The GNOME library - runtime files ii libgnomeui-0 2.24.1-1 The GNOME 2 libraries (User Interf ii libgtk2.0-0 2.16.1-2 The GTK+ graphical user interface ii libgweather1 2.26.1-1 GWeather shared library ii liborbit2 1:2.14.17-0.1 libraries for ORBit2 - a CORBA ORB ii libpanel-applet2-02.24.3-1+b1library for GNOME Panel applets ii libpango1.0-0 1.24.2-1 Layout and rendering of internatio ii libpolkit-dbus2 0.9-3 library for accessing PolicyKit vi ii libpolkit20.9-3 library for accessing PolicyKit ii librsvg2-22.22.3-2 SAX-based renderer library for SVG ii libwnck22 2.24.2-2 Window Navigator Construction Kit ii libx11-6 2:1.2.1-1 X11 client-side library ii libxau6 1:1.0.4-2 X11 authorisation library ii menu-xdg 0.4freedesktop.org menu compliant win Versions of packages gnome-panel recommends: ii alacarte 0.12.1-1 easy GNOME menu editing tool ii evolution-data-server 2.26.1.1-2evolution database backend server ii gnome-applets 2.24.3.1-2+b1 Various applets for GNOME 2 panel ii gnome-icon-theme 2.24.0-4 GNOME Desktop icon theme ii gnome-session 2.22.3-3 The GNOME 2 Session Manager ii gvfs 1.2.2-2 userspace virtual filesystem - ser ii policykit-gnome0.9.2-2 GNOME dialogs for PolicyKit Versions of packages gnome-panel suggests: ii epiphany-browser 2.26.1-1 Intuitive web browser - dummy pack ii evolution 2.26.1.1-2 groupware suite with mail client a ii gdm 2.20.9-1 GNOME Display Manager ii gnome-session 2.22.3-3 The GNOME 2 Session Manager ii gnome-system-tools2.22.1-4 Cross-platform configuration utili ii gnome-terminal [x-terminal-em 2.24.3-3 The GNOME 2 terminal emulator appl ii gnome-user-guide [gnome2-user 2.24.2-2 GNOME user's guide ii nautilus 2.26.2-3 file manager and graphical shell f ii xterm [x-terminal-emulator] 242-1 X terminal emulator ii yelp 2.24.0-2 Help browser for GNOME 2 -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#530429: htp: fake bug to test amancay
Package: htp Version: 1.16-3 Severity: normal this is a fake bug -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.30-rc5-686 (SMP w/1 CPU core) Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages htp depends on: ii libc6 2.9-7 GNU C Library: Shared libraries htp recommends no packages. htp suggests no packages. -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#443616: htp - FTBFS: error: incompatible types in assignment
Can I request your help once again with this Bastian? I tried some variations of your old patch (yes, this is a different issue but I tried the logic) but I had no luck. Greetings On 9/22/07, Bastian Blank <[EMAIL PROTECTED]> wrote: > Package: htp > Version: 1.16-1 > Severity: serious > > There was an error while trying to autobuild your package: > > > Automatic build of htp_1.16-1 on debian-31.osdl.marist.edu by sbuild/s390 98 > [...] > > gcc -c -Wall -g -O2 -DHAVE_SNPRINTF -DHAVE_PIPE -DHAVE_STPCPY > > -D_GNU_SOURCE=1 -o snprintf.o snprintf.c > > snprintf.c: In function 'vasprintf': > > snprintf.c:856: error: incompatible types in assignment > > snprintf.c:864: error: incompatible types in assignment > > make[2]: *** [snprintf.o] Error 1 > > make[2]: Leaving directory `/build/buildd/htp-1.16/src' > > make[1]: *** [subdir-all] Error 1 > > make[1]: Leaving directory `/build/buildd/htp-1.16' > > make: *** [build-stamp] Error 2 > > ** > > Build finished at 20070921-0120 > > FAILED [dpkg-buildpackage died] > > > -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#443934: ITP: gtk2-engines-nodoka -- Nodoka GTK+ 2.0 theme, Fedora's default theme.
Package: wnpp Severity: wishlist Nodoka is Fedora's new default theme, it's a really nice theme so I thought it would be nice to make it available as a Debian package. It's really simple, I based this package on gtk2-engines-wonderland package. You can grab it here: http://www.gnome.org/~diegoe/deb/gtk2-engines-nodoka/ Also check the upstream source: https://hosted.fedoraproject.org/projects/nodoka/wiki And how it looks: http://fedoraproject.org/wiki/Artwork/NodokaTheme I'm also the maintainer of the htp package, co-maintained with Rudy Godoy Guillén and David Moreno Garza. Let me know what you think!
Bug#443616: htp - FTBFS: error: incompatible types in assignment
Hey Bastian, Reading http://ccrma.stanford.edu/planetccrma/man/man3/stdarg.3.html I see that I can also use: *aq = *ap; what do you think? Diego -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#443952: ITP: nodoka-theme -- Nodoka metacity theme
Package: wnpp Severity: wishlist Nodoka is Fedora's new default theme, it's a really nice theme so I thought it would be nice to make it available as a Debian package. This is the metacity theme. I filled bug #443934 for the gtk+ 2.0 part. You can grab it here: http://www.gnome.org/~diegoe/deb/nodoka-theme/ Also check the upstream source: https://hosted.fedoraproject.org/projects/nodoka/wiki And how it looks: http://fedoraproject.org/wiki/Artwork/NodokaTheme I'm also the maintainer of the htp package, co-maintained with Rudy Godoy Guillén and David Moreno Garza. Let me know what you think!
Bug#541712: libdbus-glib-1-2: Since 0.82-1, nm-connection-editor fails to modify system connections
merge 540421 541712 severity 541712 important tag 541712 +confirmed thanks I can confirm this on sid, reporter suggestion indeed solves the problem. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#475956: gstcodecs.conf makes empathy voip fail due to "no valid candidates", removing it lets it work
Package: libfarsight0.1-3 Version: 0.1.27-1 Severity: serious --- Please enter the report below this line. --- Using debian sid to call another debian sid, I was unable to connect both machines using empathy voip until I removed the mentioned file. I don't have the exact error at hand now (you might note I'm reporting from not a debian machine), but I guess you appreciate a heads up on this issue. If you cannot reproduce I'll try to get such thing, but basically both stream-engines couldn't agree on a codec, no matter they both where using the same version of everything and that the mentioned missing plugins (like theora or speex) where correctly installed in the system. --- System information. --- Architecture: i386 Kernel: Linux 2.6.24-12-generic Debian Release: lenny/sid 500 hardy pe.archive.ubuntu.com 500 feisty archive.canonical.com --- Package information. --- Depends (Version) | Installed ===-+-=== | -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#475958: etch -> sid, /dev/hda paths were not converted to /dev/sda
Package: grub Version: 0.97-36 Severity: critical --- Please enter the report below this line. --- I installed a base etch system (just base) and then upgraded to sid, after this I was left with an unbootable system that stuck at "Waiting for root file system...". This of course is evil. The problem was that grub didn't got /dev/hda paths changed to /dev/sda paths (the ide/ata/scsi/etc chaos in the kernel past 2.6.1x changed this, remember?). And yes, I'm not reporting this from the same machine I got the issue, but you can trust me on this one :). Feel free to ask me for details. --- System information. --- Architecture: i386 Kernel: Linux 2.6.24-12-generic Debian Release: lenny/sid 500 hardy pe.archive.ubuntu.com 500 feisty archive.canonical.com --- Package information. --- Depends (Version) | Installed ===-+- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#471631: Patch from SVN attached
Should fix the issue. --- trunk/src/PlaylistWindow.cs 2008/02/26 21:35:12 1176 +++ trunk/src/PlaylistWindow.cs 2008/02/26 21:37:01 1177 @@ -176,7 +176,7 @@ [Glade.Widget] private Button add_song_button ; [Glade.Widget] private Button add_album_button ; - private VolumeButton volume_button; + private Bacon.VolumeButton volume_button; // Widgets :: Player [Glade.Widget] private Label song_label; @@ -869,7 +869,7 @@ add_album_button .Clicked += OnAddAlbumButtonClicked; // Volume - volume_button = new VolumeButton (); + volume_button = new Bacon.VolumeButton (); volume_button_container.Add (volume_button); volume_button.Visible = true; volume_button.VolumeChanged += OnVolumeChanged;
Bug#481046: muine: could not open audio device for playback
Can you reproduce this all the time? Maybe your audio device was locked by other application... I can open muine and use it without a problem. Actually I have banshee paused right now and muine is playing. Can you try again after just having logged in? Check that there are no other applications using your sound device, or try using a sound daemon like pulseaudio. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#481311: Please mark Done bugs with a line-through
Package: bugs.debian.org So they can be quickly ignored when reading a package description. Thanks for your work :). Diego PD: I can give a hand with this, if you say "go" I will happily hack this and other UI aspects I -humbly- think can be improved in the BTS. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#443108: typo in /usr/share/gedit-2/taglist/HTML.tags.gz cause gedit crash
tags 443108 + fixed thanks This should be fixed by now, it was fixed in 2.18 by upstream. Closing. Thanks :) Diego -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#475958: etch -> sid, /dev/hda paths were not converted to /dev/sda
Sorry! I can't remember which kernel I was using in that moment... If I do another installation I'll try to get back here, I agree with the importance of mentioning this in release notes. Thanks -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#432776: #432776 contacts: Fails to search a contact with accent on the name
forwarded 432776 http://bugzilla.openedhand.com/show_bug.cgi?id=224 thanks This is upstream http://bugzilla.openedhand.com/show_bug.cgi?id=224, it's just waiting a review. Works without a hitch here. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#440752: Forwarded
forwarded 440752 http://bugzilla.openedhand.com/show_bug.cgi?id=924 thanks Reported upstream. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#440753: #440753 Export contacts
forwarded 440753 http://bugzilla.openedhand.com/show_bug.cgi?id=495 thanks Upstream http://bugzilla.openedhand.com/show_bug.cgi?id=495 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#443952: Soon to be uploaded!
Just to let anyone reading that I'm just waiting for my local DD (rudy) to upload the packages for me, they are in mentors.debian.net right now. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#492531: Marking more info
tag 492531 moreinfo severity 492531 normal thanks Marking more info and downgrading to normal. Please give us the requested info ;). greetings -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#491237: Marking normal
severity 491237 normal thanks Downgrading to normal, maybe the CREDITS.txt file can be added to /usr/share/doc/abiword/, as extra credit information. Patches anyone :)? greetings -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#476762: Confirmed, upstream.
forward 476762 http://bugzilla.gnome.org/show_bug.cgi?id=518633 tag 476762 +upstream +confirmed thanks Indeed, it kills cpu too. It's actually: http://bugzilla.gnome.org/show_bug.cgi?id=518633 I'll check if I can attach a patch greetings -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#451220:
tag 451220 +confirmed I can confirm this on a fresh lenny -> sid upgrade. acpid is 1.0.6-5.1 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#491237: debian/copyright copyright information lacking
There's a CREDITS.txt file in abiword/. I think it's a bit excessive to name *everyone*, I understand the idea but I think no one will get offended if the copyright file (that anyway not much people read) don't have their names. I'm not in Epiphany's (web browser) copyright file for example despite being credited as a contributor in Help > About, neither other people that have contributed patches and energy to the project over years. I don't think this is RC, but my opinion is an outsider opinion, so feel free to correct me :). In any case, grep should help, but I would advice you to use CREDITS.txt instead, it looks far more complete and real than a cold grep. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#492657: epiphany-webkit: not ready to be included in a stable release
As long as epiphany-browser defaults to epiphany-gecko, few people will ever notice there's an alternative. Maybe a notice to the package description could be added, like: """ (ephy standard desc) . This is the experimental webkit backend version of the browser, for an stable browsing experience use epiphany-gecko package. """ IMHO, this is not an RC bug. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#492143: epiphany-browser: Crash when downloads finish
You might want to test the patch attached to the bug: http://bugzilla.gnome.org/show_bug.cgi?id=536768 I can't reproduce, but Colin's suggestion makes sense. greetings -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#492531: network-manager-gnome: network-manager failed to connect invisible accesspoint
tag -l10n thanks Please give some more details about this: - can you run `lsmod` in a terminal so we know which network driver you use? do you know the model of your card? - does this happen ALWAYS when connecting to an invisible AP? - are you only connecting to the wireless AP? You are not using VPN or something else from NetworkManager? thank you -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#493660: Lintian has old developers-reference url
Package: lintian Version: 1.24.2 N: The package has a significant amount of architecture-independent data N: in /usr/share, while it is an architecture-dependent package. (...) N: http://www.debian.org/doc/developers-reference/ch-best-pkging-practice N: s#s-bpp-archindepdata when it should be http://www.debian.org/doc/developers-reference/best-pkging-practices.html#bpp-archindepdata Note that the url is broken in two lines and that the url is out of date. greetings -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#493944: php5-xapian: xapian.php is not in the include_path
Package: php5-xapian Version: 1.0.5-1 Severity: important Hey again, While trying the examples in /usr/share/doc/php5-xapian/examples: [EMAIL PROTECTED]:examples$ php5 simpleindex.php5 Warning: include(php5/xapian.php): failed to open stream: No such file or directory in /usr/share/doc/php5-xapian/examples/simpleindex.php5 on line 27 Warning: include(): Failed opening 'php5/xapian.php' for inclusion (include_path='.:/usr/share/php:/usr/share/pear') in /usr/share/doc/php5-xapian/examples/simpleindex.php5 on line 27 Usage: simpleindex.php5 PATH_TO_DATABASE The problem is that /usr/share/php5 is not in the include_path. Now, I don't know if this can be considered precisely a bug, at least a warning would be useful, rationale: - xapian docs tell you that after installing the php5 module, you can happily include xapian.php, like with my previous bug report, you usually expect installed modules to just work™. Hence you get a misterious error, until you find out that the include path is wrong. - this can be fixed by including directly /usr/share/php5/xapian.php, but I can imagine this is not optimal. So I suggest any of the following: - add a README.Debian with a mention to this. - make xapian.ini do some clever thing to include /usr/share/php5 in the include_path (maybe not ideal) - install xapian.php to /usr/share/php/ Perhaps I'm missing /something/ that creates a link to php5/ dir in /usr?. I'm including a brief dpkg -l here: [EMAIL PROTECTED]:examples$ dpkg -l|grep php5 ii php5-cgi 5.2.6-1ubuntu4 server-side, HTML-embedded scripting language (CGI bina ii php5-cli 5.2.6-1ubuntu4 command-line interpreter for the php5 scripting languag ii php5-common5.2.6-1ubuntu4 Common files for packages built from the php5 source ii php5-mysql 5.2.6-1ubuntu4 MySQL module for php5 ii php5-pgsql 5.2.6-1ubuntu4 PostgreSQL module for php5 ii php5-sqlite5.2.6-1ubuntu4 SQLite module for php5 ii php5-xapian1.0.5-1 Xapian search engine interface for PHP5 Thanks again, Diego
Bug#493941: php5-xapian does not work out of the box, php config file lacks .ini extension
Hey Olly On 8/5/08, Olly Betts <[EMAIL PROTECTED]> wrote: > > > Hopefully lenny can be released with this fixed, so I hope no one minds > > I set a high severity (kind of new with BTS policy still). > > I don't see how "serious" is justified (it's not a severe violation of > policy that I can see, and I don't feel it renders the package > unsuitable for release as you can still load the module by hand), so > I've lowered the severity to "important". Clearly it should be fixed > before the release though, and I certainly intended to. > I agree. Thanks for a quick and friendly response :). -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#491270: pulseaudio: PulseAudio freezes the boot process in some situations
tag 491270 fixed-upstream thanks Just letting you know that the patch is correct and was also fixed in upstream's head. Please include this patch in the debian package, pulseaudio will not see another release any time soon and 0.9.11 is not recommended for any stable purpose by its maintainer. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#493941: php5-xapian does not work out of the box, php config file lacks .ini extension
Package: php5-xapian Version: 1.0.5-1 Severity: serious Heya, today I installed php5-xapian and after realizing it's not working I jumped to /etc/php5/conf.d: [EMAIL PROTECTED]:~$ ls -l /etc/php5/conf.d/ total 36 -rw-r--r-- 1 root root 57 2008-06-20 10:28 mysqli.ini -rw-r--r-- 1 root root 56 2008-06-20 10:28 mysql.ini -rw-r--r-- 1 root root 52 2008-06-20 10:28 pdo.ini -rw-r--r-- 1 root root 60 2008-06-20 10:28 pdo_mysql.ini -rw-r--r-- 1 root root 65 2008-06-20 10:28 pdo_pgsql.ini -rw-r--r-- 1 root root 62 2008-06-20 10:28 pdo_sqlite.ini -rw-r--r-- 1 root root 61 2008-06-20 10:28 pgsql.ini -rw-r--r-- 1 root root 58 2008-06-20 10:28 sqlite.ini -rw-r--r-- 1 root root 58 2008-03-23 03:57 xapian Now, you can see that the only difference in there for xapian is the missing .ini extension. php5 will NOT use xapian until you rename that file to xapian.ini. Ok, here comes the rationale: 1. If you are installing that file there, I'm pretty sure you missed the .ini extension 2. Users expect the module to just work™, they are installing it for that in 90% of cases. If they want to install it but disable it, they know how for sure. 3. If you don't expect the module to be auto enabled on install, then put xapian.ini somewhere else, or with the contents commented or something Hopefully lenny can be released with this fixed, so I hope no one minds I set a high severity (kind of new with BTS policy still). I can give a hand providing a fix in case you don't have the time, let me know. Thank you -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#443934: Progress?
Hello! On 1/24/08, Christopher James Halse Rogers (RAOF) <[EMAIL PROTECTED]> wrote: > What is the progress of this ITP? Apart from the lack of license > headers in any of the source files, it seems a simple enough packaging > task, although I note that there have been a couple of upstream releases > since you created your packages. > > I can help, or take over, if you like. > Feel free to take over, I have lost interest. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#460334: lighttpd's /usr/sbin/lighty-*able-mod does not work if there's no perl-modules installed
Package: lighttpd Version: 1.4.13-4etch4 Severity: normal --- Please enter the report below this line. --- Hey! I'm reporting from my desktop so ignore the unstable mention in the bottom of the report. Ok, to the bug!. I installed a debian box yesterday, etch. Well I went on to configure my system and all the usual stuff, then I installed lighttpd, I read the README about lighty-*able-mod commands to ease the configuration of the server, glad to know about them I decided to save me some work by using them instead of manually link files. Thing is that they failed to run because of missing .pm stuff. A quick search in packages.debian.org showed me that I needed perl-modules. However lighttpd does not depend on it!. Now, the problem is that lighttpd is including commands or util scripts that require perl and perl is not a dependency of lighttpd. No, I'm not suggesting to make perl a dependency. Please don't do that :). What I would suggest is to write a simple shell script equivalent. I confess I haven't checked the scripts so I don't know how smart would this be. Just wanted to put my 2 ¢!. Thanks ;) --- System information. --- Architecture: i386 Kernel: Linux 2.6.23-1-686 Debian Release: lenny/sid 500 unstablewww.geexbox.org 500 unstablehttp.us.debian.org 500 unstableapt.debianchile.org --- Package information. --- Depends (Version) | Installed ===-+-=== | -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#376765:
Today, a clean sid installation produced an /etc/X11/X that pointed to /bin/true Maybe this is somewhat related. I'll report it as a new bug anyway. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#452894: Brightness is reduced when switching to a VT, using 3d games or switching resolution
Package: xserver-xorg-video-intel Version: 2:2.2.0-1 Severity: normal --- Please enter the report below this line. --- If I switch VTs, manually or automatically due GDM start or whatever, the screen brightness is reduced to 30%. You can reproduce this by openning zsnes, chromium or switching resolution/refresh on the screen resolution GNOME capplet. Also switching to contrl+alt+f1 or any other triggers the problem. --- System information. --- Architecture: i386 Kernel: Linux 2.6.22-3-686 Debian Release: lenny/sid 500 unstablehttp.us.debian.org --- Package information. --- Depends (Version) | Installed ==-+-= libc6 (>= 2.6.1-1) | 2.7-1 libdrm2 (>= 2.3.0) | 2.3.0-4 xserver-xorg-core (>= 2:1.4) | 2:1.4.1~git20071119-1 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#452896: EXA is (apparently) slower than XAA on some 2d operations
Package: xserver-xorg-video-intel Version: 2:2.2.0-1 Severity: normal --- Please enter the report below this line. --- Using EXA (the default) makes some windows redraw slowly enough to be annoying, XAA enhances the situation a bit, but it's still slow enough to be annoying. Dragging windows around makes the on-demand cpu governor jump to top cpu speed (not top cpu _usage_). Sadly this is highly subjective, I don't know how to prove this or offer better info than my opinion. --- System information. --- Architecture: i386 Kernel: Linux 2.6.22-3-686 Debian Release: lenny/sid 500 unstablehttp.us.debian.org --- Package information. --- Depends (Version) | Installed ==-+-= libc6 (>= 2.6.1-1) | 2.7-1 libdrm2 (>= 2.3.0) | 2.3.0-4 xserver-xorg-core (>= 2:1.4) | 2:1.4.1~git20071119-1 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#452897: /etc/X11/X points to /bin/true on a clean sid install.
Package: xserver-xorg Version: 1:7.3+6 Severity: serious --- Please enter the report below this line. --- Installing a base Etch system (just the base, no X or fancy stuff), migrating to Sid, and then apt-get installing xorg will install X succesfully but will make it useless because of /etc/X11/X pointing to /bin/true. GDM will fail showing an empty log. X will exit without any output ('true' is not really verbose). xinit and startx will fail with misterious errors like "server error" or "connection timed out". Calling Xorg directly on the console works fine. The problem can be fixed by linking /etc/X11/X to /usr/bin/Xorg. --- System information. --- Architecture: i386 Kernel: Linux 2.6.22-3-686 Debian Release: lenny/sid 500 unstablehttp.us.debian.org --- Package information. --- Depends (Version) | Installed ===-+-= xserver-xorg-core (>= 2:1.4-3) | 2:1.4.1~git20071119-1 xserver-xorg-video-all | OR xserver-xorg-video-2| xserver-xorg-input-all | OR xserver-xorg-input-2| debconf (>= 0.5) | 1.5.17 OR debconf-2.0 | xkb-data| 1.0~cvs.20070916-1 OR xkb-data-legacy | x11-xkb-utils | 7.3+1 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#452912: Fix for 429895 and 435682
Package: synaptic Version: 0.60 Severity: important Tags: patch --- Please enter the report below this line. --- The attached patch contains the required bits to integrate the patch in #435682 and in the process also provides a fix for #429895. Sorry if this is not your preferred way of receiving integration patches, but since I was worried on fixing this two issues on my system I ended up producing a single patch. Thanks for your time --- System information. --- Architecture: i386 Kernel: Linux 2.6.22-3-686 Debian Release: lenny/sid 500 unstablehttp.us.debian.org --- Package information. --- Depends (Version) | Installed ===-+-== libapt-inst-libc6.6-6-1.1 | libapt-pkg-libc6.6-6-4.6| libatk1.0-0 (>= 1.20.0) | 1.20.0-1 libc6(>= 2.7-1) | 2.7-1 libcairo2(>= 1.4.0) | 1.4.10-1 libfontconfig1 (>= 2.4.0) | 2.5.0-2 libgcc1(>= 1:4.2.1) | 1:4.2.2-3 libglade2-0(>= 1:2.6.1) | 1:2.6.2-1 libglib2.0-0(>= 2.14.0) | 2.14.3-1 libgtk2.0-0 (>= 2.12.0) | 2.12.1-3 libpango1.0-0 (>= 1.18.3) | 1.18.3-1 libstdc++6 (>= 4.2.1) | 4.2.2-3 libvte9 (>= 1:0.16.9) | 1:0.16.9-1 libx11-6| 2:1.0.3-7 libxft2 (>> 2.1.1) | 2.1.12-2 libxml2 | 2.6.30.dfsg-3 scrollkeeper| 0.3.14-15 diff -uN orig/synaptic-0.60/debian/patches/00list.Debian synaptic-0.60/debian/patches/00list.Debian --- orig/synaptic-0.60/debian/patches/00list.Debian 2006-02-28 08:33:05.0 + +++ synaptic-0.60/debian/patches/00list.Debian 2007-11-25 19:50:13.0 + @@ -0,0 +1,2 @@ +01_debian_desktop-file +02_debian_export-script diff -uN orig/synaptic-0.60/debian/patches/01_debian_desktop-file.dpatch synaptic-0.60/debian/patches/01_debian_desktop-file.dpatch --- orig/synaptic-0.60/debian/patches/01_debian_desktop-file.dpatch 1970-01-01 01:00:00.0 +0100 +++ synaptic-0.60/debian/patches/01_debian_desktop-file.dpatch 2007-11-25 19:50:09.0 + @@ -0,0 +1,17 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 01_debian_desktop-file by Diego Escalante Urrelo <[EMAIL PROTECTED]> +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Remove legacy Applications category and put the menu entry in System->Administration + [EMAIL PROTECTED]@ +diff -u data/synaptic.desktop.in synaptic-0.60/data/synaptic.desktop.in +--- data/synaptic.desktop.in 2007-06-10 19:58:57.0 +0100 data/synaptic.desktop.in 2007-11-25 19:31:46.0 + +@@ -8,5 +8,5 @@ + MultipleArgs=false + Type=Application + Encoding=UTF-8 +-Categories=PackageManager;Applications;GTK;System; ++Categories=PackageManager;GTK;System;Settings; + NotShowIn=KDE diff -uN orig/synaptic-0.60/debian/patches/02_debian_export-script.dpatch synaptic-0.60/debian/patches/02_debian_export-script.dpatch --- orig/synaptic-0.60/debian/patches/02_debian_export-script.dpatch 1970-01-01 01:00:00.0 +0100 +++ synaptic-0.60/debian/patches/02_debian_export-script.dpatch 2007-11-25 19:50:23.0 + @@ -0,0 +1,18 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 02_debian_export-script.dpatch by Diego Escalante Urrelo <[EMAIL PROTECTED]> +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Fixes a missing space. Patch by Avi Rozen <[EMAIL PROTECTED]> + [EMAIL PROTECTED]@ +--- gtk/rgmainwindow.cc 2007-06-10 23:25:47.0 +0300 gtk/rgmainwindow.cc 2007-08-02 12:30:49.0 +0300 +@@ -3352,7 +3352,7 @@ +ofstream out(file); +out << "#!/bin/sh" << endl; +for(int i=0;iAdministration. It also removes the legacy Applications category. + closes: #429895 + * 02_debian_export-script.dpatch: +- Adds a missing space in the export script that produced '-cURL' instead of + '-c URL'. Patch by Avi Rozen <[EMAIL PROTECTED]> + closes: #435682 + + -- Diego Escalante Urrelo <[EMAIL PROTECTED]> Sun, 25 Nov 2007 19:40:59 + + synaptic (0.60) unstable; urgency=low * moved most icons use the icontheme
Bug#429895: not fixed, but fix available
Hi, I added a patch to fix this on bug #452912, it's part of a patch fixing this and bug #435682. Please consider it, and sorry if it's too messy to have put it in another bug but I hope to get the other patch accepted to fix both things in one go. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#452894: ibm-acpi fault?
Adding more information, I added ibm-acpi to my /etc/modules so my thinkpad is fully acpi-functional and guess what? The brightness is not modified anymore!. I suspect that without ibm-acpi, acpid or something else was giving/reading bogus values about AC or battery and so the display kept dimming. Right now I don't have the problem. If the problem is the missing ibm-acpi module, how could we fix this? Should this be considered a mistake in the way the x driver decides to dim the screen and hence the way it's reading the info needed for this decision? or maybe this is more a acpid or acpi-support friends bug? -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#452894: Brightness is reduced when switching to a VT, using 3d games or switching resolution
On 11/27/07, Brice Goglin <[EMAIL PROTECTED]> wrote: > Diego Escalante Urrelo wrote: > > Package: xserver-xorg-video-intel > > Version: 2:2.2.0-1 > > Severity: normal > > > > --- Please enter the report below this line. --- > > > > If I switch VTs, manually or automatically due GDM start or whatever, > > the screen brightness is reduced to 30%. > > You can reproduce this by openning zsnes, chromium or switching > > resolution/refresh on the screen resolution GNOME capplet. Also > > switching to contrl+alt+f1 or any other triggers the problem. > > > > Can you try running >xrandr --output LVDS --set BACKLIGHT_CONTROL legacy > and see it changes anything? > > What if you try "combination", "kernel" or "native" instead? > Ok I tried that, but nothing changed. Or I should say that I couldn't trigger the bug. Note that the missing thinkpad|ibm-acpi module seems to be the cause. I quickly tried your command but nothing seems to have changed, I tried running zsnes with each variation of the command but nothing happened. Shall I try without the module? -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#417991: Don't include a system monitor in the default profile
Please don't :). Think about how many people will look for the system monitor, think about that they usually look for it in Windows because they want to kill something. Stuff can be killed in GNOME by just trying to close it, it will ask if you want to kill it since it's not responding. People that want to use the system-monitor can go to System ->Admin ->Monitor. Which IMHO is very intuitive. I would say this is not a bug. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#452896: Some more details
I tried again to further debug the problem, I noticed that Epiphay windows scrolling is hell slower under EXA than under XAA. I don't know if that helps, but so far is the only new thing I have found. greetings -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#452894: Brightness is reduced when switching to a VT, using 3d games or switching resolution
Hey Brice, On 11/27/07, Brice Goglin <[EMAIL PROTECTED]> wrote: > Diego Escalante Urrelo wrote: > > Package: xserver-xorg-video-intel > > Version: 2:2.2.0-1 > > Severity: normal > > > > --- Please enter the report below this line. --- > > > > If I switch VTs, manually or automatically due GDM start or whatever, > > the screen brightness is reduced to 30%. > > You can reproduce this by openning zsnes, chromium or switching > > resolution/refresh on the screen resolution GNOME capplet. Also > > switching to contrl+alt+f1 or any other triggers the problem. > > > > Can you try running >xrandr --output LVDS --set BACKLIGHT_CONTROL legacy > and see it changes anything? > > What if you try "combination", "kernel" or "native" instead? > After rebooting a few times, I have noted that it doesn't matter that thinkpad-acpi is loaded. I tried the command again after confirming the problem was happening on my current session, any of the arguments (legacy, combination, kernel, native) solved the problem. greetings -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#452894: Brightness is reduced when switching to a VT, using 3d games or switching resolution
On 12/1/07, Brice Goglin <[EMAIL PROTECTED]> wrote: > Diego Escalante Urrelo wrote: > > After rebooting a few times, I have noted that it doesn't matter that > > thinkpad-acpi is loaded. > > > > Hum, surprising. Do you have any other kernel module like this one loaded? > IIRC, thinkpad-acpi was ibm-acpi in earlier kernels. > Yes, you are right, the full lsmod: [EMAIL PROTECTED]:~$ lsmod Module Size Used by i915 22432 2 drm76020 3 i915 rfcomm 36280 0 l2cap 22432 5 rfcomm bluetooth 49348 4 rfcomm,l2cap button 7920 0 ac 5188 0 battery 9988 0 ipv6 236996 16 acpi_cpufreq9096 1 cpufreq_powersave 1792 0 cpufreq_userspace 4128 0 cpufreq_stats 5120 0 cpufreq_ondemand8300 1 freq_table 4512 3 acpi_cpufreq,cpufreq_stats,cpufreq_ondemand cpufreq_conservative 6888 0 reiserfs 220320 1 fuse 41908 3 dm_snapshot16900 0 dm_mirror 20928 0 dm_mod 52160 2 dm_snapshot,dm_mirror nvram 8488 1 ndiswrapper 173852 0 thinkpad_acpi 40364 0 loop 16932 0 pcmcia 37100 0 firmware_class 9504 1 pcmcia snd_intel8x0 32124 4 yenta_socket 24844 1 rsrc_nonstatic 11968 1 yenta_socket pcmcia_core37108 3 pcmcia,yenta_socket,rsrc_nonstatic iTCO_wdt9924 0 snd_intel8x0m 16684 0 snd_ac97_codec 92836 2 snd_intel8x0,snd_intel8x0m snd_pcm_oss39200 0 snd_mixer_oss 15424 1 snd_pcm_oss ac97_bus2272 1 snd_ac97_codec i2c_i8018656 0 snd_pcm72324 5 snd_intel8x0,snd_intel8x0m,snd_ac97_codec,snd_pcm_oss snd_timer 21028 1 snd_pcm snd48324 14 snd_intel8x0,snd_intel8x0m,snd_ac97_codec,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_timer i2c_core 23552 1 i2c_i801 psmouse36016 0 tsdev 7968 0 parport_pc 33828 0 parport33960 1 parport_pc rtc12856 0 shpchp 31060 0 pci_hotplug29184 1 shpchp soundcore 7520 1 snd serio_raw 6692 0 evdev 9312 4 pcspkr 3104 0 intel_agp 23188 1 agpgart31912 3 drm,intel_agp snd_page_alloc 10056 3 snd_intel8x0,snd_intel8x0m,snd_pcm ext3 121288 1 jbd55336 1 ext3 mbcache 8260 1 ext3 ide_cd 36416 0 cdrom 32832 1 ide_cd ide_disk 16512 5 generic 4836 0 [permanent] usbhid 25792 0 hid25248 1 usbhid piix8868 0 [permanent] ide_core 113764 4 ide_cd,ide_disk,generic,piix ata_generic 7556 0 libata115984 1 ata_generic scsi_mod 136620 1 libata e100 33644 0 mii 5280 1 e100 ehci_hcd 30796 0 uhci_hcd 22960 0 usbcore 125416 5 ndiswrapper,usbhid,ehci_hcd,uhci_hcd thermal13416 0 processor 31176 2 acpi_cpufreq,thermal fan 4836 0 > > I tried the command again after confirming the problem was happening > > on my current session, any of the arguments (legacy, combination, > > kernel, native) solved the problem. > > > > Any of them? But one of them should be enabled by default on X startup. > > What does > xrandr --prop > report after startup? > Is it different if thinkpad-acpi is loaded or not? > Right now it says: [EMAIL PROTECTED]:~$ xrandr --prop Screen 0: minimum 320 x 200, current 1024 x 768, maximum 1024 x 1024 VGA disconnected (normal left inverted right x axis y axis) LVDS connected 1024x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm BACKLIGHT_CONTROL: native supported: native legacy combination kernel BACKLIGHT: 0 (0x) range: (0,0) 1024x768 59.3 + 85.0 75.0*70.1 60.0 832x62474.6 800x60085.1 72.2 75.0 60.3 56.2 640x48085.0 72.8 75.0 59.9 720x40085.0 640x40085.1 640x35085.1 I can't reboot right now, I'll mail back when I have the info. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#459371: Caps lock led turns on/off when c.l. is used as compose key (it shouldn't)
Package: xserver-xorg Version: 1:7.3+7 Severity: normal --- Please enter the report below this line. --- Recently (I assume since Xorg 7.3) the caps lock led turns on/off when hit. Now, that's not a problem on average joe's case, but if you are using caps lock as compose key then you find out that you have a constant blinking on your keyboard when typing something. The old behaviour was to keep caps lock led off all the time no matter how many times I pressed it. When using it as compose key I mean. --- System information. --- Architecture: i386 Kernel: Linux 2.6.23-1-686 Debian Release: lenny/sid 500 unstablewww.geexbox.org 500 unstablehttp.us.debian.org 500 unstableapt.debianchile.org --- Package information. --- Depends (Version) | Installed ===-+-= debconf (>= 0.5) | 1.5.17 OR debconf-2.0 | x11-xkb-utils | 7.3+1 xkb-data| 1.0~cvs.20070916-1 OR xkb-data-legacy | xserver-xorg-core (>= 2:1.4-3) | 2:1.4.1~git20071212-1 xserver-xorg-input-all | OR xserver-xorg-input-2| xserver-xorg-video-all | OR xserver-xorg-video-2| -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#459371: Caps lock led turns on/off when c.l. is used as compose key (it shouldn't)
On 1/5/08, Brice Goglin <[EMAIL PROTECTED]> wrote: > Diego Escalante Urrelo wrote: > > Package: xserver-xorg > > Version: 1:7.3+7 > > Severity: normal > > > > --- Please enter the report below this line. --- > > > > Recently (I assume since Xorg 7.3) the caps lock led turns on/off when > > hit. Now, that's not a problem on average joe's case, but if you are > > using caps lock as compose key then you find out that you have a > > constant blinking on your keyboard when typing something. > > The old behaviour was to keep caps lock led off all the time no matter > > how many times I pressed it. When using it as compose key I mean. > > > > You should not use reportbug-ng for now, it doesn't include all required > information for debugging yet. > > Please send the whole output of > /usr/share/bug/xserver-xorg/script 3>&1 > so that we see your config and log. > Ok, using latest sid stuff (the problem still occurs): Contents of /var/lib/x11/X.roster: xserver-xorg /etc/X11/X target does not match checksum in /var/lib/x11/X.md5sum. X server symlink status: lrwxrwxrwx 1 root root 13 2007-11-24 11:58 /etc/X11/X -> /usr/bin/Xorg -rwxr-xr-x 1 root root 1672764 2007-12-21 19:43 /usr/bin/Xorg Contents of /var/lib/x11/xorg.conf.roster: xserver-xorg VGA-compatible devices on PCI bus: 00:02.0 VGA compatible controller: Intel Corporation 82852/855GM Integrated Graphics Device (rev 02) /etc/X11/xorg.conf does not match checksum in /var/lib/x11/xorg.conf.md5sum. Xorg X server configuration file status: -rw-r--r-- 1 root root 2223 2007-12-11 19:38 /etc/X11/xorg.conf Contents of /etc/X11/xorg.conf: Section "ServerLayout" Identifier "X.org Configured" Screen 0 "Screen0" 0 0 InputDevice"Mouse0" "CorePointer" InputDevice"Keyboard0" "CoreKeyboard" EndSection Section "Files" RgbPath "/etc/X11/rgb" ModulePath "/usr/lib/xorg/modules" FontPath "/usr/share/fonts/X11/misc" FontPath "/usr/share/fonts/X11/cyrillic" FontPath "/usr/share/fonts/X11/100dpi/:unscaled" FontPath "/usr/share/fonts/X11/75dpi/:unscaled" FontPath "/usr/share/fonts/X11/Type1" FontPath "/usr/share/fonts/X11/100dpi" FontPath "/usr/share/fonts/X11/75dpi" FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" EndSection Section "Module" Load "record" Load "glx" Load "extmod" Load "xtrap" Load "GLcore" Load "dri" Load "dbe" EndSection Section "InputDevice" Identifier "Keyboard0" Driver "kbd" EndSection Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/input/mice" Option "ZAxisMapping" "4 5 6 7" EndSection Section "Monitor" Identifier "Monitor0" VendorName "Monitor Vendor" ModelName"Monitor Model" EndSection Section "Device" ### Available Driver options are:- ### Values: : integer, : float, : "True"/"False", ### : "String", : " Hz/kHz/MHz" ### [arg]: arg optional #Option "ShadowFB" # [] #Option "KGAUniversal" # [] Identifier "Card0" Driver "intel" VendorName "Intel Corporation" BoardName "82852/855GM Integrated Graphics Device" BusID "PCI:0:2:0" Option "VBERestore" "true" Option "DRI" "true" Option "AccelMethod" "XAA" Option "XaaNoOffscreenPixmaps" EndSection Section "Screen" Identifier "Screen0" Device "Card0" Monitor"Monitor0" Option "Accel" "true" SubSection "Display" Viewport 0 0 Depth 8 EndSubSection SubSection "Display" Viewport 0 0 Depth 15 EndSubSection SubSection "Display" Viewport 0 0 Depth 16 EndSubSection SubSection "
Bug#459371: Caps lock led turns on/off when c.l. is used as compose key (it shouldn't)
On 1/6/08, Julien Cristau <[EMAIL PROTECTED]> wrote: > On Sat, Jan 5, 2008 at 18:10:56 -0500, Diego Escalante Urrelo wrote: > > > Recently (I assume since Xorg 7.3) the caps lock led turns on/off when > > hit. Now, that's not a problem on average joe's case, but if you are > > using caps lock as compose key then you find out that you have a > > constant blinking on your keyboard when typing something. > > The old behaviour was to keep caps lock led off all the time no matter > > how many times I pressed it. When using it as compose key I mean. > > > Doesn't seem to happen to me after setxkbmap -option compose:caps, the > caps lock led stays off. What exactly are your xkb options? (please > provide the output of xprop -root _XKB_RULES_NAMES). > [EMAIL PROTECTED]:~$ xprop -root _XKB_RULES_NAMES _XKB_RULES_NAMES(STRING) = "xorg", "pc105", "gb", "intl", "compose:caps" I used gnome-keyboard-properties to set caps as compose. If I use your command the led remains off and the output of the above command is the same. Weird! -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#452894: Brightness is reduced when switching to a VT, using 3d games or switching resolution
On 12/1/07, Brice Goglin <[EMAIL PROTECTED]> wrote: > Diego Escalante Urrelo wrote: > > After rebooting a few times, I have noted that it doesn't matter that > > thinkpad-acpi is loaded. > > > > Hum, surprising. Do you have any other kernel module like this one loaded? > IIRC, thinkpad-acpi was ibm-acpi in earlier kernels. > > > I tried the command again after confirming the problem was happening > > on my current session, any of the arguments (legacy, combination, > > kernel, native) solved the problem. > > > > Any of them? But one of them should be enabled by default on X startup. > > What does > xrandr --prop > report after startup? > Is it different if thinkpad-acpi is loaded or not? > I just got the bug again, here's the output: [EMAIL PROTECTED]:~$xrandr --prop Screen 0: minimum 320 x 200, current 1024 x 768, maximum 1024 x 1024 VGA disconnected (normal left inverted right x axis y axis) LVDS connected 1024x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm BACKLIGHT_CONTROL: kernel supported: native legacy combination kernel BACKLIGHT: 5 (0x0005) range: (0,7) 1024x768 59.3 + 85.0 75.0*70.1 60.0 832x62474.6 800x60085.1 72.2 75.0 60.3 56.2 640x48085.0 72.8 75.0 59.9 720x40085.0 640x40085.1 640x35085.1 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#452894: Brightness is reduced when switching to a VT, using 3d games or switching resolution
On 12/3/07, Brice Goglin <[EMAIL PROTECTED]> wrote: > Diego Escalante Urrelo wrote: > > I just got the bug again, here's the output: > > > > [EMAIL PROTECTED]:~$xrandr --prop > > Screen 0: minimum 320 x 200, current 1024 x 768, maximum 1024 x 1024 > > VGA disconnected (normal left inverted right x axis y axis) > > LVDS connected 1024x768+0+0 (normal left inverted right x axis y axis) 0mm > > x 0mm > > BACKLIGHT_CONTROL: kernel > > supported: native legacy combination kernel > > > > That's why you need thinkpad-acpi loaded, the X driver uses the "kernel" > interface. > t-acpi *is* loaded. Or am I misreading your comment? -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#452894: Brightness is reduced when switching to a VT, using 3d games or switching resolution
On 12/3/07, Brice Goglin <[EMAIL PROTECTED]> wrote: > Diego Escalante Urrelo wrote: > > On 12/3/07, Brice Goglin <[EMAIL PROTECTED]> wrote: > > > >> That's why you need thinkpad-acpi loaded, the X driver uses the "kernel" > >> interface. > >> > >> > > > > t-acpi *is* loaded. > > Ok, I am confused by all your earlier replies then. You seem to say that > t-acpi > being loaded does not change anything. Did you find any configuration > (I mean "is t-acpi loaded?" + "which backlight method does xrandr report?") > that always work or always fail? > Ok, let's summarise, sorry for the chaos: 1. Boot normally 2. Thinkpad acpi is loaded automagically 3. X starts via gdm 4. Brightness is reduced from 100% to 80%~70% 5. You set brightness back to top 6. You start zsnes or switch to a VT 7. Brightness goes back to 80%~70% 8. You change the backlight control via xrandr to *whatever* except kernel 9. Brightness stays at what you set That's the flow, the output of xrandr when the problem happens is: [EMAIL PROTECTED]:~$ xrandr --prop Screen 0: minimum 320 x 200, current 1024 x 768, maximum 1024 x 1024 VGA disconnected (normal left inverted right x axis y axis) LVDS connected 1024x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm BACKLIGHT_CONTROL: kernel supported: native legacy combination kernel BACKLIGHT: 6 (0x0006) range: (0,7) 1024x768 59.3 + 85.0 75.0*70.1 60.0 832x62474.6 800x60085.1 72.2 75.0 60.3 56.2 640x48085.0 72.8 75.0 59.9 720x40085.0 640x40085.1 640x35085.1 After setting to native: [EMAIL PROTECTED]:~$ xrandr --prop Screen 0: minimum 320 x 200, current 1024 x 768, maximum 1024 x 1024 VGA disconnected (normal left inverted right x axis y axis) LVDS connected 1024x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm BACKLIGHT_CONTROL: native supported: native legacy combination kernel BACKLIGHT: 0 (0x) range: (0,0) 1024x768 59.3 + 85.0 75.0*70.1 60.0 832x62474.6 800x60085.1 72.2 75.0 60.3 56.2 640x48085.0 72.8 75.0 59.9 720x40085.0 640x40085.1 640x35085.1 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#455685: Splashy makes GDM initscript fail (and hence, leaves system on VT1)
Package: splashy Version: 0.3.7-1 Severity: grave --- Please enter the report below this line. --- After updating to splashy 0.3.7, GDM broke. It didn't start anymore. A quick visit to init 1 allowed me to see the output of GDM initscript, that took me to the culprit: splashy. The problem was a bad if [] in line 178 of /etc/lsb-base-loggin.sh, which is referenced as a fix for bug #400598. I couldn't catch the exact message, sorry. But you might want to double-check that line. --- System information. --- Architecture: i386 Kernel: Linux 2.6.23-1-686 Debian Release: lenny/sid 500 unstablewww.geexbox.org 500 unstablehttp.us.debian.org --- Package information. --- Depends (Version) | Installed ===-+-== initramfs-tools | 0.91c libc6(>= 2.7-1) | 2.7-4 libdirectfb-1.0-0 | 1.0.1-3 libgcc1(>= 1:4.2.1) | 1:4.2.2-4 libglib2.0-0(>= 2.14.0) | 2.14.4-2 libmagic1 | 4.21-3 libsplashy1 | 0.3.7-1 lsb-base| 3.1-24 zlib1g(>= 1:1.2.3.3.dfsg-1) | 1:1.2.3.3.dfsg-7 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#455699: New away-back patch makes "mark as away" useless.
Package: xchat-gnome Version: 1:0.18-2 Severity: normal --- Please enter the report below this line. --- Recently, or at least what I recall from the logs, there was a patch from SVN included to fix the away-back problem that made impossible to get back from away using the checkbox in the nickname window. Well now it's the other way around, it's impossible to go away!. Marking as back is fine (unchecking the box works). But checking the box has no effect... I blame the new patch! :p --- System information. --- Architecture: i386 Kernel: Linux 2.6.23-1-686 Debian Release: lenny/sid 500 unstablewww.geexbox.org 500 unstablehttp.us.debian.org --- Package information. --- Depends (Version) | Installed =-+-=== libatk1.0-0 (>= 1.20.0) | 1.20.0-1 libc6 (>= 2.7-1) | 2.7-4 libcairo2 (>= 1.4.0) | 1.4.10-1.2 libdbus-1-3(>= 1.1.1) | 1.1.2-1 libdbus-glib-1-2(>= 0.74) | 0.74-1 libgconf2-4 (>= 2.13.5) | 2.20.1-1 libglade2-0 (>= 1:2.6.1) | 1:2.6.2-1 libglib2.0-0 (>= 2.14.0) | 2.14.4-2 libgnome2-0 (>= 2.17.3) | 2.20.1.1-1 libgnomeui-0 (>= 2.17.1) | 2.20.1.1-1 libgnomevfs2-0 (>= 1:2.17.90) | 1:2.20.1-1 libgtk2.0-0 (>= 2.12.0) | 2.12.3-1 libnotify1 (>= 0.4.4) | 0.4.4-3 libnotify1-gtk2.10| libpango1.0-0 (>= 1.18.3) | 1.18.3-1 libperl5.8 (>= 5.8.8) | 5.8.8-12 libsexy2 (>= 0.1.8) | 0.1.11-2 libssl0.9.8 (>= 0.9.8f-1) | 0.9.8g-3 libx11-6 | 2:1.0.3-7 libxext6 | 1:1.0.3-2 python2.4 (>= 2.3.90) | 2.4.4-6 tcl8.4 (>= 8.4.5) | 8.4.16-4 xchat-gnome-common (= 1:0.18-2) | 1:0.18-2 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#513855: nautilus: BACKSPACE produces bell
Oh, please note that this was an actual bug upstream (so perhaps it wasn't compiz): http://bugzilla.gnome.org/show_bug.cgi?id=452067 It has been fixed though (in the 2.20 branch). Anyway it should be fixed for you now (either way). -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#519458: tasksel --help shows \t instead of tabs
Subject: tasksel --help shows \t instead of tabs Package: tasksel Version: 2.78 Severity: minor *** Please type your report below this line *** fresh lenny install. ssia. -- System Information: Debian Release: 5.0 APT prefers stable APT policy: (500, 'stable') Architecture: i386 (i686) Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core) Locale: LANG=es_PE.UTF-8, LC_CTYPE=es_PE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages tasksel depends on: ii aptitude 0.4.11.11-1~lenny1 terminal-based package manager ii debconf [debconf-2.0] 1.5.24 Debian configuration management sy ii liblocale-gettext-per 1.05-4 Using libc functions for internati ii tasksel-data 2.78 Official tasks used for installati tasksel recommends no packages. tasksel suggests no packages. -- debconf information: tasksel/title: tasksel/desktop: gnome tasksel/first: Standard system tasksel/tasks: -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#519458: tasksel --help shows \t instead of tabs
Just confirmed in another Lenny install, and tried with xterm. On 3/12/09, Joey Hess wrote: > Diego Escalante Urrelo wrote: > > Subject: tasksel --help shows \t instead of tabs > > Can't reproduce, perhaps your pager or terminal is broken? > > > -- > see shy jo > > -BEGIN PGP SIGNATURE- > Version: GnuPG v1.4.9 (GNU/Linux) > > iD8DBQFJuacud8HHehbQuO8RAmlwAJ9mBelsu3XIEoNAHiccMDVH2ZVLGQCbB5V8 > DlhaSh8swfyM1ycbagned4Y= > =mD9N > -END PGP SIGNATURE- > > > -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#519458: tasksel --help shows \t instead of tabs
You are right! The problem is not present with LANG=C; however using es_PE.UTF-8 I see the problem. On 3/13/09, Christian Perrier wrote: > Quoting Diego Escalante Urrelo (diegu...@gmail.com): > > Just confirmed in another Lenny install, and tried with xterm. > > > > What is your locale? > > The problem might be in the translation if that's not en English locale. > > > -BEGIN PGP SIGNATURE- > Version: GnuPG v1.4.9 (GNU/Linux) > > iEYEARECAAYFAkm59e8ACgkQ1OXtrMAUPS2NIQCfYf/Ok7VnV04buYWqrMs8nlNS > SYUAn17wyy/6H41uAe8VwTib8tYIA4vQ > =x5s2 > -END PGP SIGNATURE- > > > -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#520078: Tomboy description in Add applet dialog is not translated when on es_PE.UTF-8
Package: tomboy Version: 0.10.2-1 Over the weekend I installed a debian lenny pc, I set the locale to be es_PE.UTF-8 and found that in the "Add applet" dialog of gnome-panel tomboy's description was not translated. Perhaps you want to pick up translations from SVN or ask people from translations team. Thank you. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#443952: ITP: nodoka-theme -- Nodoka metacity theme
No, I lost interest on it. Feel free to take it over or close it. On 3/19/09, Julien Valroff wrote: > Hi Diego, > > This ITP is 18 months old, and while the gtk2 engine was actually > uploaded, I cannot see any new regarding the metacity theme. > Are you still working on it? > > Cheers, > Julien > > > -- > Membre de l'April - « promouvoir et défendre le logiciel libre » - > http://www.april.org > > Rejoignez maintenant plus de 4 000 personnes, associations, entreprises > et collectivités qui soutiennent notre action > > > > -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#443952: ITP: nodoka-theme -- Nodoka metacity theme
Nope, had something at mentors.debian.net long time ago, but not anymore. I recall I based my package on silicon-theme package or some similar one. On 3/20/09, Julien Valroff wrote: > owner 443952 ! > thanks > > Hi, > > Thanks, I will take over this package. > > Do you already have work available somewhere? > > Cheers, > Julien > > Le jeudi 19 mars 2009 à 16:40 -0500, Diego Escalante Urrelo a écrit : > > > No, I lost interest on it. Feel free to take it over or close it. > > > > On 3/19/09, Julien Valroff wrote: > > > Hi Diego, > > > > > > This ITP is 18 months old, and while the gtk2 engine was actually > > > uploaded, I cannot see any new regarding the metacity theme. > > > Are you still working on it? > > > > > > Cheers, > > > Julien > > > > > > > > > -- > > > Membre de l'April - « promouvoir et défendre le logiciel libre » - > > > http://www.april.org > > > > > > Rejoignez maintenant plus de 4 000 personnes, associations, entreprises > > > et collectivités qui soutiennent notre action > > > > > > > > > > > > > > > > -- > > Membre de l'April - « promouvoir et défendre le logiciel libre » - > http://www.april.org > > Rejoignez maintenant plus de 4 000 personnes, associations, entreprises > et collectivités qui soutiennent notre action > > -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#564540: gvfs-backends: Canon camera not auto mounted by gphoto2 backend, manually accessing gphoto2://[usb:id] works though
Package: gvfs-backends Version: 1.4.3-1 Severity: important I'm running sid, with nautilus and friends up to date. Since 1 or 2 months ago I'm unable to use my Canon Powershot A590 IS as always: 1. plug it in via usb 2. turn it on 3. see nautilus automount it thanks to gphoto2 gvfs backend 4. happiness I remind that this broke around the time of 1.4.1-5, when HAL was apparently removed from gvfs packages. The current situation is: 1. plug the camera via usb 2. turn it on 3. nothing happens No unit is shown in nautilus' computer://, nor automount happens. *HOWEVER* I can access my camera with nautilus by manually typying the camera id, right now for example: nautilus gphoto2://[usb:001015]/ The camera is listed then as a mounted unit but just as "Digital Camera (usb:001015)". I can access my photos and do stuff as usual. The camera is accessible to f-spot or any application using gphoto2, even gphoto2 itself: ~$ gphoto2 --auto-detect Modelo Puerto -- Canon PowerShot A590 ISusb: lsusb sees it without problem: ~$ lsusb Bus 003 Device 003: ID 046d:c018 Logitech, Inc. Optical Wheel Mouse Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 001 Device 016: ID 04a9:3176 Canon, Inc. PowerShot A590 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub and udev (set to debug log level) prints this to daemon.log: udevd[2051]: seq 1305 queued, 'add' 'usb' udevd[2051]: passed 273 bytes to monitor 0x836e1f0 udevd-work[2932]: seq 1305 running udevd-work[2932]: device 0x836e0a8 has devpath '/devices/pci:00/:00:1d.7/usb1/1-4' udevd-work[2932]: device 0x837cec0 has devpath '/devices/pci:00/:00:1d.7/usb1' udevd-work[2932]: device 0x836e358 has devpath '/devices/pci:00/:00:1d.7' udevd-work[2932]: device 0x836e280 has devpath '/devices/pci:00' udevd-work[2932]: GROUP 46 /etc/udev/rules.d/025_libgphoto2.rules:160 udevd-work[2932]: MODE 0664 /etc/udev/rules.d/025_libgphoto2.rules:160 udevd-work[2932]: PROGRAM 'check-ptp-camera 06/01/01' /etc/udev/rules.d/025_libgphoto2.rules:967 udevd-work[2932]: 'check-ptp-camera 06/01/01' started udevd[2051]: seq 1306 queued, 'add' 'usb' udevd-work[2932]: 'check-ptp-camera 06/01/01' returned with exitcode 0 udevd-work[2932]: GROUP 46 /etc/udev/rules.d/025_libgphoto2.rules:967 udevd-work[2932]: MODE 0664 /etc/udev/rules.d/025_libgphoto2.rules:967 udevd-work[2932]: GROUP 119 /etc/udev/rules.d/10-vboxdrv.rules:3 udevd-work[2932]: MODE 0664 /etc/udev/rules.d/10-vboxdrv.rules:3 udevd-work[2932]: LINK 'char/189:16' /lib/udev/rules.d/50-udev-default.rules:2 udevd-work[2932]: file '/sys/devices/pci:00/:00:1d.7/usb1/1-4/descriptors' appeared after 0 loops udevd-work[2932]: NAME 'bus/usb/001/017' /lib/udev/rules.d/50-udev-default.rules:37 udevd-work[2932]: IMPORT 'usb_id --export /devices/pci:00/:00:1d.7/usb1/1-4' /lib/udev/rules.d/70-acl.rules:8 udevd-work[2932]: 'usb_id --export /devices/pci:00/:00:1d.7/usb1/1-4' started usb_id[8783]: custom logging function 0x8ca3008 registered usb_id[8783]: device 0x8ca30a0 has devpath '/devices/pci:00/:00:1d.7/usb1/1-4' udevd-work[2932]: '/lib/udev/usb_id' (stdout) 'ID_VENDOR=Canon_Inc.' udevd-work[2932]: '/lib/udev/usb_id' (stdout) 'ID_VENDOR_ENC=Canon\x20Inc.' udevd-work[2932]: '/lib/udev/usb_id' (stdout) 'ID_VENDOR_ID=04a9' udevd-work[2932]: '/lib/udev/usb_id' (stdout) 'ID_MODEL=Canon_Digital_Camera' udevd-work[2932]: '/lib/udev/usb_id' (stdout) 'ID_MODEL_ENC=Canon\x20Digital\x20Camera' udevd-work[2932]: '/lib/udev/usb_id' (stdout) 'ID_MODEL_ID=3176' udevd-work[2932]: '/lib/udev/usb_id' (stdout) 'ID_REVISION=0002' udevd-work[2932]: '/lib/udev/usb_id' (stdout) 'ID_SERIAL=Canon_Inc._Canon_Digital_Camera_EBFB2B4D7FCE405BA68274C630705D7A' udevd-work[2932]: '/lib/udev/usb_id' (stdout) 'ID_SERIAL_SHORT=EBFB2B4D7FCE405BA68274C630705D7A' udevd-work[2932]: '/lib/udev/usb_id' (stdout) 'ID_BUS=usb' udevd-work[2932]: '/lib/udev/usb_id' (stdout) 'ID_USB_INTERFACES=:060101:' udevd-work[2932]: 'usb_id --export /devices/pci:00/:00:1d.7/usb1/1-4' returned with exitcode 0 udevd-work[2932]: RUN 'udev-acl --action=$env{ACTION} --device=$env{DEVNAME}' /lib/udev/rules.d/70-acl.rules:73 udevd-work[2932]: RUN 'socket:@/org/freedesktop/hal/udev_event' /lib/udev/rules.d/90-hal.rules:2 udevd-work[2932]: MODE 0664 /lib/udev/rules.d/91-permissions.rules:41 udevd-work[2932]: created db file for '/devices/pci:00/:00:1d.7/usb1/1-4' in '/dev/.udev/db/usb:1-4' udevd-work[2932]: creating device node '
Bug#984763: systemd: Please include configurable systemd prefixes in Debian 11's systemd (fixed upstream)
Package: systemd Version: 246.6-5 Severity: important Tags: patch X-Debbugs-Cc: die...@gnome.org Dear Maintainer, In systemd-247.*, the `systemd.pc` file was modified to hard-code `/usr/lib` as the prefix of a bunch of systemd paths. This broke build tools like `jhbuild`, that configure and install into a custom prefix for development and testing purposes. The above issue was fixed usptream in: https://github.com/systemd/systemd/commit/60bce7c6d9606185114df1bdcd5ea100407688b8#diff-3dce99316f44198c53d8147020aaca9c8931b5248587c64c098fdcef8ed4da03 However the above has not been backported by upstream to v247-stable: https://github.com/systemd/systemd-stable/blob/v247-stable/src/core/systemd.pc.in I'm filling against Debian, and not upstream, since I don't know if Debian plans to keep updating to the following 247.n versions, or if 247.3 will be frozen for all of Debian 11. If it's the second case, then it would be really helpful to cherry-pick the above fix so that the `systemd.pc` file is fully functional. Thanks! -- Package-specific info: -- System Information: Debian Release: bullseye/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Kernel: Linux 5.10.0-3-amd64 (SMP w/4 CPU threads) Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_USER, TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE=en_US:en Shell: /bin/sh linked to /usr/bin/dash Init: systemd (via /run/systemd/system) LSM: AppArmor: enabled Versions of packages systemd depends on: ii adduser 3.118 ii libacl1 2.2.53-9 ii libapparmor1 2.13.6-3 ii libaudit11:3.0-1 ii libblkid12.36.1-7 ii libc62.31-6 ii libcap2 1:2.44-1 ii libcrypt11:4.4.17-1 ii libcryptsetup12 2:2.3.4-1 ii libgcrypt20 1.8.7-2 ii libgnutls30 3.7.0-5 ii libgpg-error01.38-2 ii libidn2-02.3.0-4 ii libip4tc21.8.7-1 ii libkmod2 28-1 ii liblz4-1 1.9.3-1 ii liblzma5 5.2.5-1.0 ii libmount12.36.1-7 ii libpam0g 1.4.0-2 ii libpcre2-8-0 10.36-2 ii libseccomp2 2.5.1-1 ii libselinux1 3.1-2+b2 ii libsystemd0 246.6-5 ii libzstd1 1.4.8+dfsg-1 ii mount2.36.1-4 ii systemd-timesyncd [time-daemon] 246.6-5 ii util-linux 2.36.1-4 Versions of packages systemd recommends: ii dbus 1.12.20-1 Versions of packages systemd suggests: ii policykit-10.118-1 pn systemd-container Versions of packages systemd is related to: ii dracut 051-1 pn initramfs-tools ii libnss-systemd 246.6-5 ii libpam-systemd 246.6-5 hi udev 246.6-5 -- Configuration Files: /etc/systemd/journald.conf changed [not included] /etc/systemd/logind.conf changed [not included] -- no debconf information
Bug#971335: broadcom-sta: [patch] Driver improvements, cleanups, fixes
Source: broadcom-sta Version: cfg80211 functionality updates, cleanups, fixes Severity: normal Tags: patch X-Debbugs-Cc: die...@gnome.org Hi, I've been working on a few improvements to this driver, trying (hopelessly) to fix the disconnect issues on my particular card + router combination. Although my original goal has failed miserably, I was able to figure out a couple of other fixes for common issues with this card. I have pushed a branch to salsa, which includes the following fixes: * Make power management commands actually work (the driver ignores turning PM off) * Correctly read the value of TX power (the notorious "200dBm" bug) * Correctly refuse MAC address changing (fixes network-manager disconnects because of "random / custom mac address" * Cleanup a few compiler warnings, and cfg80211 API usage The branch is here: https://salsa.debian.org/diegoe-guest/broadcom-sta/-/commits/diegoe_debian While working on the above I also figured that I might as well try to create a proof of concept "new upstream" without all the cruft from the 10 years of kernel versions conditionals: https://salsa.debian.org/diegoe-guest/broadcom-sta/-/commits/frankenwl My "frankenwl" branch is functionally the same as the above "diegoe_debian" branch, but it certainly makes it less convoluted to try and find problems in the code going forward. That said, I wasn't sure what would be the best way to proceed, or if it was a smart thing to do anyway. I guess this package is on "life support" on most distros, so I doubt there would be a objections on creating a shared new upstream (but I'm not familiar with the packaging of this driver in Debian, or other distros). I also tried, naively, to contact cypress/broadcom to inquiry about a newer firmware blob dump, or just a new code dump. Of course, no response. I think it's worth highlighting that the kernel bcmf80211 driver is very similar to the broadcom-sta code, which lead me to believe that it can work with the cards supported only by broadcom-sta, we just need the firmware blob and plug the loose ends. Anyway, this is probably never going to happen, unless someone figures out how to extract the (say, in my case) BCM4360 software-side firmware blob from the linux or mac or windows driver. Anyway, I wanted to share this work here so it's considered for inclusion for the upcoming Debian stable. At the very least this solves a few nitpicks (power settings, tx set/get) that degrade the user experience and a serious issue (mac address failures) that usually gets new users stuck and confused (random NM disconnections). I'm also aware that cards supported by this driver are "old" but most computers trapped in the broadcom-sta driver are perfectly functional today and will be for a few more years. In my particular case I'm running a macbookpro11,1 (2013) which works flawlessly except for the wifi! (Hah!) -- And I understand most other macbookpro models from around 2013 share this or similar Broadcom cards that use this driver. All those machines should be perfectly functional with Debian right now, and for a few more years. Hope to hear your feedback, I'm glad to cleanup this branch as you see fit to get it merged into the package. Diego -- System Information: Debian Release: bullseye/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Kernel: Linux 5.7.0-3-amd64 (SMP w/4 CPU threads) Kernel taint flags: TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE=en_US:en Shell: /bin/sh linked to /usr/bin/dash Init: systemd (via /run/systemd/system) LSM: AppArmor: enabled
Bug#971728: malcontent-gui: Missing .policy file prevents service from working
Package: malcontent-gui Version: 0.9.0-1 Severity: grave Tags: patch Justification: renders package unusable X-Debbugs-Cc: die...@gnome.org Hi, it seems that there's a missing .policy file in the .install file for `malcontent-gui`, specifically: `usr/share/polkit-1/actions/org.freedesktop.MalcontentControl.policy` I opened a MR a few weeks ago for that: https://salsa.debian.org/freedesktop-team/malcontent/-/merge_requests/2 Since gnome-control-center now depends on malcontent, the broken functionality (no ability to _use_ malcontent-gui) is now exposed to all users. You'll notice this issue when you open `malcontent-control`, which will warn you that there's no data for users, and you should fix your accountsservice. The message is somewhat confusing, because the reason for the failure is that the .policy file is missing. Thanks! -- System Information: Debian Release: bullseye/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Kernel: Linux 5.7.0-3-amd64 (SMP w/4 CPU threads) Kernel taint flags: TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE=en_US:en Shell: /bin/sh linked to /usr/bin/dash Init: systemd (via /run/systemd/system) LSM: AppArmor: enabled Versions of packages malcontent-gui depends on: ii libaccountsservice00.6.55-3 ii libc6 2.31-3 ii libcairo2 1.16.0-4 ii libgdk-pixbuf2.0-0 2.40.0+dfsg-5 ii libglib2.0-0 2.66.0-2 ii libgtk-3-0 3.24.23-1 ii libmalcontent-ui-0-0 0.9.0-1 ii libpolkit-gobject-1-0 0.117-1 ii malcontent 0.9.0-1 malcontent-gui recommends no packages. malcontent-gui suggests no packages. -- no debconf information
Bug#971335: broadcom-sta: [patch] Driver improvements, cleanups, fixes
Hey Roger, Apologies for the radio silence. I just saw that this email ended up in the spam folder :(. Thanks for your comments and eagerness to welcome and test this, I'm really glad that more people will find this useful :) :) Some comments: On Thu, Oct 1, 2020 at 11:08 AM Roger Shimizu wrote: > > My "frankenwl" branch is functionally the same as the above > > "diegoe_debian" branch, but it certainly makes it less convoluted to try > > and find problems in the code going forward. That said, I wasn't sure > > what would be the best way to proceed, or if it was a smart thing to do > > anyway. I guess this package is on "life support" on most distros, so I > > doubt there would be a objections on creating a shared new upstream (but > > I'm not familiar with the packaging of this driver in Debian, or other > > distros). > > Since the upstream seems not active for quite a few years, so I think > it's totally fine if you want to fork. > And if you do so, I'm happy to update debian package to follow your > forked git repo. > Do you think it would be worth it to reach out to maintainers at a few main distros and see if there's any interest to collaborate on this? When I was trying to figure out the issues with my card (see below) I noticed that most distros either copy+paste patches, or brew their own slightly different versions. > > I'm also aware that cards supported by this driver are "old" but most > > computers trapped in the broadcom-sta driver are perfectly functional > > today and will be for a few more years. In my particular case I'm > > running a macbookpro11,1 (2013) which works flawlessly except for the > > wifi! (Hah!) -- And I understand most other macbookpro models from > > around 2013 share this or similar Broadcom cards that use this driver. > > All those machines should be perfectly functional with Debian right now, > > and for a few more years. > > Yes, I also have two mac devices that use this driver. > Thanks for your effort to make the driver better. I wonder if you have run into the connection timeouts/unstable wifi issues that many other users run into? I have been trying to debug why and when this issue happens, but perhaps you might have any clue or anecdote that might help figure this out. The issue seems to appear when using certain (seemingly old) APs that do not implement anything newer than 802.11n -- meaning that anything with 802.11ac is usually free of the issue. The problem manifests as sudden very high latency, and sometimes lost ARP/identity towards the AP. I have been unable to debug the issue, but I have reasonably eliminated WMM, power saving (both PCI/card and 802.11 protocol), b/g/n, and a few other suspects. >From my own testing it would seem that the firmware blob in the card (or the blob uploaded by the driver) simply stops reporting new packets, either queuing them, or simply dropping them silently, which on user space manifests as progressively higher latency and eventual lost of connectivity until resync/reconnection happens, or the firmware behaves again. I don't have the proper network hardware to test the router side, so I can't 100% confirm what's going on. AFAIK, these cards have a hybrid firmware model where there's a ROM firmware in the card, but by design you have/can upload a RAM firmware that allows the OEM/IHV to upload new features or fix bugs. Fairly standard, I understand. But my current hypothesis is that the particular card I have is an slightly custom module by Apple that has certain buggy behaviors that get corrected with the RAM firmware made by Apple. To give some support to this hypothesis, my current card + AP combo exhibited the same buggy behavior under OSX. However, this buggy behavior got fixed on OSX a few months after the last ever release of broadcom-sta for Linux. My hypothesis is that whatever bug that this ROM firmware has with slow or old APs (whether a Broadcom or Apple integration bug), got fixed by Apple or Broadcom in an updated RAM firmware, but said fix missed the window of the last ever broadcom-sta. Anyway, my current understanding is that we can't fix the described problem with the "open" part of the driver. It is the firmware part that is the problem, so unless someone learns or knows how to extract the firmware from the binary blob in OSX/Windows, and then use that in Linux, or something like that, then the use case of "old weird AP + this card" is broken under Linux (under some undetermined circumstances). Rant over. Thought I would share the above info anyway, in case you might have any clue or anecdote that could help figure this out.
Bug#973462: ITP: podcasts -- Podcast application for GNOME written in Rust
Package: wnpp Followup-For: Bug #973462 X-Debbugs-Cc: die...@gnome.org I'm working on the GNOME stack side of things, with a bunch of updated crates already: https://salsa.debian.org/marvil07/debcargo-conf/-/commits/diegoe_gnome-stack At the very least, these should be updated and fine: glib-macros: package 0.10.1 proc-macro-crate: package 0.1.5 pangocairo-sys: update to 0.11.0 gtk-sys: update to 0.10.0 gdk-sys: update to 0.10.0 cairo-sys-rs: update to 0.10.0 gdk-pixbuf-sys: update to 0.10.0 gio-sys: update to 0.10.1 winapi: update to 0.3.9 atk-sys: update to 0.10.0 pango-sys: update to 0.10.0 gobject-sys: update to 0.10.0 glib-sys: update to 0.10.1 Of course, it's all pointless unless the full chain of deps is updated, but here's where I ran into problems: I'm currently stuck trying to update futures-*, because futures-task does not build its corresponding +feature packages when `debcargo` is run with `--config` (which is the case when using the `debcargo-conf` scripts), this stops me from updating other futures-* crates. It seems that debcargo behaves differently when a config override is passed, as the Provides: list and a few other things change: With --config (...)/debcargo.toml: ``` Package: librust-futures-task-dev Architecture: any Multi-Arch: same Depends: ${misc:Depends}, librust-once-cell-1+default-dev (>= 1.3.1-~~) Provides: librust-futures-task+default-dev (= ${binary:Version}), librust-futures-task+std-dev (= ${binary:Version}), librust-futures-task-0-dev (= ${binary:Version}), librust-futures-task-0+default-dev (= ${binary:Version}), librust-futures-task-0+std-dev (= ${binary:Version}), librust-futures-task-0.3-dev (= ${binary:Version}), librust-futures-task-0.3+default-dev (= ${binary:Version}), librust-futures-task-0.3+std-dev (= ${binary:Version}), librust-futures-task-0.3.7-dev (= ${binary:Version}), librust-futures-task-0.3.7+default-dev (= ${binary:Version}), librust-futures-task-0.3.7+std-dev (= ${binary:Version}) ``` Without --config: ``` Package: librust-futures-task-dev Architecture: any Multi-Arch: same Depends: ${misc:Depends} Recommends: librust-futures-task+std-dev (= ${binary:Version}) Suggests: librust-futures-task+once-cell-dev (= ${binary:Version}) Provides: librust-futures-task+alloc-dev (= ${binary:Version}), librust-futures-task+cfg-target-has-atomic-dev (= ${binary:Version}), librust-futures-task+unstable-dev (= ${binary:Version}), librust-futures-task-0-dev (= ${binary:Version}), librust-futures-task-0+alloc-dev (= ${binary:Version}), librust-futures-task-0+cfg-target-has-atomic-dev (= ${binary:Version}), librust-futures-task-0+unstable-dev (= ${binary:Version}), librust-futures-task-0.3-dev (= ${binary:Version}), librust-futures-task-0.3+alloc-dev (= ${binary:Version}), librust-futures-task-0.3+cfg-target-has-atomic-dev (= ${binary:Version}), librust-futures-task-0.3+unstable-dev (= ${binary:Version}), librust-futures-task-0.3.7-dev (= ${binary:Version}), librust-futures-task-0.3.7+alloc-dev (= ${binary:Version}), librust-futures-task-0.3.7+cfg-target-has-atomic-dev (= ${binary:Version}), librust-futures-task-0.3.7+unstable-dev (= ${binary:Version}) ``` I'm still learning about rust, so I'm clueless about what's going on here, or if it's even a bug in debcargo (since this only happens when passed a --config option).