Bug#647780: tortoisehg now supports Mercurial 2.0
Package: tortoisehg Version: 2.1.4-1 Severity: important Dear Maintainer, Since version 12363 (f3817a7abb17) hgversion: carry minor digit to major like 1.9 to 2.0 https://bitbucket.org/tortoisehg/thg/changeset/f3817a7abb17 tortoisehg can work with Mercurial 2.0 but package dependency is mercurial << 1.11 Please update package dependency. --- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 3.1-0.slh.5-aptosid-686 (SMP w/2 CPU cores; PREEMPT) Locale: LANG=uk_UA.UTF-8, LC_CTYPE=uk_UA.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages tortoisehg depends on: ii mercurial 2.0-2 ii python 2.7.2-9 ii python-gobject 2.28.6-5 ii python-qscintilla2 2.5.1-1+b1 ii python-qt4 4.8.6-2 ii python2.6 2.6.7-4 ii python2.7 2.7.2-6 Versions of packages tortoisehg recommends: ii libjs-jquery 1.6.4-1 ii libjs-underscore 1.1.6-2 ii python-iniparse 0.4-2.1 ii python-pygments 1.4+dfsg-2 tortoisehg suggests no packages. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#512679: initramfs-tools: 'more' pager is broken in initramfs shell
Wow. Almost 3 years later and this is still broken. Dave -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#645970: Bug #645970
Ryo, I think you meant to say that this package Recommends: python2.6, not Suggests: . Otherwise, I do believe this is a bug. It's annoying because if a system already has python2.7, and you go to install this package, apt-get(8) [in its default configuration] will want to pull in python2.6 for no good reason at all. -- Daniel Richard G. || sk...@iskunk.org My ASCII-art .sig got a bad case of Times New Roman. -- Daniel Richard G. || sk...@iskunk.org My ASCII-art .sig got a bad case of Times New Roman. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610933: libvdeplug3 declares a conflict with libvdeplug2
# no upgrade path severity 610933 serious # (luckily this package is only in experimental) quit Jonathan Nieder wrote: > libvdeplug3 declares > > Conflicts: libvdeplug2 > Replaces: libvdeplug2 [...] > Is the conflict needed? Raising severity so users can tell to avoid it for now. Thanks for packaging recent vde. If there's anything I can provide to help (a patch?), just ask. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647557: find: invalid predicate '-delete'
On 2011-11-05 Dominique wrote: > On Sat, Nov 5, 2011 at 11:52 AM, Andreas Metzler < > ametz...@downhill.at.eu.org> wrote: [...] >> What do >> /usr/bin/find --version >> and >> md5sum /usr/bin/find >> say? > root@mx:~# /usr/bin/find --version > GNU find version 4.1 > root@mx:~# md5sum /usr/bin/find > 98596eaad65b9f748fca2dcf48a9b3ef /usr/bin/find Hello, This is not the Debian binary. apt-get --reinstall install findutils You might want to check what else was strangely changed. (debsums -s). cu andreas PS: Please stop top quoting, thanks. http://www.netmeister.org/news/learn2quote.html -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647153: kbd ignores code page set if font is not set: setting code page to match BIOS font doesn't work
Hi Joshua, On Sun, Oct 30, 2011 at 04:05:43PM -0700, Joshua wrote: > patch: > > --- debian/kbd.init.orig 2011-10-30 15:35:30.0 -0700 > +++ debian/kbd.init 2011-10-30 15:35:58.0 -0700 > @@ -121,7 +121,7 @@ > fi > > # Global default font+map > -if [ -z "${HAVE_SETUPCON}" -a "${CONSOLE_FONT}" ]; then > +if [ -z "${HAVE_SETUPCON}" ]; then > [ "$VERBOSE" != "no" ] && log_action_begin_msg "Setting up general > console font" > sfm="${FONT_MAP}" && [ "$sfm" ] && sfm="-u $sfm" > acm="${CONSOLE_MAP}" && [ "$acm" ] && acm="-m $acm" Thanks for your report. I’ll make this dependent on whether one of $CONSOLE_FONT, $CONSOLE_MAP, or $FONT_MAP is set. Cheers, -- Michael Schutte | michi@{uiae.at,debian.org} Innsbruck, Austria| happily accepting encrypted mail OpenPGP: 0x16fb 517b a866 c3f6 8f11 1485 f3e4 122f 1D8C 261A signature.asc Description: Digital signature
Bug#642503: [PATCH/RFC systemd] audit: do not complain if kernel lacks audit support
]] Jonathan Nieder | When running on a kernel without audit support, systemd currently | writes a mysterious-sounding error to its log: | | systemd[1]: Failed to connect to audit log: Protocol not supported | | Better to suppress the audit_open() failure message when (and only | when) it is due to running on a kernel without audit support, since in | this case the admin probably does not mind systemd not writing to the | audit log. This way, more serious errors like ENOMEM and EACCES will | stand out more. Thanks, I've committed this upstream, it'll be in systemd 38. -- Tollef Fog Heen UNIX is user friendly, it's just picky about who its friends are -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647577: ticgit: use + for truncated lines (or detect UTF-8)
Hi David! On Thu, Nov 03, 2011 at 10:02:52PM -0500, David Fries wrote: > ticgit-ng/cli.rb is blindly outputting characters that don't work on > all terminals > sub_value = "#{value[0, size - 1]}\xe2\x80\xa6" > replace it with a single character that does, > sub_value = "#{value[0, size - 1]}+" > If it's going to use the UTF-8 escape sequence it needs to first check > $LANG or something to verify UTF-8 is supported otherwise it shows up > as garbage. Thanks for your report. This seems to be the only occurrence of a non-ASCII character throughout the code, escaped or unescaped. I’ll apply your patch in the next upload. Cheers, -- Michael Schutte | michi@{uiae.at,debian.org} Innsbruck, Austria| happily accepting encrypted mail OpenPGP: 0x16fb 517b a866 c3f6 8f11 1485 f3e4 122f 1D8C 261A signature.asc Description: Digital signature
Bug#647190: /etc/exim4/conf.d/router/???_*: have a uniform header
tag 647190 confirmed wontfix thanks On Mon, Oct 31, 2011 at 07:31:27AM -0700, Regid Ichira wrote: > With > $ sed -sn '2,3p' /etc/exim4/conf.d/router/???_* > ### router/100_exim4-config_domain_literal > # > # router/150_exim4-config_hubbed_hosts > # > ### router/200_exim4-config_primary > # > ### router/300_exim4-config_real_local > # > ### router/400_exim4-config_system_aliases > # > ### router/500_exim4-config_hubuser > # > ### router/600_exim4-config_userforward > # > procmail: > debug_print = "R: procmail for $local_part@$domain" > ### router/800_exim4-config_maildrop > # > ### router/850_exim4-config_lowuid > # > ### router/900_exim4-config_local_user > # > ### router/mmm_mail4root > # > one can see that 2 files in /etc/exim4/conf.d/router/ do not > maintain the uniform header. I think other sections of the > split configuration also stick to the same header. Yes. The uniform headers are introduced when the file is touched anyway. A conffile change causes prompts for a lot of users on package installations, so we rather refrain from doing gratuitous changes in comments. I agree that having uniform headers is nice, but I also think that not bothering users with dpkg-conffiles prompts during update for comment changes is the more important things. The uniform headers are going to be introduced when the files are touched anyway for the next time. Thanks for caring, and thanks for your patch. Greetings Marc -- - Marc Haber | "I don't trust Computers. They | Mailadresse im Header Mannheim, Germany | lose things."Winona Ryder | Fon: *49 621 31958061 Nordisch by Nature | How to make an American Quilt | Fax: *49 621 31958062 -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#642499: systemd: uses dmesg as a soapbox re separate /usr
Zbigniew Jędrzejewski-Szmek wrote: > I think that the message, as it is now, is reasonable. The reason why it is > printed every time in a fairly verbose way is: > Some things will probably break (sometimes even silently) in > mysterious ways. > So that if something fails, one doesn't have to look in a readme for a hint. > > Systemd doesn't really care itself about /usr being separate, but the > maintainers don't want to receive bug reports if e.g. udev rules break I _guess_ that makes a weird kind of sense for upstream if the users are really so stupid[*]. But surely Debian users can be relied on to read /usr/share/bug/systemd/presubj before reporting bugs against the wrong package. dmesg is not the right place for this kind of warning, when nothing worse happened than the user choosing a supported configuration at installation time. Imagine if all packages put such defensive warnings about bugs, not necessarily cross-distro, that they have nothing to do with there. :) Thanks for the clarification. [*] Aside: I don't actually think the users are so helpless. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647695: spyder: segfaults right after start
> libqtwebkit4 (2.1.0~2011week09-3 -> 2.1.0~2011week13-2) ok so the problem is here >> that way I should prevent spyder to be installed with the wrong libqtwebkit4 > how? to me python-qt4 must be fixed with the right libqtwebkit4 version like other libqtxxx libraries >> well, it's indeed a bug in spyder that it doesn't declare the correct >> relationship with other pkgs (it doesn't even say it needs >> libwebkit...) Yes to use spyder you just need python-qt4 which itself depends of libqtwebkit. to build src:spyder from sources you do not ever need to install python-qt4, this is just python bytecode. Package: python-qt4 Version: 4.8.6-2 Installed-Size: 23326 Maintainer: Debian Python Modules Team Architecture: i386 Replaces: python-qt4-common, python-qt4-dev (<< 4.4.4-3~) Provides: python2.6-qt4, python2.7-qt4 Depends: python2.7 | python2.6, python (>= 2.6.6-7~), python (<< 2.8), libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libpython2.7 (>= 2.7), libqt4-declarative (>= 4:4.7.0), libqt4-designer (>= 4:4.7.0), libqt4-help (>= 4:4.7.0), libqt4-network (>= 4:4.7.0), libqt4-script (>= 4:4.7.0), libqt4-scripttools (>= 4:4.7.0), libqt4-svg (>= 4:4.7.0), libqt4-test (>= 4:4.7.0), libqt4-xml (>= 4:4.7.0), libqt4-xmlpatterns (>= 4:4.7.0), libqtassistantclient4 (>= 4.6.3), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.7.1), libqtwebkit4, libstdc++6 (>= 4.1.1), sip-api-8.1 Suggests: python-qt4-dbg Conflicts: python-qt4-common Breaks: python-kde4 (<= 4:4.6.80-3+b1), python-qscintilla2 (<= 2.5.1-1), python-qt4-dbg (<< 4.8.3-3), python-qt4-gl (<< 4.8.3-3), python-qt4-gl-dbg (<< 4.8.3-3), python-qt4-phonon (<< 4.8.3-3), python-qt4-phonon-dbg (<< 4.8.3-3), python-qt4-sql (<< 4.8.3-3), python-qt4-sql-dbg (<< 4.8.3-3), python-qwt3d-qt4 (<< 0.1.7~cvs20090625-7), python-qwt5-qt4 (<= 5.2.1~cvs20091107+dfsg-6) look python-qt depends of an unversionned libqtwebkit4, to me this is the problem, am I right ? I would put libqtwebqit4 (>=2.1.0~2011week13-1) If I look into the python-qt4 control file, the dependencies are generated only with shlibs:Depends. and the Build-Depends: debhelper (>= 7), libdbus-1-dev (>= 1.0.2), libphonon-dev (>= 4:4.2.0-2), libqt4-dev (>= 4:4.7.0), libqt4-opengl-dev, libqtassistantclient-dev, libqtwebkit-dev, is on un unversionned libqtwebkit-dev. libqtwebkit do not provide the right shlib dependency ? what is you opinion, and the right way to solve this issue ? Cheers, Frederic -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#642503: [PATCH/RFC systemd] audit: do not complain if kernel lacks audit support
Tollef Fog Heen wrote: > Thanks, I've committed this upstream, it'll be in systemd 38. Thanks for looking it over, and glad to hear you are part of upstream these days. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#604391: Apper status for Debian?
Hi Matthias, As a Debian developer and KDE user who wants to convert his parents' laptop away from Windows, I found your ITP while investigating the current state of KDE package managers on Debian. You've already done packaging work for Apper in (K)Ubuntu, and in fact it seems to have released in oneiric universe, which is great. Thank you for doing this! However your Debian ITP was filed almost a year ago and the last update to this bug in the Debian BTS was in August. What are your plans for adapting your packaging to Debian? If you need a sponsor for the first few uploads and until you're a DM, I'm happy to review your work, and I'm sure that many other DDs would be too. You seem to already be the maintainer of most PackageKit packages in Debian and applied for DM status two months ago, so I imagine you are familiar enough with Debian Policy and the like. If I do collaborate with you on this, I will make sure to involve the Debian QT/KDE team so that we can pay attention to their policies and practices as well, where relevant. If you have decided that you don't want to maintain Apper in Debian proper, I can take over the ITP, but I'll defer to you first. It would be quite helpful to have a working and reasonably bug-free package manager for KDE in Wheezy, which is currently targeted for freeze in June 2012 and then for release as soon it is sufficiently high-quality. Thanks again for your efforts thus far, - Jimmy Kaplowitz ji...@debian.org (I'm Hydroxide on irc.debian.org - feel free to collaborate with me there, but still please do respond to the bug with your plans.) -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#646360: guestfs: python bindings don't appear to work with python 3
Neil Wilson wrote: > Package: guestfs > Version: 1.12.8-1 > Severity: serious > Tags: sid > Justification: fails to build from source > > While building on Ubuntu, I'm getting the following from the build system. > This bug might be fixed by latest upload (verioned 1.14.1-2). At least, I don't see those warnings anymore... Note that this bug is blocking OCaml 3.12.1 from migration to testing. I'd appreciate a quick answer from the maintainer on the status of this bug. Regards, -- Mehdi Dogguy -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647589: yafaray-blender2.5-exporter: Unable to enable exporter in the plugins configuration
tags 647589 + pending thanks - - - Finally, with the help of Olaf Arnold (member of upstream team for yafaray exporter), I got to a solution for the issue and pushed the "really working" version to the git repository. Now I'm waiting for my sponsor to upload the stuff to the official archives. So I'm tagging this bug as pending, since it only lacks the upload to be completely closed ;-) Thanks for your contribution to Debian! mfv -- Il messaggio e' stato analizzato alla ricerca di virus o contenuti pericolosi da MailScanner, ed e' risultato non infetto. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#589498: making custom hook scripts more powerful
Hi, currently the same hook scripts are run in several contexts but they can't really distinguish where they are being run. Adding a few more environment variables should help and could eventually reduce the number of possible (and duplicate) script locations I propose the following: add two new environment variables PIUPARTS_TEST=install|upgrade|distupgrade PIUPARTS_PHASE=install|upgrade|distupgrade that can be evaluated by the scripts. PIUPARTS_TEST denotes one of the three tests PIUPARTS_PHASE changes over time: * install is the first installation: - the only one (using the packages-under-test) for TEST=install, - first time (using packages from the distribution) for TEST=upgrade and TEST=distupgrade * upgrade is used for TEST=upgrade for the second installation (packages-under-test) (and also for the distupgrade test where I'd like to add something like -d NEW that finally upgrades to the packages-under-test * distupgrade is used for the "reinstallation" after a distupgrade in the distupgrade test Eventually some more environment variables may be useful: PIUPARTS_DISTRIBUTION (always) PIUPARTS_DISTRIBUTION_NEXT (pre_distupgrade_) PIUPARTS_DISTRIBUTION_PREV (post_distupgrade_) This effectively obsoletes pre/post_upgrade_ scripts. Example trace for TEST=upgrade: post_setup_* (already there) record the system state that is expected to be restored afterwards export PIUPARTS_TEST=install|upgrade|distupgrade pre_test_* (new hook) export PIUPARTS_PHASE=install pre_install_* install packages post_install_* export PIUPARTS_PHASE=upgrade pre_install_* upgrade packages post_install_* remove,post_remove,purge,post_purge,... post_test_* (new hook) check that the system state is as expected better names for pre/post_test_* welcome - these are for global changes that are to be reverted before the state comparision, e.g. installation of unrelated (as in depends) but possibliy interacting packages (diversions, alternatives, ...) that don't neccessarily fit into post_setup_. Also the distupgrade test (first do nothing round) needs some hook scripts to be executed afterwards: _post_setup_* _pre_test_* do _pre_distupgrade_* _post_distupgrade_* while ... _post_test_* record state restart for second round and do package installations and run install/remove/purge scripts compare state With these thoughts, I'd like to put this patch on hold: [PATCH 2/2] add more locations for hook scripts Andreas PS: do you have a term for the "packages under test", i.e. those passed as .deb (or .changes) and that are the "final target" of an installation/upgrade? (compared to their package names and predecessor versions taken from the distribution archive) -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#637278: systemd: reboot doesn't work
]] Russell Coker | I have a system that is tracking unstable. I just ran the "reboot" command | and saw the following in the syslog. It will not reboot. Just to make sure, the reboot command here comes from sysvinit, not systemd or another init, right? Are you still able to verify this with systemd 37? Cheers, -- Tollef Fog Heen UNIX is user friendly, it's just picky about who its friends are -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#642499: systemd: uses dmesg as a soapbox re separate /usr
]] Jonathan Nieder | I _guess_ that makes a weird kind of sense for upstream if the users | are really so stupid[*]. But surely Debian users can be relied on to | read /usr/share/bug/systemd/presubj before reporting bugs against the | wrong package. dmesg is not the right place for this kind of warning, | when nothing worse happened than the user choosing a supported | configuration at installation time. Just for the record: I don't really care deeply either way, but I also wish to keep the delta between systemd in Debian and system upstream as small as possible, so I'm not going to change this in the Debian packaging. If somebody wants to champion this upstream and get it changed (or get the mount-/usr-from-initramfs dance into initramfs-tools), pleasefeel free to. I'm just not interested in expending effort on it. Cheers, -- Tollef Fog Heen UNIX is user friendly, it's just picky about who its friends are -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#589867: firmware-b43-lpphy-installer
Hi Zachary, Il giorno sab, 05/11/2011 alle 11.46 -0600, Zachary Harris ha scritto: > ... If these options don't work for some BCM4312 > users, then how about at least putting this information in a README file > in the firmware-b43-lpphy-installer package? For this reason, I prefer your last solution. README file is coming with new version of firmware-b43-lpphy-installer Thank you. Cheers, Fabrizio signature.asc Description: This is a digitally signed message part
Bug#634876: [Fwd: Re: Totem custom patch]
fyi -- Tomas Kral Forwarded Message > From: Bastien Nocera > Reply-to: Bastien Nocera > To: Tomas Kral > Subject: Re: Totem custom patch > Date: Wed, 02 Nov 2011 12:37:01 +0100 (CET) > > On Tue, 2011-11-01 at 20:08 +0100, Tomas Kral wrote: > > Dear Bastien, > > > > I have been experiencing slow DVD playback using totem with gstreamer > > back end. > > > > I have filed a bug at > > > > https://bugzilla.gnome.org/show_bug.cgi?id=654383 > > GStreamer | gstreamer (core) | 0.10.x > > > > I have a workaround that plays smoothly. > > My question is, how I could compile it to totem? > > > > I have sources and gstreamer development libs installed. > > Totem doesn't have any custom pipelines, it just uses playbin2. If > playbin2 is broken, then it needs to be fixed. > -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647740: ITP: libvertfo - library abstracting event loop interfaces
On Sat, 2011-11-05 at 13:34 -0400, Sam Hartman wrote: > package: wnpp > severity: wishlist > > URL: https://fedorahosted.org/libverto/ > Description: libverto provides a common interface on top of libev, > libevent, glib, tevent. > The goal is to allow development of asynchronous libraries that > will work with whatever event loop an application happens to be using > Features include automatic detection of which event loops are in a > particular process space and support for writing new event loop > modules. It appears that 'work with' means 'sneakily insert itself into' and 'automatic detection' means 'dubious hacks'. What could possibly go wrong? [...] > I'm packaging this because it's a dependency for MIT Kerberos 1.10. [...] Then MIT Kerberos appears to be doomed. Please point your upstream at: https://git.kernel.org/?p=linux/kernel/git/kay/libabc.git;a=blob_plain;f=README http://blogs.msdn.com/b/oldnewthing/archive/2005/02/14/372266.aspx Ben. -- Ben Hutchings You can't have everything. Where would you put it? signature.asc Description: This is a digitally signed message part
Bug#646682: bad crackling audio
Hi After reboot I noticed this in logs and bad crackling audio with also other programs like Kaffeine. No matter which settings I used in pulseaudio volume manager, also with Active profile: output:analog-surround-51+input:analog-stereo alsa force-reaload and /etc/init.d/pulseaudio restart, no help. reboot again fixed problem Nov 3 22:26:33 lrdlnx pulseaudio[10012]: [alsa-sink] alsa-sink.c: T??m?? on luultavasti ohjelmavirhe ALSA-ajurissa ???snd_emu10k1???. Raportoi t??st?? ongelmasta ALSA-kehitt??jille. Taustaprosessi her??tettiin POLLOUT asetettuna, snd_pcm_avail() palautti kuitenkin 0 tai jonkin muun arvon, joka on < min_avail. Nov 3 22:26:40 lrdlnx kernel: irq 19: nobody cared (try booting with the "irqpoll" option) Nov 3 22:26:40 lrdlnx kernel: Pid: 0, comm: swapper Tainted: P C O 3.0.0.003-lrdlnx-i3 #1 Nov 3 22:26:40 lrdlnx kernel: Call Trace: Nov 3 22:26:40 lrdlnx kernel: [] ? __report_bad_irq+0x26/0xaf Nov 3 22:26:40 lrdlnx kernel: [] ? note_interrupt+0x125/0x198 Nov 3 22:26:40 lrdlnx kernel: [] ? handle_irq_event_percpu+0xfa/0x10c Nov 3 22:26:40 lrdlnx kernel: [] ? io_apic_sync+0x7/0xb Nov 3 22:26:40 lrdlnx kernel: [] ? __io_apic_modify_irq+0x4f/0x57 Nov 3 22:26:40 lrdlnx kernel: [] ? io_apic_sync+0x7/0xb Nov 3 22:26:40 lrdlnx kernel: [] ? __io_apic_modify_irq+0x4f/0x57 Nov 3 22:26:40 lrdlnx kernel: [] ? handle_irq_event+0x29/0x3f Nov 3 22:26:40 lrdlnx kernel: [] ? handle_level_irq+0x8f/0x8f Nov 3 22:26:40 lrdlnx kernel: [] ? handle_fasteoi_irq+0x63/0x7f Nov 3 22:26:40 lrdlnx kernel:[] ? do_IRQ+0x31/0x95 Nov 3 22:26:40 lrdlnx kernel: [] ? irq_exit+0x83/0x8e Nov 3 22:26:40 lrdlnx kernel: [] ? smp_apic_timer_interrupt+0x6f/0x7c Nov 3 22:26:40 lrdlnx kernel: [] ? common_interrupt+0x30/0x38 Nov 3 22:26:40 lrdlnx kernel: [] ? poll_idle+0x1b/0x76 Nov 3 22:26:40 lrdlnx kernel: [] ? cpuidle_idle_call+0x66/0x96 Nov 3 22:26:40 lrdlnx kernel: [] ? cpu_idle+0x82/0xb0 Nov 3 22:26:40 lrdlnx kernel: [] ? start_kernel+0x356/0x35b Nov 3 22:26:40 lrdlnx kernel: [] ? loglevel+0x14/0x14 Nov 3 22:26:40 lrdlnx kernel: [] ? i386_start_kernel+0xa1/0xaa Nov 3 22:26:40 lrdlnx kernel: handlers: Nov 3 22:26:40 lrdlnx kernel: [] ahci_interrupt Nov 3 22:26:40 lrdlnx kernel: [] snd_emu10k1_interrupt Nov 3 22:26:40 lrdlnx kernel: Disabling IRQ #19 -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#640235: debarchiver: Several improvements for english man page
Hello Valéry, On Sat, Nov 05, 2011 at 09:41:11PM +0100, Valéry Perrin wrote: > There is also, > 1/ the updated makefile to generate and install the german translation : > Makefile > 2/ the updated po4a config file for handle the german translation : po4a.cfg Yes, these are necessary, since without (i.e. in 0.9.8) the German man page is not generated :-(( Thanks for providing! I updated it to include the German addendum. > But missing the german addendum. If Helge Kreutzmann provide this, put > this in po4a directory and just add "add_de:./debarchiver.add.de" to the > end of the last line in po4a.cfg file. I already provided it, but it seems to have fallen throught the cracks. It is attached to this e-mail again, also fixed a minor bug so that it gets actually included in the generated man page. > This two last files are not perfect (but works fine) but I do not have > time to do better immediatly, especially if there would be many other > languages. I think they'll do for now. If wanted, I can provide more generic ones later, if wanted. > By the way, there is a typo error in original man page. You wrote > "configuratiln" instead "configuration" in string #80. Dont correct this > immediatly, because the translated strings becoming "fuzzy". I reported this and some other ones in #640235. Also while testing this I noticed (unfortunately) two more typos in the German translation, therefor I attached it as well again. So, Ola, could you please: a) copy the Makefile from Valeries report into po4a b) copy the attached debarchiver.add.de and debarchiver.add.fr (from Valérys e-mail) into po4a c) copy the attached po4a config file (po4a.cfg) into po4a as well d) copy the updated fr.po from Valérys e-mail and the updated de.po from this e-mail into po4a/po For your convenience, I tarball which did all this is available from http://www.helgefjell.de/data/debarchiver_0.9.9.tar.gz When you work on #640235 do not hesitate to contact me or Valéry so that we can help you in the process (and avoid unnecessary work). Greetings Helge -- Dr. Helge Kreutzmann deb...@helgefjell.de Dipl.-Phys. http://www.helgefjell.de/debian.php 64bit GNU powered gpg signed mail preferred Help keep free software "libre": http://www.ffii.de/ # German translation of the debarchiver program messages # This file is distributed under the same license as the debarchiver package. # (C) Helge Kreutzmann , 2011. msgid "" msgstr "" "Project-Id-Version: debarchiver 0.9.6\n" "POT-Creation-Date: 2011-11-02 22:28+0100\n" "PO-Revision-Date: 2011-11-06 10:38+0100\n" "Last-Translator: Helge Kreutzmann \n" "Language-Team: debian-l10n-ger...@lists.debian.org\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. type: =head1 #: debarchiver.pod:1 msgid "NAME" msgstr "NAME" #. type: textblock #: debarchiver.pod:3 msgid "debarchiver - Tool to sort debian packages into a package archive." msgstr "" "debarchiver - Werkzeug zum Sortieren von Debian-Paketen in ein Paketarchiv" #. type: =head1 #: debarchiver.pod:5 msgid "SYNOPSIS" msgstr "ÜBERSICHT" #. type: textblock #: debarchiver.pod:7 msgid "debarchiver [options]" msgstr "debarchiver [Optionen]" #. type: =head1 #: debarchiver.pod:9 msgid "DESCRIPTION" msgstr "BESCHREIBUNG" #. type: textblock #: debarchiver.pod:11 msgid "" "The debian archiver is a tool that installs debian packages into a file " "structure suitable for apt-get, aptitude, dselect and similar tools. This " "can be used for updating the Debian system. It is meant to be used by local " "administrators that need special packages, or tweaked versions to ease " "administration." msgstr "" "Der Debian-Archivar ist ein Werkzeug, um Debian-Pakete in eine Dateistruktur " "zu installieren, die für Apt-get, Aptitude, Dselect und ähnliche Werkzeuge " "geeignet ist. Dies kann zur Aktualisierung des Debian-Systems verwandt " "werden. Es ist für lokale Administratoren zur Erleichterung gedacht, die " "besondere Pakete oder angepasste Versionen benötigen." #. type: textblock #: debarchiver.pod:13 msgid "" "The file structure is based on the potato file structure and does not " "support package pools." msgstr "" "Die Dateistruktur basiert auf der Dateistruktur von Potato und untertützt " "keine Paket-Pools." #. type: =head1 #: debarchiver.pod:15 msgid "OPTIONS" msgstr "OPIONEN" #. type: =item #: debarchiver.pod:19 msgid "B<-a | --autoscan>" msgstr "B<-a | --autoscan>" #. type: textblock #: debarchiver.pod:21 msgid "Does both --autoscanpackages and --autoscansources." msgstr "Kombiniert --autoscanpackages und --autoscansources" #. type: =item #: debarchiver.pod:23 msgid "B<--autoscanall>" msgstr "B<--autoscanall>" #. type: textblock #: debarchiver.pod:25 msgid "Same as --scanall --autoscan." msgstr "Identisch zu --scanall
Bug#647781: gdm3 should display current keyboard layout
Package: gdm3 Version: 3.0.4-4 Severity: important Tags: l10n upstream Dear Maintainer, *** Please consider answering these questions, where appropriate *** * What led up to the situation? Use of a computer with more than one keyboard, and more than one keyboard layout. * What exactly did you do (or not do) that was effective (or ineffective)? An user tries to log-in, using the "wrong" keyboard * What was the outcome of this action? Different things can explain that he is not able to log-in (wrong password, wrong keyboard). * What outcome did you expect instead? An indication for the keyboard layout in use. A way to switch to the right keyboard layout. *** End of the template - remove these lines *** -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable') Architecture: amd64 (x86_64) Kernel: Linux 3.0.0-2-amd64 (SMP w/4 CPU cores) Locale: LANG=fr_FR.utf8, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages gdm3 depends on: ii accountsservice 0.6.15-1 ii adduser 3.113 ii dconf-gsettings-backend 0.7.5-3 ii debconf [debconf-2.0] 1.5.41 ii gconf2 2.32.4-1 ii gnome-session [x-session-manager] 3.0.2-3 ii gnome-session-bin 3.0.2-3 ii gnome-session-fallback [x-session-manager] 3.0.2-3 ii gnome-terminal [x-terminal-emulator]3.0.1-1 ii gsettings-desktop-schemas 3.0.1-1 ii libaccountsservice0 0.6.15-1 ii libatk1.0-0 2.2.0-2 ii libattr11:2.4.46-3 ii libaudit0 1.7.18-1 ii libc6 2.13-21 ii libcairo-gobject2 1.10.2-6.1 ii libcairo2 1.10.2-6.1 ii libcanberra-gtk3-0 0.28-3 ii libcanberra00.28-3 ii libdbus-1-3 1.4.16-1 ii libdbus-glib-1-20.98-1 ii libfontconfig1 2.8.0-3 ii libfreetype62.4.7-2 ii libgconf2-4 2.32.4-1 ii libgdk-pixbuf2.0-0 2.24.0-1 ii libglib2.0-02.28.8-1 ii libglib2.0-bin 2.28.8-1 ii libgtk-3-0 3.0.12-2 ii libpam-modules 1.1.3-5 ii libpam-runtime 1.1.3-5 ii libpam0g1.1.3-5 ii libpango1.0-0 1.29.4-2 ii librsvg2-common 2.34.1-3 ii libselinux1 2.1.0-4 ii libupower-glib1 0.9.14-1 ii libwrap07.6.q-21 ii libx11-62:1.4.4-2 ii libxau6 1:1.0.6-3 ii libxdmcp6 1:1.1.0-3 ii libxklavier16 5.1-2 ii libxrandr2 2:1.3.2-2 ii lsb-base3.2-28 ii metacity [x-window-manager] 1:2.34.1-2 ii policykit-1-gnome 0.104-2 ii upower 0.9.14-1 ii xterm [x-terminal-emulator] 276-1 Versions of packages gdm3 recommends: ii at-spi 1.32.0-1 ii desktop-base 6.0.7 ii gnome-icon-theme 3.2.1.2-1 ii gnome-power-manager3.0.2-3 ii gnome-settings-daemon 3.0.3-3 ii x11-xkb-utils 7.6+4 ii xserver-xephyr 2:1.11.1.902-1 ii xserver-xorg 1:7.6+9 ii zenity 3.2.0-1 Versions of packages gdm3 suggests: ii gnome-mag 1:0.16.3-1 ii gnome-orca ii gok ii libpam-gnome-keyring 3.0.3-2 ii metacity 1:2.34.1-2 -- debconf information: * shared/default-x-display-manager: gdm3 gdm3/daemon_name: /usr/sbin/gdm3 -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#604391: Apper status for Debian?
Hi! The Apper package is ready and I'm just waiting for a sponsor :) The package source code can be found here: http://anonscm.debian.org/gitweb/?p=pkg-packagekit/apper.git Some stuff could be done on this package (like splitting out a -data package), but basically the package is ready. (And already tested on Ubuntu) The biggest problem with Apper in general is the bad shape of the APT backend in PackageKit, it would need much more work. (and it lacks some features, like multiarch support) I'm planning to work on the aptcc backend as soon as I have time for it. But Apper is the package manager with the best KDE integration :) It would be great if you could sponsor Apper for me! (And I'll try to improve aptcc for Wheezy) Cheers, Matthias P.S: I already filed an RFS and also asked on #debian-qt-kde for sponsorship, but no luck so far :P 2011/11/6 Jimmy Kaplowitz : > Hi Matthias, > > As a Debian developer and KDE user who wants to convert his parents' laptop > away from Windows, I found your ITP while investigating the current state of > KDE package managers on Debian. You've already done packaging work for Apper > in > (K)Ubuntu, and in fact it seems to have released in oneiric universe, which is > great. Thank you for doing this! However your Debian ITP was filed almost a > year ago and the last update to this bug in the Debian BTS was in August. > > What are your plans for adapting your packaging to Debian? If you need a > sponsor for the first few uploads and until you're a DM, I'm happy to review > your work, and I'm sure that many other DDs would be too. You seem to already > be the maintainer of most PackageKit packages in Debian and applied for DM > status two months ago, so I imagine you are familiar enough with Debian Policy > and the like. If I do collaborate with you on this, I will make sure to > involve > the Debian QT/KDE team so that we can pay attention to their policies and > practices as well, where relevant. > > If you have decided that you don't want to maintain Apper in Debian proper, I > can take over the ITP, but I'll defer to you first. It would be quite helpful > to have a working and reasonably bug-free package manager for KDE in Wheezy, > which is currently targeted for freeze in June 2012 and then for release as > soon it is sufficiently high-quality. > > Thanks again for your efforts thus far, > > - Jimmy Kaplowitz > ji...@debian.org > > (I'm Hydroxide on irc.debian.org - feel free to collaborate with me there, but > still please do respond to the bug with your plans.) > > > -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#611341: [reportbug/master] Bugscripts can now generate headers and pseudo-headers to be included into the bug report, refer to README.developers for additional details; thanks to Niels Thykier for
tag 611341 pending tag 611341 pending thanks Date: Sun Nov 6 11:25:37 2011 +0100 Author: Sandro Tosi Commit ID: c7413a591c2e5a0a4389fdbb11df663caa628ba4 Commit URL: http://git.debian.org/?p=reportbug/reportbug.git;a=commitdiff;h=c7413a591c2e5a0a4389fdbb11df663caa628ba4 Patch URL: http://git.debian.org/?p=reportbug/reportbug.git;a=commitdiff_plain;h=c7413a591c2e5a0a4389fdbb11df663caa628ba4 Bugscripts can now generate headers and pseudo-headers to be included into the bug report, refer to README.developers for additional details; thanks to Niels Thykier for the report; Closes: #611341 -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647782: dvb-apps: /usr/bin/scan - program name conflicts with nmh's /usr/bin/mh/scan
Package: dvb-apps Version: 1.1.1+rev1355-1 Severity: normal Hi, there's a slight problem for nmh-users (and thus also for users of exmh, which builds on the nmh tools) with the binary name, as nmh brings /usr/bin/mh/scan, and users are expected to put /usr/bin/mh in their $PATH to use nmh. Obviously, only /usr/bin _or_ /usr/bin/mh can be first in $PATH, and one package gets a usability problem in the process. As nmh has been around for a lng time, and this has the potential for problems with another package, exmh, I'm filing this against dvb-apps. (Found when exmh suddenly stopped working properly after installing dvb-apps.) Kind regards, Robert Waldner -- System Information: Debian Release: 6.0.3 APT prefers stable APT policy: (500, 'stable') Architecture: i386 (i686) Kernel: Linux 2.6.39-bpo.2-686-pae (SMP w/6 CPU cores) Locale: LANG=de_AT@euro, LC_CTYPE=de_AT@euro (charmap=ISO-8859-15) Shell: /bin/sh linked to /bin/dash Versions of packages dvb-apps depends on: ii libc6 2.11.2-10 Embedded GNU C Library: Shared lib ii makedev 2.3.1-89 creates device files in /dev ii udev 164-3 /dev/ and hotplug management daemo dvb-apps recommends no packages. dvb-apps 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#628077: [Piuparts-devel] [PATCH 2/2] add more locations for hook scripts
On Sonntag, 6. November 2011, Andreas Beckmann wrote: > add hook scripts at the following locations: > * post_install: at the end of install_packages_by_name() (Closes: #628077) > * post_upgrade: in the install-upgrade-purge test between upgrade and > removal * post_purge: in the "empty distupgrade loop" to cleanup things > done by pre_distupgrade/post_distupgrade scripts this patch looks good to me, but it needs documentation. please provide this as a patch for README.txt too. thanks! -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647783: Uses the deprecated avifile library
Package: cynthiune.app Severity: important Hi, avifile is dead upstream and I plan to remove it after the Wheezy release. Your application currently uses avifile. Please investigate alternatives with a more modern and maintained library, drop the bits needing avifile or take over maintenance of avifile yourself. Cheers, Moritz -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Kernel: Linux 3.0.0-1-amd64 (SMP w/2 CPU cores) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#589498: [Piuparts-devel] [PATCH 1/2] check for settings.scriptsdir inside run_scripts()
Hi, On Sonntag, 6. November 2011, Andreas Beckmann wrote: > move the check for settings.scriptsdir inside run_scripts(), > no need to replicate it before every call this sounds like a good idea, but have you tested this patch: > def run_scripts (self, step): > """ Run custom scripts to given step post-install|remove|purge""" > > +if settings.scriptsdir is None: > +return settings is not defined here... :( cheers, Holger -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647784: Uses deprecated avifile
Package: onscripter Severity: important Hi, avifile is dead upstream and I plan to remove it after the Wheezy release. Your application currently uses avifile. Please investigate alternatives with a more modern and maintained library, drop the bits needing avifile or take over maintenance of avifile yourself. Cheers, Moritz -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Kernel: Linux 3.0.0-1-amd64 (SMP w/2 CPU cores) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#582043: Ruby/GTK+ program spins around when other Ruby threads are executing
tags 582043 + wontfix thanks Hi, I've just tested this and I can confirm that it happens on Ruby 1.8. However, it does NOT happen on Ruby 1.9. Ruby 1.9 has native threads, while 1.8 uses green threads, what makes me assume that this is a problem related to the Ruby 1.8 green threads. Since Ruby 1.8 is not changing anymore, I am marking this bug as wontfix. If you want to have proper threading with GTK Ruby programs, you should be using Ruby 1.9. This will be the default Ruby on Debian really soon. -- Antonio Terceiro signature.asc Description: Digital signature
Bug#588313: [Piuparts-devel] [PATCH] simplify diversion modification checks
On Samstag, 5. November 2011, Andreas Beckmann wrote: > (this patch applies on top of Scott's patch in git) where in git, ie which branch? > FIXME: needs --save-end-meta support please dont send incomplete patches to the bts. instead, feel free to put them into git branches. (also in our "official" git repo. i do appreciate branches there :) -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647785: Uses deprecated avifile
Package: gem Severity: important Hi, avifile is dead upstream and I plan to remove it after the Wheezy release. Your application currently uses avifile. Please investigate alternatives with a more modern and maintained library, drop the bits needing avifile or take over maintenance of avifile yourself. Cheers, Moritz -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Kernel: Linux 3.0.0-1-amd64 (SMP w/2 CPU cores) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647786: Uses deprecated avifile
Package: dvr Severity: important Hi, avifile is dead upstream and I plan to remove it after the Wheezy release. Your application currently uses avifile. Please investigate alternatives with a more modern and maintained library, drop the bits needing avifile or take over maintenance of avifile yourself. Cheers, Moritz -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Kernel: Linux 3.0.0-1-amd64 (SMP w/2 CPU cores) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#623285: broadcom-sta-source: BCM4313 working again
Package: broadcom-sta-source Followup-For: Bug #623285 Dear Maintainer, Hi, it's me again. I was using broadcom-sta- modules-2.6.32-5-amd64_5.60.48.36-2+2.6.32-23_amd64.deb with wifi working. Now I recompiled the new package version broadcom-sta-source 5.100.82.112-1 for kernel 3.0.0-1 and wifi works correctly. Thanks lspci -- 00:00.0 Host bridge: Intel Corporation Core Processor DRAM Controller (rev 18) 00:02.0 VGA compatible controller: Intel Corporation Core Processor Integrated Graphics Controller (rev 18) 00:16.0 Communication controller: Intel Corporation 5 Series/3400 Series Chipset HECI Controller (rev 06) 00:1a.0 USB Controller: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller (rev 06) 00:1b.0 Audio device: Intel Corporation 5 Series/3400 Series Chipset High Definition Audio (rev 06) 00:1c.0 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 1 (rev 06) 00:1c.1 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 2 (rev 06) 00:1c.2 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 3 (rev 06) 00:1c.4 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 5 (rev 06) 00:1d.0 USB Controller: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller (rev 06) 00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev a6) 00:1f.0 ISA bridge: Intel Corporation Mobile 5 Series Chipset LPC Interface Controller (rev 06) 00:1f.2 SATA controller: Intel Corporation 5 Series/3400 Series Chipset 6 port SATA AHCI Controller (rev 06) 00:1f.3 SMBus: Intel Corporation 5 Series/3400 Series Chipset SMBus Controller (rev 06) 00:1f.6 Signal processing controller: Intel Corporation 5 Series/3400 Series Chipset Thermal Subsystem (rev 06) 12:00.0 Network controller: Broadcom Corporation BCM4313 802.11b/g/n Wireless LAN Controller (rev 01) 13:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 03) ff:00.0 Host bridge: Intel Corporation Core Processor QuickPath Architecture Generic Non-core Registers (rev 05) ff:00.1 Host bridge: Intel Corporation Core Processor QuickPath Architecture System Address Decoder (rev 05) ff:02.0 Host bridge: Intel Corporation Core Processor QPI Link 0 (rev 05) ff:02.1 Host bridge: Intel Corporation Core Processor QPI Physical 0 (rev 05) ff:02.2 Host bridge: Intel Corporation Core Processor Reserved (rev 05) ff:02.3 Host bridge: Intel Corporation Core Processor Reserved (rev 05) -- System Information: Debian Release: wheezy/sid APT prefers testing APT policy: (900, 'testing'), (500, 'unstable'), (50, 'stable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 3.0.0-1-amd64 (SMP w/4 CPU cores) Locale: LANG=es_AR.utf8, LC_CTYPE=es_AR.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages broadcom-sta-source depends on: ii bzip2 1.0.5-7 ii debhelper 8.9.8 ii make 3.81-8.1 ii quilt 0.48-8 Versions of packages broadcom-sta-source recommends: ii module-assistant 0.11.4 Versions of packages broadcom-sta-source suggests: ii wireless-tools 30~pre9-5 -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647787: Uses deprecated avifile
Package: vxl Severity: important Hi, avifile is dead upstream and I plan to remove it after the Wheezy release. Your application currently uses avifile. Please investigate alternatives with a more modern and maintained library, drop the bits needing avifile or take over maintenance of avifile yourself. Cheers, Moritz -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Kernel: Linux 3.0.0-1-amd64 (SMP w/2 CPU cores) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#593325: [DRE-maint] Bug#593325: Patch to uncompress examples
Paul van Tilburg escreveu isso aí: > Hey all, > > On Sun, Oct 16, 2011 at 07:42:57PM +0200, Olivier Sallou wrote: > > Tags: patch > > > > Here is patch to remove compression of examples in ruby-gtk2 > > > > Only impact is in debian/rules. > > > > > > Olivier > > > diff -Nru ruby-gnome2-1.0.0/debian/rules ruby-gnome2-1.0.0/debian/rules > > --- ruby-gnome2-1.0.0/debian/rules 2011-10-16 17:01:52.0 +0200 > > +++ ruby-gnome2-1.0.0/debian/rules 2011-10-16 18:47:38.0 +0200 > > @@ -17,3 +17,7 @@ > > dh_strip -p$$i --dbg-package=$$i-dbg ; \ > > done > > dh_strip > > + > > + > > +override_dh_compress: > > + dh_compress -X.rb > > I also noticed this in one of the packages that I migrated as well... > the examples are compressed, which I find inconvenient. > a long time ago we agreed that ruby-pkg-tools should do this by default > (i.e not compressing examples). I assume this is just overlooked > for gem2deb so I guess that this bug report should be reassigned to > gem2deb? However, before doing this I wanted to recheck with the > maintainers/community/you guys. There is a slight difference between ruby-pkg-tools and gem2deb. While ruby-pkg-tools called CDBS and could modify most things in how CDBS operates, gem2deb does not call debhelper, but is called by it. I don't see a way for dh_ruby to influence the other debhelper programs, except perhaps by generating a debian/rules with lots of override_dh_* targets, which seems dirty to me. Of course, if anyone comes up with an idea of how to implement this on the gem2deb side, we will totally consider it. -- Antonio Terceiro signature.asc Description: Digital signature
Bug#593325: [DRE-maint] Bug#593325: Patch to uncompress examples
On 06/11/11 at 09:08 -0200, Antonio Terceiro wrote: > Paul van Tilburg escreveu isso aí: > > Hey all, > > > > On Sun, Oct 16, 2011 at 07:42:57PM +0200, Olivier Sallou wrote: > > > Tags: patch > > > > > > Here is patch to remove compression of examples in ruby-gtk2 > > > > > > Only impact is in debian/rules. > > > > > > > > > Olivier > > > > > diff -Nru ruby-gnome2-1.0.0/debian/rules ruby-gnome2-1.0.0/debian/rules > > > --- ruby-gnome2-1.0.0/debian/rules2011-10-16 17:01:52.0 > > > +0200 > > > +++ ruby-gnome2-1.0.0/debian/rules2011-10-16 18:47:38.0 > > > +0200 > > > @@ -17,3 +17,7 @@ > > > dh_strip -p$$i --dbg-package=$$i-dbg ; \ > > > done > > > dh_strip > > > + > > > + > > > +override_dh_compress: > > > + dh_compress -X.rb > > > > I also noticed this in one of the packages that I migrated as well... > > the examples are compressed, which I find inconvenient. > > a long time ago we agreed that ruby-pkg-tools should do this by default > > (i.e not compressing examples). I assume this is just overlooked > > for gem2deb so I guess that this bug report should be reassigned to > > gem2deb? However, before doing this I wanted to recheck with the > > maintainers/community/you guys. > > There is a slight difference between ruby-pkg-tools and gem2deb. While > ruby-pkg-tools called CDBS and could modify most things in how CDBS > operates, gem2deb does not call debhelper, but is called by it. I don't > see a way for dh_ruby to influence the other debhelper programs, except > perhaps by generating a debian/rules with lots of override_dh_* targets, > which seems dirty to me. > > Of course, if anyone comes up with an idea of how to implement this on > the gem2deb side, we will totally consider it. Hi, gem2deb is a dh buildsystem, so it's called by debhelper for each action, such as configure, build, test, install, clean. but it's also a dh sequence, so it can plug itself at any point of the debhelper build. For example, it's done after dh_shlibdeps to hack the dependencies for packages building native extensions. You could easily insert into the dh process to override dh_compress that way. See debhelper7/sequence/ruby.pm for details on how it is done for dh_shlibdeps. Lucas -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647473: question about your patch
Hi Dave, diff -ur sgml-data-2.0.6.orig/debian/postrm sgml-data-2.0.7/debian/postrm --- sgml-data-2.0.6.orig/debian/postrm 2011-11-02 22:14:48.124000413 -0400 +++ sgml-data-2.0.7/debian/postrm 2011-11-02 22:16:27.312000538 -0400 @@ -4,8 +4,14 @@ if [ "$1" = "purge" ] then -rmdir -p --ignore-fail-on-non-empty /etc/sgml -rmdir -p --ignore-fail-on-non-empty /etc/xml +rmdir -p --ignore-fail-on-non-empty /etc/sgml || : +rmdir -p --ignore-fail-on-non-empty /etc/xml || : +fi + +if [ "$1" = "remove" ] +then +rm -f /etc/xml/sgml-data.xml* || : +rm -f /etc/sgml/sgml-data* || : fi This patch seems to remove configuration files unconditionally on "remove". This seems wrong to me. Can you explain? cheers, Holger -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#589498: [Piuparts-devel] [PATCH 1/2] check for settings.scriptsdir inside run_scripts()
On 2011-11-06 11:59, Holger Levsen wrote: > settings is not defined here... :( settings is global. Andreas -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#514067: licensing issues with pdf generator
Found the thread "Codeka no es del todo libre o no respeta la gpl?" [1] on the app forum. Currently seems to have a issue with the pdf generator. I leave the reference here to who ever works on packaging this program. 1 - http://www.codeka.net/foro/viewtopic.php?f=4&t=1474 -- Melhores cumprimentos/Best regards, Miguel Figueiredo -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#588313: [Piuparts-devel] [PATCH] simplify diversion modification checks
On 2011-11-06 12:03, Holger Levsen wrote: > On Samstag, 5. November 2011, Andreas Beckmann wrote: >> (this patch applies on top of Scott's patch in git) > > where in git, ie which branch? feature/588313 (which is an unfortunate name because it does not explain the purpose) >> FIXME: needs --save-end-meta support That applies to the current patch as well ... > please dont send incomplete patches to the bts. instead, feel free to put > them > into git branches. (also in our "official" git repo. i do appreciate branches > there :) Andreas -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647788: systemd: Please provide systemd.pc in a separate package
Package: systemd Version: 37-1 Severity: wishlist I'm working with a package that can be compiled with systemd support, and my current version already makes use of libsystemd-daemon-dev, but there's one remaining issue I have: if I want to automatically figure out the systemdsystemunitdir, then I need the systemd.pc file, which is currently in the systemd package. While I can build-depend on systemd, that would be a bit of an overkill, in my opinion. I can also hard-code the path (which is what I'm doing now), but I don't like hard-coding stuff when there's a way to figure out paths automatically at build time. For this reason, I think it would be useful to move the systemd.pc file to a separate package, perhaps to libsystemd-daemon-dev? Though, I might be missing the obvious, and there's a good reason the file is where it is, in which case, this report should be closed. -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 3.0.0-2-amd64 (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages systemd depends on: ii initscripts 2.88dsf-13.13 ii libacl1 2.2.51-4 ii libaudit0 1.7.18-1 ii libc6 2.13-21 ii libcap2 1:2.22-1 ii libcryptsetup1 2:1.3.0-3 ii libdbus-1-3 1.4.16-1 ii libpam0g1.1.3-5 ii libselinux1 2.1.0-4 ii libsystemd-daemon0 37-1 ii libsystemd-login0 37-1 ii libudev0172-1 ii libwrap07.6.q-21 ii udev172-1 ii util-linux 2.19.1-5 Versions of packages systemd recommends: ii libpam-systemd 37-1 Versions of packages systemd suggests: ii python 2.7.2-9 ii systemd-gui 37-1 -- no debconf information -- |8] -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647724: Removal of orpie
Hi, will ocamlgsl on mips and mipsel be fixed sometime, so orpie will be available on those architectures again? Uwe PS: I'm the maintainer of orpie -- MMK GmbH, Fleyer Str. 196, 58097 Hagen uwe.steinm...@mmk-hagen.de Tel: 02331 840446Fax: 02331 843920 signature.asc Description: Digital signature
Bug#647789: mount: System Crashed after hitting "Safely Remove Drive" on external usb hard drive
Package: mount Version: 2.17.2-9 Severity: important I have an external USB hard disk. This is the dmesg output when the drive is attached to my notebook: [ 1178.268720] reportbug[2649]: segfault at d74 ip b7853a80 sp bfcdbcc0 error 4 in ld-2.11.2.so[b7842000+1b000] [ 1243.112109] usb 1-6: USB disconnect, address 4 [ 1560.933139] usb 1-6: new high speed USB device using ehci_hcd and address 5 [ 1561.065525] usb 1-6: New USB device found, idVendor=1058, idProduct=0740 [ 1561.065533] usb 1-6: New USB device strings: Mfr=1, Product=2, SerialNumber=5 [ 1561.065539] usb 1-6: Product: My Passport 0740 [ 1561.065543] usb 1-6: Manufacturer: Western Digital [ 1561.065548] usb 1-6: SerialNumber: 575839314137315534393038 [ 1561.065749] usb 1-6: configuration #1 chosen from 1 choice [ 1561.066449] scsi3 : SCSI emulation for USB Mass Storage devices [ 1561.066742] usb-storage: device found at 5 [ 1561.066746] usb-storage: waiting for device to settle before scanning [ 1566.064442] usb-storage: device scan complete [ 1566.064960] scsi 3:0:0:0: Direct-Access WD My Passport 0740 1003 PQ: 0 ANSI: 6 [ 1566.065704] scsi 3:0:0:1: Enclosure WD SES Device 1003 PQ: 0 ANSI: 6 [ 1566.066792] sd 3:0:0:0: Attached scsi generic sg2 type 0 [ 1566.066940] ses 3:0:0:1: Attached Enclosure device [ 1566.067040] ses 3:0:0:1: Attached scsi generic sg3 type 13 [ 1566.256922] sd 3:0:0:0: [sdb] 976707584 512-byte logical blocks: (500 GB/465 GiB) [ 1566.258660] sd 3:0:0:0: [sdb] Write Protect is off [ 1566.258667] sd 3:0:0:0: [sdb] Mode Sense: 47 00 10 08 [ 1566.258673] sd 3:0:0:0: [sdb] Assuming drive cache: write through [ 1566.261914] sd 3:0:0:0: [sdb] Assuming drive cache: write through [ 1566.261922] sdb: sdb1 sdb2 [ 1566.282548] sd 3:0:0:0: [sdb] Assuming drive cache: write through [ 1566.282557] sd 3:0:0:0: [sdb] Attached SCSI disk [ 1567.075556] kjournald starting. Commit interval 5 seconds [ 1567.075581] EXT3-fs warning: maximal mount count reached, running e2fsck is recommended [ 1567.076300] EXT3 FS on sdb2, internal journal [ 1567.076309] EXT3-fs: mounted filesystem with ordered data mode. On this drive I have two partitions. The first is EXT3-formatted and it's labeled "backup" while the second one is FAT32-formatted for Windows compatibility and it's labeled "My Passport": root@produzione:/home/daniele# fdisk -l /dev/sdb Disk /dev/sdb: 500.1 GB, 500074283008 bytes 255 heads, 63 sectors/track, 60797 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x00038a56 Device Boot Start End Blocks Id System /dev/sdb1 1 30521 2451527687 HPFS/NTFS /dev/sdb2 30521 60798 24320 83 Linux I can use them without problems but sometimes when I umount them hitting the "Safely Remove Drive" option in the right-click menu on the drive icons, the system completly crashes. The screen turns black and all is freezed. The only option I have is to reboot my notebook. This is my /etc/fstab: root@produzione:/home/daniele# cat /etc/fstab # /etc/fstab: static file system information. # # Use 'blkid' to print the universally unique identifier for a # device; this may be used with UUID= as a more robust way to name devices # that works even if disks are added and removed. See fstab(5). # # proc/proc procdefaults0 0 /dev/mapper/volumegrp01-rootfs / ext3errors=remount-ro 0 1 # /boot was on /dev/sda1 during installation UUID=7279adbc-99e1-432b-870a-df13f13957b0 /boot ext3defaults 0 2 /dev/mapper/volumegrp01-home /home ext3defaults,user_xattr 0 2 /dev/mapper/volumegrp01-swap noneswapsw 0 0 UUID=9812-0845 /media/usb0 vfat,iso9660 user,noauto 0 0 #UUID=9C64D17064D14DA0 /media/ntfs ntfs /dev/scd0 /media/cdrom1 udf,iso9660 user,noauto 0 0 I was forced to manually modify it in order to fix some mounting problems I had. In particular, the system was not able to auto mount my usb pen drive so I put its UUID in fstab to fix this issue. Now the output of blkid: root@produzione:/home/daniele# blkid /dev/sda5: UUID="cf301262-9b5a-40ca-89c4-bc92f2b8a393" TYPE="crypto_LUKS" /dev/sda1: UUID="7279adbc-99e1-432b-870a-df13f13957b0" TYPE="ext3" SEC_TYPE="ext2" /dev/mapper/sda5_crypt: UUID="S06RiO-pShS-YJok-TS7I-ViRA-YTGT-K66fV2" TYPE="LVM2_member" /dev/mapper/volumegrp01-swap: UUID="73f27b9c-341e-4834-aa74-4c591b9b332a" TYPE="swap" /dev/mapper/volumegrp01-rootfs: UUID="906dc4bf-08c4-4fb8-ba04-6a612c850281" TYPE="ext3" /dev/mapper/volumegrp01-home: UUID="165100d7-91ba-4f06-9f14-b5174254f8e3" TYPE="ext3" SEC_TYPE="ext2" /dev/sdb1: LABEL="My Passport" UUID="9C64D17064D14DA0" TYPE="ntfs" /dev/sdb2: LABEL="Backup" UUID="caaf4f6e-d2a8-4765-8fe1-885cd90892a2" TYPE="ext3"
Bug#646889: Info received (Bug#646889: linux-image-2.6.32-5-686: Since I'm using nfsd instead of samba a kerneloops occurs when accessing the files on server)
Hi, disabling TSO works. There are no more memory allocation failures since one week. Marc -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#512679: initramfs-tools: 'more' pager is broken in initramfs shell
On Sun, Nov 06, 2011 at 05:38:19PM +1000, Dave Whitla wrote: > Wow. Almost 3 years later and this is still broken. > dude, not that it is that important, patches are welcome, git repo is known: http://anonscm.debian.org/gitweb/?p=kernel/initramfs-tools.git your comment is useless noise. -- maks -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647749: [Pkg-xfce-devel] Bug#647749: Info received (Bug 647749)
On sam., 2011-11-05 at 22:07 -0400, Dave Lentz wrote: > Now I see that TWC is ending its XMLOAP service in favor of a pay model, > and the plugin eventually needs a new weather provider. I'd still > recommend using the patch, as it will buy more time until the issue is > resolved upstream. > As far as I understand it, the previous licensing model did end oct 31. Are you sure the patch will work? Regards, -- Yves-Alexis signature.asc Description: This is a digitally signed message part
Bug#647790: base: No sound on Netbook PB Dot-S
Package: base Severity: normal lspci report : 00:1b.0 Audio device: Intel Corporation N10/ICH 7 Family High Definition Audio Controller (rev 02) loaded modules : snd_hda_codec_realtek 163318 1 snd_hda_intel 16823 1 snd_hda_codec 46002 2 snd_hda_codec_realtek,snd_hda_intel snd_hwdep 4054 1 snd_hda_codec snd_pcm47226 2 snd_hda_intel,snd_hda_codec snd_seq35463 0 snd_timer 12270 2 snd_pcm,snd_seq snd_seq_device 3673 1 snd_seq, snd_hda_codec_realtek,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_seq,snd_timer,snd_seq_device soundcore 3450 1 snd snd_page_alloc 5045 2 snd_hda_intel,snd_pcm pcspkr 1207 0 -- System Information: Debian Release: 6.0.3 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'stable') Architecture: i386 (i686) Kernel: Linux 2.6.32-5-686 (SMP w/2 CPU cores) Locale: LANG=fr_FR.utf8, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#640628: fixed in debpartial-mirror 0.3.0
tags 640628 + confirmed fixed-upstream thanks On Mon, Oct 17, 2011 at 3:35 PM, Pino Toscano wrote: > Bah, now I realize I attached the wrong version of the patch :-/ > Attached there is a fix for version 0.3.0, which hopefully does not > cause python symbol errors (double errno, module and variable). > > Sorry again, > No problem, I didn't notice either. Patch applied to git Martin -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647791: xdg-screensaver: gnome-screensaver detected by default
Package: xdg-utils Version: 1.1.0~rc1-2 Severity: normal Tags: patch Hello, The latest version of gnome-screensaver-command does not seem to exit 1 when gnome-screensaver is not running. As a consequence, xdg-screensaver:966 always considers gnome-screensaver is being used. Here is a patch to correct that: it adds a grep to look for “not running” in gnome-screensaver-command's stderr instead of relying on the exit code. I also modified the xscreensaver detection line just above to use the quiet option of grep, which is appropriate here. Regards, -- Tanguy Ortolo -- System Information: Debian Release: wheezy/sid APT prefers testing APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 3.0.0-1-amd64 (SMP w/2 CPU cores) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash xdg-utils depends on no packages. Versions of packages xdg-utils recommends: ii libfile-mimeinfo-perl ii x11-utils 7.6+4 ii x11-xserver-utils 7.6+3 Versions of packages xdg-utils suggests: ii gvfs-bin 1.8.2-2 -- no debconf information --- xdg-screensaver.orig 2011-11-06 13:08:02.043310783 +0100 +++ xdg-screensaver 2011-11-06 13:16:09.024684848 +0100 @@ -961,9 +961,9 @@ detectDE # Consider "xscreensaver" a separate DE -xscreensaver-command -version 2> /dev/null | grep XScreenSaver > /dev/null && DE="xscreensaver" +xscreensaver-command -version 2> /dev/null | grep -q XScreenSaver && DE="xscreensaver" # Consider "gnome-screensaver" a separate DE -gnome-screensaver-command -q > /dev/null 2>&1 && DE="gnome_screensaver" +gnome-screensaver-command -q 2>&1 | grep -qv "not running" && DE="gnome_screensaver" echo $DE
Bug#647792: Build-depends on obsolete libabiword-2.8-dev
Package: pyabiword Version: 0.8.0-8 Severity: serious Hi, pyabiword build-depends on libabiword-2.8-dev, which is no longer built on top of abiword source package, replaced by libabiword-2.9-dev. -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 3.0.0-2-amd64 (SMP w/8 CPU cores) Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647793: xdg-screensaver: use grep's -q and -s options
Package: xdg-utils Version: 1.1.0~rc1-2 Severity: wishlist Tags: patch -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Hello, I have just seen that xdg-screensaver uses several grep commands as conditions, adding >/dev/null and 2>/dev/null redirections. Using grep's -q and -s options would be advisable (and faster, as grep -q exits at the first match instead of waiting for the end of file). Here is a patch that implements that. Regards, - -- Tanguy Ortolo - -- System Information: Debian Release: wheezy/sid APT prefers testing APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 3.0.0-1-amd64 (SMP w/2 CPU cores) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash xdg-utils depends on no packages. Versions of packages xdg-utils recommends: ii libfile-mimeinfo-perl ii x11-utils 7.6+4 ii x11-xserver-utils 7.6+3 Versions of packages xdg-utils suggests: ii gvfs-bin 1.8.2-2 - -- no debconf information -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.11 (GNU/Linux) iQIcBAEBCgAGBQJOtn2aAAoJEOryzVHFAGgZkcsP/iLWTSmepEQ3msjJiinVHFh5 FQeN0rxVYuA5J0e+dVT6R7rLkRA0O33KpOOFU5Av4r01NA5hZgbeETs2J28eN1gm BwgidbRjISLr5T0+hjPD/aFMB9N/7Iswx/Y3PJ6hOabGU8ykDldKIhBNeWi0pXLy kSc39irmkjmQbugx9MsldskrlBDiv/rPeX88rC6jBtgAbsqstXRRuUoxDXTgn/MT xqlonrWGn+awVuoRnKQ5sHbM50U6Hs+wsmZj54fSwOjmBZJTS1UK1cbDhPdTLeim 6YN7lYmNCBgObPnlosvuf9h8Gx0rFHdu8euOv/oc4U5Z0oSeTzk9kixw4ULPZBnR sCfHfnjgLOTfC7UepDMYSzE5CS4tqiEGb7M+EH2qT5I0fjS5elD7/BbOGpbi29CX /0V55bAuaViIBNbjxLJCBRg8mrAtkgzyhTgCGTh+3kieKXtM+1uv+/IqiQZWiOEL kGYu558xHXn+mwH0GjA/4Ph51uRPxkgadEiPOupXiqGg2ckTxOCrJNPvnqwsrLwu /diK/EEC92EMwaUgJIDuRns5f/tms7t0NNnuPYj4fUq1mDtwN9yh88dyiutGf9aF TkO5cTD1tUssrnslf7Eu4KjvmDvHc6H1z8KfPhm4Eqjf9yhO4DVX0JWq6UgWkuEk pgRKa0uZXnYALgi14Oee =7toC -END PGP SIGNATURE- --- xdg-screensaver.orig 2011-11-06 13:08:02.043310783 +0100 +++ xdg-screensaver 2011-11-06 13:16:09.024684848 +0100 @@ -334,7 +334,7 @@ if [ x"$KDE_FULL_SESSION" = x"true" ]; then DE=kde; elif [ x"$GNOME_DESKTOP_SESSION_ID" != x"" ]; then DE=gnome; elif `dbus-send --print-reply --dest=org.freedesktop.DBus /org/freedesktop/DBus org.freedesktop.DBus.GetNameOwner string:org.gnome.SessionManager > /dev/null 2>&1` ; then DE=gnome; -elif xprop -root _DT_SAVE_MODE 2> /dev/null | grep ' = \"xfce4\"$' >/dev/null 2>&1; then DE=xfce; +elif xprop -root _DT_SAVE_MODE 2> /dev/null | grep -qs ' = \"xfce4\"$'; then DE=xfce; elif [ x"$DESKTOP_SESSION" = x"LXDE" ]; then DE=lxde; else DE="" fi @@ -358,7 +358,7 @@ } # Check if we can use "mv -T" -if mv -T ... ... 2>&1 | grep '\.\.\.' > /dev/null ; then +if mv -T ... ... 2>&1 | grep -q '\.\.\.' ; then # We can securely move files in /tmp with mv -T DEBUG 1 "mv -T available" MV="mv -T" @@ -410,7 +410,7 @@ fi fi if [ "$1" = "reset" ] ; then - if xset -q | grep 'DPMS is Enabled' > /dev/null 2> /dev/null; then + if xset -q | grep -qs 'DPMS is Enabled'; then xset dpms force on fi fi @@ -443,7 +443,7 @@ if [ "$1" = "suspend" ] ; then # Save DPMS state - if xset -q | grep 'DPMS is Enabled' > /dev/null 2> /dev/null; then + if xset -q | grep -qs 'DPMS is Enabled'; then test "${TMPDIR+set}" = set || TMPDIR=/tmp tmpfile=`mktemp $TMPDIR/tmp.XX` $MV "$tmpfile" "$screensaver_file.dpms" @@ -459,7 +459,7 @@ lockfile test "${TMPDIR+set}" = set || TMPDIR=/tmp tmpfile=`mktemp $TMPDIR/tmp.XX` - grep -v "$window_id:$xprop_pid\$" "$screensaver_file" > "$tmpfile" 2> /dev/null + grep -vs "$window_id:$xprop_pid\$" "$screensaver_file" > "$tmpfile" $MV "$tmpfile" "$screensaver_file" if [ ! -s "$screensaver_file" ] ; then rm "$screensaver_file" @@ -475,9 +475,9 @@ { lockfile # Obtain lockfile # Find the PID of the trackingprocess - xprop_pid=`grep "$window_id:" "$screensaver_file" 2> /dev/null | cut -d ':' -f 2` + xprop_pid=`grep -s "$window_id:" "$screensaver_file" | cut -d ':' -f 2` unlockfile # Free lockfile - if [ -n "$xprop_pid" ] && ps -p "$xprop_pid" 2> /dev/null | grep xprop > /dev/null; then + if [ -n "$xprop_pid" ] && ps -p "$xprop_pid" 2> /dev/null | grep -q xprop; then # Kill the tracking process kill -s TERM $xprop_pid fi @@ -518,7 +518,7 @@ IFS_save="$IFS" IFS=":" while read wid pid; do - if ps -p "$pid" 2> /dev/null | grep xprop > /dev/null; then + if ps -p "$pid" 2> /dev/null | grep -q xprop; then echo "$wid:$pid" if [ $wid = $window_id ] ; then already_tracked=0 @@ -790,7 +790,7 @@ IFS_save="$IFS" IFS=":" while read wid pid; do - if ps -p "$pid" 2> /dev/null | grep xprop > /dev/null; then + if ps -p "$pid" 2> /dev/null | grep -q xprop; then echo "$wid:$pid" fi done
Bug#647794: xdg-screensaver: xserver-blanking patch not needed anymore
Package: xdg-utils Version: 1.1.0~rc1-2 Severity: minor Tags: patch -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Hello, It looks like the xserver-blank patch has been applied upstream, so it is not needed anymore as it only creates duplicated sections. Here is a git-formated patch that removes it: $ git am 0001-Remove-patch-xserver-blanking.diff-now-useless.patch I did not touch the debian/changelog, I leave that to you. :-) Regards, - -- Tanguy Ortolo - -- System Information: Debian Release: wheezy/sid APT prefers testing APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 3.0.0-1-amd64 (SMP w/2 CPU cores) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash xdg-utils depends on no packages. Versions of packages xdg-utils recommends: ii libfile-mimeinfo-perl ii x11-utils 7.6+4 ii x11-xserver-utils 7.6+3 Versions of packages xdg-utils suggests: ii gvfs-bin 1.8.2-2 - -- no debconf information -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.11 (GNU/Linux) iQIcBAEBCgAGBQJOtoBXAAoJEOryzVHFAGgZNssP/3BFRyXMbgRN8L5zBxeGoKEU LwFNmTDBpQOK9zeu9fCOh3f+OYvHPqSRn4de6h7x5h7jXfwPz/XYJiaQGOL9Lmx9 tB/ePvGuKb+rX4Kefr0pWt1Zwt/XUiLK6QkJyC2QiyJgcvMM82rBl1Lwwtx4ksO6 G31HbAOGpcq4jRx+R525wH1M0rUSO89ka8zDAKs3HXv9qWP/XcyoYqQ8574iZk7S IYbrYL6PwIZtoYTQRbld+UuNerntNUFcjzLlHPRzsWhqg/D1Pv2PUI8ua4MmirC6 1UBTwbDmVWdweFcMlxNkxwirHOH6G84h/V9YwCpsQyOBU/Q//Q8AdH7NFq+f+Qie I3ak3beJKeUhJTSkbRemZvZ9Qfbclw9BgaQfpL6t18z/YdDJN47DQn8EfC6R+nDt RjeoO1AOrToYZsX+XC79KFB3kLrPA5HC141/6C+IrzNPzFXNRWlkQJaxu1lWvIos aedwdhM8yGVCNJwceVkizQMRK9U5ANkFzo3M7GoAR6GcXiY/egRdmLFqVqefkfZy GShpw9fiVWsiYAzGxEpxaA6LOt7ZjZPhnpplplb6USKl8ZnV8lj/MXZiePW7Pz87 r+qa2ZMEFS77F4xBApmJVOuO8qPVBvie+xS6SiCLlkQiJSH7Fq2uV2cM8Yn3KjMi edpzc2FW/a2cHsQfq02C =T6Ac -END PGP SIGNATURE- >From 1b103fda0dd1b5ce00cca2c437ef92432ef38fef Mon Sep 17 00:00:00 2001 From: Tanguy Ortolo Date: Sun, 6 Nov 2011 13:37:15 +0100 Subject: [PATCH] Remove patch xserver-blanking.diff now useless MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="1.7.7.1" This is a multi-part message in MIME format. --1.7.7.1 Content-Type: text/plain; charset=UTF-8; format=fixed Content-Transfer-Encoding: 8bit It has been applied upstream. --- debian/patches/series|1 - debian/patches/xserver-blanking.diff | 68 -- 2 files changed, 0 insertions(+), 69 deletions(-) delete mode 100644 debian/patches/xserver-blanking.diff --1.7.7.1 Content-Type: text/x-patch; name="0001-Remove-patch-xserver-blanking.diff-now-useless.patch" Content-Transfer-Encoding: 8bit Content-Disposition: attachment; filename="0001-Remove-patch-xserver-blanking.diff-now-useless.patch" diff --git a/debian/patches/series b/debian/patches/series index cf46aa6..370bb95 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1,6 +1,5 @@ xdg-mime-follow-symlinks.diff x-www-browser.diff -xserver-blanking.diff xdg-email-envvar.diff xdg-email-mutt-detect.diff xdg-mime-generic-use-mimetype.diff diff --git a/debian/patches/xserver-blanking.diff b/debian/patches/xserver-blanking.diff deleted file mode 100644 index 2b424a2..000 --- a/debian/patches/xserver-blanking.diff +++ /dev/null @@ -1,68 +0,0 @@ -Description: Support X server blanking in xdg-screensaver. -Bug: https://bugs.freedesktop.org/show_bug.cgi?id=30561 -Bug-Debian: http://bugs.debian.org/511248 -Author: Ben Hutchings - a/scripts/xdg-screensaver -+++ b/scripts/xdg-screensaver -@@ -435,6 +435,10 @@ perform_action() - '') - screensaver_xserver "$1" - ;; -+ -+'') -+ screensaver_xserver "$1" -+ ;; - esac - - if [ "$1" = "suspend" ] ; then -@@ -682,6 +686,49 @@ screensaver_kde() - return 1 - fi - ;; -+ -+*) -+echo "ERROR: Unknown command '$1'" >&2 -+return 1 -+;; -+esac -+} -+ -+screensaver_xserver() -+{ -+case "$1" in -+suspend) -+xset s off > /dev/null -+result=$? -+;; -+ -+resume) -+xset s default > /dev/null -+result=$? -+;; -+ -+activate) -+xset s activate > /dev/null -+result=$? -+;; -+ -+reset) -+xset s reset > /dev/null -+result=$? -+;; -+ -+status) -+timeout=`xset q | sed '/^Screen Saver:/,/^[^ ]/ { s/.*timeout: *\([0-9]*\).*/\1/; t }; d'` -+result=$? -+if [ "$timeout" -gt 0 ]; then -+echo "enabled" -+elif [ "$timeout" -eq 0 ]; then -+echo "disabled" -+else -+echo "ERROR: xset q did not report the screensaver timeout" >&2 -+return 1 -+fi -+;; - - *) - echo "ERROR: Unknown command '$1'" >&2 --1.7.7.1--
Bug#647795: Build-depends on obsolete libahven1-dev
Package: libalog Version: 0.3-2 Severity: serious libalog build-depends on libahven1-dev, which is no longer built on top of ahven source package, replaced by libahven3-dev -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 3.0.0-2-amd64 (SMP w/8 CPU cores) Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647796: Build-depends on obsolete libahven1-dev
Package: pcscada Version: 0.6-2 Severity: serious pcscada build-depends on libahven1-dev, which is no longer built on top of ahven source package, replaced by libahven3-dev -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 3.0.0-2-amd64 (SMP w/8 CPU cores) Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647797: RM: nexuiz-dbg, nexuiz-server-dbg -- no longer built from source
Package: ftp.debian.org Severity: normal Please remove nexuiz-dbg, nexuiz-server-dbg from unstable. They are no longer built from the source package. I suspect they do not show up in the cruft report as nexuiz changed from arch:any to arch:all in the same upload. Ansgar -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647773: latexila: Please remove dpendency on rubber/texlive
cfr, 2011-11-06 02:22 UTC+: > I typically expect dependencies to be essential for a package to work > correctly. So if A depends on B, I expect that A either won't work at > all or will not work properly unless B is installed. (Perhaps I've > misunderstood the sense of 'dependency' but that is the one suggested by > their role in blocking installs etc. in package management.) I agree with that basic interpretation. The complete description of the dependency meaning is in the Debian policy, section 7.2: >> The Depends field should be used if the depended-on package is >> required for the depending package to provide a significant >> amount of functionality. > latexila currently depends on rubber or latexmk and these depend on > texlive-latex-base (tetex-bin is a virtual package with no candidates). > > However, it is quite possible to use latexila with pdflatex and friends > - rubber and latexmk are supported but so are many other options and > further possibilities can be configured. Right, I did not see that options to use pdflatex and co. directly were provided. I shall move latexmk | rubber to the Recommends field. > Moreover, it is also possible to use latexila without texlive-latex-base > being installed at all. There are at least two reasons one might wish to > do this. First, one might be using and managing an installation of > texlive from upstream. Mine is under /usr/local/texlive and is managed > using tlmgr etc. (Or one might be using a different flavour of tex > installation if there are any.) Or, second, one might need to edit tex > source on a machine without needing to process it on the same machine. > One might want to use the same editor on a desktop and netbook, for > example, but only process documents on the desktop. Or one might use an > institutional installation of tex located on a server for processing. > > I agree that the normal use case would involve a tex installation on the > same machine and that most users would use Debian packages to install it > but I would think it should be a recommends rather than a depends. This is already the case. The latexila package does not depend on texlive or texlive-* but onlt recommends texlive. So, I shall only move the latexmk | rubber dependency; do you mind if I only do so with the next version? I think that such a minor change is not worth a new build… Regards, -- ,--. : /` ) Tanguy Ortolo | `-'Debian Maintainer \_ signature.asc Description: Digital signature
Bug#647798: /build/buildd-widelands_16-1+b1-amd64-DHTE3s/widelands-16/src/scripting/scripting.h:
Package: widelands Version: 1:16-1+b1 Severity: normal While playing the tutorial I get "Error in Lua Coroutine" when the instructor tries to build the first road into the mountains. The error is as follows: [/build/buildd-widelands_16-1+b1-amd64-DHTE3s/widelands-16/src/scripting/scripting.h:45] [string "map:init"]:132: attempt to index local 'panel' (a nil value) Send message to all players and pause game -- System Information: Debian Release: wheezy/sid APT prefers testing APT policy: (500, 'testing'), (300, 'unstable') Architecture: amd64 (x86_64) Kernel: Linux 3.1.0 (SMP w/4 CPU cores) Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages widelands depends on: ii libc6 2.13-21 ii libgcc1 1:4.6.1-15 ii libggz2 0.0.14.1-1.1 ii libggzcore9 0.0.14.1-1.1 ii libggzmod40.0.14.1-1.1 ii libgl1-mesa-glx [libgl1] 7.11-6 ii libglew1.61.6.0-4 ii liblua5.1-0 5.1.4-10 ii libpng12-01.2.46-3 ii libsdl-gfx1.2-4 2.0.22-1 ii libsdl-image1.2 1.2.10-2.1+b1 ii libsdl-mixer1.2 1.2.8-6.4 ii libsdl-net1.2 1.2.7-2 ii libsdl-ttf2.0-0 2.0.9-1.1 ii libsdl1.2debian 1.2.14-6.4 ii libstdc++64.6.1-15 ii ttf-freefont 20100919-1 ii widelands-data1:16-1 ii zlib1g1:1.2.3.4.dfsg-3 widelands recommends no packages. widelands 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#647799: alsa-base: Small bug in /etc/asound.conf
Package: alsa-base Version: 1.0.23+dfsg-4 Severity: minor Dear Maintainer, The page in the Arch wiki is deleted: http://wiki.archlinux.org/index.php/Allowing_Multiple_Programs_to_Play_Sound I did not find the new page. I did not find either to which package asound.conf belongs. -- Package-specific info: --- Begin additional package status --- dpkg-query: warning: parsing file '/var/lib/dpkg/available' near line 140933 package 'amaya': error in Version string 'wx-11.3-1': version number does not start with digit Desired=Unknown/Install/Remove/Purge/Hold | Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad) ||/ NameVersion Description +++-===-===-== ii libasound2 1.0.24.1-4 shared library for ALSA applications --- End additional package status --- --- Begin /proc/asound/version --- Advanced Linux Sound Architecture Driver Version 1.0.23. --- End /proc/asound/version --- --- Begin /proc/asound/cards --- 0 [SB ]: HDA-Intel - HDA ATI SB HDA ATI SB at 0xfe024000 irq 16 1 [NVidia ]: HDA-Intel - HDA NVidia HDA NVidia at 0xfbffc000 irq 19 --- End /proc/asound/cards --- --- Begin /dev/snd/ listing --- total 0 drwxr-xr-x 2 root root 80 Oct 2 10:10 by-path crw-rw+ 1 root audio 116, 7 Oct 2 10:10 controlC0 crw-rw+ 1 root audio 116, 16 Oct 2 10:10 controlC1 crw-rw+ 1 root audio 116, 6 Oct 2 10:10 hwC0D0 crw-rw+ 1 root audio 116, 15 Oct 2 10:10 hwC1D0 crw-rw+ 1 root audio 116, 14 Oct 2 10:10 hwC1D1 crw-rw+ 1 root audio 116, 13 Oct 2 10:10 hwC1D2 crw-rw+ 1 root audio 116, 12 Oct 2 10:10 hwC1D3 crw-rw+ 1 root audio 116, 5 Oct 2 10:10 pcmC0D0c crw-rw+ 1 root audio 116, 4 Nov 6 13:55 pcmC0D0p crw-rw+ 1 root audio 116, 3 Oct 2 10:10 pcmC0D1c crw-rw+ 1 root audio 116, 2 Oct 2 10:10 pcmC0D1p crw-rw+ 1 root audio 116, 11 Oct 2 10:10 pcmC1D3p crw-rw+ 1 root audio 116, 10 Oct 2 10:10 pcmC1D7p crw-rw+ 1 root audio 116, 9 Oct 2 10:10 pcmC1D8p crw-rw+ 1 root audio 116, 8 Oct 2 10:10 pcmC1D9p crw-rw+ 1 root audio 116, 1 Oct 2 10:10 seq crw-rw+ 1 root audio 116, 33 Oct 2 10:10 timer --- End /dev/snd/ listing --- -- System Information: Debian Release: wheezy/sid APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.38-2-686-bigmem (SMP w/3 CPU cores) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages alsa-base depends on: ii linux-sound-base 1.0.23+dfsg-4 ii module-init-tools 3.16-1 ii udev 172-1 Versions of packages alsa-base recommends: ii alsa-utils 1.0.24.2-4 Versions of packages alsa-base suggests: ii alsa-oss1.0.17-5 ii apmd3.2.2-14 ii oss-compat 0.0.6 Versions of packages libasound2 depends on: ii libc6 2.13-21 ii multiarch-support 2.13-21 Versions of packages libasound2 suggests: pn libasound2-plugins -- debconf information: alsa-base/alsactl_store_on_shutdown: never autosave -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647528: [59f4ae6] Fix for Bug#647528 committed to git
tags 647528 + pending thanks Hello, The following change has been committed for this bug by Jonathan Nieder on Sun, 6 Nov 2011 14:12:50 +0100. The fix will be in the next upload. = debian/licenses: add Ms-PL license snippet Thanks: Alexander Reichle-Schmehl Closes: #647528 = You can check the diff of the fix at: http://anonscm.debian.org/gitweb/?p=pkg-chromium/pkg-chromium.git;a=commitdiff;h=59f4ae6 -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647800: cal3d: Please add build-arch/build-indep targets and enable hardning flags
Package: cal3d Version: 0.11.0-4 Severity: wishlist Tags: patch User: hardening-disc...@lists.alioth.debian.org Usertags: goal-hardening Hi, Attached is a debdiff that enables build-arch/build-indep targets and enables hardning flags. The rules could be improved to only build the docs in build-indep; but given the short runtime for docs generation I figured it was not worth it. This would assist in "hardning" release goal[1] and the /proposed/ "build-arch" release goal[2]. Since the latter has not been accepted, this bug has been fixed as a "wishlist". As I recall you are busy at the moment, so I intend to NMU this package. If I do not hear from you in a week, I will upload it to DELAYED/10 as per devref 5.11.1[3] Thanks for considering, ~Niels [1] http://wiki.debian.org/ReleaseGoals/SecurityHardeningBuildFlags [2] https://wiki.debian.org/ReleaseGoals/BuildArchTarget [3] http://www.debian.org/doc/manuals/developers-reference/pkgs.html#nmu diff -u cal3d-0.11.0/debian/rules cal3d-0.11.0/debian/rules --- cal3d-0.11.0/debian/rules +++ cal3d-0.11.0/debian/rules @@ -5,22 +5,20 @@ DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) -CXXFLAGS = -Wall -g -fPIC LIBS = -lstdc++ ifneq (,$(findstring mips,$(DEB_BUILD_GNU_TYPE))) LIBS += -lm endif -ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) - CXXFLAGS += -O0 -else - CXXFLAGS += -O2 -endif + +DPKG_EXPORT_BUILDFLAGS = 1 +DEB_CXXFLAGS_MAINT_APPEND = -Wall -fPIC +include /usr/share/dpkg/buildflags.mk config.status: configure dh_testdir - CXXFLAGS="$(CXXFLAGS)" LIBS="$(LIBS)" \ + LIBS="$(LIBS)" \ ./configure \ --host=$(DEB_HOST_GNU_TYPE) \ --build=$(DEB_BUILD_GNU_TYPE) \ @@ -34,7 +32,9 @@ sed -e 's/CC="gcc"/CC="g++"/g' libtool > lt.tmp && mv -f lt.tmp libtool -build: build-stamp +build: build-arch build-indep +build-arch: build-stamp +build-indep: build-stamp build-stamp: config.status dh_testdir diff -u cal3d-0.11.0/debian/control cal3d-0.11.0/debian/control --- cal3d-0.11.0/debian/control +++ cal3d-0.11.0/debian/control @@ -2,7 +2,7 @@ Section: libs Priority: optional Maintainer: Michael Koch -Build-Depends: debhelper (>= 5), doxygen +Build-Depends: debhelper (>= 5), doxygen, dpkg-dev (>= 1.16.1) Standards-Version: 3.8.2 Homepage: https://gna.org/projects/cal3d/ diff -u cal3d-0.11.0/debian/changelog cal3d-0.11.0/debian/changelog --- cal3d-0.11.0/debian/changelog +++ cal3d-0.11.0/debian/changelog @@ -1,3 +1,11 @@ +cal3d (0.11.0-4.1) unstable; urgency=low + + * Non-maintainer upload. + * Added build-arch and build-indep targets. + * Enable harding flags by using dpkg-buildflags. + + -- Niels Thykier Sun, 06 Nov 2011 13:55:19 +0100 + cal3d (0.11.0-4) unstable; urgency=low * Updated config.guess and config.sub (Closes: #528398).
Bug#647801: SOAP API get_bugs() doesn't show bugs affecting the package
Source: debbugs Severity: normal Hello, it seems that get_bugs() doesn't show the bugs affecting the package we're querying: i've taken 645738 as example, which is reported against libklibc-dev and affects rootskel, then I used the SOAP API to query rootskel, but: >>> import SOAPpy >>> url = 'http://bugs.debian.org/cgi-bin/soap.cgi' >>> namespace = 'Debbugs/SOAP' >>> server = SOAPpy.SOAPProxy(url, namespace) >>> '645738' in server.get_bugs("package", "rootskel") False >>> '645738' in server.get_bugs("src", "rootskel") False >>> while it's correctly displayed on the webpage http://bugs.debian.org/cgi-bin/pkgreport.cgi?pkg=rootskel;dist=unstable Regards, Sandro -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 3.0.0-1-amd64 (SMP w/4 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#556935: afsp: reopen
retitle 556935 ITP: afsp -- utility for read, copy, write, compare, filter and resampling audio files thanks -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647781: Already listed upstream
Maybe, I was too fast: this bug is already on gnome bugtracker. https://bugzilla.gnome.org/show_bug.cgi?id=648749 Sincerely Matthieu -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647802: FTBFS: plplot library is required but was not found
Package: gnudatalanguage Version: 0.9.1-1 Severity: serious https://buildd.debian.org/status/fetch.php?pkg=gnudatalanguage&arch=amd64&ver=0.9.1-1%2Bb2&stamp=1317405327 checking for gsl_ran_binomial_knuth in -lgsl... yes checking for cblas_drot in -lgslcblas... yes checking for plsexit in -lplplotcxxd... no Error! plplot library is required but was not found Use --with-plplot=DIR to specify the plplot directory tree -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 3.0.0-2-amd64 (SMP w/8 CPU cores) Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647803: Neither aptitude nor apt-get doesn't show license information.
Package: aptitude version: 0.4.11.11 Package: apt version: 0.7.20.2 When you examine not installed package with aptitude or apt-get, package information doesn't contain package's license. With 'Section' item you can clarify whether package is contributed or non-free, but a separated 'License' item would be eligible in terms of Debian way. Alix. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#637614: §9.10: Do not recommend to call install-docs, as it is triggered.
On Sat, 05 Nov 2011, Bill Allombert wrote: > On Sat, Aug 13, 2011 at 01:14:31PM +0900, Charles Plessy wrote: > > Package: debian-policy > > Version: 3.9.2.0 > > Severity: normal > > > > Dear all, > > > > here is a patch that updates §9.10: now that doc-base uses triggers, I > > think it > > is better to simply recommend to install the control files in > > /usr/share/doc-base/, instead of recommending the use of install-doc. > > Hello Charles, > > Your proposed change is mostly a statement about dpkg behaviour, so I would > like it > to be seconded by a dpkg developer. I don't really see what dpkg developers have to do here... In any case I can confirm that doc-base is installing a trigger to be notified of changes in /usr/share/doc-base and that its trigger calls "install-docs --install-changed". So Charles's request seems reasonable to me. Seconded. Cheers, -- Raphaël Hertzog ◈ Debian Developer Pre-order a copy of the Debian Administrator's Handbook and help liberate it: http://debian-handbook.info/go/ulule-rh/ signature.asc Description: Digital signature
Bug#647804: python-gevent: Segmentation fault or exception raised while running StreamServer
Package: python-gevent Version: 0.13.6-1 Severity: normal Hi and thank you for packaging gedit. Python crashes when executing the echo server demo from: https://bitbucket.org/denis/gevent/src/tip/examples/echoserver.py (commit being 58d01a956989) This bug might be related to #645833 Python2.6 hangs and needs to be terminated with Ctrl-C, while 2.7 segfaults: $ python2.6 echo_demo.py test.py:9: UserWarning: libevent version mismatch: system version is '1.4.14b-stable' but this gevent is compiled against '1.4.13-stable' from gevent.server import StreamServer Starting echo server on port 6000 New connection from 127.0.0.1:44979 Traceback (most recent call last): File "core.pyx", line 337, in gevent.core.__simple_handler (gevent/core.c:4494) SystemError: NULL result without error in PyObject_Call Failed to execute callback for active_event fd=-1 flags=INIT cb = arg = ((), { }) ^CTraceback (most recent call last): File "/usr/lib/pymodules/python2.6/gevent/greenlet.py", line 390, in run result = self._run(*self.args, **self.kwargs) File "test.py", line 20, in echo line = fileobj.readline() File "/usr/lib/python2.6/socket.py", line 444, in readline data = self._sock.recv(self._rbufsize) File "/usr/lib/pymodules/python2.6/gevent/socket.py", line 427, in recv wait_read(sock.fileno(), timeout=self.timeout, event=self._read_event) File "/usr/lib/pymodules/python2.6/gevent/socket.py", line 170, in wait_read assert event is switch_result, 'Invalid switch into wait_read(): %r' % (switch_result, ) AssertionError: Invalid switch into wait_read(): None failed with AssertionError Segmentation fault $ python2.7 echo_demo.py test.py:9: UserWarning: libevent version mismatch: system version is '1.4.14b-stable' but this gevent is compiled against '1.4.13-stable' from gevent.server import StreamServer Starting echo server on port 6000 New connection from 127.0.0.1:44983 *** glibc detected *** python2.7: free(): invalid pointer: 0xb738b060 *** === Backtrace: = /lib/i386-linux-gnu/i686/cmov/libc.so.6(+0x6aac1)[0xb7557ac1] /lib/i386-linux-gnu/i686/cmov/libc.so.6(+0x6c328)[0xb7559328] /lib/i386-linux-gnu/i686/cmov/libc.so.6(cfree+0x6d)[0xb755c3dd] /usr/lib/pymodules/python2.7/greenlet.so(+0x19d6)[0xb78b09d6] === Memory map: 08048000-0826c000 r-xp fe:04 262443 /usr/bin/python2.7 0826c000-082c1000 rw-p 00224000 fe:04 262443 /usr/bin/python2.7 082c1000-082cd000 rw-p 00:00 0 08827000-08915000 rw-p 00:00 0 [heap] b720-b7221000 rw-p 00:00 0 b7221000-b730 ---p 00:00 0 b7335000-b7351000 r-xp fe:01 32862 /lib/i386-linux-gnu/libgcc_s.so.1 b7351000-b7352000 rw-p 0001b000 fe:01 32862 /lib/i386-linux-gnu/libgcc_s.so.1 b7367000-b73a8000 rw-p 00:00 0 b73a8000-b73b8000 r-xp fe:01 33159 /lib/i386-linux-gnu/i686/cmov/libresolv-2.13.so b73b8000-b73b9000 r--p 0001 fe:01 33159 /lib/i386-linux-gnu/i686/cmov/libresolv-2.13.so b73b9000-b73ba000 rw-p 00011000 fe:01 33159 /lib/i386-linux-gnu/i686/cmov/libresolv-2.13.so b73ba000-b73bc000 rw-p 00:00 0 b73bc000-b73c3000 r-xp fe:01 33201 /lib/i386-linux-gnu/i686/cmov/librt-2.13.so b73c3000-b73c4000 r--p 6000 fe:01 33201 /lib/i386-linux-gnu/i686/cmov/librt-2.13.so b73c4000-b73c5000 rw-p 7000 fe:01 33201 /lib/i386-linux-gnu/i686/cmov/librt-2.13.so b73c5000-b73d8000 r-xp fe:01 33171 /lib/i386-linux-gnu/i686/cmov/libnsl-2.13.so b73d8000-b73d9000 r--p 00012000 fe:01 33171 /lib/i386-linux-gnu/i686/cmov/libnsl-2.13.so b73d9000-b73da000 rw-p 00013000 fe:01 33171 /lib/i386-linux-gnu/i686/cmov/libnsl-2.13.so b73da000-b73dc000 rw-p 00:00 0 b73dc000-b73f6000 r-xp fe:04 508008 /usr/lib/libevent-1.4.so.2.2.0 b73f6000-b73f7000 rw-p 0001a000 fe:04 508008 /usr/lib/libevent-1.4.so.2.2.0 b73f7000-b7423000 r-xp fe:04 574629 /usr/lib/pyshared/python2.7/gevent/core.so b7423000-b7428000 rw-p 0002c000 fe:04 574629 /usr/lib/pyshared/python2.7/gevent/core.so b7428000-b74ed000 rw-p 00:00 0 b74ed000-b764 r-xp fe:01 33179 /lib/i386-linux-gnu/i686/cmov/libc-2.13.so b764-b7641000 ---p 00153000 fe:01 33179 /lib/i386-linux-gnu/i686/cmov/libc-2.13.so b7641000-b7643000 r--p 00153000 fe:01 33179 /lib/i386-linux-gnu/i686/cmov/libc-2.13.so b7643000-b7644000 rw-p 00155000 fe:01 33179 /lib/i386-linux-gnu/i686/cmov/libc-2.13.so b7644000-b7648000 rw-p 00:00 0 b7648000-b766c000 r-xp fe:01 33168 /lib/i386-linux-gnu/i686/cmov/libm-2.13.so b766c000-b766d000 r--p 00023000 fe:01 33168 /lib/i386-linux-gnu/i686/cmov/libm-2.13.so b766d000-b766e000 rw-p 00024000 fe:01 33168 /lib/i386-linux-gnu/i686/cmov/libm-2.13.so b766e000-b7681000 r-xp fe:04 508198 /usr/lib/libz.so.1.2.3.4 b7681000-b7682000 rw-p 00013000 fe:04 508198 /usr/lib/l
Bug#647805: gpsd: Danish debconf translation's encoding is b0rked
Package: gpsd Severity: normal Tags: l10n The debconf translation for Danish has a broken encoding that probably comes from the maintainer picking it from a mutt mailbox (mutt is known to mistakenly assum ASCII encoding in some cases) in #623089. I re-attach the file to this bug report. -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 3.0.0-2-686-pae (SMP w/2 CPU cores) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash # Danish translation gpsd. # Copyright (C) 2011 gpsd & nedenstående oversættere. # This file is distributed under the same license as the gpsd package. # Joe Hansen , 2011. # msgid "" msgstr "" "Project-Id-Version: gpsd\n" "Report-Msgid-Bugs-To: g...@packages.debian.org\n" "POT-Creation-Date: 2009-11-04 02:49+0100\n" "PO-Revision-Date: 2011-04-17 17:30+01:00\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: string #. Description #: ../gpsd.templates:1001 msgid "Device the GPS receiver is attached to:" msgstr "Enhed GPS-modtageren er tilsluttet:" #. Type: string #. Description #: ../gpsd.templates:1001 msgid "" "Please enter the device the GPS receiver is attached to. It will probably be " "something like /dev/ttyS0 or /dev/ttyUSB0." msgstr "" "Indtast venligst enheden som GPS-modtageren er tilsluttet. Det er sikkert noget " "som /dev/ttyS0 eller /dev/ttyUSB0." #. Type: string #. Description #: ../gpsd.templates:1001 msgid "" "Multiple devices may be specified as a space-separated list. Leave empty if " "you don't want to connect gpsd to a device on boot or if you want to use " "device autodetection only." msgstr "" "Flere enheder kan angives som en mellemrumsadskilt liste. Efterlad tom hvis " "du ikke ønsker at forbinde gpsd til en enhed ved opstart eller hvis du " "ønsker kun at bruge automatisk detektering af enheder." #. Type: boolean #. Description #: ../gpsd.templates:2001 msgid "Start gpsd automatically?" msgstr "Start gpsd automatisk?" #. Type: boolean #. Description #: ../gpsd.templates:2001 msgid "If you accept this option, gpsd will be started automatically." msgstr "Hvis du accepterer denne indstilling, vil gpsd blive startet automatisk." #. Type: string #. Description #: ../gpsd.templates:3001 msgid "gpsd control socket path:" msgstr "sti for gpsd-kontrolsokkel:" #. Type: string #. Description #: ../gpsd.templates:3001 msgid "" "Please enter the gpsd control socket location. Usually you want to keep the " "default setting." msgstr "" "Indtast venligst placeringen for gpsd-kontrolsokkelen. Normalt vil standarden " "være at foretrække." #. Type: string #. Description #: ../gpsd.templates:4001 msgid "Options to gpsd:" msgstr "Tilvalg for gpsd:" #. Type: string #. Description #: ../gpsd.templates:4001 msgid "" "You can give additional arguments when starting gpsd; see gpsd(8) for a list " "of options." msgstr "" "Du kan angive yderligere argumenter, når du starter gpsd; se gpsd(8) for en " "liste af tilvalg." #. Type: string #. Description #: ../gpsd.templates:4001 msgid "Do not use '-F' here. The control socket path is set independently." msgstr "Brug ikke »-F« her. Stien for kontrolsokkelen angives uafhængigt." #. Type: boolean #. Description #: ../gpsd.templates:5001 msgid "Should gpsd handle attached USB GPS receivers automatically?" msgstr "Skal gpsd håndtere tilsluttede USB GPS-modtagere automatisk?" #. Type: boolean #. Description #: ../gpsd.templates:5001 msgid "" "As gpsd only handles GPS devices, it is safe to choose this option. However, " "you can disable it if gpsd is causing interference with other attached " "devices or programs." msgstr "" "Da gpsd kun håndterer GPS-enheder, er det sikkert at vælge denne indstilling. " "Du kan dog deaktivere den, hvis gpsd medfører interferens med andre tilsluttede " "enheder eller programmer."
Bug#647806: Drop-down menu for "Open with..." is small
Package: iceweasel Version: 7.0.1-4 Severity: normal The drop-down menu that appears when opening files presents a small height, text is barely readable (see attached snapshot). -- Package-specific info: -- Addons package information -- System Information: Debian Release: wheezy/sid APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 3.0.0-1-686-pae (SMP w/2 CPU cores) Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages iceweasel depends on: ii debianutils 4.0.4 ii fontconfig 2.8.0-3 ii libc6 2.13-21 ii libgcc1 1:4.6.1-15 ii libgdk-pixbuf2.0-0 2.24.0-1 ii libglib2.0-02.28.6-1 ii libgtk2.0-0 2.24.6-2 ii libnspr4-0d 4.8.9-1 ii libstdc++6 4.6.1-15 ii procps 1:3.2.8-11 ii xulrunner-7.0 7.0.1-4 iceweasel recommends no packages. Versions of packages iceweasel suggests: ii libgssapi-krb5-21.9.1+dfsg-1 ii mozplugger ii ttf-lyx 2.0.1-1 ii ttf-mathematica4.1 ii xfonts-mathml 4 Versions of packages xulrunner-7.0 depends on: ii libasound21.0.24.1-4 ii libatk1.0-0 2.2.0-2 ii libbz2-1.01.0.5-7 ii libc6 2.13-21 ii libcairo2 1.10.2-6.1 ii libdbus-1-3 1.4.16-1 ii libevent-1.4-21.4.14b-stable-1 ii libfontconfig12.8.0-3 ii libfreetype6 2.4.7-2 ii libgcc1 1:4.6.1-15 ii libgdk-pixbuf2.0-02.24.0-1 ii libglib2.0-0 2.28.6-1 ii libgtk2.0-0 2.24.6-2 ii libhunspell-1.3-0 1.3.2-4 ii libjpeg8 8c-2 ii libmozjs7d7.0.1-4 ii libnotify40.7.4-1 ii libnspr4-0d 4.8.9-1 ii libnss3-1d3.12.11-3 ii libpango1.0-0 1.29.4-1 ii libpixman-1-0 0.22.2-1 ii libreadline6 6.2-7 ii libsqlite3-0 3.7.7-2 ii libstartup-notification0 0.12-1 ii libstdc++64.6.1-15 ii libvpx0 0.9.7.p1-2 ii libx11-6 2:1.4.4-2 ii libxext6 2:1.3.0-3 ii libxrender1 1:0.9.6-2 ii libxt61:1.1.1-2 ii zlib1g1:1.2.3.4.dfsg-3 Versions of packages xulrunner-7.0 suggests: ii libcanberra0 0.28-3 ii libdbus-glib-1-2 0.98-1 ii libgnomeui-0 2.24.5-2 <><><>
Bug#647808: RM: libqwt -- RoQA; RoQA, qt3, orphaned
Package: ftp.debian.org Severity: normal I did look at a QA upload for this relating to the proposed Release Goal to fix missing recommended build targets for build-arch and build-indep. However, with regard to the removal of Qt3 itself, I think it is time to remove libqwt, especially as it's only reverse dep, fslview, is already uninstallable due to the missing libvtk5.4-qt3. #618135 Thanks. Neil Williams = codeh...@debian.org -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647809: DAEMON_OPTS from /etc/default/gvpe not used in INIT script
Package: gvpe Version: 2.24-1 Severity: important Hi, I just downloaded the gvpe source package and built a binary package for Squeeze. After creating the necessery config file and keys for GVPE, I could not set the nodename via the /etc/default/gvpe file. /etc/default/gvpe has the variable DAEMON_OPTS but that isn't used in the /etc/init.d/gvpe INIT script. /etc/init.d/gvpe has the variable DAEMON_ARGS but without changing the INIT script itself, this value can nowhere been set. So, maybe just renaming DAEMON_OPTS to DAEMON_ARGS in /etc/default/gvpe should be sufficient. -- System Information: Debian Release: 6.0.3 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'stable') Architecture: i386 (i686) Kernel: Linux 2.6.32-5-686-bigmem (SMP w/2 CPU cores) Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages gvpe depends on: ii libc6 2.11.2-10Embedded GNU C Library: Shared lib ii libgcc1 1:4.4.5-8GCC support library ii libssl0.9.8 0.9.8o-4squeeze3 SSL shared libraries ii libstdc++6 4.4.5-8 The GNU Standard C++ Library v3 gvpe recommends no packages. gvpe 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#647810: RM: fslview -- RoQA; RoQA, uninstallable, RC-buggy (FTBFS), not in testing
Package: ftp.debian.org Severity: normal RC bug: #618135 FTBFS, missing build dep. The existing package is also uninstallable due to the removal of libvtk5.4-qt3. fslview depends on libqwt4c2, from libqwt. libqwt also now has a bug asking for removal, so fslview isn't going to be any easier to handle. Thanks. Neil Williams = codeh...@debian.org -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647811: emacs23: daemon start-stop script
Package: emacs23 Version: 23.3+1-4 Severity: wishlist It will be great if a start-stop script is provided as part of the package to start emacs in daemon mode during startup. Thanks for your excellent work. Ramakrishnan -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 3.0.0-1-amd64 (SMP w/6 CPU cores) Locale: LANG=en_IN, LC_CTYPE=en_IN (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages emacs23 depends on: ii emacs23-bin-common 23.3+1-4 ii libasound2 1.0.24.1-4 ii libatk1.0-0 2.2.0-2 ii libc6 2.13-21 ii libcairo2 1.10.2-6.1 ii libdbus-1-3 1.4.16-1 ii libfontconfig1 2.8.0-3 ii libfreetype62.4.7-2 ii libgconf2-4 2.32.4-1 ii libgdk-pixbuf2.0-0 2.24.0-1 ii libgif4 4.1.6-9 ii libglib2.0-02.28.8-1 ii libgpm2 1.20.4-4 ii libgtk2.0-0 2.24.7-1 ii libice6 2:1.0.7-2 ii libjpeg88c-2 ii libm17n-0 1.6.3-1 ii libncurses5 5.9-4 ii libotf0 0.9.12-1 ii libpango1.0-0 1.29.4-2 ii libpng12-0 1.2.46-3 ii librsvg2-2 2.34.1-3 ii libsm6 2:1.2.0-2 ii libtiff43.9.5-2 ii libtinfo5 5.9-4 ii libx11-62:1.4.4-2 ii libxft2 2.2.0-3 ii libxpm4 1:3.5.9-4 ii libxrender1 1:0.9.6-2 ii zlib1g 1:1.2.3.4.dfsg-3 emacs23 recommends no packages. Versions of packages emacs23 suggests: pn emacs23-common-non-dfsg -- 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#562765: cheese: stacktrace
Package: cheese Version: 3.2.0-1 Severity: normal This is the stacktrace that I get when starting cheese: warning: Can't read pathname for load map: Input/output error. [Thread debugging using libthread_db enabled] Core was generated by `cheese'. Program terminated with signal 11, Segmentation fault. #0 0x7fbd78010372 in cheese_camera_device_get_best_format () from /usr/lib/x86_64-linux-gnu/libcheese.so.1 (gdb) bt #0 0x7fbd78010372 in cheese_camera_device_get_best_format () from /usr/lib/x86_64-linux-gnu/libcheese.so.1 #1 0x7fbd7800d71c in cheese_camera_play () from /usr/lib/x86_64-linux-gnu/libcheese.so.1 #2 0x00411f20 in cheese_main_window_setup_camera () #3 0x7fbd75f61e7e in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0 #4 0x7fbd75f738d7 in ?? () from /usr/lib/libgobject-2.0.so.0 #5 0x7fbd75f7cd05 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0 #6 0x7fbd75f7ced3 in g_signal_emit () from /usr/lib/libgobject-2.0.so.0 #7 0x0040c658 in _start () -- System Information: Debian Release: wheezy/sid APT prefers stable APT policy: (990, 'stable'), (500, 'unstable'), (500, 'testing') Architecture: amd64 (x86_64) Kernel: Linux 2.6.39.3-64-laptop-5-g709069f-dirty (SMP w/2 CPU cores) Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages cheese depends on: ii cheese-common 3.2.0-1Common files for the Cheese tool t ii gnome-video-effects 0.3.0-4GNOME Video Effects ii libc6 2.13-21Embedded GNU C Library: Shared lib ii libcanberra-gtk3-00.28-3 GTK+ 3.0 helper for playing widget ii libcheese-gtk20 3.2.0-1tool to take pictures and videos f ii libcheese13.2.0-1tool to take pictures and videos f ii libclutter-1.0-0 1.8.2-1Open GL based interactive canvas l ii libclutter-gtk-1.0-0 1.0.4-1Open GL based interactive canvas l ii libgdk-pixbuf2.0-02.24.0-1 GDK Pixbuf library ii libgee2 0.6.1-3GObject based collection library ii libglib2.0-0 2.28.6-1 The GLib library of C routines ii libgnome-desktop-3-0 3.0.2-2Utility library for loading .deskt ii libgstreamer0.10-00.10.35-1 Core GStreamer libraries and eleme ii libgtk-3-03.0.12-2 GTK+ graphical user interface libr Versions of packages cheese recommends: ii gnome-icon-theme 2.30.3-2 GNOME Desktop icon theme ii gvfs 1.6.4-4userspace virtual filesystem - ser ii hicolor-icon-theme0.12-1 default fallback theme for FreeDes cheese 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#647229: p11-kit: FTBFS(!linux): error: 'PTHREAD_MUTEX_RECURSIVE' undeclared (first use in this function)
On 2011-10-31 Christoph Egger wrote: > Package: src:p11-kit [...] > Your package failed to build on the !linux buildds: > libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I.. > -DP11_KIT_FUTURE_UNSTABLE_API > -DP11_SYSTEM_CONFIG_FILE=\"/etc/pkcs11/pkcs11.conf\" > -DP11_SYSTEM_CONFIG_MODULES=\"/etc/pkcs11/modules\" > "-DP11_USER_CONFIG_FILE=\"~/.pkcs11/pkcs11.conf\"" > "-DP11_USER_CONFIG_MODULES=\"~/.pkcs11/modules\"" > -DP11_MODULE_PATH=\"/usr/lib/x86_64-kfreebsd-gnu/pkcs11\" -g -O2 -g -Wall > -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes > -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 > -Winit-self -Waggregate-return -Wno-missing-format-attribute > -Wmissing-include-dirs -Wundef -c compat.c -fPIC -DPIC -o .libs/compat.o > compat.c: In function '_p11_mutex_init': > compat.c:51:2: warning: implicit declaration of function > 'pthread_mutexattr_settype' [-Wimplicit-function-declaration] > compat.c:51:2: warning: nested extern declaration of > 'pthread_mutexattr_settype' [-Wnested-externs] > compat.c:51:36: error: 'PTHREAD_MUTEX_RECURSIVE' undeclared (first use in > this function) > compat.c:51:36: note: each undeclared identifier is reported only once for > each function it appears in > make[3]: *** [compat.lo] Error 1 [...] > If you have further questions please mail debian-...@lists.debian.org Hello, Afaict this happens because on Linux the respective parts of pthread.h are conditional on #if defined __USE_UNIX98 || defined __USE_XOPEN2K8 but only #if defined __USE_UNIX98 on kFree-BSD. features.h on both Linux and kFree-BSD #defines __USE_XOPEN2K8 by default. Therefore p11-kit builds without special flags on both Linux and BSD (with BSD kernel) but requires either "-D_XOPEN_SOURCE=500 -D_BSD_SOURCE" or "-D_GNU_SOURCE" on kFree-BSD cu andreas -- `What a good friend you are to him, Dr. Maturin. His other friends are so grateful to you.' `I sew his ears on from time to time, sure' -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#588041: [PATCH] use apt-get remove; remove/purge all packages at once
On 2011-11-06 01:49, Andreas Beckmann wrote: > Removing packages with dpkg one-by-one does not respect dependencies > therefore use apt-get remove to reorder the packages properly. > apt-get purge can't be used because it fails on unknown packages (i.e. not > in the archive and not in config-files-remaining state). See #637853. > But we can purge all packages in one dpkg call. > Also apt-get in lenny is not able to properly purge previously removed > packages. For proceeding with this patch I'd like to know if the current behaviour of removing/purging package by package without looking at dependencies should be available via an command line option (currently marked as TODO) or if I can drop just the old remove_or_purge as not needed any longer. Andreas > diff --git a/piuparts.py b/piuparts.py > index b3d4667..7464f9b 100644 > --- a/piuparts.py > +++ b/piuparts.py > @@ -864,12 +864,27 @@ class Chroot: > vdict[name] = status > return vdict > > +def remove_packages(self, packages): > +"""Remove packages in a chroot.""" > +if not False: # ToDo: settings.remove_one_by_one > +if packages: > +self.run(["apt-get", "remove"] + packages, > ignore_errors=True) > +else: > +self.remove_or_purge("remove", packages) > + > +def purge_packages(self, packages): > +"""Purge packages in a chroot.""" > +if not False: # ToDo: settings.purge_one_by_one > +if packages: > +self.run(["dpkg", "--purge"] + packages, ignore_errors=True) > +else: > +self.remove_or_purge("purge", packages) > + > def (self, operation, packages): > -"""Remove or purge packages in a chroot.""" > +"""Remove or purge packages in a chroot. No dependency ordering.""" > for name in packages: > self.run(["dpkg", "--" + operation, name], ignore_errors=True) > self.run(["dpkg", "--remove", "--pending"], ignore_errors=True) -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647812: wishlist: event_command for sh script after all events
Package: finch Severity: wishlist Hello, It would be great that it is possible to run a command for each events: For instance: Command Users Msg # that mcabber won't delete these files, it's your script's job. # # The command is called the following way: # $events_command MSG IN jabber@id [file] (when receiving a message) # $events_command MSG OUT jabber@id (when sending a message) # $events_command MSG MUC room_id [file] (when receiving a MUC message) # $events_command STATUS X jabber@id (new buddy status is X) # $events_command UNREAD N(number of unread buddy buffers) (ex from mcabber) thanks a lot Sincerely yours, Y. -- System Information: Debian Release: 6.0.3 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'stable') Architecture: i386 (i686) Kernel: Linux 2.6.32-5-686-bigmem (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647268: RuntimeError: Failed to load the Progress Indicator plugin [...]
Package: calibre Version: 0.8.21+dfsg-1 Followup-For: Bug #647268 Dear Maintainer, Same problem here as original post. -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Kernel: Linux 3.1-0.slh.3-aptosid-amd64 (SMP w/1 CPU core; PREEMPT) Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages calibre depends on: ii calibre-bin0.8.21+dfsg-1 ii fonts-liberation [ttf-liberation] 1.07.0-2 ii imagemagick8:6.6.9.7-5+b1 ii poppler-utils 0.16.7-2+b1 ii python-beautifulsoup 3.2.0-2 ii python-cherrypy3 3.1.2-1 ii python-cssutils0.9.8~a1-1 ii python-dateutil1.5-1 ii python-dbus0.84.0-2 ii python-django-tagging 0.3.1-2 ii python-encutils0.9.8~a1-1 ii python-imaging 1.1.7-4 ii python-lxml2.3-0.1+b2 ii python-mechanize 0.2.5-1 ii python-pkg-resources 0.6.24-1 ii python-pyparsing 1.5.2-2 ii python-qt4 4.8.6-2 ii python-routes 1.12.3-1 ii python2.7 2.7.2-7 ii ttf-liberation 1.07.0-2 ii xdg-utils 1.1.0~rc1-2 Versions of packages calibre recommends: pn python-dnspython calibre suggests no packages. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#562876: [reportbug/master] remove reference to Ctrl+c when asking for subject: it won't work in GTK+ UI; thanks to Mark Brown for the report; Closes: #562876
tag 562876 pending tag 562876 pending thanks Date: Sun Nov 6 15:04:02 2011 +0100 Author: Sandro Tosi Commit ID: b4905ece665c131aef3e0861917fea29458db54c Commit URL: http://git.debian.org/?p=reportbug/reportbug.git;a=commitdiff;h=b4905ece665c131aef3e0861917fea29458db54c Patch URL: http://git.debian.org/?p=reportbug/reportbug.git;a=commitdiff_plain;h=b4905ece665c131aef3e0861917fea29458db54c remove reference to Ctrl+c when asking for subject: it won't work in GTK+ UI; thanks to Mark Brown for the report; Closes: #562876 -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#575965: xserver-xorg-video-intel: Random complete freezes of whole system
> > If I can find the said versions of packages somewhere, I am willing to > > give the newest versions a try, but otherwise I will stick to a working > > system. I am sorry about that, but I need to get work done on the > dpkg-repack / snapshot.debian.org may help? I have been running the latest sid versions for two weeks now, with no change to the previous situation. That is, it works as well as before, but some freezes of a short duration (less than 5 minutes) still happen sometimes. It is bearable, but obviously still somehow broken, so I suggest keeping this open but at lower priority, like minor. -Juha -- --- | Juha Jäykkä, ju...@iki.fi | | http://www.maths.leeds.ac.uk/~juhaj | --- signature.asc Description: This is a digitally signed message part.
Bug#647813: geneweb: Welcome page omits two important options
Package: geneweb Version: 6.00-2 Severity: important Dear Maintainer, The release of the new version (6.02) has much modified the appearance of GeneWeb, some of which are cosmetic but omitting the options to see 'history updates' and 'database forum' will impact substantially on my users. -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Kernel: Linux 3.0.0-2-amd64 (SMP w/2 CPU cores) Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages geneweb depends on: ii adduser 3.113 ii debconf [debconf-2.0] 1.5.41 ii iso-codes 3.29-1 ii isoquery1.5-1 ii libc6 2.13-21 ii lsb-base3.2-28 ii perl-base [perl5-base] 5.12.4-6 geneweb recommends no packages. Versions of packages geneweb suggests: ii gwsetup ii gwtp ii iceweasel [www-browser] 7.0.1-4 ii opera [www-browser] 11.52.1100 -- debconf information: geneweb/remove_databases: false geneweb/run_mode: Always on geneweb/port: 2317 geneweb/lang: English geneweb/remainingdir: -- John Lewis "Kingsclere Families" website uses the GeneWeb genealogy data server -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#589670: brasero: Cannot create DVD image or copy DVD
Package: brasero Version: 2.30.3-2 Severity: normal Same problem (unable to copy DVD to DVD or image because of greyed buttons), same solution (installing brasero-cdrkit). -- System Information: Debian Release: 6.0.3 APT prefers stable APT policy: (500, 'stable') Architecture: amd64 (x86_64) Kernel: Linux 2.6.39-bpo.2-amd64 (SMP w/4 CPU cores) Locale: LANG=es_ES.utf8, LC_CTYPE=es_ES.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages brasero depends on: ii brasero-common 2.30.3-2 Common files for the Brasero CD bu ii gnome-icon-theme 2.30.3-2 GNOME Desktop icon theme ii gstreamer0.10-plug 0.10.30-1 GStreamer plugins from the "base" ii gvfs 1.6.4-3 userspace virtual filesystem - ser ii libatk1.0-01.30.0-1 The ATK accessibility toolkit ii libbrasero-media0 2.30.3-2 CD/DVD burning library for GNOME - ii libc6 2.11.2-10 Embedded GNU C Library: Shared lib ii libcairo2 1.8.10-6 The Cairo 2D vector graphics libra ii libdbus-1-31.2.24-4+squeeze1 simple interprocess messaging syst ii libdbus-glib-1-2 0.88-2.1 simple interprocess messaging syst ii libfontconfig1 2.8.0-2.1 generic font configuration library ii libfreetype6 2.4.2-2.1+squeeze2FreeType 2 font engine, shared lib ii libgconf2-42.28.1-6 GNOME configuration database syste ii libglib2.0-0 2.24.2-1 The GLib library of C routines ii libgstreamer-plugi 0.10.30-1 GStreamer libraries from the "base ii libgstreamer0.10-0 0.10.30-1 Core GStreamer libraries and eleme ii libgtk2.0-02.20.1-2 The GTK+ graphical user interface ii libice62:1.0.6-2 X11 Inter-Client Exchange library ii libnautilus-extens 2.30.1-2squeeze1 libraries for nautilus components ii libpango1.0-0 1.28.3-1+squeeze2 Layout and rendering of internatio ii libsm6 2:1.1.1-1 X11 Session Management library ii libtotem-plparser1 2.30.3-1 Totem Playlist Parser library - ru ii libtracker-client- 0.8.17-1 metadata database, indexer and sea ii libunique-1.0-01.1.6-1.1 Library for writing single instanc ii libxml22.7.8.dfsg-2+squeeze1 GNOME XML library brasero recommends no packages. Versions of packages brasero suggests: ii libdvdcss21.2.10-0.3 Simple foundation for reading DVDs pn vcdimager (no description available) -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647814: RM: libmcal -- RoQA; orphaned, dead upstream, library without reverse dependencies.
Package: ftp.debian.org Severity: normal The lintian warnings are fixable but the code is dead upstream, unsupported, documentation is not that useful and the library has no reverse dependencies in Debian. (Last upstream release was 2003 but was never uploaded to Debian. Other calendar mechanisms exist and mcal doesn't support any formats except it's own. Please remove libmcal Thanks. Neil Williams = codeh...@debian.org -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#618912: Also group or users do not work anymore
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Package: mount Version: 2.19.1-5 Followup-For: Bug #618912 I want to ask what happens with the user, group and users mount/umount as it is documented in the man page and worked for ages now. The fstab options user, users and group do not work for many months now. (In the original report I only tested "user".) This is a big constraint of the functionality of mount. - -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (800, 'unstable'), (700, 'stable'), (60, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 3.0.8 (SMP w/8 CPU cores; PREEMPT) Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1) (ignored: LC_ALL set to de_DE) Shell: /bin/sh linked to /bin/dash Versions of packages mount depends on: ii libblkid12.19.1-5 ii libc62.13-21 ii libmount12.19.1-5 ii libselinux1 2.1.0-4 ii libsepol12.1.0-1.1 mount recommends no packages. Versions of packages mount suggests: ii nfs-common 1:1.2.5-2 - -- no debconf information Gruß Klaus - -- Klaus Ethgen http://www.ethgen.ch/ pub 4096R/4E20AF1C 2011-05-16 Klaus Ethgen Fingerprint: 85D4 CA42 952C 949B 1753 62B3 79D0 B06F 4E20 AF1C -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.11 (GNU/Linux) iQGcBAEBCgAGBQJOtq2VAAoJEKZ8CrGAGfasj7YL/3CnZNUncpmFEaOwqh2mpdxj KmnMis6dOk+3DmAHntDWEQ6EUNwa+MexfgokM/SnJYmnwZ/6Hy+BSgzaNhA8nPuL oPdd5Md31zO6Zw4N6ztInEsSw/1ga/B9GPocrc6fPMbueS7/11rx6zv3wmIVmsoL by/PxtKYZmYNcX8oLM29PszPL7jfluhW6YhzbUAxgqTYyJcEi0Vx6b12o1/YnHjk mEe3O9sD5Nim/staVc/Ag5RR5/nBIgNjur5ATDMcQdzWW+Xj/PVOwrL2e1rJ2lJI +NTENpPXfhSy1j9umuw/1EM//CfTeUvrhS0Y1++H03Z8C9AlBJvBDPp6EuO0353I hym3Db/x6YElDL9Ag6rwcjgg6WHD9sQIId9IUXLc9V+TNJdgzAnhAWCIrs9OJEJ3 W/OIftTUjICQkfbk7he7mX/RWUL0FAu/DY1kN1/vwzbJmHn+IQBeAPbjA+3PMrif 2hEpgWjljJ2SujOqlBJWzR+Ouz0HTEmdfmO3YoC9nA== =3621 -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#647815: sphinxsearch: Omitting mem_limit generates a spurious warning
Package: sphinxsearch Version: 0.9.9+2.0.1beta-1 Severity: normal Since upgrading to 0.9.9+2.0.1beta-1, the daily cronjob generates the following warning: WARNING: collect_hits: mem_limit=0 kb too low, increasing to 15616 kb I have omitted mem_limit from sphinx.conf, relying on the default of 32M claimed by the documentation and comments. This is apparently not the case. -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 3.0.0-1-686-pae (SMP w/3 CPU cores) Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages sphinxsearch depends on: ii adduser 3.113 ii libc6 2.13-21 ii libexpat1 2.0.1-7.2 ii libgcc1 1:4.6.2-4 ii libmysqlclient16 5.1.58-1 ii libpq59.1.1-3 ii libstdc++64.6.2-4 ii libstemmer0d 0+svn546-2 ii zlib1g1:1.2.3.4.dfsg-3 sphinxsearch recommends no packages. sphinxsearch suggests no packages. -- Configuration Files: /etc/default/sphinxsearch changed [not included] /etc/sphinxsearch/sphinx.conf changed [not included] -- 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#645790: hurd-i386: enable LFS
On Tue, Nov 01, 2011 at 10:55:25PM +, Dominic Hargreaves wrote: > On Tue, Nov 01, 2011 at 08:45:13PM +0100, Pino Toscano wrote: > > Alle martedì 1 novembre 2011, Dominic Hargreaves ha scritto: > > > Hrm. This one appears to cause my hurd kvm machine to hang when the > > > test runs, at least with bleadperl. > > > > Which test of it? One of the two lfs-related tests? > > AFAIK, the only problem like that I have with the perl test suite is the > > test cpan/Sys-Syslog/t/syslog.t causing havoc to syslog and to the > > system (which seems to not be a problem in chroot'ed builds, which have > > no /var/log). > > t/op/lfs. Ah, giving the KVM VM more memory was enough to fix this. -- Dominic Hargreaves | http://www.larted.org.uk/~dom/ PGP key 5178E2A5 from the.earth.li (keyserver,web,email) -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647816: Will FTBFS with new libindicator (in experimental)
Source: cairo-dock-plug-ins Version: 2.4.0~2-1 Severity: minor Hi, with libindicator from experimental, cairo-dock-plug-ins will FTBFS, because the MeMenu plugin won't be build and debhelper fails in dh_install then. Please prepare to drop the plugin as soon new libindicator will hit unstable. (indicator-me will wanish then too) Regards Evgeni Golov -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.38-2-amd64 (SMP w/4 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#632426: [INTL:ko] Korean debconf template translation for pdns
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Any progress on this bug? Regards, Matthijs Mohlmann -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.11 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iQIcBAEBAgAGBQJOtq1pAAoJEBXBjvSJ+ky+zmEQAJMhJTuIu4IGXs7MsCvz79Wg AXHod3q3+ILVR5dVB+M0tW11myZF4PeBOMSLpZZDS0NClX02zClVxY8Kuw7EakTo exkBcSCguinB6WxUvXrowPg+xIBvippA9FViONv+eVW7VUxtyTepH+snedSr1Vyi bpkopNQ1gcyW90/f/RPYXBATcCuqOpKX8NJIoyFQG2pNlGGckTuNJnPjUdWgI0cv 59vvc33dcVgdVzmV9l3WHy3kg0lKEdkhmDIjXpZ+ISjFZeF4lsxx8e0WSQNMXiii 53DCbcrZlGMXt5qcL5r7TA4ejkXGMw3oFHC2YiyZArj7gyJGAIuYyvDxmJqRWsTt mOPCzUIHwFoGcMsuTSlakVYXoU7eIs09CoMpeZSJ1Przc2H++c0T8jPrkFbnVllP agzAM+UBviaT1e+7XN/a39HAnLZVQpyy9II2yFNNxi/oMCY6qwFZIaC6MrLxLI5I FnEX1KlYke3MZeyTHVoDpgBxLuAHobCAdP+kmF9CruXyJluR9SRQaSjxIyNPlx/Z xGy3TnJZCA9uYVZYTioeo7eo/Eme0dpKmH0X0A49uf0prbLh1CtYNpnmEcRVnajS z1/jQlWka4BXNebJQC8040p2ysx1dANz39hf5Dw7F7c0E1bONl2gG61oMoYcSI3u 04nA5ChOCz7VUl0+6vsd =w25z -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#647817: RM: libgnujmi-java -- RoQA; Orphaned library, no rdeps, low popcon
Package: ftp.debian.org Severity: normal Hi, libgnujmi-java is orphaned and has no reverse dependencies, so there is little reason to keep it in the archive. ~Niels -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647818: RM: png-sixlegs -- RoQA; orphaned, dead-upstream, no rdeps
Package: ftp.debian.org Severity: normal Orphaned library with no reverse dependencies. Last upstream release appears to be May 2008 (see [1]). ~Niels [1] http://code.google.com/p/javapng/downloads/list -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647819: calibre fails to start, complaining about PyQt4.QtCore version
Package: calibre Version: 0.8.21+dfsg-1 Severity: grave Justification: renders package unusable When starting calibre, a short period of waiting happens, followed by a traceback and an error message. I have tried un-installing and re-installing calibre and what seems to be the relevant dependent packages. The traceback looks like: Traceback (most recent call last): File "/usr/bin/calibre", line 19, in sys.exit(main()) File "/usr/lib/calibre/calibre/gui2/main.py", line 338, in main app, opts, args, actions = init_qt(args) File "/usr/lib/calibre/calibre/gui2/main.py", line 50, in init_qt from calibre.gui2.ui import Main File "/usr/lib/calibre/calibre/gui2/ui.py", line 31, in from calibre.gui2.widgets import ProgressIndicator File "/usr/lib/calibre/calibre/gui2/widgets.py", line 24, in from calibre.gui2.progress_indicator import ProgressIndicator as _ProgressIndicator File "/usr/lib/calibre/calibre/gui2/progress_indicator/__init__.py", line 15, in pi_error) RuntimeError: Failed to load the Progress Indicator plugin: the PyQt4.QtCore module is version 1 but the progress_indicator module requires version -1 -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'stable') Architecture: i386 (i686) Kernel: Linux 2.6.39-2-486 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 calibre depends on: ii calibre-bin 0.8.21+dfsg-1 e-book converter and library manag ii imagemagick 8:6.6.0.4-3+b1 image manipulation programs ii poppler-utils 0.16.7-2+b1PDF utilities (based on Poppler) ii python-beautifulsoup 3.2.0-2error-tolerant HTML parser for Pyt ii python-cherrypy3 3.1.2-1Python web development framework - ii python-cssutils 0.9.8~a1-1 CSS Cascading Style Sheets parser ii python-dateutil 1.5-1 powerful extensions to the standar ii python-dbus 0.84.0-2 simple interprocess messaging syst ii python-django-tagging 0.3.1-2Generic tagging application for Dj ii python-encutils 0.9.8~a1-1 Encoding detection collection for ii python-imaging1.1.7-2+b1 Python Imaging Library ii python-lxml 2.3-0.1+b2 pythonic binding for the libxml2 a ii python-mechanize 0.2.5-1stateful programmatic web browsing ii python-pkg-resources 0.6.24-1 Package Discovery and Resource Acc ii python-pyparsing 1.5.2-2Python parsing module ii python-qt44.8.6-2Python bindings for Qt4 ii python-routes 1.12.3-1 Routing Recognition and Generation ii python2.7 2.7.2-6An interactive high-level object-o ii ttf-liberation1.07.0-1 Fonts with the same metrics as Tim ii xdg-utils 1.1.0~rc1-2desktop integration utilities from Versions of packages calibre recommends: ii python-dnspython 1.8.0-1DNS toolkit for Python calibre suggests no packages. -- debconf-show failed -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647649: pu: package bti/028-2+squeeze1
tag 647649 + squeeze pending thanks On Sat, 2011-11-05 at 19:58 +0100, gregor herrmann wrote: > On Sat, 05 Nov 2011 18:03:40 +, Adam D. Barratt wrote: > > > > Attached is the debdiff, and I've also tested the change successfully > > > on a stable machine. > > Please go ahead; thanks. > > Uploaded; thanks to you! Flagged for acceptance at the next dinstall. Regards, Adam -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#607438: Bugs in stable c-ares package
On Sat, 2011-11-05 at 20:51 +0100, Gregor Jasny wrote: > On 11/5/11 3:26 PM, Adam D. Barratt wrote: > > On Sun, 2011-10-30 at 18:36 +0100, Gregor Jasny wrote: > >> 1) Update stable version with the single patch from the bug report > > > > This would be the safest and generally preferred option. > > I took option 1 and prepared c-ares_1.7.3-1squeeze1: > > http://anonscm.debian.org/gitweb/?p=collab-maint/c-ares.git;a=shortlog;h=refs/heads/squeeze > > Uploaded to mentors for reviewing and testing: > > http://mentors.debian.net/debian/pool/main/c/c-ares/c-ares_1.7.3-1squeeze1.dsc > > Andreas, could you please upload to stable (if you have no objections) > once the release team gives their OK? The debdiff as provided in your mail looks fine; thanks. Regards, Adam -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647820: live-build: French debconf templates translation
Package: live-build Version: N/A Severity: wishlist Tags: patch l10n *** /home/julien/traductions/po-debconf/patch-translate.txt Please find attached the french debconf templates translation, proofread by the debian-l10n-french mailing list contributors. This file should be put as debian/po/fr.po in your package build tree. -- System Information: Debian Release: 6.0.3 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'stable') Architecture: amd64 (x86_64) Kernel: Linux 2.6.32-5-amd64 (SMP w/1 CPU core) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash # Translation of live-build debconf templates to French. # Copyright (C) 2011 French l10n team # This file is distributed under the same license as the live-build package. # Julien Patriarca , 2011. # msgid "" msgstr "" "Project-Id-Version: live-build\n" "Report-Msgid-Bugs-To: live-bu...@packages.debian.org\n" "POT-Creation-Date: 2011-10-26 08:17+0530\n" "PO-Revision-Date: 2011-10-27 10:31+0100\n" "Last-Translator: Julien Patriarca \n" "Language-Team: FRENCH \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: title #. Description #: ../live-build-cron.templates:2001 msgid "Debian Live - System Build Scripts (cron autobuilder)" msgstr "Scripts automatiques de création du système Debian Live" #. Type: boolean #. Description #: ../live-build-cron.templates:3001 msgid "Enable image autobuilds?" msgstr "Activer l'autoconstruction des images ?" #. Type: boolean #. Description #: ../live-build-cron.templates:3001 msgid "Please choose whether live-images should be built automatically." msgstr "" "Veuillez choisir si les images autonomes (« live ») doivent être construites " "automatiquement." #. Type: string #. Description #: ../live-build-cron.templates:4001 msgid "Image build directory:" msgstr "Répertoire de construction des images :" #. Type: string #. Description #: ../live-build-cron.templates:4001 msgid "Please specify the directory where live-images should be stored." msgstr "" "Veuillez indiquer le répertoire où les images autonomes seront stockées." #. Type: string #. Description #: ../live-build-cron.templates:5001 msgid "Cron expression for image builds:" msgstr "Entrée de cron pour la construction des images :" #. Type: string #. Description #: ../live-build-cron.templates:5001 msgid "" "Please specify the scheduling for the cron job defining when live-images " "should be built." msgstr "" "Veuillez indiquer la programmation (pour cron) de la tâche de création des " "images autonomes." #. Type: select #. Description #: ../live-build-cron.templates:6001 msgid "Live-build version to use:" msgstr "Version de live-build à utiliser :" #. Type: select #. Description #: ../live-build-cron.templates:6001 msgid "Please select the version of live-build to use." msgstr "Veuillez choisir la version de live-build à utiliser." #. Type: select #. Description #: ../live-build-cron.templates:6001 msgid "" "If you choose \"git\", the current version of live-build from git will be " "used. If you choose \"host\", the live-build from the host system will be " "used. Finally, \"release\" will use the last released version." msgstr "" "Si vous choisissez « git », la version de live-build présente dans les " "dépôts Git sera utilisée. Si vous choisissez « host », la version de live-" "build présente sur la machine hôte sera utilisée. Enfin, avec « release », " "la dernière version publiée sera utilisée." #. Type: multiselect #. Description #: ../live-build-cron.templates:7001 msgid "Daily image distribution(s):" msgstr "Distribution(s) pour les images quotidiennes :" #. Type: multiselect #. Description #: ../live-build-cron.templates:7001 msgid "" "Please select the distributions you would like to include for live-images " "built daily." msgstr "" "Veuillez indiquer la ou les distributions que vous souhaitez inclure pour " "les images autonomes construites quotidiennement." #. Type: multiselect #. Description #: ../live-build-cron.templates:8001 msgid "Daily image flavor(s):" msgstr "Type(s) d'images quotidiennes :" #. Type: multiselect #. Description #: ../live-build-cron.templates:8001 msgid "" "Please select the flavors you would like to include for live-images built " "daily." msgstr "" "Veuillez indiquer les types que vous souhaitez inclure pour les images " "autonomes construites quotidiennement." #. Type: multiselect #. Description #: ../live-build-cron.templates:9001 msgid "Weekly image distribution(s):" msgstr "Distribution(s) pour les images hebdomadaires :" #. Type: multiselect #. Description #: ../live-build-cron.templates:9001 msgid "" "Please select the distributions you would like to include for live-images " "built weekly." msgstr "" "Veuille
Bug#647770: FW: Re: linux-image-2.6.32-5-amd64: Random system freeze after "ohci_hcd 0000:00:12.0: HC died; cleaning up"
>Does the screen go blank, or is there still text/images on the screen >at that point? As it happens, the picture on the screen gets frozen like a screenshot. Also, the last ~500ms of sound are looped, I think it is the sound chip buffer. Looping is going on for some minutes, then it is quiet. >Has this always been this way, or did it start after an upgrade (i.e., >is it a regression)? If it is a regression, what were the last >working and first broken versions? It is the completely fresh installation, made with unofficial Debian 6.0.3 AMD64 netinstall with firmware, downloaded from cdimage.debian.org and updated. The hardware was working well for 1 year long with Ubuntu. But I can remember, that ~2 years ago on 2 ubuntu versions (xx.04 AND xx.10) I had the same symptoms. Sorry, but I do not know any more what kernel version wehe there. >Results from testing with v3.x from sid or experimental would also be >very useful, so we can get help from upstream if it is still broken >there or find a fix to backport if it is fixed. (The only packages >from outside squeeze aside from linux-image itself that should be >needed to test are initramfs-tools and linux-base, both available from >squeeze-backports.) Do I understand right: I should write the squeeze-backports source to the apt-list and install 3 packages, linux-image, linux-base and initframs-tools in version 3.x? Do I need something extra to do, aside from uninstalling of the 2.6.x-kernel packages? >It would be possible to test for that by blacklisting the driver and >seeing if it still happens. (Likewise for other drivers if you have >suspicions.) The big problem what we here have, there is no trigger for reproducing. I am suspicious about sound, WiFi, video, adobe-flash too. Because I am often using this things and logicaly it crashes when I'm watching something on youtube, for example. Yesterday as I was trying to catch the kernel log, it was frozen 2 times. The first time I had no log, because the LAN link was unstable for no reason and it happened only 2-3 minutes after booting. The second time as I got the log, it took several hours. This means, I will of course make a test with 3.x kernel, but cann not guarantee after 2 days of testing that the bug is gone. My question is, if there is a way to force the kernel to give more debugging info. Thank you for helping. Regards, Eugen ___ SMS schreiben mit WEB.DE FreeMail - einfach, schnell und kostenguenstig. Jetzt gleich testen! http://f.web.de/?mc=021192 -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647821: nice: Should this package be orphaned/removed
Package: nice Severity: serious Hi, As far as I can tell, the maintainer of nice is also the (sole) upstream developer for nice. By the looks of it, upstream is dead and this implies that this package is silently unmaintained. If you are still around to maintain this package, please respond to this package within 14 days. Otherwise I shall I assume you have lost interest and orphan your package. ~Niels -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647822: Please split zfs-fuse between dameon and mount tools
Package: zfs-fuse Version: 0.6.9-1+b1 Severity: normal Dear Maintainer, fuse is usually used in order for regular user to be able to mount filesystem. In the case of zfs-fuse it is not possible because you run by default a dameon. Please split the package in two part: - a daemon part for / or /home mounting. - a simple mount tools in order to allow users to mount zfs loopback Thanks bastien -- System Information: Debian Release: wheezy/sid APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Kernel: Linux 3.0.0-1-amd64 (SMP w/8 CPU cores) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages zfs-fuse depends on: ii fuse-utils 2.8.6-2 ii libaio1 0.3.109-2 ii libc62.13-21 ii libfuse2 2.8.6-2 ii libssl1.0.0 1.0.0e-2 ii lsb-base 3.2-28 ii zlib1g 1:1.2.3.4.dfsg-3 zfs-fuse recommends no packages. Versions of packages zfs-fuse suggests: pn kpartx 0.4.9-2 pn nfs-kernel-server -- 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