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-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



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-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#695542: marked as done (xapian-core: Concurrent threads can succeed in locking database)

2012-12-10 Thread Debian Bug Tracking System
Your message dated Tue, 11 Dec 2012 06:02:47 +
with message-id 
and subject line Bug#695542: fixed in xapian-core 1.2.12-2
has caused the Debian Bug report #695542,
regarding xapian-core: Concurrent threads can succeed in locking database
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
695542: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=695542
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: xapian-core
Severity: grave
Tags: upstream patch
Justification: causes non-serious data loss

[A note on the severity - whether the data loss is serious or non-serious
depends how Xapian is being used.  In my experience, it's more common to
use it to index data which is stored in another system (to provide a full
text search), rather than as the canonical storage for data.  If that's
the case, then you can reindex the data (though for a lot of data that can
take significant time, but if Xapian is the canonical data store, then the
data loss is serious.]

Xapian's uses fcntl() file locks to enforce a single-writer model, and the
locking code attempts to work around the semantics of fcntl() whereby
closing *any* fd on the lock file in the same process releases the lock.

It does this by using a child process to hold the lock, but there's a flaw
- it closes all unwanted fds in the child process (for the usual reasons
that daemons do), but this is done *after* obtaining the fcntl() lock and
so if the lock file is open as one of those fds, the child no longer holds
the lock.

Unfortunately this case is exactly what happens if multiple threads of the
same process try to open a database for writing concurrently, and a simple
test program shows that you can easily corrupt a database in this way.

The fix is to simply close the unwanted file handles before trying to
obtain the fcntl() lock.

This has been fixed in upstream SVN, and should be in 1.2.13 (the next
1.2.x release):

http://trac.xapian.org/changeset/16938/branches/1.2/xapian-core/backends/flint_lock.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


signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
Source: xapian-core
Source-Version: 1.2.12-2

We believe that the bug you reported is fixed in the latest version of
xapian-core, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 695...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Olly Betts  (supplier of updated xapian-core package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 11 Dec 2012 04:22:04 +
Source: xapian-core
Binary: libxapian22 libxapian22-dbg libxapian-dev xapian-tools xapian-doc 
xapian-examples
Architecture: source amd64 all
Version: 1.2.12-2
Distribution: unstable
Urgency: low
Maintainer: Olly Betts 
Changed-By: Olly Betts 
Description: 
 libxapian-dev - Development files for Xapian search engine library
 libxapian22 - Search engine library
 libxapian22-dbg - Debugging symbols for the Xapian Search engine library
 xapian-doc - Core Xapian documentation
 xapian-examples - Xapian simple example programs
 xapian-tools - Basic tools for Xapian search engine library
Closes: 695542 695643
Changes: 
 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)
Checksums-Sha1: 
 d808472ba28626eab20f5009d7eea47f755a1f63 2123 xapian-core_1.2.12-2.dsc
 c9fed6266af1aea043240b3e5e85ca8bb5bff012 32558 
xapian-core_1.2.12-2.debian.tar.gz
 79da11718ac6240ca2c045abc6a6704434619287 1186706 libxapian22_1.2.12-2_amd64.deb
 d61b61820b5be4dd4515380c4266dfa63616e8d0 7573108 
libxapian22-dbg_1.2.12-2_amd64.deb
 8577148166d6f661213475e6af7982785e6db2cd 1

Processed: tagging 695542, tagging 695643

2012-12-10 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 695542 + pending
Bug #695542 [src:xapian-core] xapian-core: Concurrent threads can succeed in 
locking database
Added tag(s) pending.
> tags 695643 + pending
Bug #695643 [libxapian22] libxapian22: Database replication fails for files > 
32GB
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
695542: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=695542
695643: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=695643
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#694052: 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#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-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#695254: Not a version in Debian

2012-12-10 Thread Thomas Pierson
Hello phileom,

I could not reproduce this bug too.

> ii  libtag1c2a   1.8-dmo1

You seem to use an unofficial version 1.8 of taglib packages.

The clementine package in wheezy/sid is build with an official version
1.7.2 of taglib packages :

* http://packages.debian.org/source/wheezy/taglib

You should retry using clementine package with full clean depends.

I am closing this bug as invalid.

Regards,

Thomas Pierson



signature.asc
Description: OpenPGP digital signature


Processed (with 1 errors): Re: 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 Debian Bug Tracking System
Processing control commands:

> severity -1 important
Bug #695634 [src:linux] linux-image-3.6-trunk-amd64: fails to execute action 
(hibernate) on critical battery condition - HP Folio 13-2000
Severity set to 'important' from 'grave'
> tag -1 normal
Unknown tag/s: normal.
Recognized are: patch wontfix moreinfo unreproducible fixed potato woody sid 
help security upstream pending sarge sarge-ignore experimental d-i confirmed 
ipv6 lfs fixed-in-experimental fixed-upstream l10n etch etch-ignore lenny 
lenny-ignore squeeze squeeze-ignore wheezy wheezy-ignore.


-- 
695634: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=695634
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-bugs-rc-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#695215: marked as done (bzr: breaks bzr-loom 2.2.0-2)

2012-12-10 Thread Debian Bug Tracking System
Your message dated Tue, 11 Dec 2012 00:47:27 +
with message-id 
and subject line Bug#695215: fixed in bzr-loom 2.2.0-3
has caused the Debian Bug report #695215,
regarding bzr: breaks bzr-loom 2.2.0-2
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
695215: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=695215
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: bzr-loom
Version: 2.2.0-2
Severity: grave
Tags: upstream

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

bzr: ERROR: exceptions.AttributeError: 'module' object has no attribute 
'BzrBranch5'

Traceback (most recent call last):
  File "/usr/lib/python2.7/dist-packages/bzrlib/commands.py", line 930, in 
exception_to_return_code
return the_callable(*args, **kwargs)
  File "/usr/lib/python2.7/dist-packages/bzrlib/commands.py", line 1121, in 
run_bzr
ret = run(*run_argv)
  File "/usr/lib/python2.7/dist-packages/bzrlib/plugins/loom/commands.py", line 
259, in run_argv_aliases
super(cmd_switch, self).run_argv_aliases(list(argv), alias_argv)
  File "/usr/lib/python2.7/dist-packages/bzrlib/commands.py", line 673, in 
run_argv_aliases
return self.run(**all_cmd_args)
  File "/usr/lib/python2.7/dist-packages/bzrlib/commands.py", line 697, in run
return self._operation.run_simple(*args, **kwargs)
  File "/usr/lib/python2.7/dist-packages/bzrlib/cleanup.py", line 136, in 
run_simple
self.cleanups, self.func, *args, **kwargs)
  File "/usr/lib/python2.7/dist-packages/bzrlib/cleanup.py", line 166, in 
_do_with_cleanups
result = func(*args, **kwargs)
  File "/usr/lib/python2.7/dist-packages/bzrlib/plugins/loom/commands.py", line 
239, in run
tree = LoomTreeDecorator(tree)
  File "/usr/lib/python2.7/dist-packages/bzrlib/lazy_import.py", line 116, in 
__call__
obj = object.__getattribute__(self, '_resolve')()
  File "/usr/lib/python2.7/dist-packages/bzrlib/lazy_import.py", line 85, in 
_resolve
obj = factory(self, scope, name)
  File "/usr/lib/python2.7/dist-packages/bzrlib/lazy_import.py", line 200, in 
_import
module = __import__(module_python_path, scope, scope, [member], level=0)
  File "/usr/lib/python2.7/dist-packages/bzrlib/plugins/loom/tree.py", line 36, 
in 
from branch import EMPTY_REVISION
  File "/usr/lib/python2.7/dist-packages/bzrlib/plugins/loom/branch.py", line 
747, in 
class LoomBranch(LoomSupport, bzrlib.branch.BzrBranch5):
AttributeError: 'module' object has no attribute 'BzrBranch5'

bzr 2.6.0dev3 on python 2.7.3 (Linux-3.6-trunk-amd64-x86_64-with-debian-
wheezy-sid)
arguments: ['/usr/bin/bzr', 'switch', '-b', 'trunk']
plugins: bash_completion[2.6.0dev3], builddeb[2.8.5dev],
changelog_merge[2.6.0dev3], etckeeper[unknown], fastimport[0.13.0],
git[0.6.9], grep[2.6.0dev3], launchpad[2.6.0dev3], loom[2.2.0],
netrc_credential_store[2.6.0dev3], news_merge[2.6.0dev3],
po_merge[2.6.0dev3], qbzr[0.23.0], rewrite[0.6.4dev], stats[0.2.0dev],
svn[1.2.3dev], weave_fmt[2.6.0dev3]
encoding: 'utf-8', fsenc: 'UTF-8', lang: 'en_IE.UTF-8'

*** Bazaar has encountered an internal error.  This probably indicates a
bug in Bazaar.  You can help us fix it by filing a bug report at
https://bugs.launchpad.net/bzr/+filebug
including this traceback and a description of the problem.


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

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

Versions of packages bzr-loom depends on:
ii  python 2.7.3-3
ii  python-bzrlib  2.6.0~bzr6571-1
ii  python2.6  2.6.8-1
ii  python2.7  2.7.3-5

Versions of packages bzr-loom recommends:
ii  bzr  2.6.0~bzr6571-1

bzr-loom suggests no packages.

- -- no debconf information

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

iQIcBAEBAgAGBQJQv2LwAAoJEACAbyvXKaRX29QP/iIXKG1XbK0mjjjuBhhzrJGM
EeqRYpHhiWOK1kPTqTjv/zoeywmJgNPYw3NVYRJNssAjPDnLZxSxPRQV9lNnAOHt
HsilAHjifXRVCaYKTDrXLELrHgEGrhN8YVV0aC1YXARn9u/LL0XjZwYk+bvHfu0r
RBMscBogG9lFFBw4hLPV4fycif0JwTR3jPiZOf79FsrffuMDA9kgimP8rnjNR6NC
o5sqLw+BVknOISBzFPXRLJOFC+k4gW5LEHpL5UCGHv65190WIojYYqVGJP1HTh2x
jPMLv6qkiohG9zM0FruKxw7SldJbrK8HNyJ4GEz4T3p0A453v/MkhjNFSy5CjIpV
9ssIhSAVLwMGBZ29kjrzWuBNBNOilUy1eZPaAQPu4X+nCJE5BEzpxRUo2PUSoEQR
jvaN+DwJeC46vmzVe8VU1Xxh8m6hmsq0WBqY1wAD4Jh9sEB+fg+pNSwqvt9wtkSN
TWVeorLu4QBSlNNy9S2MO7NVKuF3x801haApOl4UhNLchk3ckc15c4/8xMyzT9Mv
6uEF2N+

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#695254: marked as done (clementine does not start)

2012-12-10 Thread Debian Bug Tracking System
Your message dated Tue, 11 Dec 2012 00:38:40 +0100
with message-id <50c67280.6020...@thomaspierson.fr>
and subject line Not a version in Debian
has caused the Debian Bug report #695254,
regarding clementine does not start
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
695254: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=695254
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: clementine
Version: 1.0.1+dfsg-2+b1
Severity: grave
Justification: renders package unusable

Dear Maintainer,
After d-u clementine isn't usable anymore, and I have a segmentation fault from
Konsole.
Thanks for your help.

*** End of the template - remove these lines ***



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

