Processed: Re: Processed: Re: Bug#608451 closed by Dmitry E. Oboukhov un...@debian.org (Re: Processed: notfixed 608451 in 0.2.11-1, reopening 608451)

2011-01-11 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 608451 important
Bug #608451 [rtpg-www] rtpg-www modifies conffile in postinst/postrm
Severity set to 'important' from 'serious'

 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
608451: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=608451
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#609506: [ovs-dev] Bug#609506: [Y2011 3/3] tests: Fix Y2011 bug in testsuite.

2011-01-11 Thread Justin Pettit
[Our mailing list server got stuck earlier today, and it appears to be 
dribbling out queued messages from earlier.]

As I mentioned out of band, this series looks good.  And you pushed it...

--Justin


On Jan 10, 2011, at 12:54 PM, Ben Pfaff wrote:

 The tests have been failing for a few days now, because the PKI expired a
 few days into 2011.  This commit instead generates the PKI at make check
 time, which has the additional benefit of getting some test exposure for
 the ovs-pki program.
 
 Reported-by: Aaron M. Ucko u...@debian.org
 CC: 609...@bugs.debian.org
 ---
 AUTHORS|1 +
 Makefile.am|7 +++-
 README |2 +-
 tests/automake.mk  |   44 ++-
 tests/ovsdb-server.at  |4 +-
 tests/testpki-cacert.pem   |   70 
 tests/testpki-cert.pem |   70 
 tests/testpki-cert2.pem|   70 
 tests/testpki-privkey.pem  |   27 -
 tests/testpki-privkey2.pem |   27 -
 tests/testpki-req.pem  |   63 ---
 tests/testpki-req2.pem |   63 ---
 tests/vconn.at |2 +-
 13 files changed, 46 insertions(+), 404 deletions(-)
 delete mode 100644 tests/testpki-cacert.pem
 delete mode 100644 tests/testpki-cert.pem
 delete mode 100644 tests/testpki-cert2.pem
 delete mode 100644 tests/testpki-privkey.pem
 delete mode 100644 tests/testpki-privkey2.pem
 delete mode 100644 tests/testpki-req.pem
 delete mode 100644 tests/testpki-req2.pem
 
 diff --git a/AUTHORS b/AUTHORS
 index 3eb47a4..c57d43b 100644
 --- a/AUTHORS
 +++ b/AUTHORS
 @@ -36,6 +36,7 @@ Yu Zhiguo   y...@cn.fujitsu.com
 The following additional people are mentioned in commit logs as having
 provided helpful bug reports or suggestions.
 
 +Aaron M. Ucko   u...@debian.org
 Alexey I. Froloff   ra...@altlinux.org
 Brad Hall   b...@nicira.com
 Brandon Heller  brand...@stanford.edu
 diff --git a/Makefile.am b/Makefile.am
 index eef8eb6..689fd6c 100644
 --- a/Makefile.am
 +++ b/Makefile.am
 @@ -1,4 +1,4 @@
 -# Copyright (C) 2007, 2008, 2009, 2010 Nicira Networks, Inc.
 +# Copyright (C) 2007, 2008, 2009, 2010, 2011 Nicira Networks, Inc.
 #
 # Copying and distribution of this file, with or without modification,
 # are permitted in any medium without royalty provided the copyright
 @@ -27,6 +27,7 @@ endif
 ALL_LOCAL =
 BUILT_SOURCES =
 CLEANFILES =
 +CLEAN_LOCAL =
 DISTCLEANFILES =
 EXTRA_DIST = \
   CodingStyle \
 @@ -60,6 +61,7 @@ noinst_PROGRAMS =
 noinst_SCRIPTS =
 OVSIDL_BUILT =
 SUFFIXES =
 +check_DATA =
 
 # This ensures that files added to EXTRA_DIST are always distributed,
 # even if they are inside an Automake if...endif conditional block that is
 @@ -124,7 +126,8 @@ CLEANFILES += distfiles
 
 dist-hook: $(DIST_HOOKS)
 all-local: $(ALL_LOCAL)
 -.PHONY: $(DIST_HOOKS)
 +clean-local: $(CLEAN_LOCAL)
 +.PHONY: $(DIST_HOOKS) $(CLEAN_LOCAL)
 
 include lib/automake.mk
 include ofproto/automake.mk
 diff --git a/README b/README
 index 16f2ee6..114878d 100644
 --- a/README
 +++ b/README
 @@ -104,7 +104,7 @@ INSTALL.KVM.
 To install Open vSwitch without using a kernel module, read
 INSTALL.userspace.
 
 -To learn set up SSL support for Open vSwitch, read INSTALL.SSL.
 +To learn how to set up SSL support for Open vSwitch, read INSTALL.SSL.
 
 Each Open vSwitch userspace program is accompanied by a manpage.  Many
 of the manpages are customized to your configuration as part of the
 diff --git a/tests/automake.mk b/tests/automake.mk
 index c50b62e..0098c20 100644
 --- a/tests/automake.mk
 +++ b/tests/automake.mk
 @@ -281,14 +281,6 @@ tests_test_uuid_LDADD = lib/libopenvswitch.a
 noinst_PROGRAMS += tests/test-vconn
 tests_test_vconn_SOURCES = tests/test-vconn.c
 tests_test_vconn_LDADD = lib/libopenvswitch.a $(SSL_LIBS)
 -EXTRA_DIST += \
 - tests/testpki-cacert.pem \
 - tests/testpki-cert.pem \
 - tests/testpki-cert2.pem \
 - tests/testpki-privkey.pem \
 - tests/testpki-privkey2.pem \
 - tests/testpki-req.pem \
 - tests/testpki-req2.pem
 
 noinst_PROGRAMS += tests/test-byte-order
 tests_test_byte_order_SOURCES = tests/test-byte-order.c
 @@ -301,3 +293,39 @@ EXTRA_DIST += \
   tests/test-jsonrpc.py \
   tests/test-ovsdb.py \
   tests/test-reconnect.py
 +
 +if HAVE_OPENSSL
 +TESTPKI_FILES = \
 + tests/testpki-cacert.pem \
 + tests/testpki-cert.pem \
 + tests/testpki-privkey.pem \
 + tests/testpki-req.pem \
 + tests/testpki-cert2.pem \
 + tests/testpki-privkey2.pem \
 + tests/testpki-req2.pem
 +check_DATA += $(TESTPKI_FILES)
 +CLEANFILES += $(TESTPKI_FILES)
 +
 +tests/testpki-cacert.pem: tests/pki/stamp; cp tests/pki/switchca/cacert.pem 
 $@
 +tests/testpki-cert.pem: tests/pki/stamp; cp tests/pki/test-cert.pem $@
 

Bug#609624: console-setup: Broken Greek translation

2011-01-11 Thread Christian PERRIER
Quoting Cyril Brulebois (k...@debian.org):
 Package: console-setup
 Version: 1.67
 Severity: serious
 Tags: d-i
 Justification: Breaks d-i in Greek
 
 Hi,
 
 the Greek translation update in #604145 seems to have broken the
 graphical installer in Greek for rc1, while it was working fine for
 beta2. One can suspect the us-ascii encoding in the attached file
 (which should be changed through ^E in mutt, s/us-ascii/utf-8/, before
 saving the file).
 
 Currently, all what users get is a bunch of questions marks.
 
 (Opening the .po shows them quite clearly, no need to boot the installer
 to check that.)
 
 In that other bug, Christian was asking for a tiny update to that file,
 I'm putting both Emmanuel and Christian in copy accordingly.


Here's the file, resynced with the current POT file, and using the
correct encoding.



I also corrected the Last-Translator and Language-Team fields.




el.po
Description: application/gettext


signature.asc
Description: Digital signature


Bug#609624: console-setup: Broken Greek translation

