Bug#695531: /Bugs/Developer#severities: misleading description of serious

2012-12-10 Thread Helmut Grohne
On Mon, Dec 10, 2012 at 04:12:18PM -0800, Don Armstrong wrote:
> Debian policy is the primary document which defines what is a serious
> bug ("it violates a must or required directive".) Additionally, the
> RMs and a maintainer can additionally make any bug (or class of bug)
> they see making a package unsuitable for release severity serious.
> 
> Finally, RMs are the arbiter of what bugs are considered release
> critical; they can mark any bug they wish as wheezy-ignore, and it
> will be ignored for the purposes of releasing that release.

This represents my reading of the current description as well. However
it does not represent the current practise. The release team reserves
the right to downgrade issues that they deem not to be release critical
and only use wheezy-ignore for the very hard cases.

> Perhaps the confusion is over the fact that bug severity and bug
> RC-ness are not the same thing?

This is indeed a bit confusing. The website mentioned above defines
release critical as anything above important, but does not take ignore
tags into account. Improving on this point without cluttering the
documentation seems hard. Maybe this is why other bug tracking systems
define severities and priorities. Indeed I suggested the usage of ignore
tags to the release team without success.

Helmut


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#695272: [pkg-fso-maint] Bug#695272: libphone-utils0: harmful postrm purge action in M-A:same package

2012-12-10 Thread Helmut Grohne
[Dropping adsb as he is probably not interested in technical details.]

On Tue, Dec 11, 2012 at 02:25:54AM +0100, Sebastian Reichel wrote:
> preparing a upload for testing was what I indented to do, too.
> I planed to check how to fix this without removing M-A support,
> though. It should be possible to do something like this in the
> postrm script:
> 
> if [ !package_is_still_installed_for_another_arch ] ; then
> remove files
> fi

You could bluntly copy this from libwrap0. I am not sure whether its
solution is the best, but it seems technically correct.

Helmut


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#695648: roundcube: [patch] Illegal string offset in /usr/share/roundcube/program/steps/addressbook/func.inc on line 581

2012-12-10 Thread Vincent Bernat
 ❦ 11 décembre 2012 08:08 CET, Kim Twain  :

> There's a bug in roundcube 0.7.2-5 which triggers the php warning in the
> title when using the address book function.
> It happens when roundcube tries to load non complete data (eg, almost one
> field is NULL)
> I tested the following patch and the warning disappeared:
> http://trac.roundcube.net/changeset/8253e7d245b03a2bfd5b51573e5d1024e45022ce/github

Thanks for the patch. Wheezy is currently frozen and such a patch does
not warrant a freeze exception. This will get fixed once Wheezy is
released by uploading Roundcube 0.8.
-- 
printk("Illegal format on cdrom.  Pester manufacturer.\n"); 
2.2.16 /usr/src/linux/fs/isofs/inode.c


pgp2ohvErwppS.pgp
Description: PGP signature


Bug#695649: unblock: xapian-core/1.2.12-2

2012-12-10 Thread Olly Betts
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package xapian-core

This update contains the following changes compared to the version
currently in testing (1.2.12-1):

Fixes grave bug http://bugs.debian.org/695542 ("Concurrent threads can
succeed in locking database").

Fixes bug http://bugs.debian.org/695643 ("Database replication fails for
files > 32GB") which is a small and safe patch relevant to the LFS release
goal: http://wiki.debian.org/ReleaseGoals/LFS

I've attached a debdiff against 1.2.12-1 (currently in testing), and
for your reviewing convenience, the two new patches individually.

Cheers,
Olly