Kernel: Linux 3.6-8.slh.3-aptosid-amd64 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages clementine depends on:
ii  gstreamer0.10-plugins-base   0.10.36-1.1
ii  gstreamer0.10-plugins-good   0.10.31-3+nmu1
ii  gstreamer0.10-plugins-ugly   0.10.19-2+b2
ii  libc62.13-37
ii  libcdio130.83-4
ii  libchromaprint0  0.6-2
ii  libechonest1.2   1.2.1-1
ii  libgcc1  1:4.7.2-4
ii  libgdk-pixbuf2.0-0   2.26.1-1
ii  libglib2.0-0 2.33.12+really2.32.4-3
ii  libgpod4 0.8.2-7
ii  libgstreamer-plugins-base0.10-0  0.10.36-1.1
ii  libgstreamer0.10-0   0.10.36-1
ii  libimobiledevice21.1.1-4
ii  libindicate-qt1  0.2.5.91-5
ii  liblastfm0   0.4.0~git20090710-2
ii  libmtp9  1.1.3-35-g0ece104-4
ii  libplist11.8-1
ii  libprojectm2 2.1.0+dfsg-1
ii  libqjson00.7.1-7
ii  libqt4-dbus  4:4.8.2+dfsg-4
ii  libqt4-network   4:4.8.2+dfsg-4
ii  libqt4-opengl4:4.8.2+dfsg-4
ii  libqt4-sql   4:4.8.2+dfsg-4
ii  libqt4-sql-sqlite4:4.8.2+dfsg-4
ii  libqt4-xml   4:4.8.2+dfsg-4
ii  libqtcore4   4:4.8.2+dfsg-4
ii  libqtgui44:4.8.2+dfsg-4
ii  libqxt-gui0  0.6.1-7
ii  libstdc++6   4.7.2-4
ii  libtag1c2a   1.8-dmo1
ii  libusb-1.0-0 2:1.0.12-2
ii  libusbmuxd1  1.0.7-2
ii  libx11-6 2:1.5.0-1
ii  libxml2  2.8.0+dfsg1-7
ii  projectm-data2.1.0+dfsg-1
ii  zlib1g   1:1.2.7.dfsg-13

Versions of packages clementine recommends:
ii  gstreamer0.10-alsa0.10.36-1.1
ii  gstreamer0.10-pulseaudio  0.10.31-3+nmu1

clementine suggests no packages.

-- no debconf information
--- End Message ---
--- Begin Message ---
Hello phileom,

I could not reproduce this bug too.

> ii  libtag1c2a   1.8-dmo1

You seem to use an unofficial version 1.8 of taglib packages.

The clementine package in wheezy/sid is build with an official version
1.7.2 of taglib packages :

* http://packages.debian.org/source/wheezy/taglib

You should retry using clementine package with full clean depends.

I am closing this bug as invalid.

Regards,

Thomas Pierson



signature.asc
Description: OpenPGP digital signature
--- End Message ---


Processed: serious

2012-12-10 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 694379 serious
Bug #694379 [initscripts] initscripts: Symlinking /dev/shm to /run/shm makes 
Oracle Database XE unable to start. Bind mount makes it work.
Severity set to 'serious' from 'important'
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
694379: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=694379
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-bugs-rc-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

Processed: Patch for review

2012-12-10 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> package jruby
Limiting to bugs with field 'package' containing at least one of 'jruby'
Limit currently set to 'package':'jruby'

> tags 694694 patch
Bug #694694 [jruby] jruby: CVE-2012-5370
Added tag(s) patch.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
694694: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=694694
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Processed: Re: does not work on non-Linux kernels

2012-12-10 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 695505 important
Bug #695505 [os-prober] os-prober: does not work on non-Linux kernels
Severity set to 'important' from 'grave'
> kthxbye
Stopping processing here.

Please contact me if you need assistance.
-- 
695505: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=695505
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-bugs-rc-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-rc-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-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#690377: marked as done (ldap2zone: ldap2bind script uses non-existent variable LDAP_HOST_PARAM in ldapsearch call)

2012-12-10 Thread Debian Bug Tracking System
Your message dated Mon, 10 Dec 2012 22:47:52 +
with message-id 
and subject line Bug#690377: fixed in ldap2zone 0.2-3.1
has caused the Debian Bug report #690377,
regarding ldap2zone: ldap2bind script uses non-existent variable 
LDAP_HOST_PARAM in ldapsearch call
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
690377: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=690377
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: ldap2zone
Version: 0.2-2, 0.1-7+squeeze1
Severity: important
Tags: patch

The included script ldap2bind can never work / have worked because the
ldapsearch call uses the unknown variable $LDAP_HOST_PARAM.

The author obviously meant $LDAP_URI_PARAM, which is actually set
before in the script.

I wonder if this has ever been tested even _once_ ...

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

Kernel: Linux 3.2.0-3-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Naupr ldap2zone.old/ldap2bind ldap2zone-0.2/ldap2bind
--- ldap2zone.old/ldap2bind	2012-10-13 15:38:32.296681882 +0200
+++ ldap2zone-0.2/ldap2bind	2012-10-13 15:38:55.792799093 +0200
@@ -31,7 +31,7 @@ if [ "$ALLOW_TRANSFER" ]; then
 else ALLOW_TRANSFER_PARAM=;
 fi
 
-ZONES=`ldapsearch -LLL $LDAP_HOST_PARAM -x "(objectClass=dNSZone)" zoneName | grep zoneName: | sort | uniq | awk '{print $2}'`
+ZONES=`ldapsearch -LLL $LDAP_URI_PARAM -x "(objectClass=dNSZone)" zoneName | grep zoneName: | sort | uniq | awk '{print $2}'`
 ldap2zone=`which ldap2zone`
 rndc=`which rndc`
 
--- End Message ---
--- Begin Message ---
Source: ldap2zone
Source-Version: 0.2-3.1

We believe that the bug you reported is fixed in the latest version of
ldap2zone, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 690...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Thorsten Glaser  (supplier of updated ldap2zone package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA384

Format: 1.8
Date: Mon, 10 Dec 2012 23:27:15 +0100
Source: ldap2zone
Binary: ldap2zone
Architecture: source amd64
Version: 0.2-3.1
Distribution: unstable
Urgency: low
Maintainer: GOsa packages maintainers group 
Changed-By: Thorsten Glaser 
Description: 
 ldap2zone  - Extract DNS zones from LDAP trees
Closes: 690377 695597
Changes: 
 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)
Checksums-Sha1: 
 dc5c3927db67d192918f2048f4737cdb7f95daf3 2003 ldap2zone_0.2-3.1.dsc
 d3a38f9a51aba6150ebaf487b697f9a927174978 3741 ldap2zone_0.2-3.1.debian.tar.gz
 23c99785822450847b1ee99afd661431abab4241 13666 ldap2zone_0.2-3.1_amd64.deb
Checksums-Sha256: 
 59aace5978141fc88f9d30b12a9e1d02b3a0509ef53384f64d877783c4a101c9 2003 
ldap2zone_0.2-3.1.dsc
 5dd9d707a6cf057ab1f2a8e381edb8daae7b852ba5a97368c4d0897a01095a20 3741 
ldap2zone_0.2-3.1.debian.tar.gz
 83972d9d4da2de70d5b1ed731793d4bb27766cd999fe840c3e3b71e62c574ab1 13666 
ldap2zone_0.2-3.1_amd64.deb
Files: 
 c3f1d06b27aeab46c6421ad4193cc519 2003 utils optional ldap2zone_0.2-3.1.dsc
 c4a6ecac425e60c1d879ae820afa1f4c 3741 utils optional 
ldap2zone_0.2-3.1.debian.tar.gz
 262ba66d0287955dbb69cbe59f4b4897 13666 utils optional 
ldap2zone_0.2-3.1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (MirBSD)

iQIcBAEBCQAGBQJQxmMAAAoJEHa1NLLpkAfgRqoQAOEnKjKq6TK4UfsceBJIcsoi
d3NqR2wNkzIvgFCyVKpXa9xfW3QvtyrBi7AyiHuCf3KrL9LbCANlYDXt7QyfSwaU
MV7cqI16zeaWQMYsDYDxYs2odaTku7qhN18cENbAnObZHtfitL+LM/nOIhuPQpQx
NWEdsoUdyaDnwzuRpWvRrDh4V0rQVX+hbFuU5K7RlB8PWEc1Lf5OlK/FvSUb+Sw3
Hgi3empEa00H3ZsEqvnK19daEkBSzoJghL5fqKVfzLGCNxJfn82hwqO/26WirRHj
9gu0oP89+dqJgGlp+VgPXdQOTUhXpeBNY7zKLSLeHVeLhxXR9bGFa/pUaG7bOixk
XF2OQPIFdY4SuUJGq31vsszRHaSDUuOWdC5jKcTSgcimZPuXzcx0RDGBvggCf0Ow
g64+9i1bbs2lgrYE3CS1sOdhbuaye7ZGXIbB3X3+xlgn0qxQCt6OOBP75FrXWcJr
G4xWYmhIGaSF4lE+q2At5MyESsH3KtvE1nRAEUGU7ZORCx0q31J7zdnWB

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-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#690377: patch for NMU upload ldap2zone_0.2-3.1

2012-12-10 Thread Thorsten Glaser
Dear maintainer,

as this is an RC bug with no maintainer activity at all for
more than a week, I’ve sponsored Dominik’s trivial fix and
uploaded it with no delay.

I’ve cleaned up the patch a little; please find the exact
debdiff I used attached.

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 raushauendiff -Nru ldap2zone-0.2/debian/changelog ldap2zone-0.2/debian/changelog
--- ldap2zone-0.2/debian/changelog  2012-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_param1970-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=`ldapsearch -LLL $LDAP_HOST_PARAM -x "(objectClass=dNSZone)" zoneName | 
grep zoneName: | sort | uniq | awk '{print $2}'`
++ZONES=`ldapsearch -LLL $LDAP_URI_PARAM -x "(objectClass=dNSZone)" zoneName | 
grep zoneName: | sort | uniq | awk '{print $2}'`
+ ldap2zone=`which ldap2zone`
+ rndc=`which 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


Bug#695599: libgsf-1-dev: fix introspection packaging

2012-12-10 Thread Adam D. Barratt
On Mon, 2012-12-10 at 20:22 +, Adam D. Barratt wrote:
> On Mon, 2012-12-10 at 11:26 -0500, Jeremy Bicha wrote:
> > You can also dramatically simplify your debian/rules; look at the
> > Ubuntu packaging:
> > http://bazaar.launchpad.net/~ubuntu-branches/ubuntu/raring/libgsf/raring/view/head:/debian/rules
> 
> Not in a freeze you can't, if you're expecting the package to get
> anywhere near the release.

It's been pointed out to me that the report relates to a version that's
unlikely to get in to wheezy anyway, so that's not so much of an issue
in this case.

Regards,

Adam


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-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 Adam D. Barratt
On Mon, 2012-12-10 at 23:09 +0100, Dominik George wrote:
> > On Fri, 2012-12-07 at 09:11 +0100, Helmut Grohne wrote:
> > > Note that simply removing M-A:same is also way to solve this
> > > issue and that libphone-utils0 has very few reverse dependencies.
> 
> That would mean having no multi-arch support in the package, wouldn't it?

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.

Regards,

Adam


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-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

Hi,

> On Fri, 2012-12-07 at 09:11 +0100, Helmut Grohne wrote:
> > Introducing a new binary package is a quite big change. Please contact
> > the release team on whether such a change is acceptable at this point of
> > the freeze.
> 
> Apparently no-one did that before uploading. As Helmut said, it's not
> really appropriate during a freeze, particularly when there's a less
> invasive alternative for wheezy:

Apparently, no-one did ;). I didn't find the time to do that, and 
Sebastian was quick as a fox ;).

> 
> > Note that simply removing M-A:same is also way to solve this
> > issue and that libphone-utils0 has very few reverse dependencies.

That would mean having no multi-arch support in the package, wouldn't it?


- -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)

iQFOBAEBCAA4BQJQxl14MRpodHRwczovL3d3dy5kb21pbmlrLWdlb3JnZS5kZS9n
cGctcG9saWN5LnR4dC5hc2MACgkQWfyOHW8qgAE0GAf/Tn/I1WHVH3C1dIi1KSwJ
VLpwt61PR/PDE+Rwia0PqH3bE1laqbeG1lnn08j1XgMcj5t12QRW2SYSaYw3Wlti
xHrNCB8PHfizjP/iKqMiQZsaUvu4QLnAy7R2hP+erFOwP/j+uJrdNHuZgwQac+VF
j/w1klOZIvhr4+96ggzDBuvAer5w6IjbepHVVhp4hacA0q2GqD2Z3BEBH6YLEM7r
6lV/P6sySADwGBKg1URC75khmd8s1+avRkDQy+cqqkdO9k8KCBYQnClWMQ1H460H
FoEX/iBXDneAX+pDnk0Qeh/dU2YZLB5RYj+xNHspC+LCrnNQq2ls2RTbLD04NW5t
yw==
=vGL+
-END PGP SIGNATURE-


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



Processed: severity of 695553 is important

2012-12-10 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # Not a regression (although definitely broken)
> severity 695553 important
Bug #695553 [src:tandem-mass] tandem-mass: FTBFS: cannot stat 
`debian/tmp/bin/tandem': No such file or directory
Severity set to 'important' from 'serious'
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
695553: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=695553
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#695422: ntop: links with both libssl and libgdbm and is mainly GPL-licensed without linking exception