2011-01-11 Thread Julien Cristau
On Tue, Jan 11, 2011 at 06:47:47 +0100, Christian PERRIER wrote:

 Quoting Cyril Brulebois (k...@debian.org):
  Package: console-setup
  Version: 1.67
  Severity: serious
  Tags: d-i
  Justification: Breaks d-i in Greek
  
  Hi,
  
  the Greek translation update in #604145 seems to have broken the
  graphical installer in Greek for rc1, while it was working fine for
  beta2. One can suspect the us-ascii encoding in the attached file
  (which should be changed through ^E in mutt, s/us-ascii/utf-8/, before
  saving the file).
 
 Crap. Yet another victim of this bug in mutt (I guess this is a bug in
 mutt, I'm not sure of this), which I try to avoid the exact same way
 you describe.
 
Yes, it's #537061.  Which IMO should get fixed in sid and squeeze, not
just experimental...

Cheers,
Julien


signature.asc
Description: Digital signature


Processed: Re: lsb-release: /usr/share/pyshared/lsb_release.py in Squeeze is missing the mapping from '6.0' to 'squeeze'

2011-01-11 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 609325 serious
Bug #609325 [lsb-release] lsb-release: /usr/share/pyshared/lsb_release.py in 
Squeeze is missing the mapping from '6.0' to 'squeeze'
Bug #609596 [lsb-release] lsb-release
Severity set to 'serious' from 'important'

Severity set to 'serious' from 'important'

 affects 609325 gnome-system-monitor
Bug #609325 [lsb-release] lsb-release: /usr/share/pyshared/lsb_release.py in 
Squeeze is missing the mapping from '6.0' to 'squeeze'
Bug #609596 [lsb-release] lsb-release
Added indication that 609325 affects gnome-system-monitor
Added indication that 609596 affects gnome-system-monitor
 tags 609325 patch
Bug #609325 [lsb-release] lsb-release: /usr/share/pyshared/lsb_release.py in 
Squeeze is missing the mapping from '6.0' to 'squeeze'
Bug #609596 [lsb-release] lsb-release
Added tag(s) patch.
Added tag(s) patch.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
609325: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609325
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#609604: auto-multiple-choice: incompatible licenses: GPL-3+/GPL-2

2011-01-11 Thread Georges Khaznadar
Jakub Wilk a écrit :
 Package: auto-multiple-choice
 Version: 0.355-1
 Severity: serious
 
 auto-multiple-choice is licensed under GPLv3+, but it is linked to
 poppler which is GPLv2-only. These two licenses are incompatible.

Thank you for pointing this out, Jakub!

As far as I can imagine, here are the choices:
- drop the dependency on libpoppler-dev
- change auto-multiple-choice's license to GPL2+

If there is some other choice, please give me a hint.

Best regards,   Georges.



signature.asc
Description: Digital signature


Bug#609624: console-setup: Broken Greek translation

2011-01-11 Thread Julien Cristau
On Tue, Jan 11, 2011 at 06:58:39 +0100, Christian PERRIER wrote:

 Here's the file, resynced with the current POT file, and using the
 correct encoding.
 
Thanks.  Should I take care of an upload?

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#609336: [pgdesigner] pgdesigner crashes with a CApp.MenuProjectUpdate.1435: #29: Invalid object error on new project.

2011-01-11 Thread Pierre Chifflier
On 01/10/2011 12:06 PM, Julien Cristau wrote:
 user release.debian@packages.debian.org
 usertag 609336 squeeze-will-remove
 kthxbye
 
 On Sun, Jan  9, 2011 at 01:13:56 +0800, Paolo Scarabelli wrote:
 
 Package: pgdesigner
 Version: 1.2.17-1
 Severity: grave

 --- Please enter the report below this line. ---

 I just installed pgdesigner but it's unusable in my system. It keeps
 crashing whenever I try to open a project, create a new project or
 import from db (I didn't try other menu items/buttons).

 Confirmed; I'll remove the package from testing in a few days if this is
 not fixed.

Hi,

I'm currently trying to backport the fix from the svn repository.
Please wait a few days before removing the package

BR,
Pierre



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



Bug#609624: Bug#537061: Bug#609624: console-setup: Broken Greek translation

2011-01-11 Thread Antonio Radici
On Tue, Jan 11, 2011 at 09:20:41AM +0100, Julien Cristau wrote:
 On Tue, Jan 11, 2011 at 06:47:47 +0100, Christian PERRIER wrote:
 
  Quoting Cyril Brulebois (k...@debian.org):
  Crap. Yet another victim of this bug in mutt (I guess this is a bug in
  mutt, I'm not sure of this), which I try to avoid the exact same way
  you describe.
  
 Yes, it's #537061.  Which IMO should get fixed in sid and squeeze, not
 just experimental...

Please reopen the bug (or even a new one) and raise it to serious or
grave and I'll prepare the upload and ask for an exception.

Cheers
Antonio



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



Bug#609624: Bug#537061: Bug#609624: console-setup: Broken Greek translation

2011-01-11 Thread Julien Cristau
On Tue, Jan 11, 2011 at 09:20:20 +, Antonio Radici wrote:

 On Tue, Jan 11, 2011 at 09:20:41AM +0100, Julien Cristau wrote:
  On Tue, Jan 11, 2011 at 06:47:47 +0100, Christian PERRIER wrote:
  
   Quoting Cyril Brulebois (k...@debian.org):
   Crap. Yet another victim of this bug in mutt (I guess this is a bug in
   mutt, I'm not sure of this), which I try to avoid the exact same way
   you describe.
   
  Yes, it's #537061.  Which IMO should get fixed in sid and squeeze, not
  just experimental...
 
 Please reopen the bug (or even a new one) and raise it to serious or
 grave and I'll prepare the upload and ask for an exception.
 
Severity bumped to grave, I don't think reopening is necessary, version
tracking takes care of things.

Thanks,
Julien


signature.asc
Description: Digital signature


Processed: severity of 537061 is grave

2011-01-11 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 537061 grave
Bug #537061 {Done: Antonio Radici anto...@dyne.org} [mutt] /usr/bin/mutt: 
saved attachements modified by mutt because of recoding
Bug #595471 {Done: Antonio Radici anto...@dyne.org} [mutt] mutt: wrong 
charset in saved html attachmant
Severity set to 'grave' from 'important'

Severity set to 'grave' from 'important'

 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
537061: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=537061
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 609612 is normal

2011-01-11 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 609612 normal
Bug #609612 [bgoffice-computer-terms] bgoffice-computer-terms: invalid 
maintainer address
Severity set to 'normal' from 'serious'

 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
609612: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609612
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#609624: console-setup: Broken Greek translation

2011-01-11 Thread Julien Cristau
On Tue, Jan 11, 2011 at 02:24:23 +0100, Cyril Brulebois wrote:

 Package: console-setup
 Version: 1.67
 Severity: serious
 Tags: d-i
 Justification: Breaks d-i in Greek
 
 Hi,
 
 the Greek translation update in #604145 seems to have broken the
 graphical installer in Greek for rc1, while it was working fine for
 beta2. One can suspect the us-ascii encoding in the attached file
 (which should be changed through ^E in mutt, s/us-ascii/utf-8/, before
 saving the file).
 
 Currently, all what users get is a bunch of questions marks.
 
Looks like it's not just Greek.

$ grep -c '??' debian/po/*|grep -v :0
debian/po/fa.po:122
debian/po/he.po:47
debian/po/is.po:118
debian/po/pa.po:162
debian/po/zh_TW.po:170

Christian, do you have all those original files?  Otherwise I'll try and
dig up the bug reports.

Cheers,
Julien


signature.asc
Description: Digital signature


Processed: Re: [DebianGIS-dev] qgis_1.4.0+12730-3.1_i386.changes ACCEPTED into unstable

2011-01-11 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 found 603986 1.4.0+12730-3.1
Bug #603986 {Done: Hideki Yamane henr...@debian.org} [qgis] qgis crashes on 
startup on PowerPC
Bug Marked as found in versions qgis/1.4.0+12730-3.1; no longer marked as fixed 
in versions qgis/1.4.0+12730-3.1 and reopened.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
603986: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=603986
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#609619: marked as done (schroot: FTBFS on kfreebsd-*: dchroot-dsa-session.cc:36:23: error: uuid/uuid.h: No such file or directory)

2011-01-11 Thread Debian Bug Tracking System
Your message dated Tue, 11 Jan 2011 10:02:27 +
with message-id e1pcb3b-0004h2...@franck.debian.org
and subject line Bug#609619: fixed in schroot 1.4.19-1
has caused the Debian Bug report #609619,
regarding schroot: FTBFS on kfreebsd-*: dchroot-dsa-session.cc:36:23: error: 
uuid/uuid.h: No such file or directory
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.)


-- 
609619: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609619
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: schroot
Version: 1.4.18-1
Severity: serious
Justification: FTBFS

Hi,

your package no longer builds on kfreebsd-*:
|   CXXdchroot-dsa-session.o
| ../../../../bin/dchroot-dsa/dchroot-dsa-session.cc:36:23: error: uuid/uuid.h: 
No such file or directory
| make[4]: *** [dchroot-dsa-session.o] Error 1

Full build logs:
  https://buildd.debian.org/status/package.php?p=schroot

KiBi.


---End Message---
---BeginMessage---
Source: schroot
Source-Version: 1.4.19-1

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

dchroot-dsa_1.4.19-1_amd64.deb
  to main/s/schroot/dchroot-dsa_1.4.19-1_amd64.deb
dchroot_1.4.19-1_amd64.deb
  to main/s/schroot/dchroot_1.4.19-1_amd64.deb
libsbuild-dev_1.4.19-1_amd64.deb
  to main/s/schroot/libsbuild-dev_1.4.19-1_amd64.deb
libsbuild-doc_1.4.19-1_all.deb
  to main/s/schroot/libsbuild-doc_1.4.19-1_all.deb
schroot-common_1.4.19-1_all.deb
  to main/s/schroot/schroot-common_1.4.19-1_all.deb
schroot-dbg_1.4.19-1_amd64.deb
  to main/s/schroot/schroot-dbg_1.4.19-1_amd64.deb
schroot_1.4.19-1.debian.tar.gz
  to main/s/schroot/schroot_1.4.19-1.debian.tar.gz
schroot_1.4.19-1.dsc
  to main/s/schroot/schroot_1.4.19-1.dsc
schroot_1.4.19-1_amd64.deb
  to main/s/schroot/schroot_1.4.19-1_amd64.deb
schroot_1.4.19.orig.tar.bz2
  to main/s/schroot/schroot_1.4.19.orig.tar.bz2



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 609...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Roger Leigh rle...@debian.org (supplier of updated schroot 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: RIPEMD160

Format: 1.8
Date: Tue, 11 Jan 2011 00:11:26 +
Source: schroot
Binary: schroot-common libsbuild-dev schroot-dbg libsbuild-doc schroot dchroot 
dchroot-dsa
Architecture: source all amd64
Version: 1.4.19-1
Distribution: unstable
Urgency: low
Maintainer: Debian buildd-tools Developers 
buildd-tools-de...@lists.alioth.debian.org
Changed-By: Roger Leigh rle...@debian.org
Description: 
 dchroot- Execute commands in a chroot environment
 dchroot-dsa - Execute commands in a chroot environment
 libsbuild-dev - development files for the Debian source builder
 libsbuild-doc - development documentation for the Debian source builder
 schroot- Execute commands in a chroot environment
 schroot-common - common files for schroot
 schroot-dbg - schroot, dchroot and dchroot-dsa debuggging symbols
Closes: 609619
Changes: 
 schroot (1.4.19-1) unstable; urgency=low
 .
   * New upstream stable release.
   * bin/dchroot-dsa/dchroot-dsa-session.cc: Don't include uuid/uuid.h.
 This isn't required and breaks building on kfreebsd where we don't
 build-depend on uuid-dev (Closes: #609619).
Checksums-Sha1: 
 4d866f3361837054630108d29081ad870cd4377e 1594 schroot_1.4.19-1.dsc
 1e9ba29dec1574311b16b72227b8c68ca3626fd6 789655 schroot_1.4.19.orig.tar.bz2
 fd28c4412d395fbae8f33b80c02690140a799838 23319 schroot_1.4.19-1.debian.tar.gz
 df44d850cf91c96640c8372ddb00a840d5215329 249956 schroot-common_1.4.19-1_all.deb
 7361326083535c55c0935d59603c902a5582fa40 7236572 libsbuild-doc_1.4.19-1_all.deb
 e8dfe81cb8119bb3f3609d254f86eaefc601825d 1854942 
libsbuild-dev_1.4.19-1_amd64.deb
 84a8a47202500860af8507eb3b1e6430c91fc7de 16472568 
schroot-dbg_1.4.19-1_amd64.deb
 5a022fc14e965b43caf521850221c6c4fa35800d 917184 schroot_1.4.19-1_amd64.deb
 1b3d4fc8fd87dafa3b90d6f2bb03fd14e3e525a4 402450 dchroot_1.4.19-1_amd64.deb
 18089af2317109f55ca34a683cb074e4b4752ae3 402270 dchroot-dsa_1.4.19-1_amd64.deb
Checksums-Sha256: 
 6b0f8e0ea9b68b42a7e22f1f4057cd4f89362561aa0ce3f812c4aaba72f7b29e 1594 
schroot_1.4.19-1.dsc
 

Processed: your mail

2011-01-11 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 fixed 602865 php5/5.3.1-4
Bug #602865 [php-pear] upgrading from Lenny breaks php-pear setup
Bug Marked as fixed in versions php5/5.3.1-4.
 thank you
Stopping processing here.

Please contact me if you need assistance.
-- 
602865: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=602865
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#609624: console-setup: Broken Greek translation

2011-01-11 Thread Julien Cristau
On Tue, Jan 11, 2011 at 10:58:11 +0100, Julien Cristau wrote:

 On Tue, Jan 11, 2011 at 02:24:23 +0100, Cyril Brulebois wrote:
 
  Package: console-setup
  Version: 1.67
  Severity: serious
  Tags: d-i
  Justification: Breaks d-i in Greek
  
  Hi,
  
  the Greek translation update in #604145 seems to have broken the
  graphical installer in Greek for rc1, while it was working fine for
  beta2. One can suspect the us-ascii encoding in the attached file
  (which should be changed through ^E in mutt, s/us-ascii/utf-8/, before
  saving the file).
  
  Currently, all what users get is a bunch of questions marks.
  
 Looks like it's not just Greek.
 
And it's not just console-setup, either.  Though that seems to have
gathered the worst of it.  http://paste.debian.net/104282/

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#607626: marked as done (Includes binary-only and obfuscated C code)

2011-01-11 Thread Debian Bug Tracking System
Your message dated Tue, 11 Jan 2011 11:26:49 +0100 (CET)
with message-id pine.lnx.4.62.110125200.12...@sci.felk.cvut.cz
and subject line Includes binary-only and obfuscated C code
has caused the Debian Bug report #607626,
regarding Includes binary-only and obfuscated C code
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.)


-- 
607626: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=607626
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: kfreebsd-8
Version: 8.1-5
Severity: serious

The following C files contain firmware images in binary-equivalent form
but are not obviously accompanied by the corresponding source code:

sys/contrib/dev/ral/rt2661_ucode.h
- binaries are packaged in firmware-ralink as /lib/firmware/ralink/rt2?6*.bin

sys/gnu/dev/sound/pci/csaimg.h
- not packaged; not distributable since the stated licence is GPL

sys/gnu/dev/sound/pci/maestro3_dsp.h 
- not packaged; not distributable since the stated licence is GPL

sys/dev/drm/mga_ucode.h
- binaries are packaged in firmware-linux-nonfree as /lib/firmware/matrox/*

sys/dev/drm/r128_cce.c
- binary is packaged in firmware-linux-nonfree as 
/lib/firmware/r128/r128_cce.bin

sys/dev/drm/r600_microcode.h
sys/dev/drm/radeon_microcode.h
- binaries are packaged in firmware-linux-nonfree as /lib/firmware/radeon/*

sys/dev/txp/3c990img.h
- binary is packaged in firmware-linux-nonfree as /lib/firmware/3com/typhoon.bin

sys/dev/fxp/rcvbundl.h
- binaries are packaged in firmware-linux-nonfree as /lib/firmware/e100/*

sys/dev/digi/*X*.h
- not packaged; distributable

sys/dev/sf/starfire_rx.h
sys/dev/sf/starfire_tx.h
- not packaged; maybe distributable

sys/dev/sn/ositech.h
- not packaged; distributable

sys/dev/sound/pci/ds1-fw.h
- not packaged; distributable

sys/dev/si/si2_z280.c
sys/dev/si/si3_t225.c
- not packaged; maybe distributable

sys/dev/cxgb/common/cxgb_ael1002.c
- binaries are packaged in firmware-linux-nonfree as 
/lib/firmware/cxgb3/ael*.bin

sys/dev/fatm/firmware.h
- not packaged; not distributable

sys/dev/cx/csigmafw.h
- not packaged; maybe distributable

sys/dev/bce/if_bcefw.h
- binaries are packaged in firmware-bnx2 as /lib/firmware/bnx2/bnx2/*.fw

sys/dev/usb/net/if_kuefw.h
- binaries are packaged in firmware-linux-nonfree as /lib/firmware/kaweth/*

sys/dev/usb/wlan/if_rumfw.h
- binary is packaged in firmware-ralink as /lib/firmware/ralink/rt73.bin

sys/dev/usb/wlan/if_zydfw.h
- not packaged; distributable

sys/dev/ti/ti_fw2.h
sys/dev/ti/ti_fw.h
- not packaged; maybe distributable

sys/dev/ctau/ctaue1fw.h
sys/dev/ctau/ctau2fw.h
sys/dev/ctau/ctaufw.h
sys/dev/ctau/ctaug7fw.h
- not packaged; maybe distributable

sys/dev/ispfw/asm_*.h
- binaries are packaged in firmware-qlogic as /lib/firmware/ql*_fw.bin

sys/dev/advansys/adwmcode.c
- binary is packaged in firmware-linux-nonfree as 
/lib/firmware/advansys/mcode.bin

As one of the maintainers of firmware-nonfree, I'm happy to cooperate
in adding any firmware images from FreeBSD that Debian can legally
distribute.

Additionally, these C files contain obfuscated code:

sys/dev/ce/tau32-ddk.c
sys/dev/cp/cpddk.c

Ben.

-- System Information:
Debian Release: squeeze/sid
  APT prefers proposed-updates
  APT policy: (500, 'proposed-updates'), (500, 'unstable'), (500, 'stable'), 
(1, 'experimental')
Architecture: i386 (x86_64)

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


---End Message---
---BeginMessage---

Version: 0.6

kfreebsd-kernel-di-i386 (0.6) unstable; urgency=low

  * Build against version 8.1+dfsg-7.1.

 -- Aurelien Jarno aure...@debian.org  Mon, 10 Jan 2011 15:45:56 +0100

kfreebsd-kernel-di-i386 (0.5) unstable; urgency=low

  * Build against version 8.1+dfsg-7 (closes: bug#607626).

 -- Aurelien Jarno aure...@debian.org  Mon, 20 Dec 2010 14:07:20 +0100


---End Message---


Bug#607627: marked as done (Includes binary-only and obfuscated C code)

2011-01-11 Thread Debian Bug Tracking System
Your message dated Tue, 11 Jan 2011 11:28:03 +0100 (CET)
with message-id pine.lnx.4.62.110126520.12...@sci.felk.cvut.cz
and subject line Includes binary-only and obfuscated C code
has caused the Debian Bug report #607627,
regarding Includes binary-only and obfuscated C code
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.)


-- 
607627: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=607627
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: kfreebsd-8
Version: 8.1-5
Severity: serious

The following C files contain firmware images in binary-equivalent form
but are not obviously accompanied by the corresponding source code:

sys/contrib/dev/ral/rt2661_ucode.h
- binaries are packaged in firmware-ralink as /lib/firmware/ralink/rt2?6*.bin

sys/gnu/dev/sound/pci/csaimg.h
- not packaged; not distributable since the stated licence is GPL

sys/gnu/dev/sound/pci/maestro3_dsp.h 
- not packaged; not distributable since the stated licence is GPL

sys/dev/drm/mga_ucode.h
- binaries are packaged in firmware-linux-nonfree as /lib/firmware/matrox/*

sys/dev/drm/r128_cce.c
- binary is packaged in firmware-linux-nonfree as 
/lib/firmware/r128/r128_cce.bin

sys/dev/drm/r600_microcode.h
sys/dev/drm/radeon_microcode.h
- binaries are packaged in firmware-linux-nonfree as /lib/firmware/radeon/*

sys/dev/txp/3c990img.h
- binary is packaged in firmware-linux-nonfree as /lib/firmware/3com/typhoon.bin

sys/dev/fxp/rcvbundl.h
- binaries are packaged in firmware-linux-nonfree as /lib/firmware/e100/*

sys/dev/digi/*X*.h
- not packaged; distributable

sys/dev/sf/starfire_rx.h
sys/dev/sf/starfire_tx.h
- not packaged; maybe distributable

sys/dev/sn/ositech.h
- not packaged; distributable

sys/dev/sound/pci/ds1-fw.h
- not packaged; distributable

sys/dev/si/si2_z280.c
sys/dev/si/si3_t225.c
- not packaged; maybe distributable

sys/dev/cxgb/common/cxgb_ael1002.c
- binaries are packaged in firmware-linux-nonfree as 
/lib/firmware/cxgb3/ael*.bin

sys/dev/fatm/firmware.h
- not packaged; not distributable

sys/dev/cx/csigmafw.h
- not packaged; maybe distributable

sys/dev/bce/if_bcefw.h
- binaries are packaged in firmware-bnx2 as /lib/firmware/bnx2/bnx2/*.fw

sys/dev/usb/net/if_kuefw.h
- binaries are packaged in firmware-linux-nonfree as /lib/firmware/kaweth/*

sys/dev/usb/wlan/if_rumfw.h
- binary is packaged in firmware-ralink as /lib/firmware/ralink/rt73.bin

sys/dev/usb/wlan/if_zydfw.h
- not packaged; distributable

sys/dev/ti/ti_fw2.h
sys/dev/ti/ti_fw.h
- not packaged; maybe distributable

sys/dev/ctau/ctaue1fw.h
sys/dev/ctau/ctau2fw.h
sys/dev/ctau/ctaufw.h
sys/dev/ctau/ctaug7fw.h
- not packaged; maybe distributable

sys/dev/ispfw/asm_*.h
- binaries are packaged in firmware-qlogic as /lib/firmware/ql*_fw.bin

sys/dev/advansys/adwmcode.c
- binary is packaged in firmware-linux-nonfree as 
/lib/firmware/advansys/mcode.bin

As one of the maintainers of firmware-nonfree, I'm happy to cooperate
in adding any firmware images from FreeBSD that Debian can legally
distribute.

Additionally, these C files contain obfuscated code:

sys/dev/ce/tau32-ddk.c
sys/dev/cp/cpddk.c

Ben.

-- System Information:
Debian Release: squeeze/sid
  APT prefers proposed-updates
  APT policy: (500, 'proposed-updates'), (500, 'unstable'), (500, 'stable'), 
(1, 'experimental')
Architecture: i386 (x86_64)

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


---End Message---
---BeginMessage---

Version: 0.6

kfreebsd-kernel-di-amd64 (0.6) unstable; urgency=low

  * Build against version 8.1+dfsg-7.1.

 -- Aurelien Jarno aure...@debian.org  Mon, 10 Jan 2011 15:30:04 +0100

kfreebsd-kernel-di-amd64 (0.5) unstable; urgency=low

  * Build against version 8.1+dfsg-7 (closes: bug#607627).

 -- Aurelien Jarno aure...@debian.org  Mon, 20 Dec 2010 13:49:12 +0100


---End Message---


Bug#609657: libreoffice-gcj: needs versioned dependency on gcj compat package

2011-01-11 Thread Lionel Elie Mamane
Package: libreoffice-gcj
Version: 1:3.3.0~rc2-3
Severity: serious
Justification: Policy 7.2

When libreoffice-gcj is installed, but the version of the
Java-RTE-like interface of gcj (package gcj-jre or java-gcj-compat)
that is installed is not the right one, and LibreOffice is configured
to use gcj, LibreOffice aborts as soon as it tries to use java with
error message:
 libgcj failure: gcj linkage error.


The dependency on gcj-jre / java-gcj-compat should thus be versioned
accordingly to ensure that a compatible version is installed.


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

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_LU.UTF-8, LC_CTYPE=fr_LU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libreoffice-gcj depends on:
ii  bsh-gcj2.0b4-12  Java scripting environment (BeanSh
ii  gcj-jre [java-gcj-comp 4:4.4.5-2 Java runtime environment using GIJ
ii  libc6  2.11.2-7  Embedded GNU C Library: Shared lib
ii  libgcc11:4.3.2-1.1   GCC support library
ii  libgcj-bc  4.4.5-2   Link time only library for use wit
ii  libgcj-common  1:4.4.5-2 Java runtime library (common files
ii  libhsqldb-java-gcj 1.8.0.10-9Java SQL database engine (native c
ii  libreoffice-core   1:3.3.0~rc2-3 office productivity suite -- arch-
ii  libreoffice-java-commo 1:3.3.0~rc2-3 office productivity suite -- arch-
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

libreoffice-gcj recommends no packages.

libreoffice-gcj suggests no packages.

Versions of packages libreoffice-core depends on:
ii  fontconfig 2.6.0-3   generic font configuration library
ii  libatk1.0-01.30.0-1  The ATK accessibility toolkit
ii  libc6  2.11.2-7  Embedded GNU C Library: Shared lib
ii  libcairo2  1.8.10-6  The Cairo 2D vector graphics libra
ii  libcurl3-gnutls7.18.2-8lenny4Multi-protocol file transfer libra
ii  libdb4.8   4.8.30-2  Berkeley v4.8 Database Libraries [
ii  libexpat1  2.0.1-4+lenny3XML parsing C library - runtime li
ii  libfontconfig1 2.8.0-2.1 generic font configuration library
ii  libfreetype6   2.3.7-2+lenny4FreeType 2 font engine, shared lib
ii  libgcc11:4.3.2-1.1   GCC support library
ii  libglib2.0-0   2.24.2-1  The GLib library of C routines
ii  libgraphite3   1:2.3.1-0.2   SILGraphite - a smart font rende
ii  libgstreamer-plugi 0.10.30-1 GStreamer libraries from the base
ii  libgstreamer0.10-0 0.10.30-1 Core GStreamer libraries and eleme
ii  libgtk2.0-02.20.1-2  The GTK+ graphical user interface 
ii  libhunspell-1.2-0  1.2.11-1  spell checker and morphological an
ii  libhyphen0 2.4-4 ALTLinux hyphenation library - sha
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libicu44   4.4.2-1   International Components for Unico
ii  libjpeg62  6b1-1 The Independent JPEG Group's JPEG 
ii  libmythes-1.2-02:1.2.1-1 simple thesaurus library
ii  libneon27-gnutls   0.29.3-3  An HTTP and WebDAV client library 
ii  libnspr4-0d4.8.6-1   NetScape Portable Runtime Library
ii  libnss3-1d 3.12.8-1  Network Security Service libraries
ii  libpango1.0-0  1.28.3-1  Layout and rendering of internatio
ii  libpng12-0 1.2.27-2+lenny4   PNG library - runtime
ii  librdf01.0.10-3  Redland Resource Description Frame
ii  libreoffice-common 1:3.3.0~rc2-3 office productivity suite -- arch-
ii  libsm6 2:1.0.3-2 X11 Session Management library
ii  libssl0.9.80.9.8o-2  SSL shared libraries
ii  libstdc++6 4.4.5-10  The GNU Standard C++ Library v3
ii  libx11-6   2:1.3.3-3 X11 client-side library
ii  libxaw72:1.0.4-2 X11 Athena Widget library
ii  libxext6   2:1.0.4-2 X11 miscellaneous extension librar
ii  libxinerama1   2:1.1-3   X11 Xinerama extension library
ii  libxml22.7.8.dfsg-1  GNOME XML library
ii  libxrandr2 2:1.3.0-3 X11 RandR extension library
ii  libxrender11:0.9.4-2 X Rendering Extension client libra
ii  libxslt1.1 1.1.26-6  XSLT 1.0 processing library - runt
ii  libxt6 1:1.0.5-3 X11 toolkit intrinsics library
ii  ttf-opensymbol 1:3.2.1-7 OpenSymbol TrueType font
ii  ure

Bug#609657: libreoffice-gcj: needs versioned dependency on gcj compat package

2011-01-11 Thread Rene Engelhard
On Tue, Jan 11, 2011 at 11:31:17AM +0100, Lionel Elie Mamane wrote:
 When libreoffice-gcj is installed, but the version of the
 Java-RTE-like interface of gcj (package gcj-jre or java-gcj-compat)
 that is installed is not the right one, and LibreOffice is configured
 to use gcj, LibreOffice aborts as soon as it tries to use java with
 error message:
  libgcj failure: gcj linkage error.
 
 
 The dependency on gcj-jre / java-gcj-compat should thus be versioned
 accordingly to ensure that a compatible version is installed.

That requires that gcj-jre (well, libgcj) has that info available and
wouldn't change it without notifiying maintainers of -gcj using packages.
It already has a .shlibs, why point to the libgcj-bc package, which *is*
in the dependencies, though: 

#

dep: libgcj-bc (= 4.4.5-1~)
Link time only library for use with gcj 

#

dep: libgcj-common (= 1:4.1.1-14)
Java runtime library (common files) 


Apparently that doesn't help much, and there's no other info.

I don't think having a strict dependency on the newest gcj is an option,
really? Besides that if you e.g. build with 4.4.4 and 4.4.5 breaks the stuff
(or 4.4.4-1 and 4.4.4-2 for that matter) a = 4.4.4-1 would still break.
And a strict = depends on gcj is even more nonsense..

I honestly don't see how this is fixable.

Grüße/Regards,

René
-- 
 .''`.  René Engelhard -- Debian GNU/Linux Developer
 : :' : http://www.debian.org | http://people.debian.org/~rene/
 `. `'  r...@debian.org | GnuPG-Key ID: D03E3E70
   `-   Fingerprint: E12D EA46 7506 70CF A960 801D 0AA0 4571 D03E 3E70



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



Bug#603986: marked as done (qgis crashes on startup on PowerPC)

2011-01-11 Thread Debian Bug Tracking System
Your message dated Tue, 11 Jan 2011 11:02:21 +
with message-id e1pcbzz-5r...@franck.debian.org
and subject line Bug#603986: fixed in qgis 1.4.0+12730-4
has caused the Debian Bug report #603986,
regarding qgis crashes on startup on PowerPC
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.)


-- 
603986: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=603986
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: qgis
Version: 1.4.0+12730-3+b2
Severity: grave
Justification: renders package unusable


qgis segfaults on startup.

(gdb) where
#0  0x0fda860c in ?? () from /usr/lib/libqgis_core.so.1.4.0
#1  0x0fda8e50 in ?? () from /usr/lib/libqgis_core.so.1.4.0
#2  0x0fdc2430 in ?? () from /usr/lib/libqgis_core.so.1.4.0
#3  0x0fdd5f28 in ?? () from /usr/lib/libqgis_core.so.1.4.0
#4  0x0fe14288 in ?? () from /usr/lib/libqgis_core.so.1.4.0
#5  0x0fe033b8 in sqlite3_step () from /usr/lib/libqgis_core.so.1.4.0
#6  0x0fcdb798 in QgsCoordinateReferenceSystem::loadFromDb(QString, QString, 
long) () from /usr/lib/libqgis_core.so.1.4.0
#7  0x0fcdbc9c in QgsCoordinateReferenceSystem::createFromEpsg(long) ()
   from /usr/lib/libqgis_core.so.1.4.0
#8  0x0fc7b928 in QgsDistanceArea::setSourceEpsgCrsId(long) ()
   from /usr/lib/libqgis_core.so.1.4.0
#9  0x0fc7cf80 in QgsDistanceArea::QgsDistanceArea() ()
   from /usr/lib/libqgis_core.so.1.4.0
#10 0x0fcaeda0 in QgsMapRenderer::QgsMapRenderer() ()
   from /usr/lib/libqgis_core.so.1.4.0
#11 0x0fb18a68 in QgsMapCanvas::QgsMapCanvas(QWidget*, char const*) ()
   from /usr/lib/libqgis_gui.so.1.4.0
#12 0x100a0668 in QgisApp::createCanvas() ()
#13 0x100b6a50 in QgisApp::QgisApp(QSplashScreen*, QWidget*, 
QFlagsQt::WindowType) ()
#14 0x1008ed8c in main ()



-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: powerpc (ppc)

Kernel: Linux 2.6.32-5-powerpc
Locale: LANG=en_CA.utf8, LC_CTYPE=en_CA.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages qgis depends on:
ii  libc6   2.11.2-6 Embedded GNU C Library: Shared lib
ii  libexpat1   2.0.1-7  XML parsing C library - runtime li
ii  libgcc1 1:4.4.5-4GCC support library
ii  libgdal1-1.6.0  1.6.3-4+b1   Geospatial Data Abstraction Librar
ii  libgeos-c1  3.2.0-1  Geometry engine for Geographic Inf
ii  libgsl0ldbl 1.14+dfsg-1  GNU Scientific Library (GSL) -- li
ii  libpq5  8.4.5-0squeeze1  PostgreSQL C client library
ii  libproj04.7.0-1  Cartographic projection library
ii  libqgis1.4.01.4.0+12730-3+b2 Quantum GIS - shared libraries
ii  libqt4-network  4:4.6.3-4Qt 4 network module
ii  libqt4-sql  4:4.6.3-4Qt 4 SQL module
ii  libqt4-svg  4:4.6.3-4Qt 4 SVG module
ii  libqt4-webkit   4:4.6.3-4Qt 4 WebKit module
ii  libqt4-xml  4:4.6.3-4Qt 4 XML module
ii  libqtcore4  4:4.6.3-4Qt 4 core module
ii  libqtgui4   4:4.6.3-4Qt 4 GUI module
ii  libstdc++6  4.4.5-4  The GNU Standard C++ Library v3
ii  qgis-common 1.4.0+12730-3Quantum GIS - architecture-indepen

Versions of packages qgis recommends:
ii  python-qgis 1.4.0+12730-3+b2 Python bindings to Quantum GIS
ii  qgis-plugin-grass   1.4.0+12730-3+b2 GRASS plugin for Quantum GIS

Versions of packages qgis suggests:
pn  gpsbabel  none (no description available)

-- no debconf information


---End Message---
---BeginMessage---
Source: qgis
Source-Version: 1.4.0+12730-4

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

libqgis-dev_1.4.0+12730-4_i386.deb
  to main/q/qgis/libqgis-dev_1.4.0+12730-4_i386.deb
libqgis1.4.0_1.4.0+12730-4_i386.deb
  to main/q/qgis/libqgis1.4.0_1.4.0+12730-4_i386.deb
python-qgis-common_1.4.0+12730-4_all.deb
  to main/q/qgis/python-qgis-common_1.4.0+12730-4_all.deb
python-qgis_1.4.0+12730-4_i386.deb
  to main/q/qgis/python-qgis_1.4.0+12730-4_i386.deb
qgis-common_1.4.0+12730-4_all.deb
  to main/q/qgis/qgis-common_1.4.0+12730-4_all.deb
qgis-plugin-grass-common_1.4.0+12730-4_all.deb
  to main/q/qgis/qgis-plugin-grass-common_1.4.0+12730-4_all.deb
qgis-plugin-grass_1.4.0+12730-4_i386.deb
  to main/q/qgis/qgis-plugin-grass_1.4.0+12730-4_i386.deb
qgis_1.4.0+12730-4.diff.gz
  to main/q/qgis/qgis_1.4.0+12730-4.diff.gz

Bug#609336: marked as done ([pgdesigner] pgdesigner crashes with a CApp.MenuProjectUpdate.1435: #29: Invalid object error on new project.)

2011-01-11 Thread Debian Bug Tracking System
Your message dated Tue, 11 Jan 2011 11:17:13 +
with message-id e1pccdx-0002fq...@franck.debian.org
and subject line Bug#609336: fixed in pgdesigner 1.2.17-2
has caused the Debian Bug report #609336,
regarding [pgdesigner] pgdesigner crashes with a CApp.MenuProjectUpdate.1435: 
#29: Invalid object error on new project.
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.)


-- 
609336: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609336
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: pgdesigner
Version: 1.2.17-1
Severity: grave

--- Please enter the report below this line. ---

I just installed pgdesigner but it's unusable in my system. It keeps
crashing whenever I try to open a project, create a new project or
import from db (I didn't try other menu items/buttons).

The console messages I get are:

pa...@saturn:~$ pgdesigner
kbuildsycoca running...
DCOP Cleaning up dead connections.
CApp.MenuProjectUpdate.1435: #29: Invalid object
0: CApp.MenuProjectUpdate.1435
1: CApp._menuUpdate.327
2: CApp.ChangeProjectFromIndex.984
3: CApp._projectCreate.390
4: CApp.ProjectOpen.1660
5: CApp.MainForm_Click.615
Mutex destroy failure: Device or resource busy

Searching the internet for CApp.MenuProjectUpdate.1435: #29: Invalid
object I found this bug on Ubuntu which seems to be the same:

https://bugs.launchpad.net/ubuntu/+source/pgdesigner/+bug/658801

Please let me know if you want me run more tests.


Regards,


Paolo.

--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.32-5-686-bigmem

Debian Release: 6.0
  500 testing www.debian-multimedia.org
  500 testing security.debian.org
  500 testing mirrors.kernel.org
  500 testing deb.opera.com
  500 squeeze debian.fusionforge.org
   50 experimentalmirrors.kernel.org
  100 unstablemirrors.kernel.org

--- Package information. ---
Depends (Version) | Installed
=-+-===
gambas2-runtime   | 2.21.0-1
gambas2-gb-form   | 2.21.0-1
gambas2-gb-compress   | 2.21.0-1
gambas2-gb-compress-bzlib2| 2.21.0-1
gambas2-gb-compress-zlib  | 2.21.0-1
gambas2-gb-db | 2.21.0-1
gambas2-gb-db-postgresql  | 2.21.0-1
gambas2-gb-pdf| 2.21.0-1
gambas2-gb-qt | 2.21.0-1
gambas2-gb-qt-ext | 2.21.0-1
gambas2-gb-qt-kde | 2.21.0-1
gambas2-gb-qt-kde-html| 2.21.0-1
gambas2-gb-settings   | 2.21.0-1
gambas2-gb-xml| 2.21.0-1


Package's Recommends field is empty.

Package's Suggests field is empty.





---End Message---
---BeginMessage---
Source: pgdesigner
Source-Version: 1.2.17-2

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

pgdesigner_1.2.17-2.diff.gz
  to main/p/pgdesigner/pgdesigner_1.2.17-2.diff.gz
pgdesigner_1.2.17-2.dsc
  to main/p/pgdesigner/pgdesigner_1.2.17-2.dsc
pgdesigner_1.2.17-2_all.deb
  to main/p/pgdesigner/pgdesigner_1.2.17-2_all.deb



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 609...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Pierre Chifflier pol...@debian.org (supplier of updated pgdesigner 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: Tue, 11 Jan 2011 11:39:34 +0100
Source: pgdesigner
Binary: pgdesigner
Architecture: source all
Version: 1.2.17-2
Distribution: unstable
Urgency: high
Maintainer: Pierre Chifflier pol...@debian.org
Changed-By: Pierre Chifflier pol...@debian.org
Description: 
 pgdesigner - Graphical database designer for PostgreSQL
Closes: 609336
Changes: 
 pgdesigner (1.2.17-2) unstable; urgency=high
 .
   * Fix crash with a CApp.MenuProjectUpdate.1435: #29: Invalid object
 error (Closes: #609336)
   * Urgency high, RC bug
Checksums-Sha1: 
 b407646f60ec6ea6881c8920e577f81ec73fa5c9 1105 pgdesigner_1.2.17-2.dsc
 b11bc541c60cbe8afd5ca8d6c55e61aa12a7487f 4156 

Bug#609624: console-setup: Broken Greek translation

2011-01-11 Thread Julien Cristau
On Tue, Jan 11, 2011 at 10:58:11 +0100, Julien Cristau wrote:

 $ grep -c '??' debian/po/*|grep -v :0
 debian/po/fa.po:122

Should be restored.

 debian/po/he.po:47

Restored minus one string.

 debian/po/is.po:118

This doesn't seem to be in a bug report, so I don't know where to find
the original file.

 debian/po/pa.po:162

Same, as is.po, I can't find it.

 debian/po/zh_TW.po:170
 
Restored.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#609657: libreoffice-gcj: needs versioned dependency on gcj compat package

2011-01-11 Thread Rene Engelhard
On Tue, Jan 11, 2011 at 11:31:17AM +0100, Lionel Elie Mamane wrote:
 Package: libreoffice-gcj
 Version: 1:3.3.0~rc2-3
 Severity: serious

Oh, and you really think this is a basis to block LibreOffice from entering
Debian testing unless forced in? (BTW, openoffice.org-gcj has the exact same
problem).

Grüße/Regards,

René
-- 
 .''`.  René Engelhard -- Debian GNU/Linux Developer
 : :' : http://www.debian.org | http://people.debian.org/~rene/
 `. `'  r...@debian.org | GnuPG-Key ID: D03E3E70
   `-   Fingerprint: E12D EA46 7506 70CF A960 801D 0AA0 4571 D03E 3E70



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



Bug#605562: installation-report: Installation from usb stick lead, to unbootable system (und unbootable usb stick)

2011-01-11 Thread Alexander Reichle-Schmehl
Hi!

* Joachim Schleicher joac...@dormettingen.de [110103 14:06]:

 ~ # chroot /target grub-mkdevicemap --no-floppy -m -
 (hd0) /dev/disk/by-id/usb-SanDisk_Cruzer_Blade_20053349610A41A2F01B-0:0
 (hd1) /dev/disk/by-id/ata-FUJITSU_M1623TAU_08316741

 ~ # readlink -f $(chroot /target grub-mkdevicemap --no-floppy -m - | head -n1 
 | cut -f2)
 /dev/sda
 ash

I finally found the time to play a bit with my system here.  The bad
news is, that I can still reproduce this bug with the rc1 images.
However, on a first glance it seems that Joachim is right.

Currently I have the following:

$ sudo grub-mkdevicemap --no-floppy -m -
(hd0)   /dev/disk/by-id/ata-WDC_WD360GD-00FNA0_WD-WMAH91382658
(hd1)   /dev/disk/by-id/usb-SanDisk_Cruzer_Micro_200445276207662139DB-0:0
(hd2)   /dev/disk/by-id/scsi-3600508e0a28c3e222acc010b


(hd1) is the usb-stick I used to boot, (hd0) a normal sata disk (I
pluged that in for additional testing after my bug report) and
(hd2) my actual disc (a dell virtual disc from an mpt hardware raid
controller if that matters).

As said I played a bit, regardless of the way I boot from usb-stick
(new isohybrid dd-way or old fashioned zcat mount copy iso-way) and
installation target, grub always got installed into (hd0)  (while it got
installed on the usb-stick during my first installation).


For reference the readlink command always said /dev/sda, independend of
the usb-stick being pluged in or not, while without the stick being
present, I got the following for the grub-mkdevicemap:

$ sudo grub-mkdevicemap --no-floppy -m -
(hd0)   /dev/disk/by-id/ata-WDC_WD360GD-00FNA0_WD-WMAH91382658
(hd1)   /dev/disk/by-id/scsi-3600508e0a28c3e222acc010b


Best Regards,
  Alexander



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



Bug#609657: libreoffice-gcj: needs versioned dependency on gcj compat package

2011-01-11 Thread Lionel Elie Mamane
block 609657 609665
thanks

On Tue, Jan 11, 2011 at 11:55:26AM +0100, Rene Engelhard wrote:
 On Tue, Jan 11, 2011 at 11:31:17AM +0100, Lionel Elie Mamane wrote:

 The dependency on gcj-jre / java-gcj-compat should thus be versioned
 accordingly to ensure that a compatible version is installed.

 That requires that gcj-jre (well, libgcj) has that info available
 and wouldn't change it without notifiying maintainers of -gcj using
 packages.

I see. I filed bug #609665 about that. Maybe you'll want to subscribe
to it.

-- 
Lionel



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



Bug#609657: libreoffice-gcj: needs versioned dependency on gcj compat package

2011-01-11 Thread Lionel Elie Mamane
On Tue, Jan 11, 2011 at 12:31:44PM +0100, Rene Engelhard wrote:
 On Tue, Jan 11, 2011 at 11:31:17AM +0100, Lionel Elie Mamane wrote:
 Package: libreoffice-gcj
 Version: 1:3.3.0~rc2-3
 Severity: serious

 Oh, and you really think this is a basis to block LibreOffice from
 entering Debian testing unless forced in? (BTW, openoffice.org-gcj
 has the exact same problem).

That package's dependencies do not faithfully express all it
absolutely needs to work. That's a serious violation of Debian Policy,
thus bug severity serious.

Debian can decide to temporarily make an exception in this case; I
think it is a good idea, but I can't make that decision
single-handedly. AFAIK, it would have to be made with the release
managers, and implemented either by forcing the package in and/or by
tagging this bug squeeze-ignore or something like that (in particular,
not by downgrading the severity).

-- 
Lionel



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



Processed: block 609657 with 609665

2011-01-11 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 block 609657 with 609665
Bug #609657 [libreoffice-gcj] libreoffice-gcj: needs versioned dependency on 
gcj compat package
Was not blocked by any bugs.
Added blocking bug(s) of 609657: 609665
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
609657: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609657
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: Debian Policy 10.7.4 Sharing configuration files question

2011-01-11 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 608451 serious
Bug #608451 [rtpg-www] rtpg-www modifies conffile in postinst/postrm
Severity set to 'serious' from 'important'

 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
608451: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=608451
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#609624: console-setup: Broken Greek translation

2011-01-11 Thread Julien Cristau
On Tue, Jan 11, 2011 at 12:26:57 +0100, Julien Cristau wrote:

  debian/po/is.po:118
 
 This doesn't seem to be in a bug report, so I don't know where to find
 the original file.
 
  debian/po/pa.po:162
 
 Same, as is.po, I can't find it.
 
I've reverted those two to the previous non-broken version (which means
more fuzzy or untranslated strings, but that's better than question
marks all over, I think).  I'll try to make the 13:52 dinstall.

Cheers,
Julien


signature.asc
Description: Digital signature


Processed: found 605562 in 1.58

2011-01-11 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 found 605562 1.58
Bug #605562 [grub-installer] installation-report: Installation from usb stick 
lead to unbootable system (und unbootable usb stick)
Bug #568529 [grub-installer] overwrites MBR of installation medium
Bug #579519 [grub-installer] grub-installer - Overwrites bootloaders on 
different device
Bug #589823 [grub-installer] debian-installer (squeeze alpha): Writes grub on 
usb-stic with installer
Bug #603942 [grub-installer] installation-report: Grub installed to wrong disk
Bug #604992 [grub-installer] Installs GRUB on USB stick during a USB install
Bug Marked as found in versions grub-installer/1.58.
Bug Marked as found in versions grub-installer/1.58.
Bug Marked as found in versions grub-installer/1.58.
Bug Marked as found in versions grub-installer/1.58.
Bug Marked as found in versions grub-installer/1.58.
Bug Marked as found in versions grub-installer/1.58.

End of message, stopping processing here.

Please contact me if you need assistance.
-- 
605562: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605562
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#609459: closed by Colin Watson cjwat...@debian.org (Bug#609459: fixed in groff 1.21-2)

2011-01-11 Thread Cyril Brulebois
Colin Watson cjwat...@debian.org (11/01/2011):
 Sorry about that.  -3 should really fix it, this time ...

Indeed. :)

KiBi.


signature.asc
Description: Digital signature


Bug#609676: pdf-presenter-console: Unbuildable in unstable (valac dependency unsatisfiable)

2011-01-11 Thread Adam D. Barratt
Package: pdf-presenter-console
Version: 1.1.1+git.02dfcf-3
Severity: serious

Hi,

The new upload of pdf-presenter-console increases the build-dependency on
vala to (= 0.9.7), which is not satisfiable in unstable.  This means that
the package is currently unbuildable; see
https://buildd.debian.org/status/package.php?p=pdf-presenter-console

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#609624: marked as done (console-setup: Broken Greek translation)

2011-01-11 Thread Debian Bug Tracking System
Your message dated Tue, 11 Jan 2011 13:17:18 +
with message-id e1pce6a-0003kd...@franck.debian.org
and subject line Bug#609624: fixed in console-setup 1.68
has caused the Debian Bug report #609624,
regarding console-setup: Broken Greek translation
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.)


-- 
609624: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609624
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: console-setup
Version: 1.67
Severity: serious
Tags: d-i
Justification: Breaks d-i in Greek

Hi,

the Greek translation update in #604145 seems to have broken the
graphical installer in Greek for rc1, while it was working fine for
beta2. One can suspect the us-ascii encoding in the attached file
(which should be changed through ^E in mutt, s/us-ascii/utf-8/, before
saving the file).

Currently, all what users get is a bunch of questions marks.

(Opening the .po shows them quite clearly, no need to boot the installer
to check that.)

In that other bug, Christian was asking for a tiny update to that file,
I'm putting both Emmanuel and Christian in copy accordingly.

KiBi.


---End Message---
---BeginMessage---
Source: console-setup
Source-Version: 1.68

We believe that the bug you reported is fixed in the latest version of
console-setup, which is due to be installed in the Debian FTP archive:

bdf2psf_1.68_all.deb
  to main/c/console-setup/bdf2psf_1.68_all.deb
console-setup-amiga-ekmap_1.68_all.udeb
  to main/c/console-setup/console-setup-amiga-ekmap_1.68_all.udeb
console-setup-ataritt-ekmap_1.68_all.udeb
  to main/c/console-setup/console-setup-ataritt-ekmap_1.68_all.udeb
console-setup-fonts-udeb_1.68_all.udeb
  to main/c/console-setup/console-setup-fonts-udeb_1.68_all.udeb
console-setup-macintoshold-ekmap_1.68_all.udeb
  to main/c/console-setup/console-setup-macintoshold-ekmap_1.68_all.udeb
console-setup-mini_1.68_all.deb
  to main/c/console-setup/console-setup-mini_1.68_all.deb
console-setup-pc-ekmap_1.68_all.udeb
  to main/c/console-setup/console-setup-pc-ekmap_1.68_all.udeb
console-setup-sun4-ekmap_1.68_all.udeb
  to main/c/console-setup/console-setup-sun4-ekmap_1.68_all.udeb
console-setup-sun5-ekmap_1.68_all.udeb
  to main/c/console-setup/console-setup-sun5-ekmap_1.68_all.udeb
console-setup-udeb_1.68_all.udeb
  to main/c/console-setup/console-setup-udeb_1.68_all.udeb
console-setup_1.68.dsc
  to main/c/console-setup/console-setup_1.68.dsc
console-setup_1.68.tar.gz
  to main/c/console-setup/console-setup_1.68.tar.gz
console-setup_1.68_all.deb
  to main/c/console-setup/console-setup_1.68_all.deb
keyboard-configuration_1.68_all.deb
  to main/c/console-setup/keyboard-configuration_1.68_all.deb



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 609...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Julien Cristau jcris...@debian.org (supplier of updated console-setup 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 Jan 2011 13:10:38 +0100
Source: console-setup
Binary: keyboard-configuration console-setup console-setup-mini bdf2psf 
console-setup-udeb console-setup-amiga-ekmap console-setup-ataritt-ekmap 
console-setup-macintoshold-ekmap console-setup-pc-ekmap 
console-setup-sun4-ekmap console-setup-sun5-ekmap console-setup-fonts-udeb
Architecture: source all
Version: 1.68
Distribution: unstable
Urgency: high
Maintainer: Debian Install System Team debian-b...@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 bdf2psf- font converter to generate console fonts from BDF source fonts
 console-setup - console font and keymap setup program
 console-setup-amiga-ekmap - encoded keyboard layouts for Amiga keyboards (udeb)
 console-setup-ataritt-ekmap - encoded keyboard layouts for Atari TT keyboards 
(udeb)
 console-setup-fonts-udeb - console fonts for Debian Installer (udeb)
 console-setup-macintoshold-ekmap - encoded keyboard layouts for old-style 
Macintosh keyboards (udeb)
 console-setup-mini - console font and keymap setup program - reduced version
 console-setup-pc-ekmap - encoded keyboard layouts for PC keyboards (udeb)
 console-setup-sun4-ekmap - encoded keyboard layouts for Sun4 keyboards (udeb)
 

Bug#609676: Your pdf-presenter-console upload

2011-01-11 Thread Barak A. Pearlmutter
The part of this patch relevant to the license issue automatically
applies retroactively.  I.e., the license issue is in fact solved even
for old versions.  So my inclination is to just hold the version
currently in testing, 1.1.1+git.02dfcf-1, and relax.

(The added paragraph in debian/copyright could be backported to
generate a new version for testing, but that seems silly to me.)

--Barak.
--
Barak A. Pearlmutter
 Hamilton Institute  Dept Comp Sci, NUI Maynooth, Co. Kildare, Ireland
 http://www.bcl.hamilton.ie/~barak/



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



Bug#332227: 332227 not squeeze blocker

2011-01-11 Thread Adam D. Barratt
user release.debian@packages.debian.org
tag 332227 + squeeze-ignore
usertag 332227 + squeeze-can-defer
thanks

Hi,

d-i appears to have been failing to install on this type of PowerPC since
a little after the Sarge release; I'm not going to block the release of
Squeeze because it isn't fixed yet.

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: 332227 not squeeze blocker

2011-01-11 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 user release.debian@packages.debian.org
Setting user to release.debian@packages.debian.org (was 
a...@adam-barratt.org.uk).
 tag 332227 + squeeze-ignore
Bug #332227 [parted] yaboot-installer: install fail on open power 710
Bug #350372 [parted] dbian on power 710
Bug #352914 [parted] parted: 512 vs 2048 bytes block size dilemma
Added tag(s) squeeze-ignore.
Added tag(s) squeeze-ignore.
Added tag(s) squeeze-ignore.
 usertag 332227 + squeeze-can-defer
Bug#332227: yaboot-installer: install fail on open power 710
There were no usertags set.
Usertags are now: squeeze-can-defer.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
332227: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=332227
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#609569: License violation in the package openoffice.org-dmaths

2011-01-11 Thread Adam D. Barratt
On Mon, January 10, 2011 17:26, Innocent De Marchi wrote:
 I'm adopted the package dmaths
 (http://packages.qa.debian.org/d/dmaths.html and
 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=595544). This package
 distributes the file U2200.pdf is Mathematical Operators by The
 Unicode Standard wiht this text:
[...]
 It is not possible to distribute this file.

 The package distributed two pdf files which may violate the license
 terms (r_typo.pdf and mathematiques.pdf).
 See http://lists.debian.org/debian-legal/2011/01/msg3.html for more
 details.
 I have advised the upstream author to delete this files from your
 source package.

Are you planning an upload to fix this, soon?  If not then considering
that the package was not in lenny and has only had one upload in the past
two years (just after the release of lenny) then it may be worth looking
at whether we ship it with Squeeze.

If you do make an upload targetted at keeping the package in Squeeze,
please do not include changes other than the maintainer update and the fix
for this bug.

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#609608: Your pdf-presenter-console upload

2011-01-11 Thread Adam D. Barratt
user release.debian@packages.debian.org
tag 609608 + squeeze-ignore
usertag 609608 + squeeze-can-defer
thanks

On Tue, January 11, 2011 13:32, Barak A. Pearlmutter wrote:
 The part of this patch relevant to the license issue automatically
 applies retroactively.  I.e., the license issue is in fact solved even
 for old versions.  So my inclination is to just hold the version
 currently in testing, 1.1.1+git.02dfcf-1, and relax.

Yeah.  It's not the ideal solution, but we can live with it.

 (The added paragraph in debian/copyright could be backported to
 generate a new version for testing, but that seems silly to me.)

It can't, really, without the unstable package building everywhere, as
you'd need a tpu version higher than testing but lower than the oldest
source in unstable.

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: Re: Your pdf-presenter-console upload

2011-01-11 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 user release.debian@packages.debian.org
Setting user to release.debian@packages.debian.org (was 
a...@adam-barratt.org.uk).
 tag 609608 + squeeze-ignore
Bug #609608 {Done: b...@debian.org (Barak A. Pearlmutter)} 
[src:pdf-presenter-console] pdf-presenter-console: incompatible licenses: 
GPL-3+/GPL-2
Added tag(s) squeeze-ignore.
 usertag 609608 + squeeze-can-defer
Bug#609608: pdf-presenter-console: incompatible licenses: GPL-3+/GPL-2
There were no usertags set.
Usertags are now: squeeze-can-defer.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
609608: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609608
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: reassign 609682 to lsb-release, forcibly merging 609325 609682, affects 609325

2011-01-11 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 609682 lsb-release
Bug #609682 [facter] facter
Bug reassigned from package 'facter' to 'lsb-release'.
 forcemerge 609325 609682
Bug#609325: lsb-release: /usr/share/pyshared/lsb_release.py in Squeeze is 
missing the mapping from '6.0' to 'squeeze'
Bug#609682: facter
Bug#609596: lsb-release
Forcibly Merged 609325 609596 609682.

 affects 609325 + facter
Bug #609325 [lsb-release] lsb-release: /usr/share/pyshared/lsb_release.py in 
Squeeze is missing the mapping from '6.0' to 'squeeze'
Bug #609596 [lsb-release] lsb-release
Bug #609682 [lsb-release] facter
Added indication that 609325 affects facter
Added indication that 609596 affects facter
Added indication that 609682 affects facter
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
609325: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609325
609596: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609596
609682: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609682
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#609535: psiconv: Patch for GraphicsMagick API change causing crash on startup

2011-01-11 Thread Reuben Thomas
On 11 January 2011 13:55, Jakub Wilk jw...@debian.org wrote:
 retitle 609535 psiconv: magick/semaphore.c:526: LockSemaphoreInfo: Assertion
 `semaphore_info-signature == 0xabacadabUL' failed.
 tags 609535 - patch
 thanks

 Thanks for your bugreport! (I'm not maintainer of this package, but I'll
 comment anyway.)

 --- psiconv-0.9.8/program/psiconv/magick-aux.c  2005-11-15
 15:08:21.0 +
 +++ psiconv-0.9.8-rrt/program/psiconv/magick-aux.c      2011-01-10
 12:37:09.0 +
 @@ -37,6 +37,7 @@
 const MagickInfo * GetMagickFileList(void)
 {
  ExceptionInfo exc;
 +  InitializeMagick(NULL);
  GetExceptionInfo(exc);
  OpenModules(exc);
  return GetMagickInfo(NULL,exc);

 This doesn't look good. GetMagickFileList is called in a loop and
 InitializeMagick is supposed to be run only once.

No it's not. GetMagickFileList is only called in the loop initializer,
and the loop is only run once.

 And in fact, after applying your patch, psiconv still crashes for me with
 the following traceback:

Are you sure you applied the patch and rebuilt correctly? The
traceback you give is identical with that obtained if the patch is not
applied.

-- 
http://rrt.sc3d.org



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



Bug#609691: libtextcat: invalid maintainer address

2011-01-11 Thread Mike O'Connor
Source: libtextcat
Severity: serious
Justification: Policy 3.3


The maintainer of this package is listed as: Daniele Favara
no...@dsslive.org, however the dsslive.org domain doesn't accept email.  A
working email address is required by policy 3.3

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

Kernel: Linux 2.6.32-5-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash



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



Bug#609535: psiconv: Patch for GraphicsMagick API change causing crash on startup

2011-01-11 Thread Jakub Wilk

* Reuben Thomas r...@sc3d.org, 2011-01-11, 15:15:
GetMagickFileList is only called in the loop initializer, and the loop 
is only run once.


You are right, thanks for correction. Still, it's quite a surprising 
place to put InitializeMagick into.


And in fact, after applying your patch, psiconv still crashes for me 
with the following traceback:
Are you sure you applied the patch and rebuilt correctly? The traceback 
you give is identical with that obtained if the patch is not applied.


Yes. Also, gdb tells me that InitializeMagick is called as it should.

--
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#609535: psiconv: Patch for GraphicsMagick API change causing crash on startup

2011-01-11 Thread Reuben Thomas
On 11 January 2011 16:16, Jakub Wilk jw...@debian.org wrote:
 * Reuben Thomas r...@sc3d.org, 2011-01-11, 15:15:

 GetMagickFileList is only called in the loop initializer, and the loop is
 only run once.

 You are right, thanks for correction. Still, it's quite a surprising place
 to put InitializeMagick into.

Well, there seems to be only one place that sets up ImageMagick in
psiconv, so I put the code there for simplicity.

 Yes. Also, gdb tells me that InitializeMagick is called as it should.

A diagnosis would be appreciated. I don't get this crash, so I can't
help. I also can't see why it would crash in the same way, as this fix
seems to be the right thing (several programs have fixed this exact
crash by simply calling InitializeMagick). But I'm not an expert on
psiconv or ImageMagick.

-- 
http://rrt.sc3d.org



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



Processed: tagging 609581

2011-01-11 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 609581 + pending
Bug #609581 [calibre] Incompatible licences
Added tag(s) pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
609581: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609581
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#605562: [PATCH] Second try at fixing bug#605562 (installing the boot loader to the wrong device)

2011-01-11 Thread Julien Cristau
Amend changes from 1.57: call device_to_disk on the device mounted as
cdrom.  Booting from a disk or usb device, that may end up being
/dev/sda1 instead of /dev/sda, defeating the we shouldn't install GRUB
to the installation device test.
Many thanks to Alexander Reichle-Schmehl and Michael Tokarev for the
tests.

Signed-off-by: Julien Cristau jcris...@debian.org
---
 debian/changelog |9 +
 grub-installer   |2 +-
 2 files changed, 10 insertions(+), 1 deletions(-)

Tolimar's syslog at http://www.schmehl.info/tmp/d-i-bug/syslog shows
cdsrc=/dev/sda1 and default_bootdev=/dev/sda.

Joachim's issue seems to be a different one, with the stick (sda1)
mounted on /hd-media, and /cdrom mounted from a loop device.  Maybe the
tests for /cdrom need to be duplicated for /hd-media?

diff --git a/debian/changelog b/debian/changelog
index 59079ef..be29b6d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+grub-installer (1.59) UNRELEASED; urgency=low
+
+  * Amend changes from 1.57: call device_to_disk on the device mounted as
+cdrom.  Booting from a disk or usb device, that may end up being
+/dev/sda1 instead of /dev/sda, defeating the we shouldn't install GRUB to
+the installation device test.
+
+ -- Julien Cristau jcris...@debian.org  Tue, 11 Jan 2011 17:41:21 +0100
+
 grub-installer (1.58) unstable; urgency=low
 
   [ Christian Perrier ]
diff --git a/grub-installer b/grub-installer
index 463ebdf..13e9f8a 100755
--- a/grub-installer
+++ b/grub-installer
@@ -554,7 +554,7 @@ hybrid=false
 if db_get cdrom-detect/hybrid; then
hybrid=$RET
 fi
-if [ $cdsrc = $default_bootdev ] || \
+if [ $(device_to_disk $cdsrc) = $default_bootdev ] || \
([ $default_bootdev = '(hd0)' ]  \
 (([ -n $cdfs ]  [ $cdfs != iso9660 ]) || \
  [ $hybrid = true ])); then
-- 
1.7.2.3




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



Bug#609604: auto-multiple-choice: incompatible licenses: GPL-3+/GPL-2

2011-01-11 Thread Jakub Wilk

* Georges Khaznadar georges.khazna...@free.fr, 2011-01-11, 09:33:

auto-multiple-choice is licensed under GPLv3+, but it is linked to
poppler which is GPLv2-only. These two licenses are incompatible.


Thank you for pointing this out, Jakub!

As far as I can imagine, here are the choices:
- drop the dependency on libpoppler-dev
- change auto-multiple-choice's license to GPL2+


That's right.


If there is some other choice, please give me a hint.


None that I can think of.

Thanks for taking care of this bug!

--
Jakub Wilk


signature.asc
Description: Digital signature


Bug#609569: License violation in the package openoffice.org-dmaths

2011-01-11 Thread Innocent De Marchi
Hi Adam,

 Are you planning an upload to fix this, soon?  If not then considering
 that the package was not in lenny and has only had one upload in the past
 two years (just after the release of lenny) then it may be worth looking
 at whether we ship it with Squeeze.

I have the package ready, I'm only aware of the upstream author
remove questionable files.


 If you do make an upload targetted at keeping the package in Squeeze,
 please do not include changes other than the maintainer update and the fix
 for this bug.

The original author has told me that in 7 days I will have this fixed:
but it's a new upstream version (Includes changes to other upstream
files).

What is done with earlier versions of the package containing licensed
files still doubtful?


Regards!

I. De Marchi



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



Processed: tagging 609557

2011-01-11 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 609557 + help
Bug #609557 [src:calibre] calibre: FTBFS on kfreebsd-*: ImportError: cannot 
import name text_encoding
Added tag(s) help.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
609557: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609557
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#609254: marked as done (nginx-full: fails to install when upgrading nginx from 0.8.54-1)

2011-01-11 Thread Debian Bug Tracking System
Your message dated Tue, 11 Jan 2011 17:47:44 +
with message-id e1pcijs-0007z9...@franck.debian.org
and subject line Bug#609254: fixed in nginx 0.8.54-3
has caused the Debian Bug report #609254,
regarding nginx-full: fails to install when upgrading nginx from  0.8.54-1
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.)


-- 
609254: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609254
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: nginx-full, nginx-light, nginx-extras
Version: 0.8.54-2
Severity: serious
Justification: Policy 7.6.1

Hi,

the following happened while upgrading from squeeze (with nginx 0.7.67-3) to 
sid:

Selecting previously deselected package nginx-full.
Unpacking nginx-full (from .../nginx-full_0.8.54-2_i386.deb) ...
dpkg: error processing /var/cache/apt/archives/nginx-full_0.8.54-2_i386.deb 
(--unpack):
 trying to overwrite '/etc/init.d/nginx', which is also in package nginx 
0.7.67-3
configured to not write apport reports
  dpkg-deb: subprocess paste killed by 
signal (Broken pipe)
Preparing to replace nginx 0.7.67-3 (using .../nginx_0.8.54-2_all.deb) ...
Unpacking replacement nginx ...
dpkg: warning: unable to delete old directory '/var/log/nginx': Directory 
not empty
dpkg: warning: unable to delete old directory '/var/lib/nginx': Directory 
not empty
dpkg: warning: unable to delete old directory '/etc/nginx/sites-enabled': 
Directory not empty
dpkg: warning: unable to delete old directory '/etc/nginx/sites-available': 
Directory not empty
dpkg: warning: unable to delete old directory '/etc/nginx': Directory not 
empty

Looking at the source package, it seems that nginx-full, nginx-light and
nginx-extras should declare a 'Replaces' dependency on older versions of
nginx.

Nikolaus


---End Message---
---BeginMessage---
Source: nginx
Source-Version: 0.8.54-3

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

nginx-doc_0.8.54-3_all.deb
  to main/n/nginx/nginx-doc_0.8.54-3_all.deb
nginx-extras-dbg_0.8.54-3_amd64.deb
  to main/n/nginx/nginx-extras-dbg_0.8.54-3_amd64.deb
nginx-extras_0.8.54-3_amd64.deb
  to main/n/nginx/nginx-extras_0.8.54-3_amd64.deb
nginx-full-dbg_0.8.54-3_amd64.deb
  to main/n/nginx/nginx-full-dbg_0.8.54-3_amd64.deb
nginx-full_0.8.54-3_amd64.deb
  to main/n/nginx/nginx-full_0.8.54-3_amd64.deb
nginx-light-dbg_0.8.54-3_amd64.deb
  to main/n/nginx/nginx-light-dbg_0.8.54-3_amd64.deb
nginx-light_0.8.54-3_amd64.deb
  to main/n/nginx/nginx-light_0.8.54-3_amd64.deb
nginx_0.8.54-3.debian.tar.gz
  to main/n/nginx/nginx_0.8.54-3.debian.tar.gz
nginx_0.8.54-3.dsc
  to main/n/nginx/nginx_0.8.54-3.dsc
nginx_0.8.54-3_all.deb
  to main/n/nginx/nginx_0.8.54-3_all.deb



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 609...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Michael Lustfield mtecknol...@ubuntu.com (supplier of updated nginx 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, 11 Jan 2011 05:27:39 -0600
Source: nginx
Binary: nginx nginx-doc nginx-full nginx-full-dbg nginx-light nginx-light-dbg 
nginx-extras nginx-extras-dbg
Architecture: all amd64 source
Version: 0.8.54-3
Distribution: unstable
Urgency: low
Maintainer: Jose Parrella bure...@debian.org
Changed-By: Michael Lustfield mtecknol...@ubuntu.com
Closes: 609134 609254 609411
Description: 
 nginx  - dummy package to ease transition to nginx-full
 nginx-doc  - small, but very powerful and efficient web server (documentation)
 nginx-extras - small, but very powerful and efficient web server - extras
 nginx-extras-dbg - Debugging symbols for nginx (extras)
 nginx-full - small, but very powerful and efficient web server and mail proxy
 nginx-full-dbg - Debugging symbols for nginx (full)
 nginx-light - small, but very powerful and efficient web server - light
 nginx-light-dbg - Debugging symbols for nginx (light)
Changes: 
 nginx (0.8.54-3) unstable; urgency=low
 .
   * debian/control:
 + Added Breaks: and Replaces: to nginx packages. (Closes: #609254)
   * debian/rules:
 + Adding SSL support 

Bug#609468: marked as done (libtk-pod-perl: cannot remove path when cwd is /tmp/tkpod_8LQuQjJc for /tmp/tkpod_8LQuQjJc: at /usr/share/perl/5.10/File/Temp.pm line 902)

2011-01-11 Thread Debian Bug Tracking System
Your message dated Tue, 11 Jan 2011 17:47:29 +
with message-id e1pcijd-0007px...@franck.debian.org
and subject line Bug#609468: fixed in libtk-pod-perl 0.9939-2
has caused the Debian Bug report #609468,
regarding libtk-pod-perl: cannot remove path when cwd is /tmp/tkpod_8LQuQjJc 
for /tmp/tkpod_8LQuQjJc: at /usr/share/perl/5.10/File/Temp.pm line 902
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.)


-- 
609468: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609468
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: libtk-pod-perl
Version: 0.9939-1
Severity: serious
Justification: FTBFS

libtk-pod-perl FTBFS with the following errors in tests:

 xvfb-run /usr/bin/make test
 make[1]: Entering directory 
 `/build/salvi-libtk-pod-perl_0.9939-1-amd64-3Ggftr/libtk-pod-perl-0.9939'
 /usr/bin/perl -It -MTkTest -e check_display_test_harness(0, 
 'blib/lib', 'blib/arch') t/*.t
 t/basic.t . ok
 
 #   Failed test 'Trying tkpod with -server'   
   
  
 #   at t/cmdline.t line 149.
 #  got: '512'
 # expected: '0'
 cannot remove path when cwd is /tmp/tkpod_8LQuQjJc for /tmp/tkpod_8LQuQjJc:  
 at /usr/share/perl/5.10/File/Temp.pm line 902
 # Looks like you failed 1 test of 17.
 t/cmdline.t ...
 Dubious, test returned 1 (wstat 256, 0x100)
 Failed 1/17 subtests
 t/more.t .. ok
 t/optionalmods.t .. skipped: no Test::More and/or Devel::Hide modules
 t/pods.t .. ok
 t/podtree.t ... ok
 t/subclass.t .. ok

Bests
Salvatore

-- System Information:
Debian Release: 6.0
  APT prefers unstable
  APT policy: (500, 'unstable')
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


libtk-pod-perl_0.9939-1_amd64.build
Description: application/symlink
---End Message---
---BeginMessage---
Source: libtk-pod-perl
Source-Version: 0.9939-2

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

libtk-pod-perl_0.9939-2.debian.tar.gz
  to main/libt/libtk-pod-perl/libtk-pod-perl_0.9939-2.debian.tar.gz
libtk-pod-perl_0.9939-2.dsc
  to main/libt/libtk-pod-perl/libtk-pod-perl_0.9939-2.dsc
libtk-pod-perl_0.9939-2_all.deb
  to main/libt/libtk-pod-perl/libtk-pod-perl_0.9939-2_all.deb



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 609...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
gregor herrmann gre...@debian.org (supplier of updated libtk-pod-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: SHA256

Format: 1.8
Date: Tue, 11 Jan 2011 18:35:17 +0100
Source: libtk-pod-perl
Binary: libtk-pod-perl
Architecture: source all
Version: 0.9939-2
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 libtk-pod-perl - Tk Pod browser widget with hypertext capability
Closes: 609468
Changes: 
 libtk-pod-perl (0.9939-2) unstable; urgency=low
 .
   [ gregor herrmann ]
   * debian/control: Changed: Switched Vcs-Browser field to ViewSVN
 (source stanza).
   * debian/control: Added: ${misc:Depends} to Depends: field.
 .
   [ Rene Mayorga ]
   * debian/control: update my email address.
 .
   [ Nathan Handler ]
   * debian/watch: Update to ignore development releases.
 .
   [ Damyan Ivanov ]
   * add -a option to xvfb-run invocation
 .
   [ gregor herrmann ]
   * Fix cannot remove path when cwd is /tmp/tkpod_8LQuQjJc for
 /tmp/tkpod_8LQuQjJc: at /usr/share/perl/5.10/File/Temp.pm line 902:
 set HOME to a writable directory in debian/rules (closes: #609468).
   * Switch to source format 3.0 (quilt).
   * Set Standards-Version to 3.9.1 (no changes).
   * Switch to debhelper 7.
   * debian/copyright: update formatting.
   * Add a patch to fix a spelling mistake.
   * Replace invalid_char_pod.patch by an override in debian/rules.
Checksums-Sha1: 
 0e74ac36c35de8a920d3fe869cd21ac891e7dfbd  libtk-pod-perl_0.9939-2.dsc
 a865306b5d572aea60f53de772ee6bab250eac6e 4183 

Bug#609581: Incompatible licences

2011-01-11 Thread debbug609581 . 609581 . iridos
The current source from http://calibre-ebook.com/download_linux
at http://status.calibre-ebook.com/dist/src (tarball) has an updated
COPYING file, which contains:

=COPYING=
Files: src/calibre/ebooks/pdf/*.h,*.cpp
License: GPL-2 or later
 The full text of the GPL is distributed as in
 /usr/share/common-licenses/GPL-2 on Debian systems.
=COPYING=

So the author seems aware of the problem and addressed it.

Diff between the Debian tar and the current download for
src/calibre/ebooks/pdf (see attachment) shows only minor changes
(apart from the license change in each of the files) in input.py and
pdftohtml.py and some more extensive changes in output.py and
writer.py.

All src/calibre/ebooks/pdf/{*.h,*.cpp} that go into pdfreflow.so are
unchanged apart from the license line. So you can just use the new
versions for them, i.e. same code, new license. The license change on
the python files should be inconsequential, as scripts don't link with
libpoppler, hence no real need for a license change on those files and
no problem with introducing new code from upstream.

Correct me if I see this wrong.
Karsten
diff -r calibre-debian/src/calibre/ebooks/pdf//fonts.cpp calibre-ori/src/calibre/ebooks/pdf//fonts.cpp
3c3
  * License: GNU GPL v3
---
  * License: GNU GPL v2+
diff -r calibre-debian/src/calibre/ebooks/pdf//fonts.h calibre-ori/src/calibre/ebooks/pdf//fonts.h
3c3
  * License: GNU GPL v3
---
  * License: GNU GPL v2+
diff -r calibre-debian/src/calibre/ebooks/pdf//images.cpp calibre-ori/src/calibre/ebooks/pdf//images.cpp
0a1,7
 /**
  * Copyright 2009 Kovid Goyal ko...@kovidgoyal.net
  * License: GNU GPL v2+
  */
 
 
 
diff -r calibre-debian/src/calibre/ebooks/pdf//images.h calibre-ori/src/calibre/ebooks/pdf//images.h
0a1,7
 /**
  * Copyright 2009 Kovid Goyal ko...@kovidgoyal.net
  * License: GNU GPL v2+
  */
 
 
 
diff -r calibre-debian/src/calibre/ebooks/pdf//input.py calibre-ori/src/calibre/ebooks/pdf//input.py
25c25
 OptionRecommendation(name='unwrap_factor', recommended_value=0.5,
---
 OptionRecommendation(name='unwrap_factor', recommended_value=0.45,
28c28
 'default is 0.5, this is the median line length.')),
---
 'default is 0.45, just below the median line length.')),
diff -r calibre-debian/src/calibre/ebooks/pdf//links.cpp calibre-ori/src/calibre/ebooks/pdf//links.cpp
3c3
  * License: GNU GPL v3
---
  * License: GNU GPL v2+
diff -r calibre-debian/src/calibre/ebooks/pdf//links.h calibre-ori/src/calibre/ebooks/pdf//links.h
3c3
  * License: GNU GPL v3
---
  * License: GNU GPL v2+
diff -r calibre-debian/src/calibre/ebooks/pdf//main.cpp calibre-ori/src/calibre/ebooks/pdf//main.cpp
0a1,7
 /**
  * Copyright 2009 Kovid Goyal ko...@kovidgoyal.net
  * License: GNU GPL v2+
  */
 
 
 
diff -r calibre-debian/src/calibre/ebooks/pdf//output.py calibre-ori/src/calibre/ebooks/pdf//output.py
61a62,84
 # Remove page-break-before on body element as it causes
 # blank pages in PDF Output
 from calibre.ebooks.oeb.base import OEB_STYLES, XPath
 stylesheet = None
 for item in self.oeb.manifest:
 if item.media_type.lower() in OEB_STYLES:
 stylesheet = item
 break
 if stylesheet is not None:
 from cssutils.css import CSSRule
 classes = set(['.calibre'])
 for x in self.oeb.spine:
 root = x.data
 body = XPath('//h:bo...@class]')(root)
 if body:
 classes.add('.'+body[0].get('class'))
 
 for rule in stylesheet.data.cssRules.rulesOfType(CSSRule.STYLE_RULE):
 if rule.selectorList.selectorText in classes:
 rule.style.removeProperty('page-break-before')
 rule.style.removeProperty('page-break-after')
 
 
80a104,105
 if not isinstance(self.cover_data, basestring):
 self.cover_data = None
diff -r calibre-debian/src/calibre/ebooks/pdf//pdftohtml.py calibre-ori/src/calibre/ebooks/pdf//pdftohtml.py
26,27c26,27
 if (islinux or isfreebsd) and getattr(sys, 'frozen_path', False):
 PDFTOHTML = os.path.join(getattr(sys, 'frozen_path'), 'pdftohtml')
---
 if (islinux or isfreebsd) and getattr(sys, 'frozen', False):
 PDFTOHTML = os.path.join(sys.executables_location, 'bin', 'pdftohtml')
diff -r calibre-debian/src/calibre/ebooks/pdf//reflow.cpp calibre-ori/src/calibre/ebooks/pdf//reflow.cpp
3c3
  * License: GNU GPL v3
---
  * License: GNU GPL v2+
622a623
   default: break;
diff -r calibre-debian/src/calibre/ebooks/pdf//reflow.h calibre-ori/src/calibre/ebooks/pdf//reflow.h
3c3
  * License: GNU GPL v3
---
  * License: GNU GPL v2+
diff -r calibre-debian/src/calibre/ebooks/pdf//utils.h calibre-ori/src/calibre/ebooks/pdf//utils.h
3c3
  * License: GNU GPL v3
---
  * License: GNU GPL v2+
diff -r calibre-debian/src/calibre/ebooks/pdf//writer.py 

Bug#609682: [Pkg-puppet-devel] Bug#609682: facter

2011-01-11 Thread Stig Sandbeck Mathisen

What is the installed version of facter, and its dependencies?
(reportbug facter shows this)

-- 
Stig Sandbeck Mathisen
  ooo, shiny!



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



Bug#609682: Workaround

2011-01-11 Thread Stig Sandbeck Mathisen

Found the issue.  It is a missing lookup key / version in the file
/usr/share/pyshared/lsb_release.py, which belongs to the lsb-release
package.

As a workaround, add:

'6.0' : 'squeeze',

...to the list of distributions in this file until we have a bugfix for
this.  The bug http://bugs.debian.org/609325 tracks this issue.

-- 
Stig Sandbeck Mathisen
  ooo, shiny!



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



Bug#605662: marked as done (release-notes: splasy obsoleted, should be purge prior upgrade)

2011-01-11 Thread Debian Bug Tracking System
Your message dated Tue, 11 Jan 2011 19:16:13 +0100
with message-id 2011081613.ga31...@radis.liafa.jussieu.fr
and subject line Re: Bug#605662: [PATCH] Splashy needs to be purged to avoid 
breaking the boot due to #512951
has caused the Debian Bug report #605662,
regarding release-notes: splasy obsoleted, should be purge prior upgrade
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.)


-- 
605662: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605662
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: upgrade-reports
Severity: critical
Justification: breaks the whole system

Hi there,

I tried to provide this information to #512951 but it was not possible (fixed
and archived since over 1 1/2 years).