unblock xapian-core/1.2.12-2

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-4-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_GB.utf8, LC_CTYPE=en_GB.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru xapian-core-1.2.12/debian/changelog 
xapian-core-1.2.12/debian/changelog
--- xapian-core-1.2.12/debian/changelog 2012-06-28 19:54:11.0 +1200
+++ xapian-core-1.2.12/debian/changelog 2012-12-11 17:22:23.0 +1300
@@ -1,3 +1,13 @@
+xapian-core (1.2.12-2) unstable; urgency=low
+
+  * New patch fix-db-write-lock.patch which fixes database write locking to
+work when the lock file is already open in the same process.
+(Closes: #695542)
+  * New patch replication-above-32GB.patch which fixes database replication to
+handle files > 32GB.  (Closes: #695643)
+
+ -- Olly Betts   Tue, 11 Dec 2012 04:22:04 +
+
 xapian-core (1.2.12-1) unstable; urgency=low
 
   * New upstream release.
diff -Nru xapian-core-1.2.12/debian/patches/fix-db-write-lock.patch 
xapian-core-1.2.12/debian/patches/fix-db-write-lock.patch
--- xapian-core-1.2.12/debian/patches/fix-db-write-lock.patch   1970-01-01 
12:00:00.0 +1200
+++ xapian-core-1.2.12/debian/patches/fix-db-write-lock.patch   2012-12-11 
17:25:07.0 +1300
@@ -0,0 +1,62 @@
+Taken from 1.2 branch of upstream SVN r16938.
+
+--- a/backends/flint_lock.cc   (revision 16937)
 b/backends/flint_lock.cc   (revision 16938)
+@@ -2,5 +2,5 @@
+  * @brief Flint-compatible database locking.
+  */
+-/* Copyright (C) 2005,2006,2007,2008,2009,2010,2011 Olly Betts
++/* Copyright (C) 2005,2006,2007,2008,2009,2010,2011,2012 Olly Betts
+  *
+  * This program is free software; you can redistribute it and/or
+@@ -134,4 +134,20 @@
+   close(fds[0]);
+ 
++  // Connect pipe to stdin and stdout.
++  dup2(fds[1], 0);
++  dup2(fds[1], 1);
++
++  // Make sure we don't hang on to open files which may get deleted but
++  // not have their disk space released until we exit.  Close these
++  // before we try to get the lock because if one of them is open on
++  // the lock file then closing it after obtaining the lock would release
++  // the lock, which would be really bad.
++  for (int i = 2; i < lockfd; ++i) {
++  // Retry on EINTR; just ignore other errors (we'll get
++  // EBADF if the fd isn't open so that's OK).
++  while (close(i) < 0 && errno == EINTR) { }
++  }
++  closefrom(lockfd + 1);
++
+   reason why = SUCCESS;
+   {
+@@ -160,5 +176,5 @@
+   // Tell the parent if we got the lock, and if not, why not.
+   char ch = static_cast(why);
+-  while (write(fds[1], &ch, 1) < 0) {
++  while (write(1, &ch, 1) < 0) {
+   // EINTR means a signal interrupted us, so retry.
+   // Otherwise we're DOOMED!  The best we can do is just exit
+@@ -169,8 +185,4 @@
+   if (why != SUCCESS) _exit(0);
+   }
+-
+-  // Connect pipe to stdin and stdout.
+-  dup2(fds[1], 0);
+-  dup2(fds[1], 1);
+ 
+   // Make sure we don't block unmount() of partition holding the current
+@@ -184,13 +196,4 @@
+   // gives a warning even if we cast the result to void.
+   }
+-
+-  // Make sure we don't hang on to open files which may get deleted but
+-  // not have their disk space released until we exit.
+-  for (int i = 2; i < lockfd; ++i) {
+-  // Retry on EINTR; just ignore other errors (we'll get
+-  // EBADF if the fd isn't open so that's OK).
+-  while (close(i) < 0 && errno == EINTR) { }
+-  }
+-  closefrom(lockfd + 1);
+ 
+   // FIXME: use special statically linked helper instead of cat.
diff -Nru xapian-core-1.2.12/debian/patches/replication-above-32GB.patch 
xapian-core-1.2.12/debian/patches/replication-above-32GB.patch
--- xapian-core-1.2.12/debian/patches/replication-above-32GB.patch  
1970-01-01 12:00:00.0 +1200
+++ xapian-core-1.2.12/debian/patches/replication-above-32GB.patch  
2012-12-11 17:25:13.0 +1300
@@ -0,0 +1,13 @@
+Taken from 1.2 branch of upstream SVN r16915.
+
+--- a/net/remoteconnection.cc  (revision 16348)
 b/net/remoteconnection.cc

Bug#695648: roundcube: [patch] Illegal string offset in /usr/share/roundcube/program/steps/addressbook/func.inc on line 581

2012-12-10 Thread Kim Twain
Package: roundcube
Version: 0.7.2-5
Severity: normal

Dear Maintainer,
There's a bug in roundcube 0.7.2-5 which triggers the php warning in the
title when using the address book function.
It happens when roundcube tries to load non complete data (eg, almost one
field is NULL)
I tested the following patch and the warning disappeared:
http://trac.roundcube.net/changeset/8253e7d245b03a2bfd5b51573e5d1024e45022ce/github

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 3.6.5-x86_64-linode28 (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

Versions of packages roundcube depends on:
ii  roundcube-core  0.7.2-5

roundcube recommends no packages.

roundcube suggests no packages.

Versions of packages roundcube-core depends on:
ii  dbconfig-common1.8.47+nmu1
ii  debconf [debconf-2.0]  1.5.46
ii  libjs-jquery   1.7.2+dfsg-1
ii  libjs-jquery-ui1.8.ooops.21+dfsg-2
ii  libmagic1  5.11-2
ii  nginx-full [httpd] 1.2.1-2.2
ii  php-auth   1.6.2-1
ii  php-mail-mime  1.8.4-1
ii  php-mdb2   2.5.0b3-2
ii  php-net-smtp   1.6.1-1
ii  php-net-socket 1.0.9-2
ii  php5   5.4.4-10
ii  php5-gd5.4.4-10
ii  php5-intl  5.4.4-10
ii  php5-mcrypt5.4.4-10
ii  php5-pspell5.4.4-10
ii  roundcube-mysql0.7.2-5
ii  tinymce3.4.8+dfsg0-1
ii  ucf3.0025+nmu3

Versions of packages roundcube-core suggests:
ii  php-auth-sasl  1.0.4-1
pn  php-crypt-gpg  
pn  roundcube-plugins  

-- debconf information:
  roundcube/password-confirm: (password omitted)
  roundcube/pgsql/app-pass: (password omitted)
  roundcube/mysql/admin-pass: (password omitted)
  roundcube/mysql/app-pass: (password omitted)
  roundcube/pgsql/admin-pass: (password omitted)
  roundcube/app-password-confirm: (password omitted)
  roundcube/dbconfig-reinstall: false
  roundcube/mysql/method: unix socket
  roundcube/upgrade-error: abort
  roundcube/pgsql/authmethod-user: password
  roundcube/purge: false
* roundcube/dbconfig-install: true
  roundcube/db/dbname: roundcube
  roundcube/language: en_US
  roundcube/remove-error: abort
  roundcube/remote/newhost:
  roundcube/pgsql/changeconf: false
  roundcube/restart-webserver: true
  roundcube/upgrade-backup: true
  roundcube/dbconfig-upgrade: true
  roundcube/install-error: abort
  roundcube/remote/port:
  roundcube/mysql/admin-user: root
  roundcube/pgsql/method: unix socket
  roundcube/pgsql/manualconf:
  roundcube/hosts:
  roundcube/db/basepath:
  roundcube/pgsql/authmethod-admin: ident
  roundcube/dbconfig-remove:
  roundcube/pgsql/no-empty-passwords:
  roundcube/pgsql/admin-user: postgres
  roundcube/passwords-do-not-match:
  roundcube/internal/reconfiguring: false
  roundcube/reconfigure-webserver: apache2, lighttpd
* roundcube/database-type: mysql
  roundcube/remote/host:
  roundcube/internal/skip-preseed: false
  roundcube/db/app-user: roundcube
  roundcube/missing-db-package-error: abort


Bug#695631: ninja-build: FTBFS on !linux archs

2012-12-10 Thread Gary Kramlich
I've uploaded 1.0.0-2 to mentors which includes this patch.

Any idea what happened on sparc?

Thanks,

Gary Kramlich 


Bug#686231: still not fixed

2012-12-10 Thread Sylvestre Ledru
On 11/12/2012 00:23, Vincent Lefevre wrote:
> On 2012-12-10 20:44:08 +0100, Sylvestre Ledru wrote:
>> Gcc plugin system sucks from a distribution point of view...
>> The best solution would be to rebuild dragonegg at installation time.
> 
> How about adding dependencies?
> 
> For instance, dragonegg-4.6 could depend on some fixed version
> of gcc-4.6. Or if you think that a dependency shouldn't be added
> there, it could be done for llvm-gcc-4.6; it currently has:
> 
> Depends: dragonegg-4.6, gcc-4.6, g++-4.6
> 
> Using = dependencies would solve the problem.
No, it would not.
dragonegg even fails when built with gcc 4.7.2-12 (experimental) and
used with gcc 4.7.2-4 (unstable).

Sylvestre


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#695647: linux-image-3.2.0-4-amd64: Set CONFIG_AUFS_HNOTIFY=y to use udba=notify on aufs.

2012-12-10 Thread Kiwamu Okabe
Package: src:linux
Version: 3.2.35-1
Severity: wishlist

Dear Maintainer,

Aufs has option udba=notify to find changes on low branch filesystem.
But the linux kernel config does not allow it, with CONFIG_AUFS_HNOTIFY=n.
Could you set CONFIG_AUFS_HNOTIFY=y?

$ uname -a
Linux casper 3.2.0-4-amd64 #1 SMP Debian 3.2.35-1 x86_64 GNU/Linux

Regards,
Kiwamu Okabe

-- Package-specific info:
** Version:
Linux version 3.2.0-4-amd64 (debian-ker...@lists.debian.org) (gcc version 4.6.3 
(Debian 4.6.3-14) ) #1 SMP Debian 3.2.35-1

** Command line:
BOOT_IMAGE=/boot/vmlinuz-3.2.0-4-amd64 
root=UUID=b32ab783-6371-4754-97f6-2b20ea2018f1 ro quiet

** Tainted: CO (5120)
 * Module from drivers/staging has been loaded.
 * Out-of-tree module has been loaded.

** Kernel log:
[9.949120] iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection 
driver for Linux, in-tree:s
[9.949125] iwl3945: Copyright(c) 2003-2011 Intel Corporation
[9.949225] iwl3945 :03:00.0: setting latency timer to 64
[9.998084] pcmcia_socket pcmcia_socket0: cs: memory probe 
0x0c-0x0f: excluding 0xc-0xd3fff 0xe-0xf
[9.998139] pcmcia_socket pcmcia_socket0: cs: memory probe 
0xa000-0xa0ff: excluding 0xa000-0xa0ff
[9.998188] pcmcia_socket pcmcia_socket0: cs: memory probe 
0x6000-0x60ff: excluding 0x6000-0x60ff
[   10.004673] iwl3945 :03:00.0: Tunable channels: 13 802.11bg, 12 802.11a 
channels
[   10.004677] iwl3945 :03:00.0: Detected Intel Wireless WiFi Link 3945ABG
[   10.004834] iwl3945 :03:00.0: irq 44 for MSI/MSI-X
[   10.005065] Registered led device: phy0-led
[   10.083304] ieee80211 phy0: Selected rate control algorithm 'iwl-3945-rs'
[   10.099877] i915 :00:02.0: power state changed by ACPI to D0
[   10.099885] i915 :00:02.0: power state changed by ACPI to D0
[   10.099897] i915 :00:02.0: setting latency timer to 64
[   10.161800] mtrr: type mismatch for e000,1000 old: write-back new: 
write-combining
[   10.161805] [drm] MTRR allocation failed.  Graphics performance may suffer.
[   10.162362] i915 :00:02.0: irq 45 for MSI/MSI-X
[   10.162371] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[   10.162374] [drm] Driver supports precise vblank timestamp query.
[   10.162437] vgaarb: device changed decodes: 
PCI::00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[   10.284736] Non-volatile memory driver v1.3
[   10.397301] thinkpad_acpi: ThinkPad ACPI Extras v0.24
[   10.397305] thinkpad_acpi: http://ibm-acpi.sf.net/
[   10.397309] thinkpad_acpi: ThinkPad BIOS 7NETA7WW (2.07 ), EC 7MHT25WW-1.03
[   10.397312] thinkpad_acpi: Lenovo ThinkPad X61s, model 7666BS7
[   10.397822] thinkpad_acpi: detected a 8-level brightness capable ThinkPad
[   10.398188] thinkpad_acpi: radio switch found; radios are enabled
[   10.401839] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is 
unblocked
[   10.402389] Registered led device: tpacpi::thinklight
[   10.402443] Registered led device: tpacpi::power
[   10.402477] Registered led device: tpacpi::standby
[   10.402508] Registered led device: tpacpi::thinkvantage
[   10.405791] thinkpad_acpi: Standard ACPI backlight interface available, not 
loading native one
[   10.406476] thinkpad_acpi: Console audio control enabled, mode: monitor 
(read only)
[   10.410246] input: ThinkPad Extra Buttons as 
/devices/platform/thinkpad_acpi/input/input6
[   10.516430] [drm] initialized overlay support
[   10.528495] fbcon: inteldrmfb (fb0) is primary device
[   10.530466] [drm] Changing LVDS panel from (+hsync, +vsync) to (-hsync, 
-vsync)
[   10.711655] Console: switching to colour frame buffer device 128x48
[   10.719023] fb0: inteldrmfb frame buffer device
[   10.719029] drm: registered panic notifier
[   10.738659] acpi device:02: registered as cooling_device2
[   10.739355] input: Video Bus as 
/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input7
[   10.739485] ACPI: Video Device [VID] (multi-head: yes  rom: no  post: no)
[   10.741141] [drm] Initialized i915 1.6.0 20080730 for :00:02.0 on minor 0
[   10.741237] hda_intel: probe_mask set to 0x1 for device 17aa:20ac
[   10.741373] snd_hda_intel :00:1b.0: irq 46 for MSI/MSI-X
[   10.741440] snd_hda_intel :00:1b.0: setting latency timer to 64
[   11.177543] input: HDA Digital PCBeep as 
/devices/pci:00/:00:1b.0/input/input8
[   13.094729] Adding 8235004k swap on /dev/sda5.  Priority:-1 extents:1 
across:8235004k 
[   13.129075] EXT4-fs (sda1): re-mounted. Opts: (null)
[   13.500477] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[   13.849205] fuse init (API version 7.17)
[   13.954225] loop: module loaded
[   17.483933] RPC: Registered named UNIX socket transport module.
[   17.483937] RPC: Registered udp transport module.
[   17.483940] RPC: Registered tcp transport module.
[   17.483943] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   17.554291] FS-Cache: Loaded
[   17.634505] FS-Cache: Net

Bug#695615: CVE-2012-6303: buffer overflows

2012-12-10 Thread Salvatore Bonaccorso
hey Ron

Thanks for your quick answer and taking time on it.

On Tue, Dec 11, 2012 at 03:38:49PM +1030, Ron wrote:
> 
> Hi,
> 
> On Mon, Dec 10, 2012 at 09:22:30PM +0100, Salvatore Bonaccorso wrote:
> > Package: wavesurfer
> > Severity: important
> > Tags: security
> > 
> > Hi,
> > the following vulnerability was published for wavesurfer.
> > 
> > CVE-2012-6303[0]:
> > WaveSurfer and Snack Sound Toolkit buffer overflows
> > 
> > If you fix the vulnerability please also make sure to include the
> > CVE (Common Vulnerabilities & Exposures) id in your changelog entry.
> > 
> > For further information see:
> > 
> > [0] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2012-6303
> > http://security-tracker.debian.org/tracker/CVE-2012-6303
> > [1] http://www.openwall.com/lists/oss-security/2012/12/10/2
> > 
> > Please adjust the affected versions in the BTS as needed.
> > 
> > p.s.: I haven't done further investigation, only reporting/forwarding
> >   from oss-security mailinglist.
> 
> So far as I can see from the information available to me right now,
> this isn't actually a bug in wavesurfer at all, but rather in snack.
> 
> It seems a little bit odd that the just announced CVE ignores the
> information in the advisory from July that it refers to and then
> still specifically names wavesurfer (but not every other dep of
> snack, which would be similarly effected).  If they know something
> more than the existing disclosures, then someone who has access to
> their embargoed discussions will need to pass that on to me and/or
> the other relevant people.
> 
> If the "crafted .wav" is the only issue here, then wavesurfer itself
> should be doing nothing to touch that itself aside from passing it
> to snack for processing.

Yep, this is not 100% clear to me. From the announce [1], they mention
both and (multiple) buffer overflows. But if this actually turns to be
only a problem from snack, you are rightonly track it against snack is
the right thing. The secunia advisory explicitly mentions that the two
vulnerabilities are found in snack.

 https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2012-6303

also only mentions snack, but wavesurfer is not shiped in Red Hat
apparently.

> So I guess we can close this one and just track it against snack?

Yes, in case it only affects snack.

Thanks for your work on wavesufer!

Regards,
Salvatore


signature.asc
Description: Digital signature


Bug#694519: tpu: libcgi-pm-perl/3.59+dfsg-1+deb7u1 (pre-approval)

2012-12-10 Thread Salvatore Bonaccorso
Hey Adam

Thanks for your time reviewing it!

On Mon, Dec 10, 2012 at 09:37:17PM +, Adam D. Barratt wrote:
> [trimmed CC list]
> 
> On Tue, 2012-11-27 at 08:27 +0100, Salvatore Bonaccorso wrote:
> > @ReleaseTeam: This is about #693421 "CVE-2012-5526 CGI.pm: Newline
> > injection due to improper CRLF escaping in Set-Cookie and P3P
> > headers".
> > 
> > We could wait for some more testing in unstable for the version there.
> > The patch for tpu would be the "same" (the package cannot go trough
> > unstable -> testing).
> 
> fwiw, I've been having a look at the diff, and filtering out meta-data,
> tests and documentation changes seems to give a reasonably sized diff:
>
> $ debdiff 
> ftp/pool/main/libc/libcgi-pm-perl/libcgi-pm-perl_3.{59+dfsg-1,61-2}.dsc | 
> filterdiff -x '*/t/*' -x '*/META.*' -x '*/repack.*' -x '*/Carp.pm' -x 
> '*/debian/copyright' -x '*/Changes' -x '*/MANIFEST' -x '*/debian/changelog' 
> -x '*/debian/watch'| diffstat
>  /tmp/llc5QdkBjB/libcgi-pm-perl-3.61/examples/dna.small.gif   
> |binary
>  /tmp/llc5QdkBjB/libcgi-pm-perl-3.61/examples/wilogo.gif  
> |binary
>  libcgi-pm-perl-3.61/Makefile.PL  
> |1 
>  libcgi-pm-perl-3.61/debian/control   
> |4 
>  
> libcgi-pm-perl-3.61/debian/patches/0001-CR-escaping-for-P3P-and-Set-Cookie-headers.patch
>  |   67 ++
>  libcgi-pm-perl-3.61/debian/patches/series
> |1 
>  libcgi-pm-perl-3.61/lib/CGI.pm   
> |   22 +--
>  libcgi-pm-perl-3.61/lib/CGI/Cookie.pm
> |2 
>  8 files changed, 85 insertions(+), 12 deletions(-)
> 
> The vast majority of that is the security update which is the subject of
> this report.

I meant the above "We could wait for some more testing in unstable for
the version there" as "we could wait some more days for the version in
unstable to get testing, so that we can se if there are any
regressions" (and then go for the t-p-u upload) :-).

*But* if you agree on unblocking the version in unstable this is fine
:-). I updated indeed in unstable 3.61 to 3.61-2 with the patch,
instead of updating to 3.63 (new upstream release having the fix).

The proposed debdiff for t-p-u only is attached to my first
message.

Regards,
Salvatore


signature.asc
Description: Digital signature


Bug#695615: CVE-2012-6303: buffer overflows

2012-12-10 Thread Ron

Hi,

On Mon, Dec 10, 2012 at 09:22:30PM +0100, Salvatore Bonaccorso wrote:
> Package: wavesurfer
> Severity: important
> Tags: security
> 
> Hi,
> the following vulnerability was published for wavesurfer.
> 
> CVE-2012-6303[0]:
> WaveSurfer and Snack Sound Toolkit buffer overflows
> 
> If you fix the vulnerability please also make sure to include the
> CVE (Common Vulnerabilities & Exposures) id in your changelog entry.
> 
> For further information see:
> 
> [0] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2012-6303
> http://security-tracker.debian.org/tracker/CVE-2012-6303
> [1] http://www.openwall.com/lists/oss-security/2012/12/10/2
> 
> Please adjust the affected versions in the BTS as needed.
> 
> p.s.: I haven't done further investigation, only reporting/forwarding
>   from oss-security mailinglist.

So far as I can see from the information available to me right now,
this isn't actually a bug in wavesurfer at all, but rather in snack.

It seems a little bit odd that the just announced CVE ignores the
information in the advisory from July that it refers to and then
still specifically names wavesurfer (but not every other dep of
snack, which would be similarly effected).  If they know something
more than the existing disclosures, then someone who has access to
their embargoed discussions will need to pass that on to me and/or
the other relevant people.

If the "crafted .wav" is the only issue here, then wavesurfer itself
should be doing nothing to touch that itself aside from passing it
to snack for processing.

So I guess we can close this one and just track it against snack?

  Cheers,
  Ron


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#674116: dirmngr: init script does not write pid into the pid file

2012-12-10 Thread Peter Eisentraut
On Wed, 2012-12-05 at 19:58 +0100, John Paul Adrian Glaubitz wrote:
> the issue only occurs if the local bash profile contains any echo
> statements: 

I think the only answer to that is: Don't do that then.  I think you
will be able to find many shell scripts that will be unhappy about this.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#695646: ucspi-tcp: Move or copy tcp-environ(5) manual page from qmail

2012-12-10 Thread Sabahattin Gucukoglu
Source: ucspi-tcp
Severity: wishlist
Tags: upstream, ipv6

Hi,

Please consider moving or copying the tcp-environ(5) manual page from the 
qmail package into the ucspi-tcp packages (updating it as necessary for 
ucspi-tcp-ipv6).

This page really belongs to ucspi-tcp IMO since it describes features of 
ucspi-tcp (the environment set by tcpclient and tcpserver), which will be 
useful to ucspi-tcp users even if (as in my case) they do not want qmail 
installed.  Ucspi-tcp is also a dependency of qmail-run, so most qmail users 
already have all of the documentation for tcp-env(1).  (I don't know what 
can easily be done about the qmail users who wish to start IPv4 services 
from inetd using tcp-env.)

Thanks.

Cheers,
Sabahattin

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 3.2.0-4-686-pae (SMP w/8 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
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#694250: clementine doesn't support moodbar

2012-12-10 Thread Thomas Pierson
severity 694250 wishlist
tags 694250 + pending
thanks

Hello Martin,

Thanks for your report.

> allthough clementine 1.1 should support moodbar it doesn't work.

Yes, I simply don't build the package with the moodbar support for this
revision.

> ..deb packaged for ubuntu it works, so there are no missing dependencies.

The official ubuntu package is always derived from the package in Debian
unstable archive. If you talk about the package provided by upstream
developers, this package use many depends as bundled libraries.
In Debian we must use real system-wide depends if they exist in the archive.

> By the way: you ship 1.1.0-rc in experimental allthough 1.1.1 is the current
> upstream version. I would appreciate it if you package the current version.

I just work on this [1]. I want to make some tests before but I plan to
upload a new revision of the package in experimental soon which
include the last upstream release and moodbar support.

Regards,

Thomas Pierson

[1]
http://gitweb.thomaspierson.fr/?p=pkg-clementine.git;a=shortlog;h=refs/heads/experimental



signature.asc
Description: OpenPGP digital signature


Bug#695645: xen-utils-common: xm block-attach does not create /dev/xvd* devices on dom0

2012-12-10 Thread James Robertson
Package: xen-utils-common
Version: 4.1.3-6
Severity: minor

Dear Maintainer,

I am trying to run the following command on a dom0 Debian server in order to 
mount a vmware vmdk.  I don't want to use kpartx or losetup as they have poor 
write performance and I'm hoping blktap will provide better performance.

xm block-attach 0 tap:vmdk:/mnt/backup/3MSYDDP01/3MSYDDP01_2-flat.vmdk 
/dev/xvda1 w 0

However /dev/xvda1 is not created.  I have loaded to following modules for good 
measure:

modprobe blktap
modprobe xen-blkback
modprobe xen-blkfront
modprobe xen-evtchn
modprobe xenfs
modprobe xen-gntalloc
modprobe xen-gntdev
modprobe xen-netback
modprobe xen-netfront
modprobe xen-pciback
modprobe xen-pcifront
modprobe xen_wdt

And tried manually creating the blokc device beforehand.

mknod /dev/xvda1 b 220 0

I searched for answers and found nothing that suggests that shouldn't work?

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-4-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages xen-utils-common depends on:
ii  gawk1:4.0.1+dfsg-2
ii  lsb-base4.1+Debian8
ii  python  2.7.3~rc2-1
ii  ucf 3.0025+nmu3
ii  udev175-7
ii  xenstore-utils  4.1.3-6

xen-utils-common recommends no packages.

xen-utils-common 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#695644: [INTL:id] Indonesian debconf templates translation

2012-12-10 Thread Mahyuddin Susanto
Source: postfix
Severity: wishlist
Tags: patch l10n
X-Debbugs-CC: debian-l10n-indones...@lists.debian.org

Dear Maintainer,

Please find attached an po-debconf translation of this package into
Indonesian.

msgfmt --statistics -c -v -o /dev/null id.po
id.po: 64 translated messages.

Thanks

-- 
[ Mahyuddin Susanto ] - http://udienz.web.id
GPG: 4096R/90B36C5B
Debian Maintainer & Ubuntu Developer
# postfix Debconf translations for Indonesian.
# Copyright (C) 2007 Software in the Public Interest, SPI Inc.
# This file is distributed under the same license as the postfix package.
# proyek penerjemahan Bahasa Indonesia.
#
# Sebelum menerjemahkan silakan melihat-lihat ke:
# - /usr/share/doc/po-debconf/README-trans atau
#   http://www.debian.org/intl/l10n/po-debconf/README-trans
# - http://www.debian.org/international/l10n/po-debconf/id
# Silakan menghubungi tim penerjemah Debian Indonesia bila ada pertanyaan,
# kritik, dan saran ke debian-l10n-indones...@lists.debian.org
# Mahyuddin Susanto , 2012
# Samsul Ma'arif , 2012
#
msgid ""
msgstr ""
"Project-Id-Version: postfix\n"
"Report-Msgid-Bugs-To: post...@packages.debian.org\n"
"POT-Creation-Date: 2012-05-30 22:56-0600\n"
"PO-Revision-Date: 2012-11-29 09:47+0700\n"
"Last-Translator: Samsul Ma'arif \n"
"Language-Team: Debian Indonesia Translators \n"
"Language: id\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-Language: Indonesian\n"
"X-Poedit-Country: INDONESIA\n"

#. Type: boolean
#. Description
#: ../templates:1001
msgid "Add a 'mydomain' entry in main.cf for upgrade?"
msgstr "Masukkan masukan'mydomain' di main.cf untuk pemutakhiran?"

#. Type: boolean
#. Description
#: ../templates:1001
msgid "Postfix version 2.3.3-2 and later require changes in main.cf. Specifically, mydomain must be specified, since hostname(1) is not a fully qualified domain name (FQDN)."
msgstr "Postfix versi 2.3.3-2 dan seterusnya membutuhkan perubahan di main.cf. Khususnya mydomain harus di deklarasikan sejak hostname(1) tidak lagi fully qualified domain name (FQDN)."

#. Type: boolean
#. Description
#: ../templates:1001
msgid "Failure to fix this will result in a broken mailer. Decline this option to abort the upgrade, giving you the opportunity to add this configuration yourself. Accept this option to automatically set mydomain based on the FQDN of the machine."
msgstr "Kegagalan perbaikan akan mengakibatkan mailer rusak. Tolak pilihan ini untuk membatalkan pemutakhiran, memberikan Anda kesempatan untuk menambah konfigurasi Anda sendiri. Terima pilihan ini untuk mengatur mydomain secara otomatis berdasarkan FQDN dari mesin."

#. Type: boolean
#. Description
#: ../templates:2001
msgid "add 'sqlite' entry to dynamicmaps.cf?"
msgstr "masukkan masukan 'sqlite' ke dynamicmaps.cf?"

#. Type: boolean
#. Description
#: ../templates:2001
msgid "Postfix version 2.9 adds sqlite support to maps, but your dynamicmaps.cf does not reflect that.  Accept this option to add support for sqlite maps."
msgstr "Postfix versi 2.9 menambahkan dukungan ke peta, tetapi dynamicmaps.cf Anda tidak mencerminkan hal itu. Terima pilihan ini untuk menambah dukungan ke peta sqlite."

#. Type: boolean
#. Description
#: ../templates:3001
msgid "Install postfix despite an unsupported kernel?"
msgstr "Pasang postfix meskipun di kernel yang tidak mendukung?"

#. Type: boolean
#. Description
#: ../templates:3001
msgid "Postfix uses features that are not found in kernels prior to 2.6. If you proceed with the installation, Postfix will not run."
msgstr "POstfix menggunakan fitur yang ditemukan di kernel 2.6. Jika Anda melanjutkan instalasi, Postfix tidak akan jalan."

#. Type: boolean
#. Description
#: ../templates:4001
msgid "Correct retry entry in master.cf for upgrade?"
msgstr "Coba membenahi lagi masukan di master.cf untuk pembaharuan?"

#. Type: boolean
#. Description
#: ../templates:4001
msgid "Postfix version 2.4 requires that the retry service be added to master.cf."
msgstr "Postfix versi 2.4 membutukan masukan cobalagi dimasukkan ke master.cf."

#. Type: boolean
#. Description
#: ../templates:4001
msgid "Failure to fix this will result in a broken mailer. Decline this option to abort the upgrade, giving you the opportunity to add this configuration yourself. Accept this option to automatically make master.cf compatible with Postfix 2.4 in this respect."
msgstr "Kegagalan perbaikan akan mengakibatkan mailer rusak. Tolak pilihan ini untuk membatalkan pemutakhiran, memberikan Anda kesempatan untuk menambah konfigurasi Anda sendiri. Terima pilihan ini untuk membuat master.cf secara otomatis yang kompatibel dalam hal ini dengan Posfix 2.4."

#. Type: boolean
#. Description
#: ../templates:5001
msgid "Correct tlsmgr entry in master.cf for upgrade?"
msgstr "Benahi masukan tlsmgr di master.cf untuk pembaharuan?"

#. Type: boolean
#. Description
#: ../templates:5001
msgid "Postfix version 2.2 has changed the invocation of tlsmgr."
msgstr "Postfix versi 2.2 telah 

Bug#695643: libxapian22: Database replication fails for files > 32GB

2012-12-10 Thread Olly Betts
Package: libxapian22
Version: 1.2.12-1
Severity: normal
Tags: upstream lfs patch

Database replication applies a sanity check on the size of the message
received, but the threshold it uses means that you can't replicate a
database which contains a file > 32GB.

The fix is to change the threshold on the shift from 28 to 63 (63 is used
in similar code in the same file which handles reading a message in chunks,
while the 28 threshold is used in the case where a message is read in one
go, so 63 is the more appropriate choice here where we're reading a message
and writing its payload to a file).

This is fixed in upstream SVN in the 1.2 branch and should be in the next
upstream 1.2.x release:

http://trac.xapian.org/changeset/16915/branches/1.2/xapian-core/net/remoteconnection.cc

Cheers,
Olly

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-4-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_GB.utf8, LC_CTYPE=en_GB.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libxapian22 depends on:
ii  libc6   2.13-37
ii  libgcc1 1:4.7.2-4
ii  libstdc++6  4.7.2-4
ii  libuuid12.20.1-5.2
ii  zlib1g  1:1.2.7.dfsg-13

libxapian22 recommends no packages.

Versions of packages libxapian22 suggests:
ii  xapian-tools  1.2.12-1

-- no debconf information


signature.asc
Description: Digital signature


Bug#695551: [Pkg-octave-devel] Bug#695551: Bug#695551: panic: segfault at startup

2012-12-10 Thread Drew Parsons
On Mon, 2012-12-10 at 18:41 -0500, Mike Miller wrote:
> On Mon, Dec 10, 2012 at 5:55 AM, Drew Parsons wrote:
> > I presume this libhdf5 dependency is the cause of the bug, which means
> > you should be able to reproduce it by replacing libhdf5-7 with
> > libhdf5-openmpi-7.
> 
> Not here, I am unable to reproduce on amd64 with libhdf5-openmpi-7
> installed and libhdf5-7 purged. I can switch between the two hdf5
> variants and Octave starts properly either way.

Hmm, still a tricky bug then :(

> Can you verify that your locally built package, the one that does not
> panic, did indeed link in libhdf5-openmpi-7? E.g.:
> 
> $ ldd /usr/lib/x86_64-linux-gnu/liboctinterp.so.1 | grep hdf
> libhdf5.so.7 => /usr/lib/libhdf5.so.7 (0x7fba005f2000)
> $ /usr/bin/octave --quiet --eval "octave_config_info HDF5_LIBS"
> ans = -lhdf5

No, quite on the contrary. My local build apparently did not recognise
libhdf5-openmpi-dev, and went ahead to build without any libhdf5 (I
apologise, I didn't record the build log, perhaps I should run it
again).

Drew


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#695642: pu: package magpierss/0.72-8+squeeze2

2012-12-10 Thread Marcelo Jorge Vieira
Package: release.debian.org
Tags: squeeze
User: release.debian@packages.debian.org
Usertags: pu


Hi!

Please unblock package magpierss, it fix #694052.
Attached you will find a debdiff.


Cheers.

-- 
Marcelo Jorge Vieira
xmpp:me...@jabber-br.org
http://metaldot.alucinados.com
diff -u magpierss-0.72/debian/control magpierss-0.72/debian/control
--- magpierss-0.72/debian/control
+++ magpierss-0.72/debian/control
@@ -11,8 +11,8 @@
 
 Package: libphp-magpierss
 Architecture: all
-Conflicts: magpierss (<= 0.72-5)
-Replaces: magpierss (<= 0.72-5)
+Conflicts: magpierss (<< 0.72-6)
+Replaces: magpierss (<< 0.72-6)
 Depends:  ${misc:Depends}, php5 | php5-cli, libphp-snoopy
 Description: provides an XML-based RSS parser in PHP
  MagpieRSS is an XML-based RSS parser in PHP.  It attempts to be "PHP-like",
diff -u magpierss-0.72/debian/changelog magpierss-0.72/debian/changelog
--- magpierss-0.72/debian/changelog
+++ magpierss-0.72/debian/changelog
@@ -1,3 +1,9 @@
+magpierss (0.72-8+squeeze2) stable-proposed-updates; urgency=high
+
+  * Fails to upgrade from 'lenny' (Closes: #694052)
+
+ -- Marcelo Jorge Vieira (metal)   Sat, 08 Dec 2012 13:47:28 -0200
+
 magpierss (0.72-8+squeeze1) stable-proposed-updates; urgency=low
 
   * Fixing CVE-2011-0740 (Closes: #611940)


signature.asc
Description: This is a digitally signed message part


Bug#357032: uncompressed documentation for pgf and beamer

2012-12-10 Thread Norbert Preining
Dear Ohura-san

some time ago I asked about uncrompessing docs, see below email.

In fact, in preparation for post-wheezy, I would like to ask
for updates of the latex-beamer class, too. It has seen already a lot
of revisions and we will release wheezy with a quite outdated
version. 3.10 was released in 2010, and since then quite some
things have been fixed.

I have already prepared locally a git repository ready for 
git-buildpackage that imports the last Debian release, plus 
packages the new 3.24 release.

Please let me know what you think about this package and your future
plans, and if I can be of any help, don't hesitate to ask. I would
also be glad if we take over latex-beamer into the Debian TeX group
and continue maintaining it together.

All the best

Norbert

On Mo, 06 Aug 2012, Norbert Preining wrote:
> I would kindly ask your opinion on the following two changes in the
> packages pgf and latex-beamer you are maintaining:
> 
> For pgf: 
>   do not compress pgf documentation so that it works properly with
>   texdoc
> 
> For beamer:
>   - do not compress beameruserguide.pdf
>   -  add a symlink from below /usr/share/texmf/doc/latex/beamer to
>  /usr/share/doc/latex-beamer/beameruserguide.pdf to make sure
>  it is found by texdoc (Closes: #357032)
> 
> Both target one and only one thing, that users on Debian can use
>   texdoc beamer
>   texdoc pgf
> as advertised and often recommended to find the right documentation.
> 
> There are several issues here: One is that compressed documentation
> is still not perfectly supported. This is a problem on the Debian 
> side since the viewer normally used (xdg-open) is non-blocking
> which makes the documentation immediately disappear (the uncompressed
> temp file).
> 
> The other item is that texdoc does not search outside of the texmf 
> hierarchy, so we have to link the beamer users guide also into the
> texmf tree.
> 
> I have prepared NMUs for these two packages, and attach the debdiff for 
> both.
> 
> We would be really grateful if you could upload new versions with only
> these changes, and ask for a freeze exception, so that in Debian
> stable users have a good experience.
> 
> If you prefer that I do an NMU (delayed, immediately), please let me know,
> and I will make the NMU and ask debian-release for a freeze exception.
> 
> Thanks a lot for your work on maintaining these packages and
> どうぞよろしくお願いします。
> 
> 
> Norbert
> 
> Norbert Preiningpreining@{jaist.ac.jp, logic.at, debian.org}
> JAIST, Japan TeX Live & Debian Developer
> DSA: 0x09C5B094   fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
> 
> DULUTH (adj.)
> The smell of a taxi out of which people have just got.
>   --- Douglas Adams, The Meaning of Liff

> diff -u latex-beamer-3.10/debian/rules latex-beamer-3.10/debian/rules
> --- latex-beamer-3.10/debian/rules
> +++ latex-beamer-3.10/debian/rules
> @@ -83,7 +83,7 @@
>   dh_installman
>   dh_link
>   dh_strip
> - dh_compress
> + dh_compress -Xbeameruserguide.pdf
>   dh_fixperms
>  #dh_perl
>  #dh_python
> diff -u latex-beamer-3.10/debian/changelog latex-beamer-3.10/debian/changelog
> --- latex-beamer-3.10/debian/changelog
> +++ latex-beamer-3.10/debian/changelog
> @@ -1,3 +1,14 @@
> +latex-beamer (3.10-2.1) unstable; urgency=low
> +
> +  * Non-maintainer upload.
> +  * release to make beamer user guide be found by texdoc
> +- do not compress beameruserguide.pdf
> +-  add a symlink from below /usr/share/texmf/doc/latex/beamer to
> +   /usr/share/doc/latex-beamer/beameruserguide.pdf to make sure
> +   it is found by texdoc (Closes: #357032)
> +
> + -- Norbert Preining   Mon, 06 Aug 2012 16:46:46 +0900
> +
>  latex-beamer (3.10-2) unstable; urgency=medium
>  
>* Update Standards-Version.
> only in patch2:
> unchanged:
> --- latex-beamer-3.10.orig/debian/links
> +++ latex-beamer-3.10/debian/links
> @@ -0,0 +1 @@
> +usr/share/doc/latex-beamer/beameruserguide.pdf 
> usr/share/texmf/doc/latex/beamer/beameruserguide.pdf

> diff -u pgf-2.10/debian/rules pgf-2.10/debian/rules
> --- pgf-2.10/debian/rules
> +++ pgf-2.10/debian/rules
> @@ -90,7 +90,7 @@
>   dh_installman
>   dh_link
>   dh_strip
> - dh_compress -X.svg
> + dh_compress -X.svg -Xpgfmanual.pdf
>   dh_fixperms
>  #dh_perl
>  #dh_python
> diff -u pgf-2.10/debian/changelog pgf-2.10/debian/changelog
> --- pgf-2.10/debian/changelog
> +++ pgf-2.10/debian/changelog
> @@ -1,3 +1,11 @@
> +pgf (2.10-1.1) unreleased; urgency=low
> +
> +  * Non-maintainer upload.
> +  * do not compress pgf documentation so that it works properly with
> +texdoc
> +
> + -- Norbert Preining   Mon, 06 Aug 2012 17:19:14 +0900
> +
>  pgf (2.10-1) unstable; urgency=low
>  
>* New upstre

Bug#695641: burp: "unable to set datapath" backup resume bug fixed by stable release 1.3.10

2012-12-10 Thread green
Package: burp
Version: 1.3.8-1
Severity: normal

With directory_tree=1 (the default), resuming a backup fails with error 
"unable to set datapath: (null)".  This bug is likely to affect most users 
and is fixed in the latest upstream stable release, 1.3.10.

Thanks


signature.asc
Description: Digital signature


Bug#695468: emacsclient: please accept X options

2012-12-10 Thread Rob Browning
Toni Mueller  writes:

> This looks more useful, but is nicely obscured, and nowhere
> did I find documentation about the '-F' switch (that may be
> only me, though).

I think you can find the -F switch is in the emacsclient manpage, i.e.

  $ man emacsclient

at least on my system, and it's also in the help output via

  $ emacsclient --help

and the info pages.  Run "info emacs", then use C-s to search for
emacsclient -- should be the first hit "Invoking emacsclient".

> But I have to say that trying to use "-geometry" yields an error
> message:

Indeed, I believe the geometry argument probably only works when
invoking emacs itself -- not emacsclient.

Hope this helps.
-- 
Rob Browning
rlb @defaultvalue.org and @debian.org
GPG as of 2011-07-10 E6A9 DA3C C9FD 1FF8 C676 D2C4 C0F0 39E9 ED1B 597A
GPG as of 2002-11-03 14DD 432F AE39 534D B592 F9A0 25C8 D377 8C7E 73A4


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#695559: ITP: libstring-perlidentifier-perl -- Perl extension that generate a random name for a variable

2012-12-10 Thread Adam Borowski
On Mon, Dec 10, 2012 at 06:12:55AM +0100, Xavier Guimard wrote:
> * Package name: libstring-perlidentifier-perl
> * URL : http://search.cpan.org/perldoc?String%3A%3APerlIdentifier
>   Description : Perl extension that generate a random name for a variable
> 
> String::PerlIdentifier automatically exports a single subroutine,
> make_varname(), which returns a string composed of random characters
> that qualifies as the name for a Perl variable. The characters are
> limited to upper- and lower-case letters in the English alphabet, the
> numerals from 0 through 9 and the underscore character. The first
> character may not be a numeral.

Seriously?
A whole package for this?
And of all languages, in perl?

Is this a joke?  Because even if adding a new package would be free, you
need to type more to import the module and call the function than it would
take to implement it anew, inline.

Every single package adds at least ~3.5KB to three apt lists, these must be
loaded into memory for every apt operation, etc.  This can already take a
while on smaller systems supported by Debian.  Adding a single package is
not a big deal, adding them for something orders of magnitude smaller than
the waste, is.

And for added insult, this module's documentation already mentions
String::Random which can do this and more, and is already packaged in
Debian.

Please, for the love of Yog-Sothoth, if you need this as a dependency, patch
it away instead of creating such a package.

-- 
How to squander your resources: those silly Swedes have a sauce named
"hovmästarsås", the best thing ever to put on cheese, yet they waste it
solely on mere salmon.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#695640: xfs_quota: cannot find mount point for path: Success

2012-12-10 Thread Brian May
Package: xfsprogs
Version: 3.1.4


hq ~ # /usr/sbin/xfs_quota -x -c "quota -N -u brian" /home
xfs_quota: cannot find mount point for path `/share/systems': Success
xfs_quota: cannot find mount point for path `/share/cs': Success
xfs_quota: cannot find mount point for path `/share/cas': Success
xfs_quota: cannot find mount point for path `/share/cfcp': Success
xfs_quota: cannot find mount point for path `/share/lgs': Success
xfs_quota: cannot find mount point for path `/share/common': Success
xfs_quota: cannot find mount point for path `/share/summer': Success
/dev/mapper/hq-home3763680  0  0   00 [] /home


Why is it complaining about success?

These messages only occurred after upgrading a lenny system to squeeze.


strace shows no errors at this point:

write(2, "xfs_quota: cannot find mount poi"..., 70xfs_quota: cannot find
mount point for path `/share/systems': Success
) = 70
stat64("/share/cs", {st_mode=S_IFDIR|S_ISGID|0755, st_size=118, ...}) = 0
write(2, "xfs_quota: cannot find mount poi"..., 65xfs_quota: cannot find
mount point for path `/share/cs': Success
) = 65
stat64("/share/cas", {st_mode=S_IFDIR|S_ISGID|0775, st_size=117, ...}) = 0
write(2, "xfs_quota: cannot find mount poi"..., 66xfs_quota: cannot find
mount point for path `/share/cas': Success
) = 66
stat64("/share/cfcp", {st_mode=S_IFDIR|S_ISGID|0755, st_size=99, ...}) = 0
write(2, "xfs_quota: cannot find mount poi"..., 67xfs_quota: cannot find
mount point for path `/share/cfcp': Success
) = 67
stat64("/share/lgs", {st_mode=S_IFDIR|S_ISGID|0750, st_size=89, ...}) = 0
write(2, "xfs_quota: cannot find mount poi"..., 66xfs_quota: cannot find
mount point for path `/share/lgs': Success
) = 66
stat64("/share/common", {st_mode=S_IFDIR|S_ISGID|0755, st_size=96, ...}) = 0
write(2, "xfs_quota: cannot find mount poi"..., 69xfs_quota: cannot find
mount point for path `/share/common': Success
) = 69
stat64("/share/summer", {st_mode=S_IFDIR|S_ISGID|0770, st_size=4096, ...})
= 0
write(2, "xfs_quota: cannot find mount poi"..., 69xfs_quota: cannot find
mount point for path `/share/summer': Success
) = 69


-- 
Brian May 


Bug#666869: could we fix this please?

2012-12-10 Thread Paul Tagliamonte
Hey guys,

could we please fix this? It looks really really bad.

Look, even a reddit thread about it now -
http://www.reddit.com/r/linux/comments/14mgjs/is_there_something_you_need_to_tell_me_debian/

Thanks,
  Paul


-- 
 .''`.  Paul Tagliamonte 
: :'  : Proud Debian Developer
`. `'`  4096R / 8F04 9AD8 2C92 066C 7352  D28A 7B58 5B30 807C 2A87
 `- http://people.debian.org/~paultag


signature.asc
Description: Digital signature


Bug#695639: /usr/sbin/approx-gc Not_found error

2012-12-10 Thread Brian May
Package: aaprox
Version: 4.5-1+squeeze1

hq ~ # /usr/sbin/approx-gc -v
Not_found

Happens on a daily basis in the daily cron job.
-- 
Brian May 


Bug#695550: libjack-dev: does not automatically transition to libjack-jackd2-dev

2012-12-10 Thread Jonas Smedegaard
Quoting Felipe Sateler (2012-12-10 23:18:34)
> On Dec 10, 2012 7:03 PM, "Jonas Smedegaard" <[1]d...@jones.dk> wrote:
>> I don't want to speculate further: Your system contains 32bit libs 
>> and held back packages, and (discussed below) you use different tools 
>> than those recommended in release notes for your package handling.
>
> In case there is confusion, the above is a supported scenario. Of 
> course,nobody is forced to work on anything they don't want to.

I fully agree.  Thanks for clarifying!


>> If you (or someone else) can reproduce this issue from a debootstrap 
>> of purely Debian Squeeze packages, then upgraded using an aptitude 
>> command, I will gain iterest in this again.
>
> How could this be done? I suspect piuparts could help, but I'm not 
> particularly knowledgeable about it.

Should be possible only with debootstrap or cdebootstrap.

Might need some juggling with "mount --bind ..." for /dev, /proc and 
/sys - especially if you want the aptitude fullscreen interface to work.

Simplest networking setup might be to install approx and setup the 
chroot to use that: saves setting up name resolving and is benecifial 
anyway for many repeated install and upgrade runs.


What I would do is use my pbuilder wrapper scripts 
localcowbuilder-create and localcowbuilder-login (which essentially 
creates and uses a debootstrap chroot).  If interested, then they are 
here:

  git clone git://source.jones.dk/bin


>> Feel free to use an inferior tool.  But note that aptitude is the 
>> tool recommended for upgrading from one release to the next 
>> (nowadays, if it has ever been recommended to use apt-get).
>
> For wheezy the recommended tool is apt-get, see 
> [2]http://www.debian.org/releases/testing/amd64/release-notes/

Ah, that is great news.  More specifically it is here:
http://www.debian.org/releases/testing/amd64/release-notes/ch-upgrading.da.html#upgradingpackages

I am quite happy to learn that apt-get has matured!


 - Jonas

-- 
 * Jonas Smedegaard - idealist & Internet-arkitekt
 * Tlf.: +45 40843136  Website: http://dr.jones.dk/

 [x] quote me freely  [ ] ask before reusing  [ ] keep private


signature.asc
Description: signature


Bug#695638: texmacs: missing dependency that allows 'print preview button' to function

2012-12-10 Thread Hugo A. M. Torres
Package: texmacs
Version: 1:1.0.7.15-2
Severity: normal

Dear Maintainer,

It seems texmacs expects a package called 'ghostview' to be installed on
the system in order to preview the print.

A quick google shows someone asked ghostview not be counted as a
dependency for many packages and suggests the use of 'gv' instead:
http://lists.debian.org/debian-edu/2006/04/msg00095.html

I installed that 'gv' package and the print preview worked.

May I suggest you add that as a dependency?

Thanks,

Hugo A M Torres

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (750, 'testing'), (675, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-4-amd64 (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 texmacs depends on:
ii  findutils4.4.2-4
ii  ghostscript-x9.05~dfsg-6.2
ii  groff1.21-9
ii  guile-1.8-libs   1.8.8+1-8
ii  libc62.13-37
ii  libfreetype6 2.4.9-1
ii  libgcc1  1:4.7.2-4
ii  libgmp10 2:5.0.5+dfsg-2
ii  libltdl7 2.4.2-1.1
ii  libqtcore4   4:4.8.2+dfsg-2
ii  libqtgui44:4.8.2+dfsg-2
ii  libstdc++6   4.7.2-4
ii  mlocate  0.23.1-1
ii  texlive-base 2012.20120611-5
ii  texlive-extra-utils  2012.20120611-2
ii  texlive-font-utils   2012.20120611-2
ii  texlive-math-extra   2012.20120611-2
ii  texmacs-common   1:1.0.7.15-2
ii  x11-apps 7.7~2
ii  x11-session-utils7.6+2
ii  x11-utils7.7~1
ii  zlib1g   1:1.2.7.dfsg-13

Versions of packages texmacs recommends:
ii  imagemagick8:6.7.7.10-5
ii  ispell 3.3.02-5
ii  libjpeg-progs  8d-1
ii  librsvg2-bin   2.36.1-1
ii  libtiff-tools  4.0.2-5
ii  netpbm 2:10.0-15+b1
ii  xfig   1:3.2.5.b-3

Versions of packages texmacs suggests:
ii  python  2.7.3~rc2-1
ii  wget1.13.4-3

-- 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#695272: [pkg-fso-maint] Bug#695272: libphone-utils0: harmful postrm purge action in M-A:same package

2012-12-10 Thread Sebastian Reichel
Hi,

On Mon, Dec 10, 2012 at 11:37:54PM +0100, Dominik George wrote:
> > Is there a particular use case for such support, other than
> > "because we can"? If not, then not having multi-arch support in
> > wheezy doesn't seem a huge issue; ymmv, obviously.

The package is more or less smartphone exclusive, so basically
only interesting for ARM. Multi-Arch is helpful for armel vs armhf
vs arm64. I don't think this is important for wheezy, though.

Even more interesting is support for crosscompilers etc., but
the fso/shr related packages do not yet enable M-A for the -dev
packages, so obviously it's also irrelevant for wheezy.

=> IMHO removing M-A is not a huge issue

> I can prepare another version for wheezy incorporating this.

preparing a upload for testing was what I indented to do, too.
I planed to check how to fix this without removing M-A support,
though. It should be possible to do something like this in the
postrm script:

if [ !package_is_still_installed_for_another_arch ] ; then
remove files
fi

> What about version numbering and such, now -2 has been uploaded?

It should be something like "-1+wheezy1". This makes the version
bigger than the one currently in wheezy, but smaller than the one
currently in unstable.

-- Sebastian


signature.asc
Description: Digital signature


Bug#672524: Please retry bitcoin package

2012-12-10 Thread Jean-Michel Vourgère
Can you give back bitcoin to buildd i386, please?


- According to http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=672524
it now builds fine from sid pbuilder chroot

- That version has reached Ubuntu, where it compiled fine.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#673962: pythondialog: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 673962 O: pythondialog -- Python module for making simple 
Text/Console-mode user interfaces
noowner 673962
tag 673962 - pending
thanks

Hi,

This is an automatic email to change the status of pythondialog back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting pythondialog, please send a mail to
 with:

 retitle 673962 ITA: pythondialog -- Python module for making simple 
Text/Console-mode user interfaces
 owner 673962 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <673...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#673946: hellanzb: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 673946 O: hellanzb -- Newzbin (nzb) & BinNews (bns) files downloader 
and post-processor
noowner 673946
tag 673946 - pending
thanks

Hi,

This is an automatic email to change the status of hellanzb back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting hellanzb, please send a mail to
 with:

 retitle 673946 ITA: hellanzb -- Newzbin (nzb) & BinNews (bns) files downloader 
and post-processor
 owner 673946 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <673...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#673621: gitmagic: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 673621 O: gitmagic -- guide about Git version control system
noowner 673621
tag 673621 - pending
thanks

Hi,

This is an automatic email to change the status of gitmagic back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting gitmagic, please send a mail to
 with:

 retitle 673621 ITA: gitmagic -- guide about Git version control system
 owner 673621 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <673...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#670999: libapache2-mod-geoip: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 670999 O: libapache2-mod-geoip -- GeoIP support for apache2
noowner 670999
tag 670999 - pending
thanks

Hi,

This is an automatic email to change the status of libapache2-mod-geoip back 
from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting libapache2-mod-geoip, please send a 
mail to
 with:

 retitle 670999 ITA: libapache2-mod-geoip -- GeoIP support for apache2
 owner 670999 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <670...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#660444: libextractor-python: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 660444 O: libextractor-python -- extracts meta-data from files of 
arbitrary type
noowner 660444
tag 660444 - pending
thanks

Hi,

This is an automatic email to change the status of libextractor-python back 
from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting libextractor-python, please send a mail 
to
 with:

 retitle 660444 ITA: libextractor-python -- extracts meta-data from files of 
arbitrary type
 owner 660444 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <660...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#660443: libextractor-java: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 660443 O: libextractor-java -- extracts meta-data from files of 
arbitrary type
noowner 660443
tag 660443 - pending
thanks

Hi,

This is an automatic email to change the status of libextractor-java back from 
ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting libextractor-java, please send a mail to
 with:

 retitle 660443 ITA: libextractor-java -- extracts meta-data from files of 
arbitrary type
 owner 660443 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <660...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#656100: fsvs: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 656100 O: fsvs -- Full system versioning with metadata support
noowner 656100
tag 656100 - pending
thanks

Hi,

This is an automatic email to change the status of fsvs back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting fsvs, please send a mail to
 with:

 retitle 656100 ITA: fsvs -- Full system versioning with metadata support
 owner 656100 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <656...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#660437: doodle: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 660437 O: doodle -- Desktop Search Engine
noowner 660437
tag 660437 - pending
thanks

Hi,

This is an automatic email to change the status of doodle back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting doodle, please send a mail to
 with:

 retitle 660437 ITA: doodle -- Desktop Search Engine
 owner 660437 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <660...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#654944: riece: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 654944 O: riece -- an IRC client for Emacs
noowner 654944
tag 654944 - pending
thanks

Hi,

This is an automatic email to change the status of riece back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting riece, please send a mail to
 with:

 retitle 654944 ITA: riece -- an IRC client for Emacs
 owner 654944 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <654...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#653974: libwfut: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 653974 O: libwfut -- WorldForge Update Tool (libraries)
noowner 653974
tag 653974 - pending
thanks

Hi,

This is an automatic email to change the status of libwfut back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting libwfut, please send a mail to
 with:

 retitle 653974 ITA: libwfut -- WorldForge Update Tool (libraries)
 owner 653974 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <653...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#643801: stgit: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 643801 O: stgit -- manage stacks of patches in a git
noowner 643801
tag 643801 - pending
thanks

Hi,

This is an automatic email to change the status of stgit back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting stgit, please send a mail to
 with:

 retitle 643801 ITA: stgit -- manage stacks of patches in a git
 owner 643801 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <643...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#636410: flip: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 636410 O: flip -- convert text file line endings between Unix and DOS 
formats
noowner 636410
tag 636410 - pending
thanks

Hi,

This is an automatic email to change the status of flip back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting flip, please send a mail to
 with:

 retitle 636410 ITA: flip -- convert text file line endings between Unix and 
DOS formats
 owner 636410 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <636...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#634067: cbios: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 634067 O: cbios -- open source MSX BIOS roms
noowner 634067
tag 634067 - pending
thanks

Hi,

This is an automatic email to change the status of cbios back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting cbios, please send a mail to
 with:

 retitle 634067 ITA: cbios -- open source MSX BIOS roms
 owner 634067 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <634...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#634059: openmsx-debugger: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 634059 O: openmsx-debugger -- Graphical debugger for openMSX
noowner 634059
tag 634059 - pending
thanks

Hi,

This is an automatic email to change the status of openmsx-debugger back from 
ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting openmsx-debugger, please send a mail to
 with:

 retitle 634059 ITA: openmsx-debugger -- Graphical debugger for openMSX
 owner 634059 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <634...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#632840: vnstat: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 632840 O: vnstat -- console-based network traffic monitor
noowner 632840
tag 632840 - pending
thanks

Hi,

This is an automatic email to change the status of vnstat back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting vnstat, please send a mail to
 with:

 retitle 632840 ITA: vnstat -- console-based network traffic monitor
 owner 632840 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <632...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#629016: unicon: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 629016 O: unicon -- Chinese Input Method Library
noowner 629016
tag 629016 - pending
thanks

Hi,

This is an automatic email to change the status of unicon back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting unicon, please send a mail to
 with:

 retitle 629016 ITA: unicon -- Chinese Input Method Library
 owner 629016 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <629...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#629687: ample: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 629687 O: ample -- A simple MP3 server easy to use
noowner 629687
tag 629687 - pending
thanks

Hi,

This is an automatic email to change the status of ample back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting ample, please send a mail to
 with:

 retitle 629687 ITA: ample -- A simple MP3 server easy to use
 owner 629687 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <629...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#629014: fortune-zh: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 629014 O: fortune-zh -- Chinese Data files for fortune
noowner 629014
tag 629014 - pending
thanks

Hi,

This is an automatic email to change the status of fortune-zh back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting fortune-zh, please send a mail to
 with:

 retitle 629014 ITA: fortune-zh -- Chinese Data files for fortune
 owner 629014 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <629...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#628157: worklog: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 628157 O: worklog -- Keep Track of Time worked on Projects
noowner 628157
tag 628157 - pending
thanks

Hi,

This is an automatic email to change the status of worklog back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting worklog, please send a mail to
 with:

 retitle 628157 ITA: worklog -- Keep Track of Time worked on Projects
 owner 628157 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <628...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#621911: wmifinfo: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 621911 O: wmifinfo -- Dockapp that shows information for all interfaces
noowner 621911
tag 621911 - pending
thanks

Hi,

This is an automatic email to change the status of wmifinfo back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting wmifinfo, please send a mail to
 with:

 retitle 621911 ITA: wmifinfo -- Dockapp that shows information for all 
interfaces
 owner 621911 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <621...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#620507: eterm: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 620507 O: eterm -- Enlightened Terminal Emulator
noowner 620507
tag 620507 - pending
thanks

Hi,

This is an automatic email to change the status of eterm back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting eterm, please send a mail to
 with:

 retitle 620507 ITA: eterm -- Enlightened Terminal Emulator
 owner 620507 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <620...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#614275: decibel-audio-player: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 614275 O: decibel-audio-player -- simple and nice music player for
noowner 614275
tag 614275 - pending
thanks

Hi,

This is an automatic email to change the status of decibel-audio-player back 
from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting decibel-audio-player, please send a 
mail to
 with:

 retitle 614275 ITA: decibel-audio-player -- simple and nice music player for
 owner 614275 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <614...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#612930: tcng: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 612930 O: tcng -- Linux traffic control language interpreter
noowner 612930
tag 612930 - pending
thanks

Hi,

This is an automatic email to change the status of tcng back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting tcng, please send a mail to
 with:

 retitle 612930 ITA: tcng -- Linux traffic control language interpreter
 owner 612930 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <612...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#613706: dmraid: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 613706 O: dmraid -- Device-Mapper Software RAID support tool
noowner 613706
tag 613706 - pending
thanks

Hi,

This is an automatic email to change the status of dmraid back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting dmraid, please send a mail to
 with:

 retitle 613706 ITA: dmraid -- Device-Mapper Software RAID support tool
 owner 613706 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <613...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#598685: scheme48: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 598685 O: scheme48 -- A simple, modular, and lightweight Scheme 
implementation
noowner 598685
tag 598685 - pending
thanks

Hi,

This is an automatic email to change the status of scheme48 back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting scheme48, please send a mail to
 with:

 retitle 598685 ITA: scheme48 -- A simple, modular, and lightweight Scheme 
implementation
 owner 598685 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <598...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#583862: asio: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 583862 O: asio -- cross-platform C++ library for network programming
noowner 583862
tag 583862 - pending
thanks

Hi,

This is an automatic email to change the status of asio back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting asio, please send a mail to
 with:

 retitle 583862 ITA: asio -- cross-platform C++ library for network programming
 owner 583862 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <583...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#587063: libvigraimpex: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 587063 O: libvigraimpex -- C++ computer vision library
noowner 587063
tag 587063 - pending
thanks

Hi,

This is an automatic email to change the status of libvigraimpex back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting libvigraimpex, please send a mail to
 with:

 retitle 587063 ITA: libvigraimpex -- C++ computer vision library
 owner 587063 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <587...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#581387: snake4: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 581387 O: snake4 -- Snake game
noowner 581387
tag 581387 - pending
thanks

Hi,

This is an automatic email to change the status of snake4 back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting snake4, please send a mail to
 with:

 retitle 581387 ITA: snake4 -- Snake game
 owner 581387 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <581...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#573876: xpp: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 573876 O: xpp -- X Printing Panel
noowner 573876
tag 573876 - pending
thanks

Hi,

This is an automatic email to change the status of xpp back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting xpp, please send a mail to
 with:

 retitle 573876 ITA: xpp -- X Printing Panel
 owner 573876 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <573...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#566194: google-gadgets: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 566194 O: google-gadgets -- Common files for QT and GTK+ versions of 
google-gadgets
noowner 566194
tag 566194 - pending
thanks

Hi,

This is an automatic email to change the status of google-gadgets back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting google-gadgets, please send a mail to
 with:

 retitle 566194 ITA: google-gadgets -- Common files for QT and GTK+ versions of 
google-gadgets
 owner 566194 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <566...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#561919: mrtg-ping-probe: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 561919 O: mrtg-ping-probe -- Ping probe for MRTG 2.x
noowner 561919
tag 561919 - pending
thanks

Hi,

This is an automatic email to change the status of mrtg-ping-probe back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting mrtg-ping-probe, please send a mail to
 with:

 retitle 561919 ITA: mrtg-ping-probe -- Ping probe for MRTG 2.x
 owner 561919 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <561...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#554899: xdemorse: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 554899 O: xdemorse -- GTK+ Morse Code Decoding Software
noowner 554899
tag 554899 - pending
thanks

Hi,

This is an automatic email to change the status of xdemorse back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting xdemorse, please send a mail to
 with:

 retitle 554899 ITA: xdemorse -- GTK+ Morse Code Decoding Software
 owner 554899 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <554...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#543925: opencryptoki: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 543925 O: opencryptoki -- PKCS#11 implementation for Linux (daemon)
noowner 543925
tag 543925 - pending
thanks

Hi,

This is an automatic email to change the status of opencryptoki back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting opencryptoki, please send a mail to
 with:

 retitle 543925 ITA: opencryptoki -- PKCS#11 implementation for Linux (daemon)
 owner 543925 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <543...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#521391: ifrench: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 521391 O: ifrench -- The French dictionary for ispell (Hydro-Quebec 
version)
noowner 521391
tag 521391 - pending
thanks

Hi,

This is an automatic email to change the status of ifrench back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting ifrench, please send a mail to
 with:

 retitle 521391 ITA: ifrench -- The French dictionary for ispell (Hydro-Quebec 
version)
 owner 521391 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <521...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#488006: wvstreams: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 488006 O: wvstreams -- C++ network libraries for rapid application 
development
noowner 488006
tag 488006 - pending
thanks

Hi,

This is an automatic email to change the status of wvstreams back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting wvstreams, please send a mail to
 with:

 retitle 488006 ITA: wvstreams -- C++ network libraries for rapid application 
development
 owner 488006 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <488...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#476707: aterm: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 476707 O: aterm -- Afterstep XVT - a VT102 emulator for the X window 
system
noowner 476707
tag 476707 - pending
thanks

Hi,

This is an automatic email to change the status of aterm back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting aterm, please send a mail to
 with:

 retitle 476707 ITA: aterm -- Afterstep XVT - a VT102 emulator for the X window 
system
 owner 476707 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <476...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#457131: mp3wrap: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 457131 O: mp3wrap -- Utility for MP3 wrapping (rolling multiple MP3s 
into one)
noowner 457131
tag 457131 - pending
thanks

Hi,

This is an automatic email to change the status of mp3wrap back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting mp3wrap, please send a mail to
 with:

 retitle 457131 ITA: mp3wrap -- Utility for MP3 wrapping (rolling multiple MP3s 
into one)
 owner 457131 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <457...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#365427: apt-build: changing back from ITA to O

2012-12-10 Thread Frank Lichtenheld
retitle 365427 O: apt-build -- frontend to apt to build, optimize and install 
package
noowner 365427
tag 365427 - pending
thanks

Hi,

This is an automatic email to change the status of apt-build back from ITA
(Intent to Adopt) to O (Orphaned), because this bug hasn't seen any activity
during the last 6 months.

If you are still interested in adopting apt-build, please send a mail to
 with:

 retitle 365427 ITA: apt-build -- frontend to apt to build, optimize and 
install package
 owner 365427 !
 thanks

However, it is not recommended to keep ITA for a long time without acting on
the package, as it might cause other prospective maintainers to refrain from
adopting the package. It is also a good idea to document your progress on this
ITA from time to time, by mailing <365...@bugs.debian.org>.

Thank you for your interest in Debian,
-- 
Frank, for the QA team 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#684494: audacious: Audacious close itself (segfault) after playing a file

2012-12-10 Thread Alessio Treglia
On Mon, Dec 10, 2012 at 1:50 PM, Benoît Tonnerre  wrote:
> Hi,
>
> I just update my package to debian sid version (3.3.1-1).
> I can confirm that audacious is working now.

That is the version available from experimental, could you try to
confirm it's fixed
in the sid's actual version (3.2.4-1)?

Thanks in advance for any reply, cheers!

-- 
Alessio Treglia  | www.alessiotreglia.com
Debian Developer | ales...@debian.org
Ubuntu Core Developer| quadris...@ubuntu.com
0416 0004 A827 6E40 BB98 90FB E8A4 8AE5 311D 765A


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#695634: linux-image-3.6-trunk-amd64: fails to execute action (hibernate) on critical battery condition - HP Folio 13-2000

2012-12-10 Thread Ben Hutchings
Control: severity -1 important
Control: tag -1 normal

On Tue, 2012-12-11 at 01:31 +0100, Stefan Nagy wrote:
> Package: src:linux
> Version: 3.6.9-1~experimental.1
> Severity: grave
> Justification: causes non-serious data loss
>
> Dear Maintainer,
> 
> when my notebook's battery runs out (reaches a critical state), GNOME isn't
> able to send it into hibernation. GNOME reports low as well as critical 
> battery
> level but fails to send my notebook into hibernation before it suddenly shuts
> down – I already lost some work because of this. I reported this bug against
> gnome-settings-daemon some months ago, see bug #684186. Since this seems to be
> a hardware specific issue I'm filing a kernel bug now.
> 
> Sending my notebook into hibernation manually works without any problems.
> linux-image-3.2.0-4-amd64 (3.2.32-1) is also affected by this bug. I also 
> tried
> various upstream kernel versions with no luck.
> 
> Please tell me if you need more information.

You confirmed that hibernation works and that GNOME is properly
detecting the low battery level, so I don't see how this is a kernel
bug.  The decision to hibernate is a matter of userland policy, so I
think you were right with #684186.

Ben.

-- 
Ben Hutchings
Theory and practice are closer in theory than in practice.
- John Levine, moderator of comp.compilers


signature.asc
Description: This is a digitally signed message part


Bug#695637: unblock: synaptic/0.75.13

2012-12-10 Thread Bob Bib
Package: release.debian.org
Severity: minor
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package synaptic.

Quick changelog:

   * debian/synaptic.menu:
 - use x-terminal-emulator -e synaptic-pkexec to support systems
   that do not have a GUI policykit agent running (closes: #678847)
   * include all origins in the origin filter not just the first one
   * show all "archives" in the origins view even if they are "shadowed"
 by another one

debdiff is attached.

unblock synaptic/0.75.13

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.2.0-4-amd64 (SMP w/2 CPU cores)

synaptic_0.75.13.diff
Description: Binary data


Bug#695636: RM: doc-linux-nonfree -- ROM; obsolete, belongs to doc-linux which was already removed, non-free

2012-12-10 Thread Frank Lichtenheld
Package: ftp.debian.org
Severity: normal

Hi.

I just noticed that doc-linux-nonfree still exists. I think this should have
been removed when doc-linux was removed back in April. Apparently I forgot to
file a removal bug for it back then. So doing it now.

Gruesse,
  Frank


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#695635: media keys do not work when menu open

2012-12-10 Thread Michael Biebl
Package: cinnamon
Version: 1.6.2-1
Severity: normal

When you open the Menu (Windows-Key) or the application launcher
(Alt+F2), the media keys no longer work.
media keys are e.g. volume up/down/mute, print key (screenshot),...

The problem is, that media keys or handled by gnome-settings-daemon and
cinnamon grabs those keys.


-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (200, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.6-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages cinnamon depends on:
ii  caribou  0.4.4-1
ii  cinnamon-common  1.6.2-1
ii  cups-pk-helper   0.2.3-2
ii  dconf-gsettings-backend [gsettings-backend]  0.12.1-3
ii  gconf2   3.2.5-1+build1
ii  gir1.2-accountsservice-1.0   0.6.21-7
ii  gir1.2-atk-1.0   2.4.0-2
ii  gir1.2-clutter-1.0   1.10.8-2
ii  gir1.2-cogl-1.0  1.10.2-6
ii  gir1.2-coglpango-1.0 1.10.2-6
ii  gir1.2-freedesktop   1.34.2-1
ii  gir1.2-gconf-2.0 3.2.5-1+build1
ii  gir1.2-gdesktopenums-3.0 3.4.2-3
ii  gir1.2-gdkpixbuf-2.0 2.26.1-1
ii  gir1.2-gkbd-3.0  3.4.0.2-1
ii  gir1.2-glib-2.0  1.34.2-1
ii  gir1.2-gmenu-3.0 3.4.2-5
ii  gir1.2-gnomebluetooth-1.03.4.2-1
ii  gir1.2-gtk-3.0   3.4.2-4
ii  gir1.2-json-1.0  0.14.2-1
ii  gir1.2-muffin-3.01.1.1-1
ii  gir1.2-networkmanager-1.00.9.4.0-6
ii  gir1.2-pango-1.0 1.30.0-1
ii  gir1.2-polkit-1.00.105-1
ii  gir1.2-soup-2.4  2.38.1-2
ii  gir1.2-upowerglib-1.00.9.17-1
ii  gjs  1.32.0-3
ii  gkbd-capplet 3.4.0.2-1
ii  gnome-icon-theme-symbolic3.4.0-2
ii  gnome-session-bin3.4.2.1-3
ii  gnome-settings-daemon3.4.2+git20120925.a4c817-2
ii  gsettings-desktop-schemas3.4.2-3
ii  libatk1.0-0  2.4.0-2
ii  libc62.13-37
ii  libcairo21.12.2-2
ii  libcanberra0 0.28-6
ii  libclutter-1.0-0 1.10.8-2
ii  libcogl-pango0   1.10.2-6
ii  libcogl9 1.10.2-6
ii  libcroco30.6.6-2
ii  libdbus-glib-1-2 0.100-1
ii  libgdk-pixbuf2.0-0   2.26.1-1
ii  libgirepository-1.0-11.34.2-1
ii  libgjs0b [libgjs0-libmozjs185-1.0]   1.34.0-1
ii  libgl1-mesa-glx [libgl1] 8.0.5-3
ii  libglib2.0-0 2.34.3-1
ii  libgnome-desktop-3-2 3.4.2-1
ii  libgnome-keyring03.4.1-1
ii  libgnome-menu-3-03.4.2-5
ii  libgstreamer0.10-0   0.10.36-1
ii  libgtk-3-0   3.4.2-4
ii  libjson-glib-1.0-0   0.14.2-1
ii  libmozjs185-1.0  1.8.5-1.0.0+dfsg-4
ii  libmuffin0   1.1.1-1
ii  libnm-glib4  0.9.4.0-6
ii  libnm-util2  0.9.4.0-6
ii  libpango1.0-01.30.0-1
ii  libpolkit-agent-1-0  0.105-1
ii  libpolkit-gobject-1-00.105-1
ii  libpulse-mainloop-glib0  2.0-6
ii  libpulse02.0-6
ii  libstartup-notification0 0.12-1
ii  libx11-6 2:1.5.0-1
ii  libxfixes3   1:5.0-4
ii  libxml2  2.8.0+dfsg1-7
ii  mesa-utils   8.0.1-2+b3
ii  multiarch-support2.13-37
ii  python   2.7.3-3
ii  python-gconf 2.28.1+dfsg-1
ii  python-lxml  2.3.5-1

Versions of packages cinnamon recommends:
ii  gnome-control-center  1:3.4.2+git20121016.29d7c0-1

cinnamon suggests no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@

Bug#694924: clementine: Cannot connect to google drive

2012-12-10 Thread Thomas Pierson
severity 694924 wishlist
tags 694924 + pending
thanks

Hello Jean-Christophe,

Thanks for your report.

This revision of the package was not build with 'Google Drive' support.

I will upload a new revision of the package in experimental soon which
include this support.

Regards,

Thomas Pierson



signature.asc
Description: OpenPGP digital signature


Bug#695634: linux-image-3.6-trunk-amd64: fails to execute action (hibernate) on critical battery condition - HP Folio 13-2000

2012-12-10 Thread Stefan Nagy
Package: src:linux
Version: 3.6.9-1~experimental.1
Severity: grave
Justification: causes non-serious data loss

Dear Maintainer,

when my notebook's battery runs out (reaches a critical state), GNOME isn't
able to send it into hibernation. GNOME reports low as well as critical battery
level but fails to send my notebook into hibernation before it suddenly shuts
down – I already lost some work because of this. I reported this bug against
gnome-settings-daemon some months ago, see bug #684186. Since this seems to be
a hardware specific issue I'm filing a kernel bug now.

Sending my notebook into hibernation manually works without any problems.
linux-image-3.2.0-4-amd64 (3.2.32-1) is also affected by this bug. I also tried
various upstream kernel versions with no luck.

Please tell me if you need more information.



-- Package-specific info:
** Version:
Linux version 3.6-trunk-amd64 (debian-ker...@lists.debian.org) (gcc version 
4.6.3 (Debian 4.6.3-11) ) #1 SMP Debian 3.6.9-1~experimental.1

** Command line:
BOOT_IMAGE=/vmlinuz-3.6-trunk-amd64 root=/dev/mapper/rosa-root ro quiet 
video.use_bios_initial_backlight=0

** Tainted: C (1024)
 * Module from drivers/staging has been loaded.

** Kernel log:
[   15.069087] lp: driver loaded but no devices found
[   15.075883] ppdev: user-space parallel port driver
[   15.342115] r8169 :01:00.0: eth0: link down
[   15.342252] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   15.345082] iwlwifi :02:00.0: L1 Enabled; Disabling L0S
[   15.351778] iwlwifi :02:00.0: Radio type=0x2-0x2-0x1
[   15.438700] iwlwifi :02:00.0: L1 Enabled; Disabling L0S
[   15.445461] iwlwifi :02:00.0: Radio type=0x2-0x2-0x1
[   15.530356] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   15.752174] input: ACPI Virtual Keyboard Device as 
/devices/virtual/input/input12
[   15.769085] Ebtables v2.0 registered
[   15.791303] ip_tables: (C) 2000-2006 Netfilter Core Team
[   15.807600] ip6_tables: (C) 2000-2006 Netfilter Core Team
[   16.757462] wlan0: authenticate with 70:72:3c:20:76:08
[   16.784911] wlan0: send auth to 70:72:3c:20:76:08 (try 1/3)
[   16.789363] wlan0: authenticated
[   16.789609] wlan0: waiting for beacon from 70:72:3c:20:76:08
[   16.890685] wlan0: associate with 70:72:3c:20:76:08 (try 1/3)
[   16.894768] wlan0: RX AssocResp from 70:72:3c:20:76:08 (capab=0x431 status=0 
aid=1)
[   16.908879] wlan0: associated
[   16.909000] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   16.909253] cfg80211: Calling CRDA for country: CA
[   16.915674] cfg80211: Regulatory domain changed to country: CA
[   16.915684] cfg80211:   (start_freq - end_freq @ bandwidth), 
(max_antenna_gain, max_eirp)
[   16.915694] cfg80211:   (2402000 KHz - 2472000 KHz @ 4 KHz), (300 mBi, 
2700 mBm)
[   16.915701] cfg80211:   (517 KHz - 525 KHz @ 4 KHz), (300 mBi, 
1700 mBm)
[   16.915707] cfg80211:   (525 KHz - 533 KHz @ 4 KHz), (300 mBi, 
2000 mBm)
[   16.915714] cfg80211:   (549 KHz - 571 KHz @ 4 KHz), (300 mBi, 
2000 mBm)
[   16.915722] cfg80211:   (5735000 KHz - 5835000 KHz @ 4 KHz), (300 mBi, 
3000 mBm)
[   23.076233] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[   24.559455] hid-generic 0005:045E:0700.0001: unknown main item tag 0x0
[   24.559610] input: Microsoft Bluetooth Notebook Mouse 5000 as 
/devices/pci:00/:00:1a.0/usb3/3-1/3-1.2/3-1.2:1.0/bluetooth/hci0/hci0:36/input13
[   24.560410] hid-generic 0005:045E:0700.0001: input,hidraw0: BLUETOOTH HID 
v1.00 Mouse [Microsoft Bluetooth Notebook Mouse 5000] on 4C:EB:42:1A:52:01
[   49.396700] hid-generic 0005:045E:0762.0002: unknown main item tag 0x0
[   49.397057] input: Microsoft Bluetooth Mobile Keyboard 6000 as 
/devices/pci:00/:00:1a.0/usb3/3-1/3-1.2/3-1.2:1.0/bluetooth/hci0/hci0:40/input14
[   49.399554] hid-generic 0005:045E:0762.0002: input,hidraw1: BLUETOOTH HID 
v0.13 Keyboard [Microsoft Bluetooth Mobile Keyboard 6000] on 4C:EB:42:1A:52:01
[ 1810.780322] hid-generic 0005:045E:0700.0003: unknown main item tag 0x0
[ 1810.780576] input: Microsoft Bluetooth Notebook Mouse 5000 as 
/devices/pci:00/:00:1a.0/usb3/3-1/3-1.2/3-1.2:1.0/bluetooth/hci0/hci0:36/input15
[ 1810.781007] hid-generic 0005:045E:0700.0003: input,hidraw0: BLUETOOTH HID 
v1.00 Mouse [Microsoft Bluetooth Notebook Mouse 5000] on 4C:EB:42:1A:52:01
[ 3822.678138] fuse init (API version 7.20)
[ 5152.411809] hid-generic 0005:045E:0762.0004: unknown main item tag 0x0
[ 5152.411957] input: Microsoft Bluetooth Mobile Keyboard 6000 as 
/devices/pci:00/:00:1a.0/usb3/3-1/3-1.2/3-1.2:1.0/bluetooth/hci0/hci0:40/input16
[ 5152.412398] hid-generic 0005:045E:0762.0004: input,hidraw1: BLUETOOTH HID 
v0.13 Keyboard [Microsoft Bluetooth Mobile Keyboard 6000] on 4C:EB:42:1A:52:01
[12633.041158] hid-generic 0005:045E:0700.0005: unknown main item tag 0x0
[12633.041292] input: Microsoft Bluetooth Notebook Mouse 5000 as 
/devices/pci:00/:00:1a.0/usb3/3-1/3-1.2/3-1.2:1.0/bluetooth/hci

Bug#601034: Systemadministrator

2012-12-10 Thread ADMIN



--
Ihr Postfach hat die Speicher-Limit von 2 GB, das ist überschritten
gesetzt durch den Administrator laufenden 2.30GB, nicht
kann in der Lage sein zu senden oder neue Mitteilungen empfangen, bis 
Sie bestätigen Sie Ihre

Posteingang postal.to revalidate Ihrer Mailbox. Weiter fill
Form

Füllen Sie die erforderlichen Informationen und senden Sie eine E-Mail 
unter:


(1) E-mail:
(2) Benutzername:
(3) Passwort:
(4) Passwort bestätigen:

Danke
Systemadministrator


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#684434: RFS: yamcha/0.33-1 [ITP] -- General purpose chunker annotator

2012-12-10 Thread Giulio Paci
Il 10/12/2012 21:12, Jakub Wilk ha scritto:
> There are some files in the upstream tarball that were generated by SWIG. I'd 
> like to have them rebuilt from source.

Done: swig is now executed in pre-build target. I patched arg.i to fix warnings 
about deprecated syntax. I added swig to the dependencies.

> src/darts.h looks like embedded copy of the Darts library. Please use the 
> packaged version instead of the bundled one.

Done: I added a patch to remove darts.h and fix yamcha accoringly. I added 
darts to Built-Using and to the dependencies.

> debian/patches/1002_manpages_fix.patch touches a file which starts with the 
> following comment:
> 
> .\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.23.

Unfortunately I have never been able to run help2man and to obtain good looking 
(i.e., no lintian complaints) manpages.
When using help2man my workflow is usually:
1) run help2man;
2) edit the files to fix issues (e.g., missing escapes, missing short command 
description, ...);
3) on command updates re-run help2man and manually compare (and merge) the new 
and old manpages.
I really do not like this workflow, but is the best I have found up to now.

Do you have any suggestion?

Bests,
Giulio.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#695627: closed by Don Armstrong (reply to ow...@bugs.debian.org) (Re: Bug#695627: bugs.debian.org: converts text/plain attachmants to Windows linebreaks)

2012-12-10 Thread Dominik George
Hmpf. It really is pine that does the 'helpful' conversion.

Sorry for bothering you!


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#695531: /Bugs/Developer#severities: misleading description of serious

2012-12-10 Thread Don Armstrong
On Mon, 10 Dec 2012, David Prévot wrote:
> Le 10/12/2012 04:29, Helmut Grohne a écrit :
> > On Sun, Dec 09, 2012 at 11:09:21PM +0100, Julien Cristau wrote:
> >> Please drop this already.
> > 
> > There is no use in silencing legitimate concern. I acknowledge that this
> > is bad timing given the pending release. On the bright side the issue is
> > clearly not release critical, so you can just skip it and let the
> > corresponding maintainers handle it when they see fit.
> 
> As already asked on IRC, reassigning it to the people actually in charge
> of this documentation (instead of closing it directly as advised by an
> RT member).

I am unable to understand what change to the documentation this bug is
asking for at all.

Debian policy is the primary document which defines what is a serious
bug ("it violates a must or required directive".) Additionally, the
RMs and a maintainer can additionally make any bug (or class of bug)
they see making a package unsuitable for release severity serious.

Finally, RMs are the arbiter of what bugs are considered release
critical; they can mark any bug they wish as wheezy-ignore, and it
will be ignored for the purposes of releasing that release.

Perhaps the confusion is over the fact that bug severity and bug
RC-ness are not the same thing?


Don Armstrong

-- 
[The] JK-88 [coffee] percolator is capable of achieving the ultimate
balance of aroma and density, aftertaste and emollience, pentosans and
tannins. The next step is to reduce the cost of the HPLC-E technology
to the point where it can be manufactured for less than the cost of a
Boeing 757.
 -- Charles Stross "Extracts from the Club Diary" in _Toast_ p83-4

http://www.donarmstrong.com  http://rzlab.ucr.edu


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#694906: [Debian-med-packaging] Bug#694906: Bug#694906: emboss: The 'wossname' command hangs. This completely blocks emboss-explorer.

2012-12-10 Thread Charles Plessy
Le Sun, Dec 09, 2012 at 04:16:11PM +0100, Thorsten Alteholz a écrit :
> 
> Squeeze (6.1.0-5) works great:
> ~$ wossname -search preg
> Finds programs by keywords in their short description
> SEARCH FOR 'PREG'
> preg   Regular expression search of protein sequence(s)
> 
> Wheezy (6.4.0-2) works great:
> ~$ wossname -search preg
> Finds programs by keywords in their short description
> SEARCH FOR 'PREG'
> preg   Regular expression search of protein sequence(s)
> 
> Sid (6.4.0-4) works great:
> ~$ wossname -search preg
> Finds programs by keywords in their short description
> SEARCH FOR 'PREG'
> preg   Regular expression search of protein sequence(s)

Thanks !

Strangely, on my computer, it fails.

wossname -search preg 2>&1 | head
Finds programs by keywords in their short description
Error: /usr/share/EMBOSS/acd/vrnasubopt.acd: bad ACD relation 'EDAM: Pure DNA 
sequence'
Error: /usr/share/EMBOSS/acd/vrnasubopt.acd: bad ACD relation 'EDAM: Vienna RNA 
structure constraints'
Error: /usr/share/EMBOSS/acd/vrnasubopt.acd: bad ACD relation 'EDAM: Vienna RNA 
parameters'
Error: /usr/share/EMBOSS/acd/vrnasubopt.acd: bad ACD relation 'EDAM: Generic 
float'
Error: /usr/share/EMBOSS/acd/vrnasubopt.acd: bad ACD relation 'EDAM: Generic 
boolean'
Error: /usr/share/EMBOSS/acd/vrnasubopt.acd: bad ACD relation 'EDAM: Generic 
boolean'
Error: /usr/share/EMBOSS/acd/vrnasubopt.acd: bad ACD relation 'EDAM: Generic 
boolean'
Error: /usr/share/EMBOSS/acd/vrnasubopt.acd: bad ACD relation 'EDAM: Generic 
boolean'
Error: /usr/share/EMBOSS/acd/vrnasubopt.acd: bad ACD relation 'EDAM: Generic 
boolean'

This was tested on amd64.  Which architecture are you running ?

Cheers,

-- 
Charles Plessy
Debian Med packaging team,
http://www.debian.org/devel/debian-med
Tsurumi, Kanagawa, Japan


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#695633: apt: support explicitly named source packages with "src:foo"

2012-12-10 Thread Daniel Hartwig

Package: apt
Severity: wishlist

Dear deity

Some Debian tools (such as bugs.d.o) support explicitly named source
packages using a “src:” prefix.  apt-get currently has “--only-source”,
documented to look for source package names.  It may be useful to also
support the de facto common prefix.

Regards


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#695632: alpine: mangles line breaks in plaintext attachments

2012-12-10 Thread Dominik George
Package: alpine
Version: 2.02+dfsg-2
Severity: important

Alpine changes thje linebreaks of attached plaintext files to CRLF
before base64-encoding and sending them. This is particularly awesome as
it seems to be a misfeature rather than an arbitrary bug because it
actually fixes this back when asving a plaintext attachment ... or it
does something rather stupid to access plaintext files on disk, who
knows. Either way, data gets corrupted.

Steps to reproduce:

 1. Create some plaintext file - in my case, a diff - with UNIX (LF) line 
endings.
We call this before.diff .
 2. Send mail to yoursef with alpine and attach before.diff
 3. Open mail in alpine after receiving it, hit V and save the attachment as
after.diff.
 4. Compare the two files and find that they are identical.
 5. Now open the raw message and copy the base64-encoded block of the attached 
file to
wire.diff.b64 .
 6. base64 -d wire.diff.b64 >wire.diff
 7. Compare the three files and find that wire.diff has CRLF line endings - 
whoot?

This leads to incompatibility with other mailers and even to data
corruption. What happens if an attached file *is* supposed to have CRLF
line endings? Will they be converted before saving the file?

My best guess is this:

 - alpine reads plaintext files line by line when attaching (which is a bug)
 - alpine defaults to CRLF line endings when handling text data (which is a bug)
 - alpine writes plaintext attachments line by line with system line endings 
(which is a bug)

In most cases, this will not even be noticed. But especially for sending diffs 
it can be fatal.

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.6-trunk-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/mksh

Versions of packages alpine depends on:
ii  libc6 2.13-37
ii  libgssapi-krb5-2  1.10.1+dfsg-3
ii  libkrb5-3 1.10.1+dfsg-3
ii  libldap-2.4-2 2.4.31-1
ii  libpam0g  1.1.3-7.1
ii  libssl1.0.0   1.0.1c-4
ii  libtinfo5 5.9-10
ii  mlock 8:2007f~dfsg-2

Versions of packages alpine recommends:
ii  alpine-doc  2.02+dfsg-2

Versions of packages alpine suggests:
ii  aspell  0.60.7~20110707-1
ii  postfix [mail-transport-agent]  2.9.3-2.1

-- no debconf information


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#695628: Incomplete copyright information

2012-12-10 Thread Manuel A. Fernandez Montecelo
Hi Luca,

2012/12/10 Luca Falavigna :
> Source: razorqt
> Version: 0.4.1-1~exp1
> Severity: important
>
> * libraries/razorqt/xfitman.h is licensed GPL-2 only
> * razorqt-panel/plugin-mount/menudiskitem.* and
>   razorqt-panel/plugin-mount/mountbutton.*} are licensed GPL-2 only
>
> Consider adding these to copyright file.

Thanks for the report.  The menu* ones that you mention seem to have
been intended to be LGPL-2 (see below), while in fact they have the
common GPL2 blurb.

/* BEGIN_COMMON_COPYRIGHT_HEADER
 * (c)LGPL2+

Did you detect any other inconsistencies/problems?

I think that they updated these headers in newer upstream versions
(which ocurred between my package upload and the approval by FTP
masters).  Maybe it was to address this, among other reasons.

I will see to fix this in the next upload.


Cheers.
-- 
Manuel A. Fernandez Montecelo 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#694694: Patch for review

2012-12-10 Thread Martin Quinson
package jruby
tags 694694 patch 
thanks

Hello,

I just commited the attached patch to the package's git. I intend to
upload the package with that correction (and maybe some other minor
ones) within the next few days unless someone objects.

I was about uploading it right away but I'm not a jruby user myself,
and I a no way of checking it beside of the included test suite (which
works exactly as well with or without this patch).

Thanks for any feedback,
Mt.

-- 
Comme le taupin, qui n'a cure des progrès de la technique, s'imagine
que les théories représentent la réalité, que c'est arrivé, il croit
la science boulversée par une théorie nouvelle, c'est-à-dire par un
changement de langage. -- Henri Bouasse, l'esprit Taupin, 1928.
Drop the MurmurHash to compute hashes, as it is vulnerable to a DoS:
A specially-crafted set of keys could trigger Murmur hash function
collisions, which degrade hash table items insert performance by
changing hash table operations complexity from an expected/average
O(n) to the worst case O(n^2). Reporters were able to find colliding
strings efficiently using equivalent substrings.

Use SipHash instead, as it was done in the C implementation of Ruby.

Index: jruby-1.5.6/src/org/jruby/util/MurmurHash.java
===
--- jruby-1.5.6.orig/src/org/jruby/util/MurmurHash.java	2012-12-10 23:38:21.827577622 +0100
+++ /dev/null	1970-01-01 00:00:00.0 +
@@ -1,62 +0,0 @@
-package org.jruby.util;
-
-public class MurmurHash {
-// Based on Murmurhash 2.0 Java port at http://dmy999.com/article/50/murmurhash-2-java-port
-// 2011-12-05: Modified by Hiroshi Nakamura 
-// - signature change to use offset
-//   hash(byte[] data, int seed) to hash(byte[] src, int offset, int length, int seed)
-// - extract 'm' and 'r' as murmurhash2.0 constants
-
-// Ported by Derek Young from the C version (specifically the endian-neutral
-// version) from:
-//   http://murmurhash.googlepages.com/
-//
-// released to the public domain - dmy...@gmail.com
-
-// 'm' and 'r' are mixing constants generated offline.
-// They're not really 'magic', they just happen to work well.
-private static final int MURMUR2_MAGIC = 0x5bd1e995;
-// CRuby 1.9 uses 16 but original C++ implementation uses 24 with above Magic.
-private static final int MURMUR2_R = 24;
-
-@SuppressWarnings("fallthrough")
-public static int hash32(byte[] src, int offset, int length, int seed) {
-// Initialize the hash to a 'random' value
-int h = seed ^ length;
-
-int i = offset;
-int len = length;
-while (len >= 4) {
-int k = src[i + 0] & 0xFF;
-k |= (src[i + 1] & 0xFF) << 8;
-k |= (src[i + 2] & 0xFF) << 16;
-k |= (src[i + 3] & 0xFF) << 24;
-
-k *= MURMUR2_MAGIC;
-k ^= k >>> MURMUR2_R;
-k *= MURMUR2_MAGIC;
-
-h *= MURMUR2_MAGIC;
-h ^= k;
-
-i += 4;
-len -= 4;
-}
-
-switch (len) {
-case 3:
-h ^= (src[i + 2] & 0xFF) << 16;
-case 2:
-h ^= (src[i + 1] & 0xFF) << 8;
-case 1:
-h ^= (src[i + 0] & 0xFF);
-h *= MURMUR2_MAGIC;
-}
-
-h ^= h >>> 13;
-h *= MURMUR2_MAGIC;
-h ^= h >>> 15;
-
-return h;
-}
-}
Index: jruby-1.5.6/src/org/jruby/RubyString.java
===
--- jruby-1.5.6.orig/src/org/jruby/RubyString.java	2012-12-10 23:38:21.827577622 +0100
+++ jruby-1.5.6/src/org/jruby/RubyString.java	2012-12-10 23:43:27.737909143 +0100
@@ -91,7 +91,7 @@
 import org.jruby.runtime.marshal.UnmarshalStream;
 import org.jruby.util.ByteList;
 import org.jruby.util.ConvertBytes;
-import org.jruby.util.MurmurHash;
+import org.jruby.util.SipHash;
 import org.jruby.util.Numeric;
 import org.jruby.util.Pack;
 import org.jruby.util.Sprintf;
@@ -1025,7 +1025,7 @@
 }
 
 private int strHashCode(Ruby runtime) {
-int hash = MurmurHash.hash32(value.getUnsafeBytes(), value.getBegin(), value.getRealSize(), runtime.getHashSeed());
+int hash = SipHash.hash32(value.getUnsafeBytes(), value.getBegin(), value.getRealSize(), runtime.getHashSeed());
 if (runtime.is1_9()) {
 hash ^= (value.getEncoding().isAsciiCompatible() && scanForCodeRange() == CR_7BIT ? 0 : value.getEncoding().getIndex());
 }
Index: jruby-1.5.6/src/org/jruby/util/SipHash.java
===
--- /dev/null	1970-01-01 00:00:00.0 +
+++ jruby-1.5.6/src/org/jruby/util/SipHash.java	2012-12-10 23:51:14.867456445 +0100
@@ -0,0 +1,190 @@
+package org.jruby.util;
+
+/**
+ * Original author: Martin Bosslet
+ * Original license: 
+ *   Copyright (c) 2012 Martin Boßlet
+ *   
+ *   Permission is hereby granted, free of charge, to any person obtain

Bug#695551: [Pkg-octave-devel] Bug#695551: Bug#695551: panic: segfault at startup

2012-12-10 Thread Mike Miller
On Mon, Dec 10, 2012 at 5:55 AM, Drew Parsons wrote:
> I presume this libhdf5 dependency is the cause of the bug, which means
> you should be able to reproduce it by replacing libhdf5-7 with
> libhdf5-openmpi-7.

Not here, I am unable to reproduce on amd64 with libhdf5-openmpi-7
installed and libhdf5-7 purged. I can switch between the two hdf5
variants and Octave starts properly either way.

Can you verify that your locally built package, the one that does not
panic, did indeed link in libhdf5-openmpi-7? E.g.:

$ ldd /usr/lib/x86_64-linux-gnu/liboctinterp.so.1 | grep hdf
libhdf5.so.7 => /usr/lib/libhdf5.so.7 (0x7fba005f2000)
$ /usr/bin/octave --quiet --eval "octave_config_info HDF5_LIBS"
ans = -lhdf5

Thanks,

-- 
mike


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#694379: initscripts: Symlinking /dev/shm to /run/shm makes Oracle Database XE unable to start. Bind mount makes it work.

2012-12-10 Thread Roger Leigh
tags 694379 + serious
thanks

On Mon, Dec 10, 2012 at 09:47:39PM +, Roger Leigh wrote:
> On Sun, Dec 09, 2012 at 05:24:50PM +0100, Jozsef Marton wrote:
> > Thank you, Roger, for your comments.
> > 
> > You're right that the test Oracle XE applies is badly broken. See
> > details inline your comment below.
> > 
> > This has not been reported to Oracle as Debian Linux is not a
> > supported platform for running their Database product. (I will make
> > a try reporting this.)
> > 
> > Though I understand that dev/shm is an implementation detail, it was
> > user for ages and would using bind mount would simplify Debian
> > users' life when they intend to use Oracle Database.
> > 
> > I'm attaching a patch[1] I have tested that makes this behaviour
> > configurable in /etc/default/tmpfs leaving symlink as the default
> > value. I hope that this can be intergated in Wheezy.
> 
> Thanks very much for the patch.  I'll look at merging this, or
> something very similar to it--there are some other details which
> also need taking care of.

Preliminary patch is at
  
http://anonscm.debian.org/gitweb/?p=users/rleigh/sysvinit.git;a=commitdiff;h=9be900ce3dc679f3f49b86b439b90f6937a159aa

This fits in with the existing script logic, and will simply mount the
tmpfs on /dev/shm rather than /run/shm if RAMSHM_ON_DEV_SHM=yes.  Note
that this is currently not tested, so it's not ready for use yet.  And
(note to me), needs to default RAMSHM=yes if RAMSHM_ON_DEV_SHM=yes since
there's no underlaying /run to fall back on.  We don't use a bind mount
because with this approach it's firstly not needed, and also because
bind mounts don't play well in chroot environments. (Another note to
me: check chroot upgrade logic in case /run/shm is hardcoded in the
maintainer scripts.)


Regards,
Roger

-- 
  .''`.  Roger Leigh
 : :' :  Debian GNU/Linuxhttp://people.debian.org/~rleigh/
 `. `'   schroot and sbuild  http://alioth.debian.org/projects/buildd-tools
   `-GPG Public Key  F33D 281D 470A B443 6756 147C 07B3 C8BC 4083 E800


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#519906: use a database like MySQL to speed things up

2012-12-10 Thread Axel Beckert
jida...@jidanni.org wrote:
> Maybe moving the guts to a database like MySQL (in addition to
> xapian?) might speed things up.

Please don't!

It was already annoying and painful enough to have kdepim/akonadi to
pull in a MySQL server on every desktop/workstation with KDE in
Squeeze. (Luckily they fixed that for Wheezy and now allow to choose
at least SQLite instead.)

I don't want to have to install a MySQL server on all my boxes
including netbooks and embedded systems just to be able to use a
curses based package manager!

> Hmmm, true, aptitude would no longer work from a bare bones system.

Another good point.

> But you'll need apt-get anyway

.oO( Because the apt package is essential... )

> on e.g., cellphones with CPUs too tiny for comfortable aptitude use.

Depends. Used aptitude on the OpenMoko. WFM.

Daniel Burrows wrote:
> > I don't know anything about this stuff but Subversion 1.6 uses now sqlite
> > which can be provided by a single header file IIRC.
> 
>   SQL databases aren't a panacea.  I did a little experimentation a few
> months ago with building an sqlite database containing some of the core
> apt information.  It took ages to build and was too slow for practical
> use. (IMO)

Additionally, with SQLite you have to take special measures if you
want to backup them properly -- as with MySQL, too. I don't think it's
a good idea to burden that on every admin who just wants to use
aptitude.

Regards, Axel
-- 
 ,''`.  |  Axel Beckert , http://people.debian.org/~abe/
: :' :  |  Debian Developer, ftp.ch.debian.org Admin
`. `'   |  1024D: F067 EA27 26B9 C3FC 1486  202E C09E 1D89 9593 0EDE
  `-|  4096R: 2517 B724 C5F6 CA99 5329  6E61 2FF9 CD59 6126 16B5


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#695505: does not work on non-Linux kernels

2012-12-10 Thread Dominik George
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

severity 695505 important
kthxbye

Hi,

os-prober not working on non-Linux kernels is not a good state.

However, I chose to ower the severity to important while squashing RC 
bugs. A bug qulifies for severity grave if it makes the package unusable 
for the *majority* of users, introduces security flaws or causes data 
loss. None of these are the case here.

Please note that important bugs still qualify for a freeze exception 
should the bug be fixed. I am just certain it should not be a bocker for 
the release.

- -nik

- -- 
* mirabilos is handling my post-1990 smartphone *
 Aaah, it vibrates! Wherefor art thou, daemonic device??

PGP fingerprint: 2086 9A4B E67D 1DCD FFF6  F6C1 59FC 8E1D 6F2A 8001
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.19 (GNU/Linux)

iQFOBAEBCAA4BQJQxnAAMRpodHRwczovL3d3dy5kb21pbmlrLWdlb3JnZS5kZS9n
cGctcG9saWN5LnR4dC5hc2MACgkQWfyOHW8qgAFV1gf+JpOH6z4XjYfH3T+vIJBM
Wne/mAJjvxatpASZvQzlMkeiLBjYlZS39rUdmRi7Zu9cPIzER/b81feNf0SakCKh
Rk6GICW1BOeUuJwk4GZl7yTpFA+OPfLYBlLX8jHYj+2PTMx3F7bG8+Z7xMj4nNpJ
X7XJbGJNMl80O9SZcoP9JKK7wPFxS++KffEGVjYURjUos3+8Z9B55i7XEXnwUUGi
Lebrl6KOp7i7j3uRX0m/t0fzcP/aFaYMuDLkHuCAch7p70WiWaxXdAtJd4ObBRSF
FxsJJtWSpPKoXle8MnIMzF3qLa2xmpvUgrSoA56QNk14JkPcBjgpf2kA+wx/EQTP
5g==
=cpJ6
-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#686231: still not fixed

2012-12-10 Thread Vincent Lefevre
On 2012-12-10 20:44:08 +0100, Sylvestre Ledru wrote:
> Gcc plugin system sucks from a distribution point of view...
> The best solution would be to rebuild dragonegg at installation time.

How about adding dependencies?

For instance, dragonegg-4.6 could depend on some fixed version
of gcc-4.6. Or if you think that a dependency shouldn't be added
there, it could be done for llvm-gcc-4.6; it currently has:

Depends: dragonegg-4.6, gcc-4.6, g++-4.6

Using = dependencies would solve the problem.

-- 
Vincent Lefèvre  - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#695631: ninja-build: FTBFS on !linux archs

2012-12-10 Thread Pino Toscano
Package: ninja-build
Version: 1.0.0-1
Severity: important
Tags: patch

Hi,

ninja-build does not build on non-Linux archs, such as
GNU/kFreeBSD[1][2] and GNU/Hurd[3].

The problem is that the GetProcessorCount() implementation for these
architectures is the sysconf() one, but  has not been
included, causing sysconf() and _SC_NPROCESSORS_ONLN to not be
declared. Another solution (which is the one I chose) is to make use
of the "linux" implementation which uses get_nprocs(), which is a GNU
extension and thus available for anything using GNU libc.
If this solution is not deemed wanted, the other solution is to just add
  #ifndef _WIN32
  #include 
  #endif
among the other includes in src/util.cc.

[1] 
https://buildd.debian.org/status/fetch.php?pkg=ninja-build&arch=kfreebsd-i386&ver=1.0.0-1&stamp=1355174935
[2] 
https://buildd.debian.org/status/fetch.php?pkg=ninja-build&arch=kfreebsd-amd64&ver=1.0.0-1&stamp=1355175958
[3] 
https://buildd.debian.org/status/fetch.php?pkg=ninja-build&arch=hurd-i386&ver=1.0.0-1&stamp=1355180120

Thanks,
-- 
Pino
--- a/src/util.cc
+++ b/src/util.cc
@@ -39,7 +39,7 @@
 #elif defined(__SVR4) && defined(__sun)
 #include 
 #include 
-#elif defined(linux)
+#elif defined(linux) || defined(__GLIBC__)
 #include 
 #endif
 
@@ -295,7 +295,7 @@ string StripAnsiEscapeCodes(const string
   return stripped;
 }
 
-#if defined(linux)
+#if defined(linux) || defined(__GLIBC__)
 int GetProcessorCount() {
   return get_nprocs();
 }


Bug#695630: Acknowledgement (unblock: ldap2zone/0.2-3.1)

2012-12-10 Thread Dominik George
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Hi,

unfortunately the debdiff got messed up when pasting.

Here is a correct version of the debdiff, minus the BTSs mishandling of 
line breaks: 

http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=30;filename=ldap2zone_0.2-3.1.debdiff;att=1;bug=690377

- -nik

- -- 
* mirabilos is handling my post-1990 smartphone *
 Aaah, it vibrates! Wherefor art thou, daemonic device??

PGP fingerprint: 2086 9A4B E67D 1DCD FFF6  F6C1 59FC 8E1D 6F2A 8001
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.19 (GNU/Linux)

iQFOBAEBCAA4BQJQxm2IMRpodHRwczovL3d3dy5kb21pbmlrLWdlb3JnZS5kZS9n
cGctcG9saWN5LnR4dC5hc2MACgkQWfyOHW8qgAEyDAf/ci4t4agVZ+0FbCzZy5Kg
GKQsElnOjqDwwoHnNdQjm0CEN4JQNA035wRCDrgFf138NLzy6wlXunFImXS47pTS
Ou21zbpiGEd7877JTxbfqMI1Z3gLMFgSZ8b4TndXpNwdKT2PmqAExgLUTemc4U3R
w5Xl7c5B8VQx/Dknf4YRO3oxDTWkLrGpT+gf1p4tI5LhyY5jkxc3fseua21DKgTn
gITI8pM3cZ5GKNcIWb4QDNzQRLgQaUD9wCjsR1GNZAJRxVQHvtLI0nQxE5iR/A5L
kEBLooTl0v3ZQwErbzm8AKHMGtS6O45U+YCUuADlFvZ2pe4DMtzSoiL1/5sATIle
/Q==
=uwrJ
-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#695630: unblock: ldap2zone/0.2-3.1

2012-12-10 Thread Dominik George
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Please unblock package ldap2zone

The unblock would fix RC bug #690377 .


diff -Nru ldap2zone-0.2/debian/changelog ldap2zone-0.2/debian/changelog
- --- ldap2zone-0.2/debian/changelog2012-07-25 08:11:24.0 +0200
+++ ldap2zone-0.2/debian/changelog  2012-12-10 23:28:13.0 +0100
@@ -1,3 +1,14 @@
+ldap2zone (0.2-3.1) unstable; urgency=low
+
+  [ Dominik George ]
+  * Non-maintainer upload.
+  * Fix unbound variable in ldap2bind script (Closes: #690377)
+
+  [ Thorsten Glaser ]
+  * Convert patch to DEP-3; fix CR-LF endings; sponsor (Closes: #695597)
+
+ -- Thorsten Glaser   Mon, 10 Dec 2012 23:27:15 +0100
+
 ldap2zone (0.2-3) unstable; urgency=low
 
   * Fixed installation of default file
diff -Nru ldap2zone-0.2/debian/patches/ldap_host_param 
ldap2zone-0.2/debian/patches/ldap_host_param
- --- ldap2zone-0.2/debian/patches/ldap_host_param  1970-01-01 
01:00:00.0 +0100
+++ ldap2zone-0.2/debian/patches/ldap_host_param2012-12-10 
23:27:01.0 +0100
@@ -0,0 +1,18 @@
+Description: fix wrong variable name
+Author: Dominik George 
+Bug-Debian: http://bugs.debian.org/690377
+Forwarded: no
+Reviewed-By: Thorsten Glaser 
+Last-Update: 2012-12-10
+
+--- a/ldap2bind
 b/ldap2bind
+@@ -31,7 +31,7 @@ if [ "$ALLOW_TRANSFER" ]; then
+ else ALLOW_TRANSFER_PARAM=;
+ fi
+ 
+-ZONES=dapsearch -LLL $LDAP_HOST_PARAM -x "(objectClass=dNSZone)" zoneName | 
grep zoneName: | sort | uniq | awk '{print $2}'
++ZONES=dapsearch -LLL $LDAP_URI_PARAM -x "(objectClass=dNSZone)" zoneName | 
grep zoneName: | sort | uniq | awk '{print $2}'
+ ldap2zone=hich ldap2zone
+ rndc=hich rndc
+ 
diff -Nru ldap2zone-0.2/debian/patches/series 
ldap2zone-0.2/debian/patches/series
- --- ldap2zone-0.2/debian/patches/series   2012-07-25 08:13:06.0 
+0200
+++ ldap2zone-0.2/debian/patches/series 2012-12-10 23:25:58.0 +0100
@@ -1 +1,2 @@
 fix-default-location
+ldap_host_param


unblock ldap2zone/0.2-3.1

- -- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.6-trunk-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/mksh

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQFOBAEBCAA4BQJQxmxYMRpodHRwczovL3d3dy5kb21pbmlrLWdlb3JnZS5kZS9n
cGctcG9saWN5LnR4dC5hc2MACgkQWfyOHW8qgAEnwAf9HyBaK0hRfTQu+WqkI11E
bmrX9yzLafkID2o1lZtsYtRvVveHmbaBcNPIMw1HF2HtgX/tvl75oPQKDv1j1JFa
L85A7TM4kMy88HmR492xB/jyRt47aTzjz6BT1SBl24eCmKctZKY0MFMn/0TtNJjh
eR6ZmsJzymAFY62SrMZfG1eShub1DHWVpGbaJ6QXRXw2Too17hlVAZ2VJtWpdI42
A01Vj9MwkqonuMCtAgINE4zWET4pbofzZ/bEMBMRS75crMqaN3IxXRfl2yOvc9vK
ea+RkQtwQIbsmR/tUu34ulY2GD3l2B0H0ZQ9Wb6qEby4UycgfwogE2Na/z6HY6lp
Yw==
=kWYV
-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#686427: debconf: [INTL:es] Updated package translation

2012-12-10 Thread Javier Fernandez-Sanguino
On 10 December 2012 18:52, Christian PERRIER  wrote:
> Not really. This was due to a bug in the BTS software, which has been
> corrected since then.
>
> UTF-8 PO files happened to be converted to ISO-8859-1.

Thanks for handling this Christian.

Regards

Javier


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#695629: ITP: xtree -- gather files scattered across several subdirectories

2012-12-10 Thread Luca Falavigna
Package: wnpp
Severity: wishlist
Owner: Luca Falavigna 

* Package name: xtree
  Version : 0.1-1
  Upstream Author : Luca Falavigna 
* URL : https://github.com/dktrkranz/xtree
* License : GPL-3
  Programming Lang: Python
  Description : gather files scattered across several subdirectories
   xtree can easily convert an archive or a directory populated by a lot of
   nested subdirectories into a flat tree structure, or the other way round.
   .
   This is particularly useful to move files scattered across a lot of
   subdirectories into a single directory, or to move files grouped by
   a common pattern into corresponding subdirectories.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#684186: gnome-settings-daemon: fails to execute action on low battery condition

2012-12-10 Thread Stefan Nagy
Michael Gilbert wrote:
> Unfortunately, there is no consistent or standardized behavior when
> the battery runs out.  If you let that happen, you take the risk of
> losing unsaved data.

I'm not sure I'm getting your point (english isn't my first language)…

Are you saying that users in general can't / shouldn't expect their OS
to prevent data loss when their notebook's battery drains?


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#695628: Incomplete copyright information

2012-12-10 Thread Luca Falavigna
Source: razorqt
Version: 0.4.1-1~exp1
Severity: important

* libraries/razorqt/xfitman.h is licensed GPL-2 only
* razorqt-panel/plugin-mount/menudiskitem.* and
  razorqt-panel/plugin-mount/mountbutton.*} are licensed GPL-2 only

Consider adding these to copyright file.



-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-4-amd64 (SMP w/8 CPU cores)
Locale: LANG=it_IT.utf8, LC_CTYPE=it_IT.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#695627: bugs.debian.org: converts text/plain attachmants to Windows linebreaks

2012-12-10 Thread Dominik George
Package: bugs.debian.org
Severity: important

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

The BTS converts text/plain (or similar, e.g. text/x-diff) MIME
attachments to windows inebreaks (CR/LF).

Here are two examples of this:
http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=30;filename=ldap2zone_0.2-3.1.debdiff;att=1;bug=690377
http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=10;filename=ldap2zone_0.2-3_0.2-3.1.diff;att=1;bug=690377

These two diff files most certainly did not have DOS/Windows linebreaks
before sending to the bTS.

This is bad because it makes fixing of bugs a bit troublesome and could
even result in corruption of data.

- -- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.6-trunk-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/mksh

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQFOBAEBCAA4BQJQxmjfMRpodHRwczovL3d3dy5kb21pbmlrLWdlb3JnZS5kZS9n
cGctcG9saWN5LnR4dC5hc2MACgkQWfyOHW8qgAH2HAf/aMcmMxnFjpkfytRDc1Ot
P0mRE8srBmh5HEzxoUUFVkTmsih8xgMt3XvmSRM5Ut/5iWzEx840UePkEUQGsnLG
YgGvQ3W8ZfJMPjeZFF4jncwfqxej16zFIUtvVeLCvyi95Ttn25Jew5UJalW8Rn7B
po1t6F9or5uNd6VquZyPKWnXMixNN7Ffs0CvgMQbRaDGiAOvlMGdKSWtI5Z2GpSs
hwpXMK8l9Z4LwmkwJMGxUUsugjF8DlTHdcUajchvGBUEEvc08gsZ9wz3SJUAAZjz
fnFFKt7jMo9YSU1P3F+1MkHsaCaImjw+/oTtY5c6rvdmflFiHA0LOYgSt1B1nzeO
rA==
=dSnp
-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#692309: installation-guide: 3.6.2. Boot Device Selection: Booting debian-installer from a USB stick

2012-12-10 Thread Holger Wansing
Hi,

"Didier 'OdyX' Raboud"  wrote:
> Le lundi, 10 décembre 2012 18.00:03, Holger Wansing a écrit :
> > But we already mention Windows tools in the guide, which are also not
> > part of Debian, for example for partitioning.
> > I would vote for including plop too.
> 
> Which ones, specifically ? As far as I read chapter 3.5, we just advise users 
> to "repartition", without saying how. The other Windows executables we advise 
> to use are in Debian: loadlin and win32-loader.

For example:
In manual for i386 and amd64, this is "the integrated Disk Manager of 
Windows 7".
For powerpc: "The Apple Drive Setup application can be found in the Utilities 
folder on the MacOS CD".

Holger

-- 
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
Created with Sylpheed 3.0.2
under  D e b i a n   G N U / L I N U X   6.0  ( S q u e e z e )
Registered LinuxUser #311290 - http://linuxcounter.net/
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#695607: hdf5: FTBFS: tries to build openmpi module without depending on openmpi

2012-12-10 Thread Thorsten Glaser
Sylvestre Ledru dixit:

>Could you detail a bit more the issue ?

I attached a build log… as you can see from that, it tries
to build against openmpi without having openmpi installed,
or, for that matter, even available.

That’s why I suggested instead of blacklisting like
38 else ifeq ($(DEB_HOST_ARCH),hppa)
a whitelist of architectures.

bye,
//mirabilos
-- 
 cool ein Ada Lovelace Google-Doodle. aber zum 197. Geburtstag? Hätten
die nicht noch 3 Jahre warten können?  bis dahin gibts google nicht
mehr  ja, könnte man meinen. wahrscheinlich ist der angekündigte welt-
untergang aus dem maya-kalender die globale abschaltung von google ☺ und darum
müssen die die doodles vorher noch raushauen


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#695272: libphone-utils0: harmful postrm purge action in M-A:same package

2012-12-10 Thread Dominik George
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

> Is there a particular use case for such support, other than "because we
> can"? If not, then not having multi-arch support in wheezy doesn't seem
> a huge issue; ymmv, obviously.

ACK.

I can prepare another version for wheezy incorporating this. What about
version numbering and such, now -2 has been uploaded?

- -nik
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.19 (GNU/Linux)

iQFOBAEBCAA4BQJQxmQ/MRpodHRwczovL3d3dy5kb21pbmlrLWdlb3JnZS5kZS9n
cGctcG9saWN5LnR4dC5hc2MACgkQWfyOHW8qgAHXAgf/W0YB8aBvDzOQxeEZBzmA
3n2e5PYEnM3OUeXFaj0MEN4mhEVap16waxpTbbgcvS832ND00MQpfCwWCPfJXe3f
dglgCnjWSvSXgIdRtmTXYyOXGwtjBTgz7XVVnWA/uERADLTpvTDr/eN7oJdA7WGj
bhbt9tD664Y00yuA7HhuaIN0a5QltEoDroWrIbJIn403AJFx/laPHBdw3R0DEIKq
rWh4uYfBPcQl9WKVNOCkU/4N0F0yPeWpp/0jHQwbpShR/4fuUZK5iHqGd3Ih8Arm
Hevl2OGyBDccCahQVgN/9RVxE/l0tPiDcVazNaIai+67qQv7ZiWG+aJs6NCccj81
SQ==
=GgxX
-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



  1   2   3   >