2012-12-10 Thread Francesco Poli
On Sun, 9 Dec 2012 21:48:43 -0800 Ludovico Cavedon wrote:

[...]
> On Fri, Dec 7, 2012 at 1:13 PM, Francesco Poli (wintermute)
>  wrote:
> > I noticed that ntop is mainly licensed under the terms of the GNU GPL
> > v2 or later, with only one file (ssl.c) having an OpenSSL linking
> > exception.
> >
> > However, ntop seems to link with libssl (which is notoriously
> > GPL-incompatible) and also seems to link with libgdbm (which [1]
> > is licensed under the GNU GPL v2 or later, with no OpenSSL
> > linking exception).
> >
> > [1] 
> > http://packages.debian.org/changelogs/pool/main/g/gdbm/gdbm_1.8.3-11/libgdbm3.copyright
> 
> This does not look like an issue to me.
> There is no linking from libgdm3 to openssl, and libgdm3 makes no use
> of openssl, so the problematic clauses of the openssl do not apply to
> to libgdm3.

Even if there's no *direct* linking of libgdm3 with libssl, it is my
understanding that there is indeed an issue, as long as one single
binary executable is linked with both libgdm3 and libssl.

I believe that this follows from Section 3 of the GNU GPL v2.
gdbm is the "Program" released under the terms of the GNU GPL v2 or
later.
The binary executable linked with it is "a work based on it" (according
to the FSF's legal theory of linking, which is usually assumed to be
valid by the Debian Project, in order to stay on the safe side...),
and Section 3 states, in part:

|   3. You may copy and distribute the Program (or a work based on it,
| under Section 2) in object code or executable form under the terms of
| Sections 1 and 2 above provided that you also do one of the following:
| 
| a) Accompany it with the complete corresponding machine-readable
| source code, which must be distributed under the terms of Sections
| 1 and 2 above on a medium customarily used for software interchange; or,
|
[or other methods to make the source available...]

Hence, one has to make the source code available under the terms of
Sections 1 and 2, that is to say, among other things "licensed as a
whole at no charge to all third parties under the terms of [the GNU GPL
v2]" (see clause 2b).
But, "For an executable work, complete source code means all the source
code for all modules it contains [...]" (as clarified in the final part
of Section 3).
But one of the modules is libssl, which cannot be made available under
the terms of the GNU GPL v2, since its license is incompatible.

> 
> > I am under the impression that several ntop source GPL-licensed
> > files get compiled into a binary that links with libssl,
> > but do not have any OpenSSL linking exception.
> 
> The only source code file which uses openssl is ssl_utils.c and it has
> an openssl exception. I thought that was enough.
> However, I did some reading to refresh my memory on the topic and I
> can see how this could be interpreted to apply to all source code
> files that to into the binary.

It is my understanding that all the source files that get compiled into
the object code which links with libssl need the exception.

[...]
> Thank you for the report,

Thanks to you for your kind reply and for the time that you'll be
willing to dedicate to the issue.

Bye.


-- 
 http://www.inventati.org/frx/frx-gpg-key-transition-2010.txt
 New GnuPG key, see the transition document!
. Francesco Poli .
 GnuPG key fpr == CA01 1147 9CD2 EFDF FB82  3925 3E1C 27E1 1F69 BFFE


pgpnidozW7Fxg.pgp
Description: PGP signature


Bug#690067: what is to be done?

2012-12-10 Thread Csillag Tamas
Hi,

The patch seems fine to me.
Is something missing? Is something still needs to be done?

Regards,
  cstamas
-- 
CSILLAG Tamas (cstamas) - http://cstamas.hu/


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



Bug#687398: marked as done (rhash: FTBFS: plug_openssl.c:142: undefined reference to `dlopen')

2012-12-10 Thread Debian Bug Tracking System
Your message dated Mon, 10 Dec 2012 20:48:11 +
with message-id 
and subject line Bug#687398: fixed in rhash 1.2.9-8
has caused the Debian Bug report #687398,
regarding rhash: FTBFS: plug_openssl.c:142: undefined reference to `dlopen'
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
687398: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=687398
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: rhash
Version: 1.2.9-7
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20120912 qa-ftbfs
Justification: FTBFS in wheezy on amd64

Hi,

During a rebuild of all packages in *wheezy*, your package failed to
build on amd64.

Relevant part:
> gcc -c  -pipe -DIN_RHASH  -DUSE_GETTEXT -DNDEBUG -D_FORTIFY_SOURCE=2 -Wall 
> -fomit-frame-pointer -g -O2 -fstack-protector --param=ssp-buffer-size=4 
> -Wformat -Werror=format-security -Wall -W -Wstrict-prototypes 
> -Wnested-externs -Winline -Wpointer-arith -Wbad-function-cast 
> -Wmissing-prototypes -Wmissing-declarations test_hashes.c -o test_hashes.o
> librhash/librhash.a(plug_openssl.o): In function `load_openssl_runtime':
> /«PKGBUILDDIR»/librhash/plug_openssl.c:141: undefined reference to `dlopen'
> /«PKGBUILDDIR»/librhash/plug_openssl.c:148: undefined reference to `dlsym'
> /«PKGBUILDDIR»/librhash/plug_openssl.c:148: undefined reference to `dlsym'
> /«PKGBUILDDIR»/librhash/plug_openssl.c:148: undefined reference to `dlsym'
> /«PKGBUILDDIR»/librhash/plug_openssl.c:149: undefined reference to `dlsym'
> /«PKGBUILDDIR»/librhash/plug_openssl.c:149: undefined reference to `dlsym'
> librhash/librhash.a(plug_openssl.o):/«PKGBUILDDIR»/librhash/plug_openssl.c:149:
>  more undefined references to `dlsym' follow
> librhash/librhash.a(plug_openssl.o): In function `load_openssl_runtime':
> /«PKGBUILDDIR»/librhash/plug_openssl.c:142: undefined reference to `dlopen'
> /«PKGBUILDDIR»/librhash/plug_openssl.c:143: undefined reference to `dlopen'
> collect2: error: ld returned 1 exit status

The full build log is available from:
   http://people.debian.org/~lucas/logs/2012/09/12/rhash_1.2.9-7_wheezy.log

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on EC2 VM instances from
Amazon Web Services, using a clean, minimal and up-to-date chroot. Every
failed build was retried once to eliminate random failures.
--- End Message ---
--- Begin Message ---
Source: rhash
Source-Version: 1.2.9-8