during a dist-upgrade from lenny to squeeze I removed (but not purged)
most packages not in squeeze (see #597462: splashy: Splash screen
prevents gdm3 start).
Because of this I got bitten by #512951 which still is in lenny (lenny is
0.3.13-3). Since it breaks all initscripts (return: 24: Illegal number:
Starting) and leaves the filesystem ro #512951 should be fixed in lenny, too.

Workaround: booting via live CD and renaming /etc/lsb-base-logging.sh manually.
After that, splashy is still called during startup (initrd?) and causes a
splashy: 'command not found' IIRC, but that is less important. Please adress
this, too.

Thanks
Christian Meyer



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

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


---End Message---
---BeginMessage---
On Sat, Jan  1, 2011 at 23:52:23 +0100, Julien Cristau wrote:

 Bug#605662
 
 Signed-off-by: Julien Cristau jcris...@debian.org
 ---
  en/upgrading.dbk |   10 ++
  1 files changed, 10 insertions(+), 0 deletions(-)
 
 diff --git a/en/upgrading.dbk b/en/upgrading.dbk
 index 06fc6a8..8f5ac23 100644
 --- a/en/upgrading.dbk
 +++ b/en/upgrading.dbk
 @@ -265,6 +265,16 @@ TODO: surely gdm/kdm are sane?