We believe that the bug you reported is fixed in the latest version of
rhash, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 687...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Aleksey Kravchenko  (supplier of updated rhash package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 28 Nov 2012 01:47:19 +0700
Source: rhash
Binary: rhash librhash0 librhash-dev librhash0-dbg python-rhash librhash-java 
librhash-java-doc librhash-perl ruby-rhash librhash-ruby librhash-ruby1.8 
librhash1.0-cil librhash-cil-dev librhash-cil-doc monodoc-rhash-manual
Architecture: source amd64 all
Version: 1.2.9-8
Distribution: unstable
Urgency: medium
Maintainer: Aleksey Kravchenko 
Changed-By: Aleksey Kravchenko 
Description: 
 librhash-cil-dev - development files for CLI bindings of LibRHash
 librhash-cil-doc - documentation for the CLI bindings of LibRHash
 librhash-dev - header files and a static library for librhash
 librhash-java - Java interface for LibRHash hash sums calculation library
 librhash-java-doc - documentation for librhash Java bindings
 librhash-perl - Perl interface for LibRHash hash sums calculation library
 librhash-ruby - transitional package for ruby-rhash
 librhash-ruby1.8 - transitional package for ruby-rhash, ruby 1.8 specific
 librhash0  - shared library for hash functions computing
 librhash0-dbg - debugging symbols for librhash
 librhash1.0-cil - CLI interface for LibRHash hash sums calculation library
 monodoc-rhash-manual - monodoc manual for the CLI bindings of LibRHash
 python-rhash - Python interface for Lib

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

2012-12-10 Thread Adam D. Barratt
On Fri, 2012-12-07 at 09:11 +0100, Helmut Grohne wrote:
> Introducing a new binary package is a quite big change. Please contact
> the release team on whether such a change is acceptable at this point of
> the freeze.

Apparently no-one did that before uploading. As Helmut said, it's not
really appropriate during a freeze, particularly when there's a less
invasive alternative for wheezy:

> Note that simply removing M-A:same is also way to solve this
> issue and that libphone-utils0 has very few reverse dependencies.

Regards,

Adam


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



Bug#695599: libgsf-1-dev: fix introspection packaging

2012-12-10 Thread Adam D. Barratt
On Mon, 2012-12-10 at 11:26 -0500, Jeremy Bicha wrote:
> You can also dramatically simplify your debian/rules; look at the
> Ubuntu packaging:
> http://bazaar.launchpad.net/~ubuntu-branches/ubuntu/raring/libgsf/raring/view/head:/debian/rules

Not in a freeze you can't, if you're expecting the package to get
anywhere near the release.

Regards,

Adam


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



Processed: tagging 695540

2012-12-10 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 695540 - wheezy
Bug #695540 {Done: Michael Banck } [nwchem] nwchem: Grave 
numerical errors in MCSCF analytical gradients and DFT semidirect calculations
Removed tag(s) wheezy.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
695540: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=695540
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Processed: severity of 690492 is important

2012-12-10 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 690492 important
Bug #690492 {Done: Bas Wijnen } [love] love: uses embedded 
copy of GLee
Severity set to 'important' from 'serious'
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
690492: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=690492
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Processed: severity of 694440 is important

2012-12-10 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # does not sound RC
> severity 694440 important
Bug #694440 [moodle] moodle: fails to upgrade lenny -> squeeze -> wheezy
Severity set to 'important' from 'serious'
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
694440: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=694440
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Processed: severity of 695607 is normal

2012-12-10 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # m68k is not a release arch
> severity 695607 normal
Bug #695607 [src:hdf5] hdf5: FTBFS: tries to build openmpi module without 
depending on openmpi
Severity set to 'normal' from 'serious'
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
695607: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=695607
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#686231: still not fixed

2012-12-10 Thread Sylvestre Ledru
On 10/12/2012 20:22, Vincent Legout wrote:> Hi,
>
> Vincent Lefevre  writes:
>
>> The crash still occurs on the same testcase, with llvm-gcc
>> (provided by llvm-gcc-4.6).
>
> I also have this crash with the test.i file. However, rebuilding the
> source package or using the x86 version seem to fix this bug. I guess
> the amd64 package wasn't built correctly.
No, it is because the gcc installed on your system and the one used to
build dragonegg is different...

Gcc plugin system sucks from a distribution point of view...
The best solution would be to rebuild dragonegg at installation time.

Sylvestre


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-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 Sylvestre Ledru
On 10/12/2012 19:57, Thorsten Glaser wrote:
> Source: hdf5
> Version: 1.8.8-9
> Severity: serious
> Justification: fails to build from source (but built successfully in the past)
> 
> I think the fix is to use an explicit list of architectures
> to _en_able openmpi on, rather than disabling it on a few
> selected ones.
> 
> This is a generic issue for all architectures not using openmpi
> as default mpi.
Could you detail a bit more the issue ?
It built fine on all architectures:
https://buildd.debian.org/status/package.php?p=hdf5

Cheers,
S


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



Processed: tagging 689314, found 689314 in 5.10.1-17

2012-12-10 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 689314 + squeeze
Bug #689314 [perl] perl: segfaults when echoing a very long string 
[CVE-2012-5195]
Added tag(s) squeeze.
> # housekeeping
> found 689314 5.10.1-17
Bug #689314 [perl] perl: segfaults when echoing a very long string 
[CVE-2012-5195]
Marked as found in versions perl/5.10.1-17.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
689314: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=689314
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Processed: Please test solution for Kerberos problem

2012-12-10 Thread Debian Bug Tracking System
Processing control commands:

> tags 640939 - moreinfo - unreproducible + patch
Bug #640939 [cups] hplip-cups: asks for root password when cups updates PPDs
Bug #662915 [cups] cups: Asking for root password on localhost during an update 
of ppd files.
Removed tag(s) moreinfo.
Removed tag(s) moreinfo.
Bug #640939 [cups] hplip-cups: asks for root password when cups updates PPDs
Bug #662915 [cups] cups: Asking for root password on localhost during an update 
of ppd files.
Removed tag(s) unreproducible.
Removed tag(s) unreproducible.
Bug #640939 [cups] hplip-cups: asks for root password when cups updates PPDs
Bug #662915 [cups] cups: Asking for root password on localhost during an update 
of ppd files.
Added tag(s) patch.
Added tag(s) patch.

-- 
640939: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=640939
662915: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=662915
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#640939: Please test solution for Kerberos problem

2012-12-10 Thread Wolfgang Schweer
Control: tags 640939 - moreinfo - unreproducible + patch

thanks

[ cups source package 1.5.3-2.9, debian/cups.postinst ]

The attached patch seems to work for me. Please test it (as outlined in 
message #49 by Brian).

"-h localhost" was changed to "-h /var/run/cups/cups.sock" a while ago 
(15 Sep 2009: cups.postinst and init script).

Don't know if changing it back for cups.postinst would cause any 
problem -- my tests revealed none so far.

Wolfgang

--- cups.postinst   2012-12-07 12:50:28.0 +0100
+++ cups.postinst.working_copy  2012-12-10 16:15:14.0 +0100
@@ -212,7 +212,7 @@
for ppd in *.ppd; do
[ -r "$ppd" ] || continue
queue=${ppd%.ppd}
-   lpstat -h /var/run/cups/cups.sock -p "$queue" >/dev/null 2>&1 || 
continue
+   lpstat -h localhost -p "$queue" >/dev/null 2>&1 || continue
nickname=`grep '\*NickName:' "$ppd" | cut -d '"' -f 2 | perl -p -e 
's/\n$//' | perl -p -e "$gennicknameregexp" | perl -p -e 's/(\W)/$1/g'`
lang=`grep '\*LanguageVersion:' "$ppd" | cut -d ' ' -f 2 | perl -e 
'print lc(<>)' | perl -p -e 's/[\r\n]//gs'`
ppdfound="0"
@@ -221,12 +221,12 @@
tempfiles="$tempfiles $tmpfile2"
cat $tmpfile1 | perl -p -e "$gennicknameregexp; s/\n*$/\n/s" | grep 
-E '^\S+\s+.*'"$nickname"'$' | cut -d ' ' -f 1 > $tmpfile2
while read newppduri; do
-   [ "$ppdfound" = "0" ] && lpadmin -h /var/run/cups/cups.sock -p 
"$queue" -m $newppduri 2>/dev/null || continue
+   [ "$ppdfound" = "0" ] && lpadmin -h localhost -p "$queue" -m 
$newppduri 2>/dev/null || continue
newlang=`grep '\*LanguageVersion:' "$ppd" | cut -d ' ' -f 2 | 
perl -e 'print lc(<>)' | perl -p -e 's/[\r\n]//gs'`
[ "$newlang" = "$lang" ] && ppdfound="1"
[ "$newlang" = "english" ] && englishppduri="$newppduri"
done < $tmpfile2
-   [ "$ppdfound" = "0" ] && [ ! -z "$englishppduri" ] && lpadmin -h 
/var/run/cups/cups.sock -p "$queue" -m $englishppduri 2>/dev/null && 
ppdfound="1"
+   [ "$ppdfound" = "0" ] && [ ! -z "$englishppduri" ] && lpadmin -h 
localhost -p "$queue" -m $englishppduri 2>/dev/null && ppdfound="1"
[ "$ppdfound" = "1" ] && echo PPD for printer $queue updated >&2
done
return 0
@@ -237,14 +237,14 @@
 if which lpstat > /dev/null 2>&1 && \
which lpinfo > /dev/null 2>&1 && \
which lpadmin > /dev/null 2>&1 && \
-   LC_ALL=C lpstat -h /var/run/cups/cups.sock -r | grep -v not > /dev/null 
2>&1; then
+   LC_ALL=C lpstat -h localhost -r | grep -v not > /dev/null 2>&1; then
 
tempfiles=
trap 'rm -f $tempfiles; exit 0' 0 HUP INT QUIT ILL ABRT PIPE TERM
tmpfile0=`mktemp -t updateppds.XX`
tempfiles="$tempfiles $tmpfile0"
 
-   lpinfo -h /var/run/cups/cups.sock -m > $tmpfile0
+   lpinfo -h localhost -m > $tmpfile0
 
if [ "$1" = configure ] ; then
# Update CUPS included drivers' queues


signature.asc
Description: Digital signature


Bug#686231: still not fixed

2012-12-10 Thread Vincent Legout
Hi,

Vincent Lefevre  writes:

> The crash still occurs on the same testcase, with llvm-gcc
> (provided by llvm-gcc-4.6).

I also have this crash with the test.i file. However, rebuilding the
source package or using the x86 version seem to fix this bug. I guess
the amd64 package wasn't built correctly.

Hope that helps,
Vincent


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



Bug#695272: marked as done (libphone-utils0: harmful postrm purge action in M-A:same package)

2012-12-10 Thread Debian Bug Tracking System
Your message dated Mon, 10 Dec 2012 19:00:07 +
with message-id 
and subject line Bug#695272: fixed in libphone-utils 0.1+git20110523-2
has caused the Debian Bug report #695272,
regarding libphone-utils0: harmful postrm purge action in M-A:same package
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
695272: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=695272
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libphone-utils0
Version: 0.1+git20110523-1.2
Severity: serious

It is technically possible to install libphone-utils0:amd64 and
libphone-utils0:i386 in parallel. If I then purge libphone-utils0:i386,
/etc/phone-utils.conf will disappear even though it is still needed by
libphone-utils:amd64. This is due to the postrm script not taking
multiple installations of the same package into account.

Helmut
--- End Message ---
--- Begin Message ---
Source: libphone-utils
Source-Version: 0.1+git20110523-2

We believe that the bug you reported is fixed in the latest version of
libphone-utils, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 695...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sebastian Reichel  (supplier of updated libphone-utils package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 09 Dec 2012 20:28:21 +0100
Source: libphone-utils
Binary: libphone-utils0 libphone-utils-common libphone-utils0-dbg 
libphone-utils-dev
Architecture: source amd64 all
Version: 0.1+git20110523-2
Distribution: unstable
Urgency: low
Maintainer: Debian freesmartphone.org Team 

Changed-By: Sebastian Reichel 
Description: 
 libphone-utils-common - Common files for libphone-utils
 libphone-utils-dev - library for basic phone operations - development files
 libphone-utils0 - library for basic phone operations
 libphone-utils0-dbg - library for basic phone operations - debug symbols
Closes: 695272
Changes: 
 libphone-utils (0.1+git20110523-2) unstable; urgency=low
 .
   [ Dominik George ]
   * Added a new libphone-utils-common binary package to contain
 the /etc/phone-utils.conf config file for better multi-arch
 support as reported by Helmut Grohne (Closes: #695272).
 .
   [ Sebastian Reichel ]
   * Use Debian Copyright Format 1.0
   * Bump Debian Standards Version to 3.9.4
   * Move phoneprefix file to libphone-utils-common
Checksums-Sha1: 
 21c0cb912fd965807559317183717a48dc51762f 2302 
libphone-utils_0.1+git20110523-2.dsc
 cd3a5787808d90bb2a6d9a0c2d86a7e304510cf8 11882 
libphone-utils_0.1+git20110523-2.debian.tar.gz
 14728fff2ed0c6e3c821857f614fb3f416cedaf7 10460 
libphone-utils0_0.1+git20110523-2_amd64.deb
 867ac99be511426ff4513e861440d9140230e1cd 10438 
libphone-utils-common_0.1+git20110523-2_all.deb
 34a07b457e550ea500bcdb49d930826a4ede01db 17238 
libphone-utils0-dbg_0.1+git20110523-2_amd64.deb
 10bf66945ad53462f0d01a41e661dfda43a49fda 6520 
libphone-utils-dev_0.1+git20110523-2_amd64.deb
Checksums-Sha256: 
 7976661c51756058fd5a0c0f1bb718a0898837e0ab58e4d73f7674fdd87bfbc4 2302 
libphone-utils_0.1+git20110523-2.dsc
 c6e22d6d76f0f074035bfa4b7048e10bb738c9b952eafd2277d00d7a098ef9e7 11882 
libphone-utils_0.1+git20110523-2.debian.tar.gz
 d4c876d5655e0561760e7f8e6bc648ec4b432ee6d5ea77cf3ed09d332f124acb 10460 
libphone-utils0_0.1+git20110523-2_amd64.deb
 ffc81775946cf6a12efbebc7462a674b48d263458934f1ae2627108505038c4d 10438 
libphone-utils-common_0.1+git20110523-2_all.deb
 ba5cd2b6ef04186a0dfa8b29be7229001cfdc79a8f847b090003ebe7e5b56b67 17238 
libphone-utils0-dbg_0.1+git20110523-2_amd64.deb
 586d2bd067dc87c2961ab087a8cfd4501f6066f9bdfabf758fd9705c77f76254 6520 
libphone-utils-dev_0.1+git20110523-2_amd64.deb
Files: 
 91e9b6761a562faf7d373cfb89dea7cf 2302 libs extra 
libphone-utils_0.1+git20110523-2.dsc
 a5a30e1f2487bf2ec00085132e380a8a 11882 libs extra 
libphone-utils_0.1+git20110523-2.debian.tar.gz
 ce03d81d1ca6a70576fd9d3eff84777f 10460 libs extra 
libphone-utils0_0.1+git20110523-2_amd64.deb
 ecdff9a348fe3fc54dd71574a1d0b2b6 10438 libs extra 
libphone-utils-common_0.1+git20110523-2_all.deb
 fc6ba1502d376b0664a723700f8a2934 17238 debug extra 
libphone-utils0-dbg_0.1+git20110523-2_amd64.deb
 ce491af85915

Bug#694972: ACK.

2012-12-10 Thread David Paleino
Whoa.

Somehow I got unsubscribed from pkg-osm's ML, so I _never_ received anything
related to this bugreport. Weird. The BTS should really send a mail to
Uploaders too.

However, ACK. Thanks for your upload Michael! I was already running around
screaming "H! Package hijack!!!" before checking if there was a report
filed :).

I just pushed your NMU into the package repository.

Kindly,
David

-- 
 . ''`.   Debian developer | http://wiki.debian.org/DavidPaleino
 : :'  : Linuxer #334216 --|-- http://www.hanskalabs.net/
 `. `'`  GPG: 1392B174 | http://deb.li/dapal
   `-   2BAB C625 4E66 E7B8 450A C3E1 E6AA 9017 1392 B174


signature.asc
Description: PGP signature


Bug#665334: Adobe font hinting

2012-12-10 Thread Read Roberts
Hello Bastian;

I am the person would would address any problems in the Adobe 'autohint'
program. However, I'm not sure what issue you are referencing. I have on
file a request from Daniel Kahn Gillmor  to make
the MM subsrs OpenSource, so that FontForge can build MM fonts. I do plan
to make the AFDKO OpenSource, and would include the MM subrs, as well as
the autohint code. This is currently scheduled for late 2013, but could
easily slip for another 6 months.

Bets regards,
 Read Roberts



On 12/9/12 6:40 AM, "Bastien ROUCARIES" 
wrote:

>Dear read,
>
>Any new of the relicencing effort of font hinting at adobe.
>
>This problem is more important than we think at first time. A lot of
>debian fonts are affected, even ghostscript one.
>
>Who is the person what we should contact at adobe ?
>
>Bastien


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



Bug#665334: Adobe font hinting

2012-12-10 Thread Read Roberts
I see that this set of PS code that needs to be OepnSource includes all
the OtherSubrs, not just the MM OtherSubrs.

Same answer as for the OtherSubrs MM code: Sounds like a good idea to make
this OpenSource. It is not a lot of work, but the Type Dept is low on
legal resources. I will take this up within the Adobe Type Dept, and see
if we can get this done before the AFDKO goes OpenSource, which is at
least a year away.


- Read Roberts


On 12/10/12 9:19 AM, "Bastien ROUCARIES" 
wrote:

>On Mon, Dec 10, 2012 at 6:11 PM, Read Roberts  wrote:
>> Hello Bastian;
>>
>> I am the person would would address any problems in the Adobe 'autohint'
>> program. However, I'm not sure what issue you are referencing. I have on
>> file a request from Daniel Kahn Gillmor  to make
>> the MM subsrs OpenSource, so that FontForge can build MM fonts. I do
>>plan
>> to make the AFDKO OpenSource, and would include the MM subrs, as well as
>> the autohint code. This is currently scheduled for late 2013, but could
>> easily slip for another 6 months.
>
>
>Thanks
>
>I am talking about this code and the variant without font hinting
>http://partners.adobe.com/public/developer/opentype/index_ps_code3.html
>>
>> Bets regards,
>>  Read Roberts
>>
>>
>>
>> On 12/9/12 6:40 AM, "Bastien ROUCARIES" 
>> wrote:
>>
>>>Dear read,
>>>
>>>Any new of the relicencing effort of font hinting at adobe.
>>>
>>>This problem is more important than we think at first time. A lot of
>>>debian fonts are affected, even ghostscript one.
>>>
>>>Who is the person what we should contact at adobe ?
>>>
>>>Bastien
>>


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



Bug#695599: libgsf-1-dev: fix introspection packaging

2012-12-10 Thread Jeremy Bicha
Please fix #2 for goffice too.

goffice and gnumeric don't need to explicitly build-depend on the gir
package, depending on the -dev package is sufficient.

Thanks,
Jeremy


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



Bug#665334: Adobe font hinting

2012-12-10 Thread Bastien ROUCARIES
On Mon, Dec 10, 2012 at 6:11 PM, Read Roberts  wrote:
> Hello Bastian;
>
> I am the person would would address any problems in the Adobe 'autohint'
> program. However, I'm not sure what issue you are referencing. I have on
> file a request from Daniel Kahn Gillmor  to make
> the MM subsrs OpenSource, so that FontForge can build MM fonts. I do plan
> to make the AFDKO OpenSource, and would include the MM subrs, as well as
> the autohint code. This is currently scheduled for late 2013, but could
> easily slip for another 6 months.


Thanks

I am talking about this code and the variant without font hinting
http://partners.adobe.com/public/developer/opentype/index_ps_code3.html
>
> Bets regards,
>  Read Roberts
>
>
>
> On 12/9/12 6:40 AM, "Bastien ROUCARIES" 
> wrote:
>
>>Dear read,
>>
>>Any new of the relicencing effort of font hinting at adobe.
>>
>>This problem is more important than we think at first time. A lot of
>>debian fonts are affected, even ghostscript one.
>>
>>Who is the person what we should contact at adobe ?
>>
>>Bastien
>


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



Processed: Add blocker

2012-12-10 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> block 690377 by 695597
Bug #690377 [ldap2zone] ldap2zone: ldap2bind script uses non-existent variable 
LDAP_HOST_PARAM in ldapsearch call
690377 was not blocked by any bugs.
690377 was not blocking any bugs.
Added blocking bug(s) of 690377: 695597
> kthxbye
Stopping processing here.

Please contact me if you need assistance.
-- 
690377: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=690377
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#695599: libgsf-1-dev: fix introspection packaging

2012-12-10 Thread Jeremy Bicha
Package: libgsf-1-dev
Version: 1.14.25-1
Severity: serious

In accordance with the introspection mini-policy [1]
1. gir1.2-libgsf-1 needs to be renamed to gir1.2-gsf-1 (the gir
package is named based on what the actual gir says, not the source
package)
2. libgsf-1-dev needs to depend on gir1.2-gsf-1 (= ${binary:Version})
3. usr/share/gir-1.0 should be in libgsf-1-dev.install not libgsf-1-114.install

Also, debian/watch should be updated since GNOME only does .xz tarballs now.

You can also dramatically simplify your debian/rules; look at the
Ubuntu packaging:
http://bazaar.launchpad.net/~ubuntu-branches/ubuntu/raring/libgsf/raring/view/head:/debian/rules

Thanks,
Jeremy

[1] /usr/share/doc/gobject-introspection/policy.txt

- -- System Information:
Debian Release: wheezy/sid
  APT prefers raring-updates
  APT policy: (500, 'raring-updates'), (500, 'raring-security'), (500,
'raring'), (500, 'quantal-proposed'), (100, 'raring-backports')


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



Bug#694841: harden-doc: Differing encodings cause LaTeX errors.

2012-12-10 Thread gregor herrmann
On Sun, 09 Dec 2012 19:38:35 -0400, David Prévot wrote:

> On Sat, Dec 01, 2012 at 03:04:56AM +0100, Felix Gatzemeier wrote:
> > LaTeX complained about misconstructed UTF-8 entities in the french
> > translation.  This was due to a mixture of Latin-1 and UTF-8-encoding.
> Can you please provide a build log, I'm not able to reproduce this
> issue in a clean chroot, not even a warning during the build process.

FWIW: I can't reproduce it either. I tried to change the locale for
building but still didn't succeed (to produce a failure :))
 
Cheers,
gregor

-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer  -  http://www.debian.org/
 `. `'  Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe
   `-   NP: Joan Baez: For Sasha


signature.asc
Description: Digital signature


Processed: Change severity

2012-12-10 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 690377 grave
Bug #690377 [ldap2zone] ldap2zone: ldap2bind script uses non-existent variable 
LDAP_HOST_PARAM in ldapsearch call
Severity set to 'grave' from 'important'
> kthxbye
Stopping processing here.

Please contact me if you need assistance.
-- 
690377: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=690377
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#689268: Intel HD 4000 (Ivy Bridge) graphics freeze

2012-12-10 Thread Riku Voipio
On Wed, Dec 05, 2012 at 07:39:01AM -0800, Jonathan Nieder wrote:
> Riku Voipio wrote:
> > On Wed, Nov 28, 2012 at 07:52:51AM -0800, Jonathan Nieder wrote:
 
> >> If you can bisect to find the first unaffected kernel between 3.2 and
> >> 3.3-rc6 as described at [1], that would be excellent. Thanks much for
> >> your work.
> >
> > I have now been bisecting (I skipped the drm tree reset, this is bisect
> > between 3.2 and 3.3-rc1) for one week, and so far only seen hangs on 
> > on the debian kernel.
 
> Hm, I'm a little confused.  Are you sure 3.3-rc1 is not affected, and if
> not, why bisect between 3.2 and 3.3-rc1 instead of -rc6?  What git tree
> are you using to bisect the Debian kernel?

Now I've had comple of days with the debian 3.2.19-1 and no crashes
either. Sigh, I notice I had "i915.i915_enable_rc6=0 drm.debug=0x06" set
in etc/default/grub.
I remember some crashed with i915.i915_enable_rc6=0, so perhaps it's
the debug prints that drive the timing off enough to hide the crash.

Lets clear the command line and see if I can get crashes back...

Riku

 


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



Bug#649068: [Debian-ha-maintainers] Bug#649068: Seems to need Wheezy build environment (Was: rgmanager and resource-agents: error when trying to install)

2012-12-10 Thread Andreas Tille
Hi,

Hi,

On Mon, Dec 10, 2012 at 04:05:15PM +0100, Guido Günther wrote:
> On Mon, Dec 10, 2012 at 03:10:19PM +0100, Andreas Tille wrote:
> > ...
> > The following packages have unmet dependencies:
> >  libnetcf1 : Conflicts: libvirt0 (<= 0.10.1-2~) but 0.9.12-5 is to be 
> > installed.
> > Unable to resolve dependencies!  Giving up...
> > ...
> 
> http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=694362
> 
> has the status of the above issue. It's a problem with the latest necf
> upload in sid and we're basically waiting for either the netcf
> maintainers to revert it or I'll upload libvirt 1.0 which will work with
> the above netcf but will make building packages for wheezy much harder.

Isn't creating a clean Wheezy chroot and building the package there the
best way to go anyway.  I know that "usually" building against unstable
is the right way to go but besides this we are targeting at Wheezy and
at some point in time (read close to the release data) building in a
"to-be-released" environment sounds more reasonable to me than blindly
following a rule that does not fit optimally.

Kind regards

Andreas.

-- 
http://fam-tille.de


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



Bug#693420: marked as done (CVE-2012-5526 CGI.pm: Newline injection due to improper CRLF escaping in Set-Cookie and P3P headers)

2012-12-10 Thread Debian Bug Tracking System
Your message dated Mon, 10 Dec 2012 15:05:53 +
with message-id 
and subject line Bug#693420: fixed in perl 5.14.2-16
has caused the Debian Bug report #693420,
regarding CVE-2012-5526 CGI.pm: Newline injection due to improper CRLF escaping 
in Set-Cookie and P3P headers
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
693420: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=693420
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: perl-modules
Severity: important
Tags: security

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Hi,
the following vulnerability was published for CGI.pm:

CVE-2012-5526[0]:
libcgi-pm-perl: newline injection

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-5526
http://security-tracker.debian.org/tracker/CVE-2012-5526
[1] http://cpansearch.perl.org/src/MARKSTOS/CGI.pm-3.63/Changes
[2] https://github.com/markstos/CGI.pm/pull/23
[3] https://bugzilla.redhat.com/show_bug.cgi?id=877015

Please adjust the affected versions in the BTS as needed.

Regards,
Salvatore

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

Kernel: Linux 2.6.32-5-amd64 (SMP w/8 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages perl-modules depends on:
ii  libclass-isa-perl  0.36-5
ii  libswitch-perl 2.16-2
ii  perl   5.14.2-15

perl-modules recommends no packages.

Versions of packages perl-modules suggests:
ii  libpod-plainer-perl  1.03-1

- -- no debconf information

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

iQIcBAEBCgAGBQJQpg2OAAoJEHidbwV/2GP+fYMP/2mddx22RGDz7XVgwcm0q19i
WC8De0NRSSxso0CMLg0/zuDYwrUPPa6y5pan5Yh8V2Ia0yfHqkbIsRWjZWX8wkN9
woO6EpeKo9pVVB0Va+66xkhhU2fKl41AirixQdsP1KRnBr+T9T+PVtZ2x8qHdxNs
yBZlGhHFcNlxy2alWInS30vqzMBXPpmrfofCLWcleReNO09ESScbR5T68SXC39Pp
T1VhQMZujiB8AkznOAMMf+CeNlQUF6DGL30ScyF/+SirFhoEu5WHfLyYteOAdrnG
Zx4Vjz+pCBAhlupSRBH3ld8ssix5I4o9Fq4I4ZESCeC8MWrVntZatRrnK3myusUW
96p3BTtBfuOFJEE/mdx9S5dP5dtnffIqm99OAYyWmy5175brkUahmGl0fNJTbrzB
fDqFrJrv+y1TakdLbfzLkBhr0GBXTgP/JX+NEYdRgiJwPXuSGMIwPa+CG4TYTDBw
294Iq2fr3L33SVrvaVMGozy5xqaJgzVROtn5jI1PfI2Swk+JZ0uiSL1k704qQDTq
GHLUFLzqfBdoUCiUKv8T1iGQSKswZOPfEx1mAz3gqrGs1TGCi9wEtV/29oDOqLXK
j5Vb7ioGw0ZKNb9tj2Ht1NiZBc1EFxLC/n0OykOUcEF9r9bY4rDo4lVZDzgNcRq0
kvG9UAUALSLns4MB84zr
=bgDd
-END PGP SIGNATURE-
--- End Message ---
--- Begin Message ---
Source: perl
Source-Version: 5.14.2-16

We believe that the bug you reported is fixed in the latest version of
perl, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 693...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Dominic Hargreaves  (supplier of updated perl package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 10 Dec 2012 12:47:14 +
Source: perl
Binary: perl-base libcgi-fast-perl perl-doc perl-modules perl-debug libperl5.14 
libperl-dev perl
Architecture: source all i386
Version: 5.14.2-16
Distribution: unstable
Urgency: medium
Maintainer: Niko Tyni 
Changed-By: Dominic Hargreaves 
Description: 
 libcgi-fast-perl - CGI::Fast Perl module
 libperl-dev - Perl library: development files
 libperl5.14 - shared Perl library
 perl   - Larry Wall's Practical Extraction and Report Language
 perl-base  - minimal Perl system
 perl-debug - debug-enabled Perl interpreter
 perl-doc   - Perl documentation
 perl-modules - Core Perl modules
Closes: 693420 695223 695224
Changes: 
 perl (5.14.2-16) unstable; urgency=medium
 .
   * [SECURITY] CVE-2012-5526: CGI.pm improper cookie and p3p
 CRLF escaping (Closes: #693420)
   * [SECURITY] Fix misparsing of maketext strings which could allow
 arbitrary code execution from untrusted maketext templates
 (Closes: #695224)
   * [SECURITY] add warning to Storable documentation that Storable
 documents should not be accepted from untrusted sources
 (Closes

Bug#695224: marked as done (perl-modules: Locale::Maketext code injection)

2012-12-10 Thread Debian Bug Tracking System
Your message dated Mon, 10 Dec 2012 15:05:53 +
with message-id 
and subject line Bug#695224: fixed in perl 5.14.2-16
has caused the Debian Bug report #695224,
regarding perl-modules: Locale::Maketext code injection
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
695224: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=695224
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: perl-modules
Severity: important
Version: 5.14.2-15

- Forwarded message from Ricardo Signes  -

Date: Wed, 5 Dec 2012 10:51:47 -0500
From: Ricardo Signes 
To: perl5-port...@perl.org
Subject: security notice: Locale::Maketext
X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00,DKIM_SIGNED,
RCVD_IN_DNSWL_HI,SPF_PASS,T_DKIM_INVALID autolearn=ham version=3.3.1
User-Agent: Mutt/1.5.21 (2010-09-15)
X-Bogosity: Ham, tests=bogofilter, spamicity=0.00, version=1.2.2


Locale::Maketext is a core l10n library that expands templates found in
strings.

Two problems were found, reported, and patched-for by Brian Carlson of cPanel,
and these fixes are now in blead and on the CPAN.

The commit in question is
http://perl5.git.perl.org/perl.git/commit/1735f6f53ca19f99c6e9e39496c486af323ba6a8

The flaws are:

* in a [method,x,y,z] template, the method could be a fully-qualified name
* template expansion did not properly quote metacharacters, allowing
  code injection through a malicious template

Please upgrade your Locale::Maketext, especially if you allow user-provided
templates.

-- 
rjbs



- End forwarded message -

-- 
Dominic Hargreaves | http://www.larted.org.uk/~dom/
PGP key 5178E2A5 from the.earth.li (keyserver,web,email)
--- End Message ---
--- Begin Message ---
Source: perl
Source-Version: 5.14.2-16

We believe that the bug you reported is fixed in the latest version of
perl, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 695...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Dominic Hargreaves  (supplier of updated perl package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 10 Dec 2012 12:47:14 +
Source: perl
Binary: perl-base libcgi-fast-perl perl-doc perl-modules perl-debug libperl5.14 
libperl-dev perl
Architecture: source all i386
Version: 5.14.2-16
Distribution: unstable
Urgency: medium
Maintainer: Niko Tyni 
Changed-By: Dominic Hargreaves 
Description: 
 libcgi-fast-perl - CGI::Fast Perl module
 libperl-dev - Perl library: development files
 libperl5.14 - shared Perl library
 perl   - Larry Wall's Practical Extraction and Report Language
 perl-base  - minimal Perl system
 perl-debug - debug-enabled Perl interpreter
 perl-doc   - Perl documentation
 perl-modules - Core Perl modules
Closes: 693420 695223 695224
Changes: 
 perl (5.14.2-16) unstable; urgency=medium
 .
   * [SECURITY] CVE-2012-5526: CGI.pm improper cookie and p3p
 CRLF escaping (Closes: #693420)
   * [SECURITY] Fix misparsing of maketext strings which could allow
 arbitrary code execution from untrusted maketext templates
 (Closes: #695224)
   * [SECURITY] add warning to Storable documentation that Storable
 documents should not be accepted from untrusted sources
 (Closes: #695223)
Checksums-Sha1: 
 c8b7f6a30c413ea4b2e5c896cf1d17b13bafcbe2 1721 perl_5.14.2-16.dsc
 9e8d151dcf329576a4b1a7657e9268dec06d0243 155151 perl_5.14.2-16.debian.tar.gz
 e718582112c701aa54bc551bd46eb852c4644d40 74914 
libcgi-fast-perl_5.14.2-16_all.deb
 c8a40a664daeaac9caa70bba041de708d4d4aefc 8166594 perl-doc_5.14.2-16_all.deb
 e9570fa287f148c8f23c186293ad32c240c6b220 3439114 perl-modules_5.14.2-16_all.deb
 60c6d439372d063f69608a27a2a1bed02c01d6d7 1493988 perl-base_5.14.2-16_i386.deb
 00b6946d0b2e1c268255be9da86bbbf18c083c45 9225014 perl-debug_5.14.2-16_i386.deb
 1965addcfa618214b57a71e7ab134c9cd6fcff24 731478 libperl5.14_5.14.2-16_i386.deb
 5bcb88cbcf38056ca23ea6bf045b6e09e15da29a 3054592 libperl-dev_5.14.2-16_i386.deb
 22f7f5b2ed3af5d54aabb2ef2b12b09f6f9a641a 3700978 perl_5.14.2-16_i386.deb
Checksums-Sha256: 
 024b02816fce4888c75c2e4a41c25ea751c01cf40b138c51294fd14a4642cfde 1721 
perl_5.14.2-16.dsc
 ddd143e1ea79a706731bd362a421518

Bug#649068: [Debian-ha-maintainers] Bug#649068: Seems to need Wheezy build environment (Was: rgmanager and resource-agents: error when trying to install)

2012-12-10 Thread Guido Günther
On Mon, Dec 10, 2012 at 03:10:19PM +0100, Andreas Tille wrote:
> Hi Ivo,
> 
> I intended to sponsor your prepared patch but for the moment I'm a bit blocked
> because I would need to setup a pbuilder environment with Wheezy:


> 
> $ pdebuild
> ...
> The following packages have unmet dependencies:
>  libnetcf1 : Conflicts: libvirt0 (<= 0.10.1-2~) but 0.9.12-5 is to be 
> installed.
> Unable to resolve dependencies!  Giving up...
> ...

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=694362

has the status of the above issue. It's a problem with the latest necf
upload in sid and we're basically waiting for either the netcf
maintainers to revert it or I'll upload libvirt 1.0 which will work with
the above netcf but will make building packages for wheezy much harder.
Cheers,
 -- Guido

> 
> $ apt-cache policy libnetcf1
> libnetcf1:
>   Installiert:   (keine)
>   Installationskandidat: 0.1.9-2
>   Versionstabelle:
>  0.2.2-2 0
>  50 http://ftp.de.debian.org/debian/ unstable/main amd64 Packages
>  0.1.9-2 0
> 501 http://ftp.de.debian.org/debian/ testing/main amd64 Packages
> 
> 
> The conflict mentioned above is not in libnetcf1 0.1.9-2 but it is in
> 0.2.2-2.  So if anybody tries to sponsor the package make sure you are
> using a clean Wheezy chroot environment.
> 
> Kind regards
> 
> Andreas.
> 
> -- 
> http://fam-tille.de
> 
> ___
> Debian-ha-maintainers mailing list
> debian-ha-maintain...@lists.alioth.debian.org
> http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-ha-maintainers
> 


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



Bug#649068: Seems to need Wheezy build environment (Was: rgmanager and resource-agents: error when trying to install)

2012-12-10 Thread Andreas Tille
Hi Ivo,

I intended to sponsor your prepared patch but for the moment I'm a bit blocked
because I would need to setup a pbuilder environment with Wheezy:

$ pdebuild
...
The following packages have unmet dependencies:
 libnetcf1 : Conflicts: libvirt0 (<= 0.10.1-2~) but 0.9.12-5 is to be installed.
Unable to resolve dependencies!  Giving up...
...

$ apt-cache policy libnetcf1
libnetcf1:
  Installiert:   (keine)
  Installationskandidat: 0.1.9-2
  Versionstabelle:
 0.2.2-2 0
 50 http://ftp.de.debian.org/debian/ unstable/main amd64 Packages
 0.1.9-2 0
501 http://ftp.de.debian.org/debian/ testing/main amd64 Packages


The conflict mentioned above is not in libnetcf1 0.1.9-2 but it is in
0.2.2-2.  So if anybody tries to sponsor the package make sure you are
using a clean Wheezy chroot environment.

Kind regards

Andreas.

-- 
http://fam-tille.de


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



Bug#694841: harden-doc: Differing encodings cause LaTeX errors.

2012-12-10 Thread Andreas Tille
On Sun, Dec 09, 2012 at 07:38:35PM -0400, David Prévot wrote:
> > I just uploaded the proposed fix to DELAYED/10.
> 
> Please, dcut this upload.

Done:

 
- Forwarded message from Debian FTP Masters 
 -

Date: Mon, 10 Dec 2012 13:11:59 +
From: Debian FTP Masters 
To: ti...@debian.org
Subject: Processing of
dcut.Andreas_Tille__tille_debian_org_.1355145047.32324.commands

Log of processing your commands file 
/dcut.Andreas_Tille__tille_debian_org_.1355145047.32324.commands:

> cancel harden-doc_3.15.1+nmu1_amd64.changes
Files removed from 10-day: harden-doc_3.15.1+nmu1_amd64.changes 
harden-doc_3.15.1+nmu1.dsc harden-doc_3.15.1+nmu1.tar.gz 
harden-doc_3.15.1+nmu1_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


- End forwarded message -


-- 
http://fam-tille.de


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



Bug#668740: purging dsc-statistics-* will always remove system user, even when still in use

2012-12-10 Thread Ansgar Burchardt
And one more issue:

After installing both dsc-statistics-{collector,presenter}, purging one
of them will remove the system user even tough it is still in use by the
other package. This should probably not happen.

Ansgar


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



Bug#687848: marked as done (extlinux-update: fails to correctly update changed syslinux debian themes)

2012-12-10 Thread Debian Bug Tracking System
Your message dated Mon, 10 Dec 2012 12:34:12 +
with message-id 
and subject line Bug#687848: fixed in syslinux 2:4.05+dfsg-6+deb7u1
has caused the Debian Bug report #687848,
regarding extlinux-update: fails to correctly update changed syslinux debian 
themes
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
687848: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=687848
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: extlinux
Version: 2:4.05+dfsg-6
Severity: grave
Tags: patch
Justification: leaves system in unbootable state if updating in wheezy

Hi,

when preparing a patch for #681426 I noticed that after updating
the debian wheezy extlinux theme (by installing an updated version of
syslinux-themes-debian-wheezy) running extlinux-update does not
update the theme in /boot/extlinux/themes/debian-wheezy but instead
copies the new theme to /boot/extlinux/themes/debian-wheezy/extlinux .
Therefore, the old theme is then used.

This means that systems which had the broken theme (as described in
#681426) installed and upgrade to a newer theme and run extlinux-update
still won't boot.

The problem can be fixed by removing the old theme before copying
the new one:

diff -Nru syslinux-4.05+dfsg/debian/local/extlinux-update 
syslinux-4.05+dfsg/debian/local/extlinux-update
--- syslinux-4.05+dfsg/debian/local/extlinux-update 2012-06-30 
14:00:10.0 +0200
+++ syslinux-4.05+dfsg/debian/local/extlinux-update 2012-09-16 
17:07:40.0 +0200
@@ -403,9 +403,11 @@
 
if [ -n "${EXTLINUX_THEME_ORIG}" ]
then
+   rm -rf 
"${_EXTLINUX_DIRECTORY}/themes/${EXTLINUX_THEME_ORIG}"
cp -aL 
"/usr/share/syslinux/themes/${EXTLINUX_THEME_ORIG}/extlinux" 
"${_EXTLINUX_DIRECTORY}/themes/${EXTLINUX_THEME_ORIG}"
ln -sf "${EXTLINUX_THEME_ORIG}" 
"${_EXTLINUX_DIRECTORY}/themes/${EXTLINUX_THEME}"
else
+   rm -rf "${_EXTLINUX_DIRECTORY}/themes/${EXTLINUX_THEME}"
cp -aL 
"/usr/share/syslinux/themes/${EXTLINUX_THEME}/extlinux" 
"${_EXTLINUX_DIRECTORY}/themes/${EXTLINUX_THEME}"
fi
 


Cheers,

Mika
--- End Message ---
--- Begin Message ---
Source: syslinux
Source-Version: 2:4.05+dfsg-6+deb7u1

We believe that the bug you reported is fixed in the latest version of
syslinux, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 687...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ivo De Decker  (supplier of updated syslinux package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 10 Dec 2012 12:48:40 +0100
Source: syslinux
Binary: syslinux syslinux-udeb extlinux syslinux-common
Architecture: source amd64 all
Version: 2:4.05+dfsg-6+deb7u1
Distribution: testing-proposed-updates
Urgency: low
Maintainer: Daniel Baumann 
Changed-By: Ivo De Decker 
Description: 
 extlinux   - collection of boot loaders (ext2/3/4 and btrfs bootloader)
 syslinux   - collection of boot loaders
 syslinux-common - collection of boot loaders (common files)
 syslinux-udeb - collection of boot loaders (udeb)
Closes: 687848
Changes: 
 syslinux (2:4.05+dfsg-6+deb7u1) testing-proposed-updates; urgency=low
 .
   * Non-maintainer upload.
   * Upload to testing for wheezy.
   * Correctly update syslinux debian themes in extlinux-update
 (Closes: #687848).
Checksums-Sha1: 
 aaa8e20cdd79fe6b5d6ef1afab7a81e596e6f485 2089 syslinux_4.05+dfsg-6+deb7u1.dsc
 d99ec8160dc786c8b4fbfe45e8bff94538bedc05 31692 
syslinux_4.05+dfsg-6+deb7u1.debian.tar.xz
 c8ce68184fa53088fef9f777f7bb6d566f7d0827 94628 
syslinux_4.05+dfsg-6+deb7u1_amd64.deb
 828326d300c3a8a21a91a5ef0b73fc10ca604422 40338 
syslinux-udeb_4.05+dfsg-6+deb7u1_amd64.udeb
 f57885e3a00228b34cae7c06dc45fa18ffa79791 112506 
extlinux_4.05+dfsg-6+deb7u1_amd64.deb
 e6b99b30234ec4ef7292f872964c63b6d5d690c5 934446 
syslinux-common_4.05+dfsg-6+deb7u1_all.deb
Checksums-Sha256: 
 00a7ad4011318781a22bc51994f2e2a3848239d52598be8c337594ce972541c8 2089 
syslinux_4.05+dfsg-6+deb7u1.dsc
 bcede2f0a72e0dc763f803855e01f0a23668804f91ac9f60b71054f7927043d6 31692 
sy

Bug#694972: marked as done (imposm: missing source for imposm/cache/kc.c)

2012-12-10 Thread Debian Bug Tracking System
Your message dated Mon, 10 Dec 2012 12:03:15 +
with message-id 
and subject line Bug#694972: fixed in imposm 2.4.0+dfsg-0.1
has caused the Debian Bug report #694972,
regarding imposm: missing source for imposm/cache/kc.c
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
694972: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=694972
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Source: imposm
Version: 2.4.0-1
Severity: serious
Justification: Policy 2.2.1

imposm/cache/kc.c was generated by Cython from a file named 
"imposm/cache/kc.pyx". This file is nowhere to be found in the upstream 
tarball.


--
Jakub Wilk
--- End Message ---
--- Begin Message ---
Source: imposm
Source-Version: 2.4.0+dfsg-0.1

We believe that the bug you reported is fixed in the latest version of
imposm, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 694...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Michael Stapelberg  (supplier of updated imposm package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 04 Dec 2012 22:36:33 +0100
Source: imposm
Binary: python-imposm imposm
Architecture: source amd64 all
Version: 2.4.0+dfsg-0.1
Distribution: unstable
Urgency: low
Maintainer: Debian OpenStreetMap Team 
Changed-By: Michael Stapelberg 
Description: 
 imposm - importer for OpenStreetMap data
 python-imposm - importer for OpenStreetMap data - Python module
Closes: 694972
Changes: 
 imposm (2.4.0+dfsg-0.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Remove generated file without source cache/kc.c from upstream tarball
 (Closes: #694972).
Checksums-Sha1: 
 b5dbbdff2aee560ab313a7dd8965e836bf9eaebc 2065 imposm_2.4.0+dfsg-0.1.dsc
 1abf6352b4127f84b52c276b4fd0430419267bfc 90321 imposm_2.4.0+dfsg.orig.tar.gz
 cca02d3545ac963c5a82f1da9fbacffbdbe3f92d 2417 
imposm_2.4.0+dfsg-0.1.debian.tar.gz
 dd38bb21db47de751bf285fe47d41ba3f9cb7bac 209042 
python-imposm_2.4.0+dfsg-0.1_amd64.deb
 260346504dd4aa72f1a414f55155c3a847a50512 3642 imposm_2.4.0+dfsg-0.1_all.deb
Checksums-Sha256: 
 b73a0e0df2b179f486ad2d64b021d49bb0c7efadcadb921af08e3dd659ae0450 2065 
imposm_2.4.0+dfsg-0.1.dsc
 755212a4344cf1d96a116052741e7396300a33aa60442a111977ae364a0c2dff 90321 
imposm_2.4.0+dfsg.orig.tar.gz
 54ef821fd0db2d395e63930dc605f32984326ee15507c7cdc6fa1b40055aa116 2417 
imposm_2.4.0+dfsg-0.1.debian.tar.gz
 cf9082bfcaad82d43fce426074670970887e9dd8f2db375c2805129c8a6caa95 209042 
python-imposm_2.4.0+dfsg-0.1_amd64.deb
 c9fa4278281bb4060a9bae951edbef267c47ec252908d6a8549eedf200a10f33 3642 
imposm_2.4.0+dfsg-0.1_all.deb
Files: 
 cc57cabfc765130744d9b22079185590 2065 python extra imposm_2.4.0+dfsg-0.1.dsc
 8258bc1f1d01a9cbedfb105578989f6e 90321 python extra 
imposm_2.4.0+dfsg.orig.tar.gz
 becefc4c7444eaa02ec8b5ed831814dd 2417 python extra 
imposm_2.4.0+dfsg-0.1.debian.tar.gz
 c7a1a426829ecfb277ddde23d8de7eef 209042 python extra 
python-imposm_2.4.0+dfsg-0.1_amd64.deb
 88aa9422fb019d51e82fc4884788ffc7 3642 web extra imposm_2.4.0+dfsg-0.1_all.deb

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

iQIcBAEBCgAGBQJQvm7gAAoJEE5xYO1KyO4dIjsP/0J6WXbBvZEncHKPHtCxoxl/
B6Y/azaCIIrySgVEI3BwK5TCQyJKn1QPYk/IRGZ3+hbSXDAb223j+4QdN4hXa67c
XJBib86oU/bJt5xXDMET6w3dQVOqGWOkInwXf4kCYmx0rVjPZB+KbCdM1Jy0skx+
+jpGylvnnOpuFEHNvOTwREIpuOxYRkE38SoA33h154hXT/inVISC010Ozx5bUaOu
UsUH/2c5FPqbIocNA2x6/EfaiRklmZWjqrScuezgaxTirmSRsnFcz2/aVMs+clE4
7iVVwXtnyHNiBDng2ie4UuIUbA6SRXUGEo1B3C0xzz3MZWe/pUC+2y0l9yJKrmXw
Q7xlGCOC8pPwXlUuDny/uGwS/YMw2b+fOoouzLC/aNmitufsSKcFh2uiX5St4KRc
P+lD1Z+JitnF6War95og5CYtlUDGJiHsuzLdDEjK/Z4uxDpVYjJ+HFQ0g8bVkprA
rVuwDMX4b4xQ9sMhZAh6tWHqzyRQWsh5rkDA2jJl/tqjL9UMCZNO0unHRWPTcs0l
FwPHB4XUA2vOU8uV/sdl1MBGK1KunshoZaqHyDFZuE8VpunpBJykt1XLrnXLDwTk
UQD+/tOs7CKRZeZhkrauFLWLLcHa40CtoSkDZF1p72llvhVpXnyZLBMkNl4rHCBG
DP3ar9i3dcAN1LP7/9O+
=7afS
-END PGP SIGNATURE End Message ---


Bug#689769: marked as done (Ample ships a /var/run/ample folder: Policy 9.3.2)

2012-12-10 Thread Debian Bug Tracking System
Your message dated Mon, 10 Dec 2012 12:02:28 +
with message-id 
and subject line Bug#689769: fixed in ample 0.5.7-7
has caused the Debian Bug report #689769,
regarding Ample ships a /var/run/ample folder: Policy 9.3.2
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
689769: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=689769
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: ample
Version: 0.5.7-6
Severity: serious

/var/run may be a temporary filesystem, so any directories or files needed
/there must be created dynamically at boot time.

Refer to Debian Policy Manual section 9.3.2 (Writing the scripts) for
details.

Cheers,

Thomas Goirand (zigo)
--- End Message ---
--- Begin Message ---
Source: ample
Source-Version: 0.5.7-7

We believe that the bug you reported is fixed in the latest version of
ample, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 689...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Michael Stapelberg  (supplier of updated ample package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 04 Dec 2012 22:05:44 +0100
Source: ample
Binary: ample
Architecture: source amd64
Version: 0.5.7-7
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group 
Changed-By: Michael Stapelberg 
Description: 
 ample  - A simple MP3 server easy to use
Closes: 689769
Changes: 
 ample (0.5.7-7) unstable; urgency=low
 .
   * QA upload.
   * Move pidfile to /var/run/ample.pid (Closes: #689769)
   * Drop privileges in ample, not with start-stop-daemon, so that pidfile can
 be created without being owned by nobody:nogroup.
Checksums-Sha1: 
 206b82828934da5151573d4d83a675b84bae981b 1692 ample_0.5.7-7.dsc
 ed63405d8f12d3c6d5e84f3dfa93523760e09eef 7980 ample_0.5.7-7.diff.gz
 31a3c185e27cc380cf3a28440e24105818514a7d 42970 ample_0.5.7-7_amd64.deb
Checksums-Sha256: 
 eb2d24a86421280972f959863053f739030eb4c658f3f35a31e29ad18a6caa12 1692 
ample_0.5.7-7.dsc
 b18cfd59de20c4fe305a117ab91378279d266faec960171acd2f7c7d178b732e 7980 
ample_0.5.7-7.diff.gz
 e071c04d0b47564529870cafa7f2f8c296ee6f43b31f6b34e4fc3e36c5a2a1b8 42970 
ample_0.5.7-7_amd64.deb
Files: 
 c3f4ce276716b169b56ceffa0403c7fe 1692 sound optional ample_0.5.7-7.dsc
 1d07e16e768d093972a7aa498b9d26f2 7980 sound optional ample_0.5.7-7.diff.gz
 4fd09f264c968a6406a099e00220c27c 42970 sound optional ample_0.5.7-7_amd64.deb

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

iQIcBAEBCgAGBQJQvmeBAAoJEE5xYO1KyO4dd4MP/ik3xohivb1pvypUZUkpsWME
/ueYz6fBfe8VQIHxPZ/L5WWnTF9N6csYuPYty943S+2ZxK5k1lKv8U5978CjVspZ
yUYQUY1YmMxa27bKFZkXmof10EtxDypjsoH9aEeLmjTLRwi5lQfUv06dmjuEfsM0
jbABeejqPxNAZ5xUrDebcb+nebeV/MqiJ/lvolOrdqiWpkt6SNSYvmBBYJXnnN5e
oYC9pvfFnHiAmwxlbi3WiexX2Vez4P7MXHImZ+WwXvFTO8nnQZVJ0/qvrOCVdpk2
Hk/bHaQbqGRptTemyS9C/5eDwJJUNfc/jMdL8JreTvH9WplZiUBT6XC8YOgsOCFU
Vl2IAm42/OFYzNLDCMMKH0MCzavLQJ6hTnQfO1aMh0B2BaMAl/9WfQ3JAB7A2S2g
bLcID46yz6uqSEW1wzbPIMC0tBKTr2urNbdEp9dYuYrwbIArOBGS5a9QUrpwLUfF
jMNWoDliUJEFF11qwYgTSrjDbORVkWwOH++Fm2GKX9NShisoTx3gDW3gQmDXFpNp
qIvCG9lWWWovsjLpOw3CNJyiu6VjgpcszlgVFRyXVQYMl2hiMc+y5rGyam7RtJXj
QZ9+n6b87mQS5atqst6mC3JFTQ3BVMQFK4547xJ6Ek9CZ3X81LE0/HaY8jR1meye
LJXGL0pmGfC4tV3j5ThV
=eNhs
-END PGP SIGNATURE End Message ---


Bug#695579: scolasync: missing dependency on udisks

2012-12-10 Thread Jakub Wilk

Package: scolasync
Version: 4.0-1
Severity: serious
Justification: Policy 3.5

If udisks is not installed, scolasync doesn't start:
| $ scolasync
| Traceback (most recent call last):
|   File "/usr/lib/python3/dist-packages/dbus/bus.py", line 175, in 
activate_name_owner
| return self.get_name_owner(bus_name)
|   File "/usr/lib/python3/dist-packages/dbus/bus.py", line 361, in 
get_name_owner
| 's', (bus_name,), **keywords)
|   File "/usr/lib/python3/dist-packages/dbus/connection.py", line 651, in 
call_blocking
| message, timeout)
| dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NameHasNoOwner: 
Could not get owner of name 'org.freedesktop.UDisks': no such name
|
| During handling of the above exception, another exception occurred:
|
| Traceback (most recent call last):
|   File "/usr/bin/scolasync", line 7, in 
| scolasync.run()
|   File "/usr/share/scolasync/scolasync.py", line 182, in run
| import mainWindow
|   File "/usr/share/scolasync/mainWindow.py", line 41, in 
| qApp.diskData=ownedUsbDisk.Available(True,access="firstFat")
|   File "/usr/share/scolasync/ownedUsbDisk.py", line 238, in __init__
| usbDisk.Available.__init__(self, checkable, access, diskClass, diskDict)
|   File "/usr/share/scolasync/usbDisk.py", line 368, in __init__
| "/org/freedesktop/UDisks")
|   File "/usr/lib/python3/dist-packages/dbus/bus.py", line 241, in get_object
| follow_name_owner_changes=follow_name_owner_changes)
|   File "/usr/lib/python3/dist-packages/dbus/proxies.py", line 248, in __init__
| self._named_service = conn.activate_name_owner(bus_name)
|   File "/usr/lib/python3/dist-packages/dbus/bus.py", line 180, in 
activate_name_owner
| self.start_service_by_name(bus_name)
|   File "/usr/lib/python3/dist-packages/dbus/bus.py", line 278, in 
start_service_by_name
| 'su', (bus_name, flags)))
|   File "/usr/lib/python3/dist-packages/dbus/connection.py", line 651, in 
call_blocking
| message, timeout)
| dbus.exceptions.DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The 
name org.freedesktop.UDisks was not provided by any .service files

--
Jakub Wilk


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



Bug#695576: scolasync: missing dependency on python3-dbus.mainloop.qt

2012-12-10 Thread Jakub Wilk

Package: scolasync
Version: 4.0-1
Severity: serious
Justification: Policy 3.5

If python3-dbus.mainloop.qt is not installed, scolasync doesn't start:
| $ scolasync
| Traceback (most recent call last):
|   File "/usr/bin/scolasync", line 7, in 
| scolasync.run()
|   File "/usr/share/scolasync/scolasync.py", line 155, in run
| from dbus.mainloop.qt import DBusQtMainLoop
| ImportError: No module named qt

--
Jakub Wilk


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



Processed: Re: 668740 not release critical

2012-12-10 Thread Debian Bug Tracking System
Processing control commands:

> severity -1 serious
Bug #668740 [dsc-statistics-collector,dsc-statistics-presenter] 
dsc-statistics-{collector, presenter}: creates system user in /home
Severity set to 'serious' from 'important'

-- 
668740: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=668740
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#695572: python-pushy: missing dependency on python

2012-12-10 Thread Jakub Wilk

Package: python-pushy
Version: 0.5.1-1
Severity: serious
Justification: Policy 3.5

python-pushy doesn't depend on python.

I see you build-depend on python-support, which would generate the 
${python:Depends} variable for you, but your debian/rules doesn't call 
dh_pysupport.


--
Jakub Wilk


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



Processed: severity of 695571 is important

2012-12-10 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # non-regression FTBFS bugs are not severity serious
> severity 695571 important
Bug #695571 [lierolibre] FTBFS everywhere except on amd64 and i386
Severity set to 'important' from 'serious'
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
695571: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=695571
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#695571: FTBFS everywhere except on amd64 and i386

2012-12-10 Thread Tobias Hansen

Package: lierolibre
Version: 0.5-1
Severity: serious

lierolibre FTBFS everywhere except on amd64 and i386. See 
https://buildd.debian.org/status/package.php?p=lierolibre


Best regards,
Tobias Hansen


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



Bug#694024: marked as done (Don't print the file name if only one file is grepped)

2012-12-10 Thread Debian Bug Tracking System
Your message dated Mon, 10 Dec 2012 10:32:56 +
with message-id 
and subject line Bug#694024: fixed in zutils 0.9-6
has caused the Debian Bug report #694024,
regarding Don't print the file name if only one file is grepped
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
694024: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=694024
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: apt-file
Version: 2.5.1
Severity: important

This bug needs to be fixed in wheezy, apt-file spews paths to the
Contents files amongst the results (it happens for both show/search):

pabs@chianamo ~ $ apt-file search apt-file
aide-common: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_testing_main_Contents-amd64.gz:usr/share/aide/config/aide/aide.conf.d/31_aide_apt-file
aide-common: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_unstable_main_Contents-amd64.gz:usr/share/aide/config/aide/aide.conf.d/31_aide_apt-file
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_testing_main_Contents-amd64.gz:etc/apt/apt-file.conf
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_testing_main_Contents-amd64.gz:etc/bash_completion.d/apt-file
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_testing_main_Contents-amd64.gz:usr/bin/apt-file
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_testing_main_Contents-amd64.gz:usr/bin/diffindex-download
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_testing_main_Contents-amd64.gz:usr/bin/diffindex-rred
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_testing_main_Contents-amd64.gz:usr/bin/rapt-file
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_testing_main_Contents-amd64.gz:usr/share/apt-file/apt-file-update.update-notifier
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_testing_main_Contents-amd64.gz:usr/share/apt-file/do-apt-file-update
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_testing_main_Contents-amd64.gz:usr/share/apt-file/is-cache-empty
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_testing_main_Contents-amd64.gz:usr/share/doc/apt-file/README
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_testing_main_Contents-amd64.gz:usr/share/doc/apt-file/changelog.gz
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_testing_main_Contents-amd64.gz:usr/share/doc/apt-file/copyright
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_testing_main_Contents-amd64.gz:usr/share/man/man1/apt-file.1.gz
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_testing_main_Contents-amd64.gz:usr/share/man/man1/diffindex-download.1.gz
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_testing_main_Contents-amd64.gz:usr/share/man/man1/diffindex-rred.1.gz
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_testing_main_Contents-amd64.gz:usr/share/man/man1/rapt-file.1.gz
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_unstable_main_Contents-amd64.gz:etc/apt/apt-file.conf
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_unstable_main_Contents-amd64.gz:etc/bash_completion.d/apt-file
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_unstable_main_Contents-amd64.gz:usr/bin/apt-file
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_unstable_main_Contents-amd64.gz:usr/bin/diffindex-download
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_unstable_main_Contents-amd64.gz:usr/bin/diffindex-rred
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_unstable_main_Contents-amd64.gz:usr/bin/rapt-file
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_unstable_main_Contents-amd64.gz:usr/share/apt-file/apt-file-update.update-notifier
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_unstable_main_Contents-amd64.gz:usr/share/apt-file/do-apt-file-update
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_unstable_main_Contents-amd64.gz:usr/share/apt-file/is-cache-empty
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_unstable_main_Contents-amd64.gz:usr/share/doc/apt-file/README
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_unstable_main_Contents-amd64.gz:usr/share/doc/apt-file/changelog.gz
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_unstable_main_Contents-amd64.gz:usr/share/doc/apt-file/copyright
apt-file: 
//var/cache/apt/apt-file/http.debian.net_debian_dists_unstab

Bug#642750: [PATCH] epiphany-browser: *HIGHLY* unstable on ia64, (IA-64/IPF/Itanium) platform

2012-12-10 Thread Gustavo Noronha Silva
Hey,

On Sex, 2012-12-07 at 21:58 +0100, Stephan Schreiber wrote:
> So here is a new set of patches:
> 01-ia64-wide-ptr.patch at first,
> 02-ia64-use-system-malloc.patch at next.
> 
> The patches are for the most recent libwebkitgtk-3.0-0 package of Wheezy.
> The patches don't change anything on archs other than ia64.

Thanks for the patches! I will include them in my next upload, do you
mind proposing them upstream, though? I don't feel like I know enough of
this bit of the code to propose them myself.

See http://www.webkit.org/coding/contributing.html

Cheers,

-- 
Gustavo Noronha Silva 
Debian


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



Processed: your mail

2012-12-10 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 691169 serious
Bug #691169 [virtualbox-dkms] virtualbox-dkms: fails to build kernel-module 
with kernel 3.6.3
Severity set to 'serious' from 'important'
> tag 691169 experimental
Bug #691169 [virtualbox-dkms] virtualbox-dkms: fails to build kernel-module 
with kernel 3.6.3
Added tag(s) experimental.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
691169: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=691169
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Processed: tagging 695268

2012-12-10 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 695268 + patch
Bug #695268 [liblockfile1] liblockfile1: harmful remove action in M-A:same 
package
Added tag(s) patch.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
695268: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=695268
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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