/para
  /section
  
 +section id=purge-splashy
 +titleRemove conflicting packages/title
 +Due to ulink url=url-bts;512951bug#512951/ulink, the systemitem
 +role=packagesplashy/systemitem package needs to be purged prior to the
 +upgrade.
 +screen
 + # apt-get purge splashy
 +/screen
 +/section
 +
  /section
  
  section id=system-status

committed as r8090.

Cheers,
Julien


signature.asc
Description: Digital signature
---End Message---


Bug#609703: proftpd-basic: sql_prepare_where() buffer overflow (Bug#3536)

2011-01-11 Thread Sebastian Scheible
Package: proftpd-basic
Version: 1.3.1-17lenny4
Severity: critical
Tags: security
Justification: root security hole

As described in 
http://www.h-online.com/open/news/item/Phrack-hole-closed-in-ProFTPD-1156782.html
 upstream version 1.3.3d fixes a remote root exploit in previous versions 
(proftpd bug Bug#3536). Quote: A buffer overflow in the function 
sql_prepare_where() allows attackers to remotely execute arbitrary code on the 
server.


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

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

Versions of packages proftpd-basic depends on:
ii  adduser   3.112  add and remove users and groups
ii  debconf   1.5.36 Debian configuration management sy
ii  debianutils   3.4Miscellaneous utilities specific t
ii  libacl1   2.2.49-4   Access control list shared library
ii  libattr1  1:2.4.44-2 Extended attribute shared library
ii  libc6 2.11.2-7   Embedded GNU C Library: Shared lib
ii  libcap1   1:1.10-14  support for getting/setting POSIX.
ii  libncurses5   5.7+20100313-4 shared libraries for terminal hand
ii  libpam-runtime1.1.1-6.1  Runtime support for the PAM librar
ii  libpam0g  1.1.1-6.1  Pluggable Authentication Modules l
ii  libssl0.9.8   0.9.8o-2   SSL shared libraries
ii  libwrap0  7.6.q-19   Wietse Venema's TCP wrappers libra
ii  netbase   4.43   Basic TCP/IP networking system
ii  sed   4.2.1-7The GNU sed stream editor
ii  ucf   3.0025+nmu1Update Configuration File: preserv
ii  update-inetd  4.38   inetd configuration file updater

proftpd-basic recommends no packages.

Versions of packages proftpd-basic suggests:
ii  openssl   0.9.8o-2   Secure Socket Layer (SSL) binary a
ii  proftpd-doc   1.3.1-17lenny4 Versatile, virtual-hosting FTP dae
ii  proftpd-mod-ldap  1.3.1-17lenny4 versatile, virtual-hosting FTP dae
ii  proftpd-mod-mysql 1.3.1-17lenny4 versatile, virtual-hosting FTP dae
ii  proftpd-mod-pgsql 1.3.1-17lenny4 versatile, virtual-hosting FTP dae

-- Configuration Files:
/etc/cron.monthly/proftpd [Errno 2] No such file or directory: 
u'/etc/cron.monthly/proftpd'

-- debconf information:
* shared/proftpd/inetd_or_standalone: standalone



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



Bug#609705: Trying to edit metadata cause calibre to freeze

2011-01-11 Thread M2C2E.P2C2E
Package: calibre
Version: 0.7.38+dfsg-1
Justification: renders package unusable
Severity: grave

*** Please type your report below this line ***

If you try to edit any Edit metadata individually either via the Edit
metadata button or context
menu will cause calibre main window to freeze and become unusable as well as
the Edit Meta Information dialog not appearing.

Note:
0.7.38 on Windows Vista is functioning correctly.

-- System Information:
Debian Release: 6.0
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages calibre depends on:
ii  calibre-bin  0.7.38+dfsg-1   e-book converter and library
manag
ii  imagemagick  8:6.6.0.4-3 image manipulation programs
ii  python   2.6.6-3+squeeze4interactive high-level
object-orie
ii  python-beautifulsoup 3.1.0.1-2   error-tolerant HTML parser for
Pyt
ii  python-cherrypy3 3.1.2-1 Python web development
framework -
ii  python-cssutils  0.9.7~b2-2  CSS Cascading Style Sheets
parser
ii  python-dateutil  1.4.1-3 powerful extensions to the
standar
ii  python-dbus  0.83.1-1simple interprocess messaging
syst
ii  python-django-taggin 0.3.1-1 A generic tagging application
for
ii  python-encutils  0.9.7~b2-2  Encoding detection collection
for
ii  python-imaging   1.1.7-2 Python Imaging Library
ii  python-lxml  2.2.8-2 pythonic binding for the
libxml2 a
ii  python-mechanize 0.1.11-1.1  stateful programmatic web
browsing
ii  python-pkg-resources 0.6.14-4Package Discovery and Resource
Acc
ii  python-pyparsing 1.5.2-2 Python parsing module
ii  python-pypdf 1.12-3  PDF toolkit implemented solely
in
ii  python-pythonmagick  0.9.1-3+b1  Object-oriented Python
interface t
ii  python-qt4   4.7.3-1+b1  Python bindings for Qt4
ii  python-routes1.12.3-1Routing Recognition and
Generation
ii  ttf-liberation   1.05.2.20091019-4   Fonts with the same metrics as
Tim
ii  xdg-utils1.0.2+cvs20100307-3 desktop integration utilities
from

Versions of packages calibre recommends:
ii  python-dnspython  1.8.0-1DNS toolkit for Python

calibre suggests no packages.

-- no debconf information


Bug#609477: marked as done (spamassassin-heatu: Typo in dependancy: spamasassin)

2011-01-11 Thread Debian Bug Tracking System
Your message dated Tue, 11 Jan 2011 18:32:26 +
with message-id e1pcj18-0002yb...@franck.debian.org
and subject line Bug#609477: fixed in spamassassin-heatu 3.02+20101108-2
has caused the Debian Bug report #609477,
regarding spamassassin-heatu: Typo in dependancy: spamasassin
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.)


-- 
609477: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609477
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: spamassassin-heatu
Version: 3.02+20101108-1
Severity: normal

spamassassin-heatu depends on spamasassin which does not exist. It should be
spamassassin.

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (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/bash


---End Message---
---BeginMessage---
Source: spamassassin-heatu
Source-Version: 3.02+20101108-2

We believe that the bug you reported is fixed in the latest version of
spamassassin-heatu, which is due to be installed in the Debian FTP archive:

spamassassin-heatu_3.02+20101108-2.debian.tar.gz
  to main/s/spamassassin-heatu/spamassassin-heatu_3.02+20101108-2.debian.tar.gz
spamassassin-heatu_3.02+20101108-2.dsc
  to main/s/spamassassin-heatu/spamassassin-heatu_3.02+20101108-2.dsc
spamassassin-heatu_3.02+20101108-2_all.deb
  to main/s/spamassassin-heatu/spamassassin-heatu_3.02+20101108-2_all.deb



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 609...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Jari Aalto jari.aa...@cante.net (supplier of updated spamassassin-heatu 
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 Jan 2011 20:48:07 +0200
Source: spamassassin-heatu
Binary: spamassassin-heatu
Architecture: source all
Version: 3.02+20101108-2
Distribution: unstable
Urgency: low
Maintainer: Jari Aalto jari.aa...@cante.net
Changed-By: Jari Aalto jari.aa...@cante.net
Description: 
 spamassassin-heatu - Heuristic Email Address Tracker Utility for Spamassassin
Closes: 609477
Changes: 
 spamassassin-heatu (3.02+20101108-2) unstable; urgency=low
 .
   * debian/control
 - (Depends): Fix spelling of spamassassin (Closes: #609477).
Checksums-Sha1: 
 a95c4ca8c7a5afe23824181d114abb008db2cf3e 1313 
spamassassin-heatu_3.02+20101108-2.dsc
 f434f46315e6173efd366aaccfd425b9c7ffd245 5383 
spamassassin-heatu_3.02+20101108-2.debian.tar.gz
 20dc9077c0cc1470acff937f827c5f5afba3b53a 11602 
spamassassin-heatu_3.02+20101108-2_all.deb
Checksums-Sha256: 
 5bed7ecd42b6b4a516b760e66176a82a554d53ad552c851c68419e50433f2073 1313 
spamassassin-heatu_3.02+20101108-2.dsc
 bb10a0341bd0b5931b1a6aff3620ef5588ea72ce112468fcd7364f4c607e9e0b 5383 
spamassassin-heatu_3.02+20101108-2.debian.tar.gz
 05d08216d543d2dbb47e13644237b0db7f74ade057016a9ca3ef5b1d10e9f77a 11602 
spamassassin-heatu_3.02+20101108-2_all.deb
Files: 
 f16092c7ae762cd95faead8ee6885769 1313 mail optional 
spamassassin-heatu_3.02+20101108-2.dsc
 133ea7beb0100c0ce00384e198b31dc6 5383 mail optional 
spamassassin-heatu_3.02+20101108-2.debian.tar.gz
 3a8de94c3cd75cfae946492175277461 11602 mail optional 
spamassassin-heatu_3.02+20101108-2_all.deb

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

iEYEARECAAYFAk0sjK4ACgkQLARVQsm1XazMGgCguPvJd5iKYeuvEB9MoD0NmorE
/lcAn2ppmiCUOj+7abQD10oOvrcQbUJi
=tPO0
-END PGP SIGNATURE-


---End Message---


Bug#603544: [Pkg-openldap-devel] Bug#603544: rc bug?

2011-01-11 Thread Matthijs Mohlmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 01/07/2011 02:07 PM, Matthijs Möhlmann wrote:
 Should not this be an RC bug? Breaking some people's slapd systems on
 upgrade to squeeze does not feel nice.
 
 Correct,
 
 I'm going to work on this one.
 
 Regards,
 
 Matthijs Möhlmann

I already planned to work on this one this weekend, but I got sick. (bad
timing)

I just checked your configuration file. Do you have the correct schema
files configured in /etc/ldap/slapd.conf ?

If I check the contents of gosa-schema then I see the following:
/etc/ldap/schema/gosa/goto.schema
/etc/ldap/schema/gosa/gosystem.schema
/etc/ldap/schema/gosa/rfc2307bis.schema
/etc/ldap/schema/gosa/goserver.schema
/etc/ldap/schema/gosa/gosa-samba3.schema
/etc/ldap/schema/gosa/trust.schema
/etc/ldap/schema/gosa/gofon.schema
/etc/ldap/schema/gosa/gofax.schema
/etc/ldap/schema/gosa/samba3.schema
/etc/ldap/schema/gosa/goto-mime.schema

And your configuration shows me:
 include /etc/ldap/schema/core.schema
 include /etc/ldap/schema/cosine.schema
 include /etc/ldap/schema/nis.schema
 include /etc/ldap/schema/inetorgperson.schema
 include /etc/ldap/schema/samba.schema
 include /etc/ldap/schema/gosystem.schema
 include /etc/ldap/schema/gofon.schema
 include /etc/ldap/schema/goto.schema
 include /etc/ldap/schema/gofax.schema
 include /etc/ldap/schema/goserver.schema
 include /etc/ldap/schema/gosa+samba3.schema

Notice the extra directory here, some left-over of the previous package?

That's my first observation here, I'm doing a lenny to squeeze upgrade
now to test if I get more upgrade failures.

Regards,

Matthijs Möhlmann
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBAgAGBQJNLKkPAAoJEBXBjvSJ+ky+t0kP/RLsN7RJV41Abcs0JRHa3BM1
X4RKuMcRZVqms9EIqik99AITH5czmmc2dFLpWywonhyTrVr77VJsa76i2X12degD
Atmp8gZ3oCQ25hPm5YrOfng5RW3nNiH4uI+FqBQaLOz/Y1WgrJnhv5W74fJZxXfR
oBDb0M13KlEeoNUrURqRoQa3iklWde3bAY/RMgY5V2+M08DUlphtwfehb+SAzUAJ
MBrBpuOKRHsjcJuQ5EoLlz/vfTImiBBMFmnE2vt+qGonnBF0PkvidDetccEvzI2V
74Hev2faJx2kBtolfwDoqi+9o0FvKTEJ655Mm4ct+NazkHCtYiSOL4R7An8NHi5q
kVv1oibx8XJn8lgWvCfBDHE/WpFe4yH5nhUnKAQwZ++KVLptX9UKIsR2mtBSxRxw
k4020J+ZUSc1v7XQHj6yngPvl/KtaJAKfQw6XlVxcMZpmH5xHRWDd2tTCeAQlKJA
lYYQx+Y6jbYtCvj0nBrjbhxwSmuwR6cuLEVwgJm1wRATrxReBqgYAg9C3BqKjFrd
EDA9LazXy1ziBX8seB9Ymt+PjD9rnl6K2cDC+JK28ZrhVhLdC6P+BUCsI+WcJfbz
Jxs3er8qIsmXmdMTL8Y+eDO2qLdHsRp20wXfLkirW3l2blb+posathKf0ifR5BfD
PckLIRvHD9Y/hDR01D7n
=p4JL
-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#609624: console-setup: Broken Greek translation

2011-01-11 Thread Christian PERRIER
Quoting Julien Cristau (jcris...@debian.org):
 On Tue, Jan 11, 2011 at 10:58:11 +0100, Julien Cristau wrote:
 
  $ grep -c '??' debian/po/*|grep -v :0
  debian/po/fa.po:122
 
 Should be restored.
 
  debian/po/he.po:47
 
 Restored minus one string.
 
  debian/po/is.po:118
 
 This doesn't seem to be in a bug report, so I don't know where to find
 the original file.
 
  debian/po/pa.po:162
 
 Same, as is.po, I can't find it.


Of crap, probably both were sent to me directly (happens with some
translators...).

I see that you uploaded today to fix what you could fix. I'll try to
reupload something else if I can dig out  the latest versions of
everything.

Sadly, none of the automated tests I had up to now were able to detect
such error. I'll add something like grep '??' foo.po in my local PO
file test script to avoid this in the future (unnless mutt is soon fixed).




signature.asc
Description: Digital signature


Bug#604134: ppc: after debian installation MacOS 9.2 won't recognize, disk anymore

2011-01-11 Thread Adam D. Barratt
user release.debian@packages.debian.org
tag 604134 + squeeze-ignore
usertag 604134 + squeeze-can-defer
thanks

Hi,

On Tue, 2011-01-04 at 01:43 +, Sebastian Schroeer wrote:
 Dear Mr Wittau!
 
 To make sure that nothing unexpected will cause you troubles, please 
 read through my complete text first before doing anything: I 
 successfully run Debian Lenny, Mac OS 9, Mac OS X 10.4, and 10.5 on my 
 PowerMac G4/800MHz Quicksilver using just one hard disk drive with 
 various partitions. 

It sounds like there's a workaround for the problems mentioned in this
bug report, so I don't think this should be a blocker for squeeze;
tagging appropriately.

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: Re: Bug#604134: ppc: after debian installation MacOS 9.2 won't recognize, disk anymore

2011-01-11 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 user release.debian@packages.debian.org
Setting user to release.debian@packages.debian.org (was 
a...@adam-barratt.org.uk).
 tag 604134 + squeeze-ignore
Bug #604134 [parted] partman-base: Makes MacOS 9 incompatible partition table
Added tag(s) squeeze-ignore.
 usertag 604134 + squeeze-can-defer
Bug#604134: partman-base: Makes MacOS 9 incompatible partition table
There were no usertags set.
Usertags are now: squeeze-can-defer.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
604134: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=604134
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#609535: psiconv: Patch for GraphicsMagick API change causing crash on startup

2011-01-11 Thread Jakub Wilk

* Reuben Thomas r...@sc3d.org, 2011-01-11, 15:15:
The traceback you give is identical with that obtained if the patch is 
not applied.


At least on my machine, they are different. When I run 
psiconv examples/Clipart I get:


#0  0xf76dc537 in raise () from /lib/libc.so.6
#1  0xf76df922 in abort () from /lib/libc.so.6
#2  0xf76d5727 in __assert_fail () from /lib/libc.so.6
#3  0xf7d95e5c in LockSemaphoreInfo (semaphore_info=0x0) at 
magick/semaphore.c:525
#4  0xf7d61614 in GetMagickInfoEntryLocked (name=0x0) at magick/magick.c:368
#5  0xf7d65377 in OpenModules (exception=0xd4b4) at magick/module.c:1562
#6  0x0804a30a in ?? ()
#7  0x0804a814 in ?? ()
#8  0x0804952b in ?? ()
#9  0xf76c8c76 in __libc_start_main () from /lib/libc.so.6
#10 0x08049421 in ?? ()

without the patch and

#0  0xf76d3537 in raise () from /lib/libc.so.6
#1  0xf76d6922 in abort () from /lib/libc.so.6
#2  0xf76cc727 in __assert_fail () from /lib/libc.so.6
#3  0xf7d95e32 in LockSemaphoreInfo (semaphore_info=0x8059840) at 
magick/semaphore.c:526
#4  0xf7cce852 in ReferenceBlob (blob=0x80597e8) at magick/blob.c:3818
#5  0xf7d5ebf3 in SyncNextImageInList (images=0x80ba6e8) at magick/list.c:943
#6  0xf7ec9fd3 in WriteTIFFImage (image_info=0x8587938, image=0x80ba6e8) at 
coders/tiff.c:4825
#7  0xf7d15f96 in WriteImage (image_info=0x8575858, image=0x80ba6e8) at 
magick/constitute.c:8947
#8  0xf7cd18f1 in ImageToBlob (image_info=0x8573780, image=0x80ba6e8, 
length=0xd420, exception=0xd424) at magick/blob.c:1925
#9  0x0804b146 in image_to_list (list=0x8059598, image=0x80ba6e8, dest=0x804f7d2 
TIFF) at gen_image.c:98
#10 0x0804b3ec in gen_image_list (config=0x8059360, list=0x8059598, sections=0x8059680, 
dest=0x804f7d2 TIFF) at gen_image.c:163
#11 0x0804b55b in gen_clipart (config=0x8059360, list=0x8059598, f=0x80595b0, 
dest=0x804f7d2 TIFF) at gen_image.c:193
#12 0x0804b637 in gen_image (config=0x8059360, list=0x8059598, file=0x8059588, 
dest=0x804f7d2 TIFF, encoding_type=ENCODING_UTF8) at gen_image.c:222
#13 0x0804a063 in main (argc=2, argv=0xd714) at psiconv.c:298

with it.


And no, I have no idea (yet) what's wrong. :)

--
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#609624: console-setup: Broken Greek translation

2011-01-11 Thread Christian PERRIER
Quoting Julien Cristau (jcris...@debian.org):
 On Tue, Jan 11, 2011 at 06:58:39 +0100, Christian PERRIER wrote:
 
  Here's the file, resynced with the current POT file, and using the
  correct encoding.
  
 Thanks.  Should I take care of an upload?


I built c-s today with that fix. I should upload it tonight...unless
my attention is driven elsewhere by real life.

Please feel free to upload tomorrow if nothing happened.




signature.asc
Description: Digital signature


Bug#603544: [Pkg-openldap-devel] Bug#603544: rc bug?

2011-01-11 Thread Frederik Himpe
On Tue, 2011-01-11 at 20:01 +0100, Matthijs Mohlmann wrote:

 I already planned to work on this one this weekend, but I got sick. (bad
 timing)
 
 I just checked your configuration file. Do you have the correct schema
 files configured in /etc/ldap/slapd.conf ?
 
[...]

 Notice the extra directory here, some left-over of the previous package?

You are right. But it should not have any influence on this bug: on
another server where I am using the schemas in /etc/ldap/schema/gosa/
provided by the gosa-schema package, the same bug happens.

-- 
Frederik Himpe




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



Bug#609358: marked as done (telepathy-butterfly: does not work with papyon 0.5.4)

2011-01-11 Thread Debian Bug Tracking System
Your message dated Tue, 11 Jan 2011 19:17:41 +
with message-id e1pcjiv-0001qc...@franck.debian.org
and subject line Bug#609358: fixed in telepathy-butterfly 0.5.15-1
has caused the Debian Bug report #609358,
regarding telepathy-butterfly: does not work with papyon 0.5.4
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.)


-- 
609358: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609358
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: telepathy-butterfly
Version: 0.5.14-1
Severity: grave
Justification: renders package unusable

Since papyon in experimental was updated from 0.5.2 to 0.5.4, empathy 2.30 from
Squeeze does not show my MSN contacts anymore. This bug can be found in
empathy's debug logs:

tp_contact_list_got_added_members_cb: Error:
org.freedesktop.DBus.Python.AttributeError: Traceback (most recent call last):
  File /usr/lib/pymodules/python2.6/dbus/service.py, line 702, in _message_cb
retval = candidate_method(self, *args, **keywords)
  File /usr/lib/python2.6/dist-packages/butterfly/contacts.py, line 98, in
GetContactAttributes
results = functions[interface](handles)
  File /usr/lib/python2.6/dist-packages/butterfly/contacts.py, line 79, in
lambda
lambda x: self.GetAliases(x).items(),
  File /usr/lib/python2.6/dist-packages/butterfly/aliasing.py, line 57, in
GetAliases
result[contact] = self._get_alias(contact)
  File /usr/lib/python2.6/dist-packages/butterfly/aliasing.py, line 133, in
_get_alias
alias = contact.infos.get(ContactGeneral.ANNOTATIONS, {}).\
AttributeError: 'Profile' object has no attribute 'infos'

I guess butterfly needs to be updated to new version 0.5.15 to make it
compatible with the new papyon.



-- System Information:
Debian Release: 6.0
  APT prefers testing
  APT policy: (300, 'testing'), (200, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages telepathy-butterfly depends on:
ii  python2.6.6-3+squeeze4   interactive high-level object-orie
ii  python-central0.6.16+nmu1register and build utility for Pyt
ii  python-dbus   0.83.1-1   simple interprocess messaging syst
ii  python-gobject2.21.4+is.2.21.3-1 Python bindings for the GObject li
ii  python-papyon 0.5.4-1MSN client library written in Pyth
ii  python-telepathy  0.15.17-1  Python language bindings for telep

Versions of packages telepathy-butterfly recommends:
ii  python-libproxy   0.3.1-2automatic proxy configuration mana

telepathy-butterfly suggests no packages.

-- no debconf information


---End Message---
---BeginMessage---
Source: telepathy-butterfly
Source-Version: 0.5.15-1

We believe that the bug you reported is fixed in the latest version of
telepathy-butterfly, which is due to be installed in the Debian FTP archive:

telepathy-butterfly_0.5.15-1.debian.tar.gz
  to main/t/telepathy-butterfly/telepathy-butterfly_0.5.15-1.debian.tar.gz
telepathy-butterfly_0.5.15-1.dsc
  to main/t/telepathy-butterfly/telepathy-butterfly_0.5.15-1.dsc
telepathy-butterfly_0.5.15-1_all.deb
  to main/t/telepathy-butterfly/telepathy-butterfly_0.5.15-1_all.deb
telepathy-butterfly_0.5.15.orig.tar.gz
  to main/t/telepathy-butterfly/telepathy-butterfly_0.5.15.orig.tar.gz



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

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

Debian distribution maintenance software
pp.
Laurent Bigonville bi...@debian.org (supplier of updated telepathy-butterfly 
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 Jan 2011 20:01:10 +0100
Source: telepathy-butterfly
Binary: telepathy-butterfly
Architecture: source all
Version: 0.5.15-1
Distribution: experimental
Urgency: low
Maintainer: Debian Telepathy maintainers 
pkg-telepathy-maintain...@lists.alioth.debian.org
Changed-By: Laurent Bigonville bi...@debian.org
Description: 
 telepathy-butterfly - MSN connection manager for Telepathy
Closes: 609358
Changes: 
 telepathy-butterfly (0.5.15-1) experimental; urgency=low
 .
   * New upstream 

Bug#605662: [PATCH] Splashy needs to be purged to avoid breaking the boot due to #512951

2011-01-11 Thread Adam D. Barratt
On Sat, 2011-01-01 at 23:52 +0100, Julien Cristau wrote:
 diff --git a/en/upgrading.dbk b/en/upgrading.dbk
 index 06fc6a8..8f5ac23 100644
 --- a/en/upgrading.dbk
 +++ b/en/upgrading.dbk
 @@ -265,6 +265,16 @@ TODO: surely gdm/kdm are sane?
/para
  /section
  
 +section id=purge-splashy
 +titleRemove conflicting packages/title

A small point, and apologies for not having spotted it earlier, but the
section ID looks a little incongruous when combined with the title,
imho.  Might it be worth having a more generic section ID, in case more
packages are added?

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#603544: [Pkg-openldap-devel] Bug#603544: rc bug?

2011-01-11 Thread Matthijs Mohlmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 01/11/2011 08:17 PM, Frederik Himpe wrote:
 On Tue, 2011-01-11 at 20:01 +0100, Matthijs Mohlmann wrote:
 
 I already planned to work on this one this weekend, but I got sick. (bad
 timing)

 I just checked your configuration file. Do you have the correct schema
 files configured in /etc/ldap/slapd.conf ?

 [...]
 
 Notice the extra directory here, some left-over of the previous package?
 
 You are right. But it should not have any influence on this bug: on
 another server where I am using the schemas in /etc/ldap/schema/gosa/
 provided by the gosa-schema package, the same bug happens.
 

Do you have some more information from that server too ? Configuration ?
Because I changed the slapd.conf to use the new schema files, moved the
backup out of the way and did the upgrade and all went ok.

Regards,

Matthijs Möhlmann
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBAgAGBQJNLLDPAAoJEBXBjvSJ+ky+ZjUP/0ny2RfFeXfO8Wyd+4ze7eRA
YDQw7jxe0yXgfZslR8MpvkqrFtdjS6nxAANoLO0zdhau7QQhK73b7eslOUR4CPjU
9giI/o9fajszl7siHrQOVo0/rg8eXD7Ck29Lfd1VT/EOWJzMuFRUDLMo/kJ7HEFU
rM3mN/4GutbYq9CG6ehGauMih0NcYnPNhlhRUQruMnmHSzmD42cTI+HqPYry7+/o
dW9lneCPdfmibS3/yNSQuzfsud/Y2o2OUVvgW7E28taE4etJRQwYTH0s6U0GgcGL
F7mUhYo/sBdoQiSxCMkzxhNGIaxD/DCisE53b42Fkn1W+bwSZ9RWmy6Vn1NC1DBP
w4l59Uv3GU/4IaeXgfUD+T2yN089y2xrT4IT+F/KwucGEQycDhA/yE0OQfsQrMYQ
r0z+ONM3Gf74ADbYzpFoO7qBudhqN925auJg5XSfzh3cEj8QbVx1F2DGBWhBZ1IT
0soCBfv4t1yoM9ISycf0IfVR5Coo82wr+10DJx4Z/3VvF9xfamQ6M4KZPkF6uCyK
yWFggk4QL+xXLl/vBkOvdhOsGUV/hGYQe1w7pqYI2uyXEaeCp1Mc3HP2V7sp/ayR
v6ZFWHD1fomq7BR8cPegdlwU2FlN89n7Oq2KztVlYqQLqno1XDio7oPlp3FdVKs+
CtZpbLr7R/jX23a/1RBv
=3+2v
-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#609703: Mitigation of root exploit

2011-01-11 Thread Sebastian Scheible
A mitigating factor for this issue is that the default user configured 
for 1.3.1-17lenny4 and most likely other versions is proftpd rather than 
root. Didn't notice that earlier, sorry about that. Please downgrade the 
severity if approrpiate.




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



Bug#603544: [Pkg-openldap-devel] Bug#603544: rc bug?

2011-01-11 Thread Frederik Himpe
On Tue, 2011-01-11 at 20:34 +0100, Matthijs Mohlmann wrote:

 Do you have some more information from that server too ? Configuration ?
 Because I changed the slapd.conf to use the new schema files, moved the
 backup out of the way and did the upgrade and all went ok.

$ dpkg -l slapd gosa-schema
Desired=Unknown/Install/Remove/Purge/Hold
|
Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name   VersionDescription
+++-==-==-
ii  gosa-schema2.6.11-2   LDAP schema for GOsa
iF  slapd  2.4.23-6   OpenLDAP server (slapd)

Hmm, I'm getting something different now on this system:

Preparing to replace slapd 2.4.23-6
(using .../slapd_2.4.23-7_amd64.deb) ...
Stopping OpenLDAP: slapd.
Unpacking replacement slapd ...
Preparing to replace libldap-2.4-2 2.4.23-6
(using .../libldap-2.4-2_2.4.23-7_amd64.deb) ...
Unpacking replacement libldap-2.4-2 ...
Processing triggers for man-db ...
Setting up libldap-2.4-2 (2.4.23-7) ...
Setting up ldap-utils (2.4.23-7) ...
Setting up slapd (2.4.23-7) ...
  Backing up /etc/ldap/slapd.conf in /var/backups/slapd-2.4.11-1
+lenny2... done.
  Moving old database directories to /var/backups:
  - directory cn=accesslog... done.
  - directory dc=ai,dc=vub,dc=ac,dc=be... done.
  Loading from /var/backups/slapd-2.4.11-1+lenny2: 
  - directory cn=accesslog... cp: cannot create regular file
`/var/lib/ldap/accesslog/': Is a directory
dpkg: error processing slapd (--configure):
 subprocess installed post-installation script returned error exit
status 1

And now /var/lib/ldap is totally empty!


include /etc/ldap/schema/core.schema
include /etc/ldap/schema/cosine.schema
include /etc/ldap/schema/nis.schema
include /etc/ldap/schema/inetorgperson.schema
include /etc/ldap/schema/gosa/samba3.schema
include /etc/ldap/schema/gosa/gosystem.schema
include /etc/ldap/schema/gosa/gofon.schema
include /etc/ldap/schema/gosa/goto.schema
include /etc/ldap/schema/gosa/gofax.schema
include /etc/ldap/schema/gosa/goserver.schema
include /etc/ldap/schema/gosa/gosa-samba3.schema
pidfile /var/run/slapd/slapd.pid
argsfile/var/run/slapd/slapd.args
loglevel0
modulepath  /usr/lib/ldap
moduleload  back_hdb
moduleload  accesslog
moduleload  syncprov
tool-threads 1
backend hdb
databasehdb
suffix  cn=accesslog
directory   /var/lib/ldap/accesslog
rootdn  cn=accesslog
index default eq
index entryCSN,objectClass,reqEnd,reqResult,reqStart
limits dn.exact=cn=replicator,dc=ai,dc=vub,dc=ac,dc=be time.soft=unlimited 
time.hard=unlimited size.soft=unlimited size.hard=unlimited
overlay syncprov
syncprov-nopresent TRUE
syncprov-reloadhint TRUE 
databasehdb
cachesize 2000
idlcachesize 6000
suffix  dc=ai,dc=vub,dc=ac,dc=be
rootdn  cn=admin,dc=ai,dc=vub,dc=ac,dc=be
rootpw  {SSHA}XXX
directory   /var/lib/ldap
TLSCertificateFile  /etc/ldap/slapdcert.pem
TLSCertificateKeyFile   /etc/ldap/slapdkey.pem
dbconfig set_cachesize 0 25165824 0
dbconfig set_lk_max_objects 1500
dbconfig set_lk_max_locks 1500
dbconfig set_lk_max_lockers 1500
index   objectClass,uidNumber,gidNumber   eq
index   cn,sn,uid,displayName   pres,sub,eq
index   memberUid,mail,givennameeq,subinitial
index   sambaSID,sambaPrimaryGroupSID,sambaDomainName   eq
index   gosaMailAlternateAddresseq  
index entryCSN eq
index entryUUID eq
overlay syncprov
syncprov-nopresent TRUE
syncprov-reloadhint TRUE
syncprov-checkpoint 100 10
syncprov-sessionlog 100
limits dn.exact=cn=replicator,dc=ai,dc=vub,dc=ac,dc=be time.soft=unlimited 
time.hard=unlimited size.soft=unlimited size.hard=unlimited
overlay accesslog
logdb cn=accesslog
logops writes
logsuccess TRUE
logpurge 07+00:00 01+00:00
limits dn.exact=cn=replicator,dc=ai,dc=vub,dc=ac,dc=be time.soft=unlimited 
time.hard=unlimited size.soft=unlimited size.hard=unlimited
lastmod on
checkpoint  512 30
access to *
by dn.base=cn=replicator,dc=ai,dc=vub,dc=ac,dc=be read
by * break
access to 
attrs=userPassword,shadowLastChange,sambaLMPassword,sambaNTPassword,goImapPassword
by anonymous auth
by self write
by * none
access to dn.base= by * read
access to *
by * read




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



Bug#606370: CVE-2010-2761 CVE-2010-4410 CVE-2010-4411

2011-01-11 Thread Niko Tyni
On Fri, Jan 07, 2011 at 02:48:28PM +0200, Niko Tyni wrote:

 Done, just uploaded perl/5.10.1-17 with the attached patch.

I've also updated libcgi-pm-perl in the pkg-perl SVN repository to 3.51,
which fixes this. I didn't upload it yet as my time window for this is
closing fast.

It would be great if somebody could pick up this and the tpu upload
of 3.49.
-- 
Niko Tyni   nt...@debian.org



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



Bug#609228: libpadre-plugin-spellcheck-perl: Failing tests; Tries to create .padre directory for building user

2011-01-11 Thread Damyan Ivanov
-=| Damyan Ivanov, Sat, Jan 08, 2011 at 02:27:44PM +0200 |=-
 -=| Salvatore Bonaccorso, Fri, Jan 07, 2011 at 04:48:12PM +0100 |=-
 What would you recommend as a fix? I was thinking about runnung 
 tests in a wrapper that sets HOME to a temporary directory and then 
 wipes it out.

Hm, this seems like a possible improvement to sbuild. Wat is the 
purpose of setting HOME to a non-writeable location?



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



Bug#609228: libpadre-plugin-spellcheck-perl: Failing tests; Tries to create .padre directory for building user

2011-01-11 Thread Damyan Ivanov
-=| Salvatore Bonaccorso, Mon, Jan 10, 2011 at 09:20:32AM +0100 |=-
 On Sat, Jan 08, 2011 at 02:27:44PM +0200, Damyan Ivanov wrote:
  -=| Salvatore Bonaccorso, Fri, Jan 07, 2011 at 04:48:12PM +0100 |=-
   Source: libpadre-plugin-spellcheck-perl
   Version: 1.1.2-1
   Severity: serious
   Justification: FTBFS
  
  Is this with sbuilder settings as on official buildds? Otherwise I'd 
  say it is  of severity:importatnt. (worth fixing in anu case)
 
 I talked about that to the release team. We have for all of them with
 arch:all anyway the squeeze-ignore tag, but they should be fixed at
 least later on. When Lucas Nussbaum builds the archive, he generally
 notes too such problems with unwritable homes IIRC. Official buildds
 seems to have something like:
 
 ---(mount-defaults.buildd)--
 # mount.defaults: static file system information for chroots.
 # Note that the mount point will be prefixed by the chroot path
 # (CHROOT_PATH)
 #
 # file system mount point   type  options   dump  pass
 proc/proc   procdefaults0   0
 /dev/pts/dev/ptsnonerw,bind 0   0
 tmpfs   /dev/shmtmpfs   defaults0   0
 /home/buildd/build-trees/build  nonerw,bind   
   0   0
 

I am still not convinced that this is a problem with the package or 
a problem that should be solved per package.

Home directories are a fundamental UNIX thing, similar to mktemp call. 
For what I guess are safety reasons, sbuild decided not to heep a home 
directory across builds. This solves the problem of build 
interference, but as seen it creates problems for somw packages.

I agree that a fix in the package is simple and quick, but I believe 
this is better fixed globally, e.g. at sbuild level. How difficult is 
it to set up a temporary home directory before starting the build and 
wipe it after (and save many maintainers the job)? Would there be some 
negative effects?



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



Bug#608288: Debian not affected

2011-01-11 Thread Moritz Muehlenhoff
reopen 608288
thanks

On Sun, Jan 09, 2011 at 04:43:31PM +, Jo Shields wrote:
 
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
  
 We ship an antique Moonlight package in Debian, which is not affected
 by CVE-2010-4254. Only 2.x releases or newer sre affected - i.e. the
 bug relates to incorrect validation of generic methods, where Moon 1.x
 doesn't even contain enough of Mono to *have* generic methods.

Ok, noted in the Security Tracker.

However, the second issue - CVE-2010-4225 - is not part of Moonlight,
so I'm reopening the bug.

Cheers,
Moritz



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



Processed: Re: Debian not affected

2011-01-11 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reopen 608288
Bug #608288 {Done: Jo Shields direct...@apebox.org} [moon] mono: 
CVE-2010-4254 and CVE-2010-4225
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
608288: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=608288
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#609228: libpadre-plugin-spellcheck-perl: Failing tests; Tries to create .padre directory for building user

2011-01-11 Thread Julien Cristau
On Mon, Jan 10, 2011 at 07:43:26 +0200, Damyan Ivanov wrote:

 -=| Damyan Ivanov, Sat, Jan 08, 2011 at 02:27:44PM +0200 |=-
  -=| Salvatore Bonaccorso, Fri, Jan 07, 2011 at 04:48:12PM +0100 |=-
  What would you recommend as a fix? I was thinking about runnung 
  tests in a wrapper that sets HOME to a temporary directory and then 
  wipes it out.
 
 Hm, this seems like a possible improvement to sbuild. Wat is the 
 purpose of setting HOME to a non-writeable location?
 
Catching bugs like this one.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#591503: undeclared conflict against python-pysnmp2

2011-01-11 Thread Adam D. Barratt
On Sun, 2011-01-09 at 20:20 +0100, Jakub Wilk wrote:
 * Christoph Egger christ...@debian.org, 2011-01-09, 19:01:
 Seems to be a undeclared conflict against python-pysnmp2
 
 I believe that python-pysnmp{2,4} was designed to be co-installable, 
 just something didn't work out. Part of the problem is that one of them 
 was built with python-support  0.90 and the other one with 
 python-support = 0.90, so they have different directory layouts.

I've just rebuilt both source packages in an up-to-date pbuilder, with
the result that only one of python-pysnmp{2,4,-common} is installable at
any one time, as each of the three packages
contains /usr/share/pyshared/pysnmp/__init__.py.

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#609535: psiconv: Patch for GraphicsMagick API change causing crash on startup

2011-01-11 Thread Jakub Wilk

retitle 609535 psiconv: magick/semaphore.c:526: LockSemaphoreInfo: Assertion 
`semaphore_info-signature == 0xabacadabUL' failed.
tags 609535 - patch
thanks

Thanks for your bugreport! (I'm not maintainer of this package, but I'll 
comment anyway.)


* Reuben Thomas r...@sc3d.org, 2011-01-10, 12:48:

--- psiconv-0.9.8/configure.in  2005-11-15 15:43:19.0 +
+++ psiconv-0.9.8-rrt/configure.in  2011-01-10 12:35:58.0 +
@@ -112,6 +112,7 @@
   #include time.h
 #include magick/api.h
   int main(void) { ExceptionInfo exception;
+   InitializeMagick(NULL);
   GetExceptionInfo(exception);
   OpenModules(exception);
   return (NULL ==  GetMagickInfo(NULL,exception)); }],


This hunk is OK.


--- psiconv-0.9.8/program/psiconv/magick-aux.c  2005-11-15 15:08:21.0 
+
+++ psiconv-0.9.8-rrt/program/psiconv/magick-aux.c  2011-01-10 
12:37:09.0 +
@@ -37,6 +37,7 @@
const MagickInfo * GetMagickFileList(void)
{
  ExceptionInfo exc;
+  InitializeMagick(NULL);
  GetExceptionInfo(exc);
  OpenModules(exc);
  return GetMagickInfo(NULL,exc);


This doesn't look good. GetMagickFileList is called in a loop and
InitializeMagick is supposed to be run only once.

And in fact, after applying your patch, psiconv still crashes for me 
with the following traceback:


#0  0xf76cf537 in raise () from /lib/libc.so.6
#1  0xf76d2922 in abort () from /lib/libc.so.6
#2  0xf76c8727 in __assert_fail () from /lib/libc.so.6
#3  0xf7d91e32 in LockSemaphoreInfo () from /usr/lib/libGraphicsMagick.so.3
#4  0xf7cca852 in ReferenceBlob () from /usr/lib/libGraphicsMagick.so.3
#5  0xf7d5abf3 in SyncNextImageInList () from /usr/lib/libGraphicsMagick.so.3
#6  0xf7ec5fd3 in ?? () from /usr/lib/libGraphicsMagick.so.3
#7  0xf7d11f96 in WriteImage () from /usr/lib/libGraphicsMagick.so.3
#8  0xf7ccd8f1 in ImageToBlob () from /usr/lib/libGraphicsMagick.so.3
#9  0x0804b152 in image_to_list (list=0x8059590, image=0x80ba6e8, dest=0x804f7d2 
TIFF) at gen_image.c:98
#10 0x0804b3f8 in gen_image_list (config=0x8059358, list=0x8059590, sections=0x8059938, 
dest=0x804f7d2 TIFF) at gen_image.c:163
#11 0x0804b567 in gen_clipart (config=0x8059358, list=0x8059590, f=0x80595a8, 
dest=0x804f7d2 TIFF) at gen_image.c:193
#12 0x0804b643 in gen_image (config=0x8059358, list=0x8059590, file=0x8059580, 
dest=0x804f7d2 TIFF, encoding_type=ENCODING_UTF8) at gen_image.c:222
#13 0x0804a063 in main (argc=2, argv=0xd714) at psiconv.c:298

--
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: Bug#609535: psiconv: Patch for GraphicsMagick API change causing crash on startup

2011-01-11 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 retitle 609535 psiconv: magick/semaphore.c:526: LockSemaphoreInfo: Assertion 
 `semaphore_info-signature == 0xabacadabUL' failed.
Bug #609535 [psiconv] psiconv: Patch for GraphicsMagick API change causing 
crash on startup
Changed Bug title to 'psiconv: magick/semaphore.c:526: LockSemaphoreInfo: 
Assertion `semaphore_info-signature == 0xabacadabUL' failed.' from 'psiconv: 
Patch for GraphicsMagick API change causing crash on startup'
 tags 609535 - patch
Bug #609535 [psiconv] psiconv: magick/semaphore.c:526: LockSemaphoreInfo: 
Assertion `semaphore_info-signature == 0xabacadabUL' failed.
Removed tag(s) patch.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
609535: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609535
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#560823: grub-ieee1275: Error Memory Address not Alligned when trying to boot any menu entry

2011-01-11 Thread Adam D. Barratt
On Mon, 2010-07-19 at 23:42 +0200, Axel Beckert wrote:
 Colin Watson wrote:
   Since #550160 has been fixed, the grub menu appears, I can edit the
   entries on the console, etc.
   
   But as soon as I want to boot one entry, I get the error message
   Memory Address not Alligned and I'm back to the boot prompt ok of
   OpenPROM/OpenBoot.
  
  Vladimir Serbinenko (upstream) told me that he believes he's fixed this:
[...]
  If you still have the
  affected system in operation, could you please try upgrading to the
  current version in unstable

Is this issue still exhibited with the current version of grub2 in
unstable?

Regards,

Adam, on a trawl through the remaining unfixed-and-unignored RC bugs for
squeeze




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



Processed: Re: Bug#591503: undeclared conflict against python-pysnmp2

2011-01-11 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 owner 591503 !
Bug #591503 [python-pysnmp4] Fail more gracefully if PYSNMP_API_VERSION has an 
invalid value
Owner recorded as Jakub Wilk jw...@debian.org.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
591503: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=591503
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#609581: Incompatible licences

2011-01-11 Thread Jonathan Riddell

The question is if the plugin is a derived work of both the GPL 2 only
libpoppler and the GPL 3 only application.  Since it can't exist
without either then it almost certainly is.  And since the licences
are incompatible that makes it illegal to distribute.

Jonathan



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



Bug#609569: marked as done (License violation in the package openoffice.org-dmaths)

2011-01-11 Thread Debian Bug Tracking System
Your message dated Tue, 11 Jan 2011 22:00:09 +
with message-id e1pcmg9-0005o8...@franck.debian.org
and subject line Bug#609569: fixed in dmaths 3.2.dfsg.1-1
has caused the Debian Bug report #609569,
regarding License violation in the package openoffice.org-dmaths
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.)


-- 
609569: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609569
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: openoffice.org-dmaths
Version: 3.2-1
Severity:  serious

Hi!

I'm adopted the package dmaths
(http://packages.qa.debian.org/d/dmaths.html and
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=595544). This package
distributes the file U2200.pdf is Mathematical Operators by The
Unicode Standard wiht this text:

Terms of Use
You may freely use these code charts for personal or internal business
uses only. You may not incorporate them either
wholly or in part into any product or publication, or otherwise
distribute them without express written permission from
the Unicode Consortium. However, you may provide links to these charts.
The fonts and font data used in production of these code charts may
NOT be extracted, or used in any other way in any
product or publication, without permission or license granted by the
typeface owner(s).
The Unicode Consortium is not liable for errors or omissions in this
file or the standard itself. Information on characters
added to the Unicode Standard since the publication of the most recent
version of the Unicode Standard, as well as on
characters currently being considered for addition to the Unicode
Standard can be found on the Unicode web site.
See http://www.unicode.org/pending/pending.html and
http://www.unicode.org/alloc/Pipeline.html.
Copyright © 1991-2008 Unicode, Inc. All rights reserved.

It is not possible to distribute this file.

The package distributed two pdf files which may violate the license
terms (r_typo.pdf and mathematiques.pdf).
See http://lists.debian.org/debian-legal/2011/01/msg3.html for more details.
I have advised the upstream author to delete this files from your
source package.

I. De Marchi


---End Message---
---BeginMessage---
Source: dmaths
Source-Version: 3.2.dfsg.1-1

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

dmaths_3.2.dfsg.1-1.diff.gz
  to main/d/dmaths/dmaths_3.2.dfsg.1-1.diff.gz
dmaths_3.2.dfsg.1-1.dsc
  to main/d/dmaths/dmaths_3.2.dfsg.1-1.dsc
dmaths_3.2.dfsg.1.orig.tar.gz
  to main/d/dmaths/dmaths_3.2.dfsg.1.orig.tar.gz
openoffice.org-dmaths_3.2.dfsg.1-1_all.deb
  to main/d/dmaths/openoffice.org-dmaths_3.2.dfsg.1-1_all.deb



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 609...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Innocent De Marchi tangram.pe...@gmail.com (supplier of updated dmaths 
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 Jan 2011 16:28:35 +0100
Source: dmaths
Binary: openoffice.org-dmaths
Architecture: source all
Version: 3.2.dfsg.1-1
Distribution: unstable
Urgency: low
Maintainer: Innocent De Marchi tangram.pe...@gmail.com
Changed-By: Innocent De Marchi tangram.pe...@gmail.com
Description: 
 openoffice.org-dmaths - Formula editor improvements for OpenOffice.org
Closes: 595544 609569
Changes: 
 dmaths (3.2.dfsg.1-1) unstable; urgency=low
 .
   * New mantainer (Closes: #595544).
   * Repackage upstream tarball removing undistributable files with
 licensing issues (Closes: #609569).
   * Add README.Debian about the removed files.
   * Update debian/docs accordingly.
Checksums-Sha1: 
 27f02846e771b37bac2708580575bc6db3041a68 1730 dmaths_3.2.dfsg.1-1.dsc
 7643d25f58461676f1024514341af5ec5ccab492 7994785 dmaths_3.2.dfsg.1.orig.tar.gz
 a79df84c10981ef13e9439b1dd4ee013d077c79d 4267 dmaths_3.2.dfsg.1-1.diff.gz
 70dd5df7eff34321ceedbff43b8afb9705c8a37d 7931468 
openoffice.org-dmaths_3.2.dfsg.1-1_all.deb
Checksums-Sha256: 
 8f1e703338d2e0459a260f4620b44ff81c38569371fc5334dc58d4f50eaf047f 1730 
dmaths_3.2.dfsg.1-1.dsc
 d382c18b9f880ab9b2c1ecd28128cae201d44938903d9dbdba6f8ddef9268c5e 7994785 
dmaths_3.2.dfsg.1.orig.tar.gz
 

Bug#609140: jxplorer does not start

2011-01-11 Thread Gabriele Giacone
On Fri, Jan 07, 2011 at 07:47:17PM +0100, Joachim Zobel wrote:
 The patch fixed it. I had however already a java6 installed:
 
 j...@vostro:~$ ls -l /etc/alternatives/java
 lrwxrwxrwx 1 root root 36 10. Aug 2008  /etc/alternatives/java
 - /usr/lib/jvm/java-6-sun/jre/bin/java
 
 Dont't know why this was not used.

Because without parameters and unless you set JAVA_HOME, find_java_runtime()
looks first for /usr/lib/jvm/default-java link then for first among 
/usr/lib/jvm/*.

I suppose you had JAVA_HOME set to /usr/lib/jvm/java-gcj.



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



Bug#605912: runit: Upgrade failure lenny - squeeze

2011-01-11 Thread Adam D. Barratt
Hi Jonathan,

Thanks for working on this.  This patch looks good to me:

On Sat, 2011-01-08 at 13:48 -0600, Jonathan Nieder wrote:
 -- 8 --
 Subject: remove vestiges of the runit-run package
 
 Upgrades from lenny are failing because of a missing template
 from the runit-run package.
 
 While fixing that, tweak the description, dependencies, and
 README.Debian to stop mentioning that now nonexistent package (and use
 a Homepage: field in debian/control instead of text pointing to the
 web page for simplicity).

I debated whether your second or third patch (i.e. trying to fix up the
debconf support, or removing it) was the way to go and would prefer to
simply revert the debconf use; if anyone sees any problems with this,
please yell (preferably loudly, and soon).

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#604134: ppc: after debian installation MacOS 9.2 won't recognize, disk anymore

2011-01-11 Thread Sebastian Schroeer

Adam D. Barratt wrote:


It sounds like there's a workaround for the problems mentioned in this
bug report, so I don't think this should be a blocker for squeeze;
tagging appropriately.
  


Hi!

I also think that this problem should not serve as a reason for a delay 
of Squeeze.


Yet, ideally an experienced PowerPC Debian developer should have a close 
look at the Debian installer and related programs to find out why after 
a Debian installation it is crucial to reboot with a Mac OS 9 
installation CD and use it to update the HDD's driver another time, just 
to still be able to use a Mac OS 9 already installed on a different disk 
partition.


I even fear unexperienced users might be unable to rescue their Mac OS 
data, be it by simply updating the HDD's driver or (as Debian supports 
HFS file systems) by using Debian GNU/Linux.


If I write a few lines about this issue, is there a chance of getting 
this into the PPC manual for installations of Debian on Power Macintosh 
computers?


Last week Mr Wittau contacted me; he stated that he wanted to try the 
installations again and that he intended to report back.


Kind regards,

Sebastian Schroeer



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



Bug#591503: undeclared conflict against python-pysnmp2

2011-01-11 Thread Jakub Wilk

owner 591503 !
thanks

* Adam D. Barratt a...@adam-barratt.org.uk, 2011-01-11, 20:56:

Seems to be a undeclared conflict against python-pysnmp2


I believe that python-pysnmp{2,4} was designed to be co-installable,
just something didn't work out. Part of the problem is that one of them
was built with python-support  0.90 and the other one with
python-support = 0.90, so they have different directory layouts.


I've just rebuilt both source packages in an up-to-date pbuilder, with
the result that only one of python-pysnmp{2,4,-common} is installable 
at any one time, as each of the three packages

contains /usr/share/pyshared/pysnmp/__init__.py.


Indeed. python-pysnmp{2,4} depend on python-pysnmp-common, so in fact 
these are *not* installable after rebuild at all.


In lenny I could install and use both:

$ PYSNMP_API_VERSION=v2 python -c 'import pysnmp; print pysnmp.__file__'
/var/lib/python-support/python2.5/pysnmp/v2/__init__.pyc

$ PYSNMP_API_VERSION=v4 python -c 'import pysnmp; print pysnmp.__file__'
/var/lib/python-support/python2.5/pysnmp/v4/__init__.pyc

--
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: patch

2011-01-11 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tag 607988 + patch
Bug #607988 [src:python-defaults] python: OSError: [Errno 2] byte-compiling 
packages on upgrade (dangling symlinks)
Added tag(s) patch.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
607988: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=607988
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#607988: patch

2011-01-11 Thread Piotr Ożarowski
tag 607988 + patch
thanks

Attached patch should fix the problem. I'm not uploading yet, because 
I want to fix preinst-pycentral-clean template as well (.pkgremove files
are not generated in Lenny's pycentral)
-- 
Piotr Ożarowski Debian GNU/Linux Developer
www.ozarowski.pl  www.griffith.cc   www.debian.org
GPG Fingerprint: 1D2F A898 58DA AF62 1786 2DF7 AEF6 F1A2 A745 7645
diff -Nru python-defaults-2.6.6/debian/changelog python-defaults-2.6.6/debian/changelog
--- python-defaults-2.6.6/debian/changelog	2010-12-19 21:19:39.0 +0100
+++ python-defaults-2.6.6/debian/changelog	2011-01-11 23:07:28.0 +0100
@@ -1,3 +1,11 @@
+python-defaults (2.6.6-3+squeeze5) unstable; urgency=low
+
+  * dh_python2: fix moving files from old debug locations
+  * pycompile: skip dangling symlinks to fix upgrade problem introduced in
+-3+squeeze3 (closes: 607988)
+
+ -- Piotr Ożarowski pi...@debian.org  Tue, 11 Jan 2011 22:14:56 +0100
+
 python-defaults (2.6.6-3+squeeze4) unstable; urgency=medium
 
   * dh_python2: fix a crash in packages with private extension (closes: 607555)
diff -Nru python-defaults-2.6.6/dh_python2 python-defaults-2.6.6/dh_python2
--- python-defaults-2.6.6/dh_python2	2010-12-19 21:16:59.0 +0100
+++ python-defaults-2.6.6/dh_python2	2011-01-11 22:16:07.0 +0100
@@ -104,7 +104,7 @@
 dbg_to_check.append(usr/lib/debug/usr/lib/pyshared/python%s % ver)
 dstdir = sitedir(version, package, gdb=True)
 
-for location in to_check:
+for location in dbg_to_check:
 srcdir = debian/%s/%s % (package, location)
 if isdir(srcdir):
 if not isdir(dstdir):
diff -Nru python-defaults-2.6.6/pycompile python-defaults-2.6.6/pycompile
--- python-defaults-2.6.6/pycompile	2010-12-12 22:28:57.0 +0100
+++ python-defaults-2.6.6/pycompile	2011-01-11 22:54:09.0 +0100
@@ -29,7 +29,7 @@
 import os
 import sys
 from os import environ, listdir, walk
-from os.path import abspath, exists, isdir, isfile, join
+from os.path import abspath, exists, isdir, isfile, islink, join
 from subprocess import PIPE, STDOUT, Popen
 sys.path.insert(1, '/usr/share/python/')
 from debpython.version import SUPPORTED, debsorted, vrepr, \
@@ -191,6 +191,12 @@
 
 # byte compile files
 for fn, versions_to_compile in filter_files(files, e_patterns, versions):
+if not exists(fn):
+# pycentral's cleanup-pkgprepare-updates hook will clean it later
+if islink(fn):
+log.warn('dangling symlink skipped: %s (%s)', fn,
+  os.readlink(fn))
+continue
 cfn = fn + 'c' if (__debug__ or not optimize) else 'o'
 if exists(cfn) and not force:
 ftime = os.stat(fn).st_mtime


signature.asc
Description: Digital signature


Processed: retitle 591503 to python-pysnmp{2,4}: broken when installed together ...

2011-01-11 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # Both packages need to be fixed and thankfully we have 2 bugs reported. ;-)
 retitle 591503 python-pysnmp{2,4}: broken when installed together
Bug #591503 [python-pysnmp4] Fail more gracefully if PYSNMP_API_VERSION has an 
invalid value
Changed Bug title to 'python-pysnmp{2,4}: broken when installed together' from 
'Fail more gracefully if PYSNMP_API_VERSION has an invalid value'
 reassign 609453 python-pysnmp2
Bug #609453 [python-pysnmp4-apps] python-pysnmp4-apps: pysnmpwalk fails to run 
-- missing dependency?
Bug reassigned from package 'python-pysnmp4-apps' to 'python-pysnmp2'.
Bug No longer marked as found in versions python-pysnmp4-apps/0.2.6a-1.
 retitle 609453 python-pysnmp{2,4}: broken when installed together
Bug #609453 [python-pysnmp2] python-pysnmp4-apps: pysnmpwalk fails to run -- 
missing dependency?
Changed Bug title to 'python-pysnmp{2,4}: broken when installed together' from 
'python-pysnmp4-apps: pysnmpwalk fails to run -- missing dependency?'
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
609453: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609453
591503: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=591503
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: limit source to python-pysnmp4, tagging 591503

2011-01-11 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 #python-pysnmp4 (4.1.9a-2) UNRELEASED; urgency=medium
 #
 #  * Ensure that python-pysnmp{2,4,-common} use the same directory layout
 #(closes: #591503).
 #+ Make python-pysnmp4 depend on python-pysnmp-common (= 4.1.9a-2);
 #+ Make python-pysmp-common break python-pysnmp2 ( 2.0.9-3).
 #Thanks to Christoph Egger for the bug report.
 #
 limit source python-pysnmp4
Limiting to bugs with field 'source' containing at least one of 'python-pysnmp4'
Limit currently set to 'source':'python-pysnmp4'

 tags 591503 + pending
Bug #591503 [python-pysnmp4] Fail more gracefully if PYSNMP_API_VERSION has an 
invalid value
Added tag(s) pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
591503: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=591503
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#609506: [ovs-dev] Bug#609506: [Y2011 3/3] tests: Fix Y2011 bug in testsuite.

2011-01-11 Thread Simon Horman
Thanks Justin, Thanks Ben,

I'll try to get new packages uploaded today.
Otherwise, I will have time tomorrow.

On Tue, Jan 11, 2011 at 12:09:09AM -0800, Justin Pettit wrote:
 [Our mailing list server got stuck earlier today, and it appears to be 
 dribbling out queued messages from earlier.]
 
 As I mentioned out of band, this series looks good.  And you pushed it...
 
 --Justin
 
 
 On Jan 10, 2011, at 12:54 PM, Ben Pfaff wrote:
 
  The tests have been failing for a few days now, because the PKI expired a
  few days into 2011.  This commit instead generates the PKI at make check
  time, which has the additional benefit of getting some test exposure for
  the ovs-pki program.
  
  Reported-by: Aaron M. Ucko u...@debian.org
  CC: 609...@bugs.debian.org
  ---
  AUTHORS|1 +
  Makefile.am|7 +++-
  README |2 +-
  tests/automake.mk  |   44 ++-
  tests/ovsdb-server.at  |4 +-
  tests/testpki-cacert.pem   |   70 
  
  tests/testpki-cert.pem |   70 
  
  tests/testpki-cert2.pem|   70 
  
  tests/testpki-privkey.pem  |   27 -
  tests/testpki-privkey2.pem |   27 -
  tests/testpki-req.pem  |   63 ---
  tests/testpki-req2.pem |   63 ---
  tests/vconn.at |2 +-
  13 files changed, 46 insertions(+), 404 deletions(-)
  delete mode 100644 tests/testpki-cacert.pem
  delete mode 100644 tests/testpki-cert.pem
  delete mode 100644 tests/testpki-cert2.pem
  delete mode 100644 tests/testpki-privkey.pem
  delete mode 100644 tests/testpki-privkey2.pem
  delete mode 100644 tests/testpki-req.pem
  delete mode 100644 tests/testpki-req2.pem
  
  diff --git a/AUTHORS b/AUTHORS
  index 3eb47a4..c57d43b 100644
  --- a/AUTHORS
  +++ b/AUTHORS
  @@ -36,6 +36,7 @@ Yu Zhiguo   y...@cn.fujitsu.com
  The following additional people are mentioned in commit logs as having
  provided helpful bug reports or suggestions.
  
  +Aaron M. Ucko   u...@debian.org
  Alexey I. Froloff   ra...@altlinux.org
  Brad Hall   b...@nicira.com
  Brandon Heller  brand...@stanford.edu
  diff --git a/Makefile.am b/Makefile.am
  index eef8eb6..689fd6c 100644
  --- a/Makefile.am
  +++ b/Makefile.am
  @@ -1,4 +1,4 @@
  -# Copyright (C) 2007, 2008, 2009, 2010 Nicira Networks, Inc.
  +# Copyright (C) 2007, 2008, 2009, 2010, 2011 Nicira Networks, Inc.
  #
  # Copying and distribution of this file, with or without modification,
  # are permitted in any medium without royalty provided the copyright
  @@ -27,6 +27,7 @@ endif
  ALL_LOCAL =
  BUILT_SOURCES =
  CLEANFILES =
  +CLEAN_LOCAL =
  DISTCLEANFILES =
  EXTRA_DIST = \
  CodingStyle \
  @@ -60,6 +61,7 @@ noinst_PROGRAMS =
  noinst_SCRIPTS =
  OVSIDL_BUILT =
  SUFFIXES =
  +check_DATA =
  
  # This ensures that files added to EXTRA_DIST are always distributed,
  # even if they are inside an Automake if...endif conditional block that is
  @@ -124,7 +126,8 @@ CLEANFILES += distfiles
  
  dist-hook: $(DIST_HOOKS)
  all-local: $(ALL_LOCAL)
  -.PHONY: $(DIST_HOOKS)
  +clean-local: $(CLEAN_LOCAL)
  +.PHONY: $(DIST_HOOKS) $(CLEAN_LOCAL)
  
  include lib/automake.mk
  include ofproto/automake.mk
  diff --git a/README b/README
  index 16f2ee6..114878d 100644
  --- a/README
  +++ b/README
  @@ -104,7 +104,7 @@ INSTALL.KVM.
  To install Open vSwitch without using a kernel module, read
  INSTALL.userspace.
  
  -To learn set up SSL support for Open vSwitch, read INSTALL.SSL.
  +To learn how to set up SSL support for Open vSwitch, read INSTALL.SSL.
  
  Each Open vSwitch userspace program is accompanied by a manpage.  Many
  of the manpages are customized to your configuration as part of the
  diff --git a/tests/automake.mk b/tests/automake.mk
  index c50b62e..0098c20 100644
  --- a/tests/automake.mk
  +++ b/tests/automake.mk
  @@ -281,14 +281,6 @@ tests_test_uuid_LDADD = lib/libopenvswitch.a
  noinst_PROGRAMS += tests/test-vconn
  tests_test_vconn_SOURCES = tests/test-vconn.c
  tests_test_vconn_LDADD = lib/libopenvswitch.a $(SSL_LIBS)
  -EXTRA_DIST += \
  -   tests/testpki-cacert.pem \
  -   tests/testpki-cert.pem \
  -   tests/testpki-cert2.pem \
  -   tests/testpki-privkey.pem \
  -   tests/testpki-privkey2.pem \
  -   tests/testpki-req.pem \
  -   tests/testpki-req2.pem
  
  noinst_PROGRAMS += tests/test-byte-order
  tests_test_byte_order_SOURCES = tests/test-byte-order.c
  @@ -301,3 +293,39 @@ EXTRA_DIST += \
  tests/test-jsonrpc.py \
  tests/test-ovsdb.py \
  tests/test-reconnect.py
  +
  +if HAVE_OPENSSL
  +TESTPKI_FILES = \
  +   tests/testpki-cacert.pem \
  +   tests/testpki-cert.pem \
  +   tests/testpki-privkey.pem \
  +   tests/testpki-req.pem \
  +   tests/testpki-cert2.pem \
  +   

Bug#609726: zabbix: Insufficient information for Lenny-Squeeze database upgrade

2011-01-11 Thread Christoph Haas
Package: zabbix
Version: 1.8
Severity: grave
Tags: squeeze
Justification: renders package unusable

The 1.8 package just contains information to upgrade the database
schema used by the 1.6 package. Lenny however used the 1.4 version
and there was accidentally no database upgrade path from 1.4-1.8.

I'm filing this bug against my own package and will shortly provide
a fixed package that will hopefully be included in Squeeze.

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

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



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



Processed: limit source to python-pysnmp2, tagging 609453

2011-01-11 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 #python-pysnmp2 (2.0.9-3) UNRELEASED; urgency=medium
 #
 #  * Depend on python-pysnmp-common (= 4.1.9a-2), so that both packages use
 #the same directory layout (closes: #609453).
 #
 limit source python-pysnmp2
Limiting to bugs with field 'source' containing at least one of 'python-pysnmp2'
Limit currently set to 'source':'python-pysnmp2'

 tags 609453 + pending
Bug #609453 [python-pysnmp2] python-pysnmp{2,4}: broken when installed together
Added tag(s) pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
609453: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609453
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#609140: jxplorer does not start

2011-01-11 Thread Joachim Zobel
Am Dienstag, den 11.01.2011, 23:02 +0100 schrieb Gabriele Giacone:
 Because without parameters and unless you set JAVA_HOME,
 find_java_runtime()
 looks first for /usr/lib/jvm/default-java link then for first
 among /usr/lib/jvm/*.

Ah, that explains it.

j...@vostro:~$ ls -l /usr/lib/jvm/
insgesamt 20
drwxr-xr-x 5 root root 4096  9. Aug 2008  java-1.5.0-gcj-4.3-1.5.0.0
drwxr-xr-x 6 root root 4096 22. Okt 21:20 java-1.5.0-gcj-4.4
lrwxrwxrwx 1 root root   23 15. Feb 2009  java-1.5.0-sun -
java-1.5.0-sun-1.5.0.17
drwxr-xr-x 6 root root 4096 15. Feb 2009  java-1.5.0-sun-1.5.0.17
lrwxrwxrwx 1 root root   14 25. Mär 2010  java-1.6.0-openjdk -
java-6-openjdk
drwxr-xr-x 7 root root 4096 19. Dez 16:02 java-6-openjdk
lrwxrwxrwx 1 root root   19 18. Okt 22:27 java-6-sun -
java-6-sun-1.6.0.22
drwxr-xr-x 8 root root 4096 18. Okt 22:28 java-6-sun-1.6.0.22
lrwxrwxrwx 1 root root   26  9. Aug 2008  java-gcj -
java-1.5.0-gcj-4.3-1.5.0.0
lrwxrwxrwx 1 root root   18 25. Mär 2010  java-gcj-4.4 -
java-1.5.0-gcj-4.4

Just curious, why does find_java_runtime() not
use /etc/alternatives/java ?

Thanks,
Joachim








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



Bug#609453: marked as done (python-pysnmp{2,4}: broken when installed together)

2011-01-11 Thread Debian Bug Tracking System
Your message dated Tue, 11 Jan 2011 23:32:24 +
with message-id e1pcnhq-0006wj...@franck.debian.org
and subject line Bug#609453: fixed in python-pysnmp2 2.0.9-3
has caused the Debian Bug report #609453,
regarding python-pysnmp{2,4}: broken when installed together
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.)


-- 
609453: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609453
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: python-pysnmp4-apps
Version: 0.2.6a-1
Severity: serious

% pysnmpwalk
Traceback (most recent call last):
  File /usr/bin/pysnmpwalk, line 11, in module
from pysnmp_apps.cli import main, msgmod, secmod, target, pdu, mibview, base
  File /usr/lib/pymodules/python2.6/pysnmp_apps/v4/cli/main.py, line 1, in 
module
from pysnmp.smi import view
ImportError: No module named smi

-- System Information:
Debian Release: 6.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages python-pysnmp4-apps depends on:
ii  python  2.6.6-3+squeeze4 interactive high-level object-orie
ii  python-pysnmp4  4.1.9a-1 Python SNMP library for agents and
ii  python-support  1.0.10   automated rebuilding support for P

python-pysnmp4-apps recommends no packages.

Versions of packages python-pysnmp4-apps suggests:
ii  python-pysnmp4-mibs   0.0.5a-3   MIBs for the Python SNMP library

-- no debconf information


---End Message---
---BeginMessage---
Source: python-pysnmp2
Source-Version: 2.0.9-3

We believe that the bug you reported is fixed in the latest version of
python-pysnmp2, which is due to be installed in the Debian FTP archive:

python-pysnmp2_2.0.9-3.diff.gz
  to main/p/python-pysnmp2/python-pysnmp2_2.0.9-3.diff.gz
python-pysnmp2_2.0.9-3.dsc
  to main/p/python-pysnmp2/python-pysnmp2_2.0.9-3.dsc
python-pysnmp2_2.0.9-3_all.deb
  to main/p/python-pysnmp2/python-pysnmp2_2.0.9-3_all.deb



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 609...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Jakub Wilk jw...@debian.org (supplier of updated python-pysnmp2 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: Wed, 12 Jan 2011 00:08:04 +0100
Source: python-pysnmp2
Binary: python-pysnmp2
Architecture: source all
Version: 2.0.9-3
Distribution: unstable
Urgency: medium
Maintainer: Jan Luebbe jlue...@lasnet.de
Changed-By: Jakub Wilk jw...@debian.org
Description: 
 python-pysnmp2 - Python SNMP library for agents and managers (stable branch)
Closes: 609453
Changes: 
 python-pysnmp2 (2.0.9-3) unstable; urgency=medium
 .
   * Team upload.
   * Move Python modules back into the pysnmp.v2 namespace.
   * Depend on python-pysnmp-common (= 4.1.9a-2), so that both packages use
 the same directory layout (closes: #609453).
Checksums-Sha1: 
 60593e90ea634d1e11cab098ac36f5c5d4b81f1f 2033 python-pysnmp2_2.0.9-3.dsc
 949f9e0bfdfc69e487d09adfdcd18a8f7169725d 3390 python-pysnmp2_2.0.9-3.diff.gz
 5d75dac8b2aa6087f1baf07ce75c231723c13cf6 47920 python-pysnmp2_2.0.9-3_all.deb
Checksums-Sha256: 
 eaa41d920221dbd2a5e74851ee65bab421c2699518fc7da752ed9f6dc84361de 2033 
python-pysnmp2_2.0.9-3.dsc
 842224564714251ced46e87b6c0122748206177493f721ef7c5e57eb429af2f0 3390 
python-pysnmp2_2.0.9-3.diff.gz
 0c2b1b3bd63b8140dfc997ba729a94430373241f7aa68e973809c51bc99b33e7 47920 
python-pysnmp2_2.0.9-3_all.deb
Files: 
 21b01fa81b5997853696af86c51ac4e4 2033 python optional 
python-pysnmp2_2.0.9-3.dsc
 7993aef059fe618db1c89fe90fabdd11 3390 python optional 
python-pysnmp2_2.0.9-3.diff.gz
 caa7e5a8ef14316cf663e43ff9835371 47920 python optional 
python-pysnmp2_2.0.9-3_all.deb

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

iQIcBAEBCAAGBQJNLOUsAAoJEC1Os6YBVHX1VO8QAJLXMuprBzZ75tTv9r3TpsZR
Gn3GdscX4QZv3QOUFxkO/emH8OGJb7LL7FfhmlWJI+kBmUFyzK0hd3ZT3lKsEo02
fcx9++szhidt6nbghKLNEQuiZ85Mh1xKxJJxniGjf798SX3u4wY+Z2JYHkJzxekl
X2doXlvBURP+fSGRGr+l3DErOccH/3hrhgGeAhlGB5sqlkSYHol4iZTjsDRX4QYm

Bug#591503: marked as done (python-pysnmp{2,4}: broken when installed together)

2011-01-11 Thread Debian Bug Tracking System
Your message dated Tue, 11 Jan 2011 23:32:32 +
with message-id e1pcnhy-00070w...@franck.debian.org
and subject line Bug#591503: fixed in python-pysnmp4 4.1.9a-2
has caused the Debian Bug report #591503,
regarding python-pysnmp{2,4}: broken when installed together
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.)


-- 
591503: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=591503
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: python-pysnmp4
Version: 4.1.9a-1
Severity: grave
Justification: renders package unusable

 from pysnmp.v4.entity.rfc3413.oneliner.cmdgen import *
Traceback (most recent call last):
  File stdin, line 1, in module
  File 
/usr/lib/pymodules/python2.6/pysnmp/v4/entity/rfc3413/oneliner/cmdgen.py, 
line 2, in module
from pysnmp.entity import engine, config
ImportError: No module named entity

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'stable'), (400, 'unstable'), (100, 
'experimental')
Architecture: i386 (x86_64)

Kernel: Linux 2.6.32-4-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

Versions of packages python-pysnmp4 depends on:
ii  libsmi2-common 0.4.8+dfsg2-2 a library to access SMI MIB inform
ii  libsmi2ldbl0.4.8+dfsg2-2 library to access SMI MIB informat
ii  python 2.6.5-5   An interactive high-level object-o
ii  python-pyasn1  0.0.11a-1 ASN.1 library for Python
ii  python-pysnmp-common   4.1.9a-1  Python SNMP library for agents and
ii  python-support 1.0.9 automated rebuilding support for P

Versions of packages python-pysnmp4 recommends:
ii  python-crypto 2.1.0-2cryptographic algorithms and proto
ii  python-pysnmp4-apps   0.2.6a-1   Applications for the Python SNMP l
ii  python-pysnmp4-mibs   0.0.5a-3   MIBs for the Python SNMP library

Versions of packages python-pysnmp4 suggests:
pn  python-pysnmp4-docnone (no description available)

-- no debconf information

-- 
/\  ASCII Ribbon : GPG-Key ID: 0xD49AE731
\ /Campaign   : CaCert Assurer
 X   against HTML : Debian Developer
/ \   in eMails   : http://www.debian.org/

http://www.christoph-egger.org/


signature.asc
Description: Digital signature
---End Message---
---BeginMessage---
Source: python-pysnmp4
Source-Version: 4.1.9a-2

We believe that the bug you reported is fixed in the latest version of
python-pysnmp4, which is due to be installed in the Debian FTP archive:

python-pysnmp-common_4.1.9a-2_all.deb
  to main/p/python-pysnmp4/python-pysnmp-common_4.1.9a-2_all.deb
python-pysnmp4-doc_4.1.9a-2_all.deb
  to main/p/python-pysnmp4/python-pysnmp4-doc_4.1.9a-2_all.deb
python-pysnmp4_4.1.9a-2.diff.gz
  to main/p/python-pysnmp4/python-pysnmp4_4.1.9a-2.diff.gz
python-pysnmp4_4.1.9a-2.dsc
  to main/p/python-pysnmp4/python-pysnmp4_4.1.9a-2.dsc
python-pysnmp4_4.1.9a-2_all.deb
  to main/p/python-pysnmp4/python-pysnmp4_4.1.9a-2_all.deb



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 591...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Jakub Wilk jw...@debian.org (supplier of updated python-pysnmp4 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: Wed, 12 Jan 2011 00:11:54 +0100
Source: python-pysnmp4
Binary: python-pysnmp4 python-pysnmp4-doc python-pysnmp-common
Architecture: source all
Version: 4.1.9a-2
Distribution: unstable
Urgency: medium
Maintainer: Arnaud Fontaine ar...@debian.org
Changed-By: Jakub Wilk jw...@debian.org
Description: 
 python-pysnmp-common - Python SNMP library for agents and managers (version 
selection mo
 python-pysnmp4 - Python SNMP library for agents and managers (unstable branch)
 python-pysnmp4-doc - Python SNMP library for agents and managers (unstable 
branch)
Closes: 591503
Changes: 
 python-pysnmp4 (4.1.9a-2) unstable; urgency=medium
 .
   * Team upload.
   * Update Vcs-* fields.
   * Make sure that pysnmp/__init__.py is removed from the python-pysnmp4
 package even when built with python-support (= 0.90). Thanks to Adam D.
 Barratt for spotting 

Bug#609140: java-wrapper doesn't consider java-alternatives jvm

2011-01-11 Thread Gabriele Giacone
Package: java-wrappers
Version: 0.1.16


Why doesn't find_java_runtime() also look for jvm pointed by
java-alternatives?



On 01/11/2011 11:42 PM, Joachim Zobel wrote:
 Am Dienstag, den 11.01.2011, 23:02 +0100 schrieb Gabriele Giacone:
 Because without parameters and unless you set JAVA_HOME,
 find_java_runtime()
 looks first for /usr/lib/jvm/default-java link then for first
 among /usr/lib/jvm/*.
 
 Ah, that explains it.
 
 j...@vostro:~$ ls -l /usr/lib/jvm/
 insgesamt 20
 drwxr-xr-x 5 root root 4096  9. Aug 2008  java-1.5.0-gcj-4.3-1.5.0.0
 drwxr-xr-x 6 root root 4096 22. Okt 21:20 java-1.5.0-gcj-4.4
 lrwxrwxrwx 1 root root   23 15. Feb 2009  java-1.5.0-sun -
 java-1.5.0-sun-1.5.0.17
 drwxr-xr-x 6 root root 4096 15. Feb 2009  java-1.5.0-sun-1.5.0.17
 lrwxrwxrwx 1 root root   14 25. Mär 2010  java-1.6.0-openjdk -
 java-6-openjdk
 drwxr-xr-x 7 root root 4096 19. Dez 16:02 java-6-openjdk
 lrwxrwxrwx 1 root root   19 18. Okt 22:27 java-6-sun -
 java-6-sun-1.6.0.22
 drwxr-xr-x 8 root root 4096 18. Okt 22:28 java-6-sun-1.6.0.22
 lrwxrwxrwx 1 root root   26  9. Aug 2008  java-gcj -
 java-1.5.0-gcj-4.3-1.5.0.0
 lrwxrwxrwx 1 root root   18 25. Mär 2010  java-gcj-4.4 -
 java-1.5.0-gcj-4.4
 
 Just curious, why does find_java_runtime() not
 use /etc/alternatives/java ?




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



  1   2   >