Bug#534274: [mdadm] mdadm fails to assemble raid array on boot with kernel > 2.6.26

2009-06-22 Thread martin f krafft
also sprach Lior Chen  [2009.06.23.0810 +0200]:
> With kernels newer than 2.6.26-2 (I have tried both 2.6.29-2 and 2.6.30-1) 
> mdadm fails to assemble raid array on boot:
> 
> Assembling all MD arrays... md: md0 stopped
> mdadm: no devices found for /dev/md0
> Failure: failed to assemble all arrays.

Please look at
http://wiki.debian.org/InitramfsDebug#Savingdebuginformation and try
to provide as much information as you can about what happens between
the boot loader and the initramfs prompt.

> mdadm --create /dev/md0 --level=0 --raid-devices=2 /dev/sda2 /dev/sdb2
> or 
> mdadm -A /dev/md0 /dev/sda2 /dev/sdb2
> 
> it fails saying that /dev/sda2 and /dev/sdb2 are busy (mdadm: Cannot open 
> /dev/sda2: Device or resource busy).

It seems like som device mapper thing is getting in the way:

> in the initramfs shell:
> ls -l /dev/mapper :
> control
> isw_cjhfigcfig_LCRAID
> isw_cjhfigcfig_LCRAID1
> isw_cjhfigcfig_LCRAID2

I have no idea what that is, but a sneaking suspicion that
isw_cjhfigcfig_LCRAID2 is /dev/sd[ab]2.

Try to disable that.

-- 
 .''`.   martin f. krafft   Related projects:
: :'  :  proud Debian developer   http://debiansystem.info
`. `'`   http://people.debian.org/~madduckhttp://vcs-pkg.org
  `-  Debian - when you have better things to do than fixing systems


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/)


Bug#530271: xss patch

2009-06-22 Thread Steffen Joeris
Hi Richard

I am not sure about your patch.
Setting a maximum length does not fix a potential xss issue. Why not using 
htmlspecialchars() to take care of escaping? I have attached a potential patch 
for that. Of course, it would be good to check the rest of the code as well 
and see whether it is prone to xss issues.
Also, as far as I understand it, the CSRF issue is very constructed and 
doesn't offer an attack vendor without having admin rights already, correct? I 
have to admit that I don't understand that part of your patch there.

Cheers
Steffen
--- ../old/ipplan-4.91a/admin/usermanager.php	2009-03-18 20:44:03.0 +
+++ ipplan-4.91a/admin/usermanager.php	2009-06-23 06:16:08.0 +
@@ -676,7 +676,9 @@
 
 $formerror="";
 $userid=trim($userid);
+$userid=htmlspecialchars($userid);
 $userdescrip=trim($userdescrip);
+$userdescrip=htmlspecialchars($userdescrip);
 $useremail=trim($useremail);
 $search=trim($search);
 if (AUTH_INTERNAL) {
@@ -746,7 +748,9 @@
 list($grp, $grpdescrip, $createcust, $grpview, $resaddr) = myRegister("S:grp S:grpdescrip S:createcust S:grpview I:resaddr");
 
 $grp=trim($grp);
+$grp=htmlspecialchars($grp);
 $grpdescrip=trim($grpdescrip);
+$grpdescrip=htmlspecialchars($grpdescrip);
 $formerror="";
 
 if (strlen($grp) < 2) {


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


Bug#534274: [mdadm] mdadm fails to assemble raid array on boot with kernel > 2.6.26

2009-06-22 Thread Lior Chen
Package: mdadm
Version: 2.6.9-3
Severity: grave

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

With kernels newer than 2.6.26-2 (I have tried both 2.6.29-2 and 2.6.30-1) 
mdadm fails to assemble raid array on boot:

Assembling all MD arrays... md: md0 stopped
mdadm: no devices found for /dev/md0
Failure: failed to assemble all arrays.

After the system gives up waiting for the root device, I get an initramfs 
shell, and then I when I try to build the raid-array myself, using either:

mdadm --create /dev/md0 --level=0 --raid-devices=2 /dev/sda2 /dev/sdb2
or 
mdadm -A /dev/md0 /dev/sda2 /dev/sdb2

it fails saying that /dev/sda2 and /dev/sdb2 are busy (mdadm: Cannot open 
/dev/sda2: Device or resource busy).

Please tell me if there is any more information I can provide that could be of 
help. 

Thank you,
  Lior


---

Some additional information:

in the initramfs shell:
ls -l /dev/mapper :
control
isw_cjhfigcfig_LCRAID
isw_cjhfigcfig_LCRAID1
isw_cjhfigcfig_LCRAID2

=== raid-0 (striping) structure ===

/dev/sda2 - first raid device
/dev/sdb2- second raid device


=== cat /proc/mdstat ===

Personalities : [raid0]
md0 : active raid0 sda2[0] sdb2[1]
  488199040 blocks 64k chunks

unused devices: 

=== /etc/mdadm/mdadm.conf ===

# mdadm.conf
#
# Please refer to mdadm.conf(5) for information about this file.
#

# by default, scan all partitions (/proc/partitions) for MD superblocks.
# alternatively, specify devices to scan, using wildcards if desired.
DEVICE /dev/sda2 /dev/sdb2

# auto-create devices with Debian standard permissions
CREATE owner=root group=disk mode=0660 auto=yes

# automatically tag new arrays as belonging to the local system
HOMEHOST 

# instruct the monitoring daemon where to send mail alerts
MAILADDR root

# definitions of existing MD arrays
ARRAY /dev/md0 level=raid0 num-devices=2 
UUID=b4c9005d:7337b4ba:77fef61e:a74ffb27

# This file was auto-generated on Sun, 21 Jun 2009 00:19:47 +0300
# by mkconf $Id$


=== /proc/partitions ===
major minor  #blocks  name

   8 0  244198584 sda
   8 1  96358 sda1
   8 2  244099642 sda2
   816  244198584 sdb
   818  244099642 sdb2
   9 0  488199040 md0
 253 04194304 dm-0
 253 1  484003840 dm-1


--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.26-2-amd64

Debian Release: squeeze/sid
  500 unstablewww.debian-multimedia.org 
  500 unstablemirror.hamakor.org.il 

--- Package information. ---
Depends(Version) | Installed
-+-
libc6 (>= 2.3.3) | 2.9-18
udev | 0.141-1
 OR makedev  | 2.3.1-88
debconf  (>= 1.4.72) | 1.5.26
lsb-base  (>= 3.1-6) | 3.2-22


Recommends(Version) | Installed
===-+-===
default-mta | 
 OR mail-transport-agent| 
module-init-tools   | 3.9-2


Package's Suggests field is empty.


--- Output from package bug script ---







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



Bug#526133: A new version of selinux-policy-default has been uploaded

2009-06-22 Thread Manoj Srivastava
Hi,

You are getting this message since you filed a bug against the
 selinux reference policy packages, and I have not been able to
 reproduce your bug or determine that it is not longer valid.  I would
 appreciate it if you could test the latest version of
 selinux-policy-default, 0.0.20090621-1, and see if your issue has been
 resolved. 

I'll continue working on the issues, but in a lot of these cases
 my ability to setup the packages in question is limited, and I need
 your help to resolve this.

Thanks,

manoj
-- 
"Someone's been mean to you! Tell me who it is, so I can punch him
tastefully." Ralph Bakshi's Mighty Mouse
Manoj Srivastava    
1024D/BF24424C print 4966 F272 D093 B493 410B  924B 21BA DABB BF24 424C



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



Bug#533950: pyqwt5: FTBFS: size_t_check.cpp:3: error: prototype for 'void a::f(unsigned int)' does not match any in class 'a'

2009-06-22 Thread Gudjon I. Gudjonsson
Hi Lucas
I am in fact working on this package but I do have problems with the 
upstream sources. There is a functioning package from CVS on my private 
server but the upstream author prefers that I wait for a release before 
publishing it.
deb-src http://195.198.146.229/debian/ source/
deb http://195.198.146.229/debian/ i386/

Regards
Gudjon



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



Bug#534075: liborigin2: FTBFS: Nonexistent build-dependency: libboost-date-time1.37-dev

2009-06-22 Thread Gudjon I. Gudjonsson
Hi Lucas
I have prepared a new verison some weeks ago but my sponsor is 
unfortunately very busy. I hope it will be uploaded soon.

Regards
Gudjon



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



Processed: Reopen

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reopen 533771
Bug#533771: ghostscript: FTBFS: missing symbols.
'reopen' may be inappropriate when a bug has been closed with a version;
you may need to use 'found' to remove fixed versions.
Bug reopened, originator not changed.

> found 533771 8.64~dfsg-11
Bug#533771: ghostscript: FTBFS: missing symbols.
Bug marked as found in version 8.64~dfsg-11.

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#533881: marked as done (n2n: Versioned build-depends on libc6-dev)

2009-06-22 Thread Debian Bug Tracking System

Your message dated Tue, 23 Jun 2009 03:47:10 +
with message-id 
and subject line Bug#533881: fixed in n2n 1.3.1~svn3789-1
has caused the Debian Bug report #533881,
regarding n2n: Versioned build-depends on libc6-dev
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.)


-- 
533881: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=533881
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: n2n
Version: 1.2.2~svn3653
Severity: serious

Hi,

You have a build dependency on "libc6-dev (>= 2.0)".  This does
not work because libc6-dev isn't available on all arches.  It's
name depends on the arch.

Depending on >= 2.0 also makes no sense, since that version is
more than 10 years old and will always be available.  I suggest
you just removed that build-dependency.


Kurt



--- End Message ---
--- Begin Message ---
Source: n2n
Source-Version: 1.3.1~svn3789-1

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

n2n_1.3.1~svn3789-1.diff.gz
  to pool/main/n/n2n/n2n_1.3.1~svn3789-1.diff.gz
n2n_1.3.1~svn3789-1.dsc
  to pool/main/n/n2n/n2n_1.3.1~svn3789-1.dsc
n2n_1.3.1~svn3789-1_amd64.deb
  to pool/main/n/n2n/n2n_1.3.1~svn3789-1_amd64.deb
n2n_1.3.1~svn3789.orig.tar.gz
  to pool/main/n/n2n/n2n_1.3.1~svn3789.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 533...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
cristian paul peñaranda rojas  (supplier of updated 
n2n 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: Sun, 22 Jun 2009 21:19:58 -0500
Source: n2n
Binary: n2n
Architecture: source amd64
Version: 1.3.1~svn3789-1
Distribution: unstable
Urgency: low
Maintainer: cristian paul peñaranda rojas 
Changed-By: cristian paul peñaranda rojas 
Description: 
 n2n- Peer-to-Peer VPN network daemon
Closes: 533881
Changes: 
 n2n (1.3.1~svn3789-1) unstable; urgency=low
 .
   * Update package to version 1.3 from upstream cvs
   * Removed "libc6-dev (>= 2.0)" build dependency (closes: Bug#533881)
   * DH compatibility level is 7
   * Run dh_prep instead of dh_clean -k
   * Standards Version is 3.8.2
Checksums-Sha1: 
 91ff5290503bd9c891a4f8789d33e1c38e4c0317 992 n2n_1.3.1~svn3789-1.dsc
 ee24c9cc62ceb578d53231792704bf28573b5f3e 97194 n2n_1.3.1~svn3789.orig.tar.gz
 66bba0499ac353708a2c94c7084e434f73b70698 3503 n2n_1.3.1~svn3789-1.diff.gz
 0e83eebdbcf3ef7b6f4c583771218aa7d26ad3ef 46312 n2n_1.3.1~svn3789-1_amd64.deb
Checksums-Sha256: 
 fb4a04d99ee581761ee0bd623445c061ea64fe4b802290a73e76a3ca2aa1bfce 992 
n2n_1.3.1~svn3789-1.dsc
 0ef836a806291f2d9085c3d84454c01a505a7f5627183154a8795782ed3c3207 97194 
n2n_1.3.1~svn3789.orig.tar.gz
 ddcfc8225dea0849542c67460fecf4fd73ace419fe43ec5ecff11d63d44cc853 3503 
n2n_1.3.1~svn3789-1.diff.gz
 bff98b110a61de815c35b49f3757d60068262b2592919b1d5f2e5eb3ed836ef8 46312 
n2n_1.3.1~svn3789-1_amd64.deb
Files: 
 a54507693862a74979dc4f654f772619 992 net extra n2n_1.3.1~svn3789-1.dsc
 68f656336d7acec863f53e05ba288a09 97194 net extra n2n_1.3.1~svn3789.orig.tar.gz
 2899d45e41665a723d99927d25b7fd38 3503 net extra n2n_1.3.1~svn3789-1.diff.gz
 3294b326336d11a758ff9a0460611be5 46312 net extra n2n_1.3.1~svn3789-1_amd64.deb

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

iEYEARECAAYFAkpATnEACgkQgY5NIXPNpFUgMQCgqTSld0EmwAeusJyhdNzyiBcQ
HrkAoKDq5G2/CDekZG7wzfeV/oFArDeD
=ujHB
-END PGP SIGNATURE-


--- End Message ---


Bug#534268: libsvn-web-perl: Path does not exist

2009-06-22 Thread Dean Hamstead
Package: libsvn-web-perl
Version: 0.53-2.1
Severity: grave
Justification: renders package unusable




I get this error when configured. (nb configuration follows)


Repository List / /var/www/svn/svnweb @ r
An error occured

The repository called /var/www/svn/svnweb has been configured with a path of 
/var/www/svn/repos/var/www/svn/svnweb. This path does not exist, and probably 
indicates a typo in the configuration file.

Powered by SVN::Web


config.yaml

# set your repository path below:
#
#repos:
#  lanpos: '/var/www/svn/repos/lanpos'
#  test2: '/tmp/svnweb-test2'
#
# or a parent path contains repositories
#
reposparent: '/var/www/svn/repos'

#
# if you set a parent you can block specific repositories
# like this:
#
#block:
#  - 'blocked1'
#  - 'blocked2'
#





-- System Information:
Debian Release: 5.0.1
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.18-92.1.22.el5xen (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 libsvn-web-perl depends on:
ii  libexception-class-perl 1.24-1   a module that allows you to declar
ii  libhtml-parser-perl 3.56-1+b1A collection of modules that parse
ii  libhttp-server-simple-p 0.34-1   simple stand-alone HTTP server
ii  liblocale-maketext-lexi 0.66-1   Lexicon-handling backends for "Loc
ii  libsvn-perl 1.5.1dfsg1-2 Perl bindings for Subversion
ii  libtemplate-perl2.19-1.1lenny1.1 template processing system written
ii  libyaml-perl0.66-1   YAML Ain't Markup Language (tm)
ii  perl5.10.0-19Larry Wall's Practical Extraction 

libsvn-web-perl recommends no packages.

libsvn-web-perl suggests no packages.

-- no debconf information



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



Processed: block 533946 with 530561

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> block 533946 with 530561
Bug#530561: python-vtk: not usable on amd64: ImportError: No module named 
libvtkCommonPython
Bug#533946: mayavi2: FTBFS: ImportError: No module named libvtkCommonPython
Was not blocked by any bugs.
Blocking bugs of 533946 added: 530561

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#534267: autogrid: recommends non-free autodocktools package

2009-06-22 Thread Aaron M. Ucko
Package: autogrid
Version: 4.2.1+rc1-1
Severity: serious
Justification: Policy 2.2.1

autogrid is in main, but recommends the non-free autodocktools
package, in direct violation of Policy 2.2.1.  Could you please
downgrade the relationship to Suggests?

Thanks!

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

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

Versions of packages autogrid depends on:
ii  libc6 2.9-13 GNU C Library: Shared libraries
ii  libgcc1   1:4.4.0-7  GCC support library
ii  libstdc++64.4.0-7The GNU Standard C++ Library v3

Versions of packages autogrid recommends:
pn  autodocktools  (no description available)

Versions of packages autogrid suggests:
ii  autodock 4.2.1+rc1-1 analysis of ligand binding to prot

-- no debconf information



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



Bug#532517: Blum-Blum-Shub is unnecessary overkill

2009-06-22 Thread sacrificial-spam-address
You want a cryptographically secure PRNG, but you don't need
something as provably secure as BBS.  Even more importantly, you need a
cryptographically secure seed.  (Fortunately, easy on Linux, where you
can just use /dev/urandom.)

There are any number of suitable CPRNGs.  Probably a good safe bet would
be the ANSI SP800-90 Deterministic Random Bit Generator (CTR-DRBG).
Given something like 128-bit AES, the generator reduces to maintaining
a 128-bit IV and a 128-bit key, and for each 128 bits of PRNG output,
increment the IV and encrypt it with the key.

I can supply implementation code if desired.



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



Bug#527654: marked as done (xenomai: FTBFS: switchtest.c:617: error: 'ULONG_MAX' undeclared (first use in this function))

2009-06-22 Thread Debian Bug Tracking System

Your message dated Mon, 22 Jun 2009 22:31:38 +
with message-id 
and subject line Bug#527654: fixed in xenomai 2.4.8-1
has caused the Debian Bug report #527654,
regarding xenomai: FTBFS: switchtest.c:617: error: 'ULONG_MAX' undeclared 
(first use in this function)
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.)


-- 
527654: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=527654
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xenomai
Version: 2.4.4-3
Severity: serious
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20090508 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
> gcc -DHAVE_CONFIG_H -I. -I../../../src/include  -I../../../include/posix -O2 
> -D_GNU_SOURCE -D_REENTRANT -Wall -pipe -fstrict-aliasing -Wno-strict-aliasing 
> -D__XENO__ -D__IN_XENO__ -Wstrict-prototypes -g -I../../../include   -g -O2 
> -MT switchtest-switchtest.o -MD -MP -MF .deps/switchtest-switchtest.Tpo -c -o 
> switchtest-switchtest.o `test -f 'switchtest.c' || echo './'`switchtest.c
> switchtest.c: In function 'parse_arg':
> switchtest.c:617: error: 'ULONG_MAX' undeclared (first use in this function)
> switchtest.c:617: error: (Each undeclared identifier is reported only once
> switchtest.c:617: error: for each function it appears in.)
> switchtest.c: In function 'xatoul':
> switchtest.c:816: error: 'ULONG_MAX' undeclared (first use in this function)
> make[4]: *** [switchtest-switchtest.o] Error 1

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2009/05/08/xenomai_2.4.4-3_lsid64.buildlog

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

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot.  Internet was not
accessible from the build systems.

-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F |


--- End Message ---
--- Begin Message ---
Source: xenomai
Source-Version: 2.4.8-1

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

libxenomai-dev_2.4.8-1_i386.deb
  to pool/main/x/xenomai/libxenomai-dev_2.4.8-1_i386.deb
libxenomai1_2.4.8-1_i386.deb
  to pool/main/x/xenomai/libxenomai1_2.4.8-1_i386.deb
linux-patch-xenomai_2.4.8-1_all.deb
  to pool/main/x/xenomai/linux-patch-xenomai_2.4.8-1_all.deb
xenomai-doc_2.4.8-1_all.deb
  to pool/main/x/xenomai/xenomai-doc_2.4.8-1_all.deb
xenomai-runtime_2.4.8-1_i386.deb
  to pool/main/x/xenomai/xenomai-runtime_2.4.8-1_i386.deb
xenomai_2.4.8-1.diff.gz
  to pool/main/x/xenomai/xenomai_2.4.8-1.diff.gz
xenomai_2.4.8-1.dsc
  to pool/main/x/xenomai/xenomai_2.4.8-1.dsc
xenomai_2.4.8.orig.tar.gz
  to pool/main/x/xenomai/xenomai_2.4.8.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 527...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Roland Stigge  (supplier of updated xenomai 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, 22 Jun 2009 22:50:23 +0200
Source: xenomai
Binary: xenomai-runtime linux-patch-xenomai libxenomai1 libxenomai-dev 
xenomai-doc
Architecture: source all i386
Version: 2.4.8-1
Distribution: unstable
Urgency: low
Maintainer: Roland Stigge 
Changed-By: Roland Stigge 
Description: 
 libxenomai-dev - Headers and static libs for Xenomai
 libxenomai1 - Headers and static libs for Xenomai
 linux-patch-xenomai - Linux kernel patches for Xenomai
 xenomai-doc - Xenomai documentation
 xenomai-runtime - Xenomai runtime utilities
Closes: 527654
Changes: 
 xenomai (2.4.8-1) unstable; urgency=low
 .
   * New upstream release
 - includes limits.h include as in patch from Peter Green (Closes: #527654)
   * debian/control:
 - Standards-Version: 3.8.2
Checksums-Sha1: 
 0b847bf1d0355f0ec57c0738a9172d7ffd9eda85 1125 xenomai_2.4.8-1.dsc
 c208b9873dade3806b22adea51827b5c74c604fb 10822122 xenomai_2.4.8.orig.tar.gz
 d6e53acad89da9b133f8f89645fc2e71e810439f 233205

Processed: Re: Bug#533992: skkdic: FTBFS: dpkg-gencontrol: error: error occurred while parsing Enhances field: dbskkd-cdb | skkserv

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 533992 + pending
Bug#533992: skkdic: FTBFS: dpkg-gencontrol: error: error occurred while parsing 
Enhances field: dbskkd-cdb | skkserv
There were no tags set.
Tags added: pending

> tags 526504 + pending
Bug#526504: please don't use alternatives in Enhances
There were no tags set.
Tags added: pending

> tags 534010 + pending
Bug#534010: skksearch: FTBFS: dpkg-gencontrol: error: error occurred while 
parsing Enhances field: ddskk | skk
There were no tags set.
Tags added: pending

> tags 526509 + pending
Bug#526509: please don't use alternatives in Enhances
There were no tags set.
Tags added: pending

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#522738: marked as done ([nexuiz] Old versions instruct to upgrade)

2009-06-22 Thread Debian Bug Tracking System

Your message dated Mon, 22 Jun 2009 22:28:33 +
with message-id 
and subject line Bug#522738: fixed in nexuiz-data 2.4.2-2
has caused the Debian Bug report #522738,
regarding [nexuiz] Old versions instruct to 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.)


-- 
522738: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=522738
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: nexuiz
Version: 2.4.2-1
Severity: normal

I'm using Nexuiz 2.4. Since version 2.5 was released, Nexuiz instructs me to 
upgrade to 2.5 now. This appears not only in the menu, but also during the 
game.  This competes with an advertisement in annoyance.


--- End Message ---
--- Begin Message ---
Source: nexuiz-data
Source-Version: 2.4.2-2

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

nexuiz-data_2.4.2-2.diff.gz
  to pool/main/n/nexuiz-data/nexuiz-data_2.4.2-2.diff.gz
nexuiz-data_2.4.2-2.dsc
  to pool/main/n/nexuiz-data/nexuiz-data_2.4.2-2.dsc
nexuiz-data_2.4.2-2_all.deb
  to pool/main/n/nexuiz-data/nexuiz-data_2.4.2-2_all.deb
nexuiz-music_2.4.2-2_all.deb
  to pool/main/n/nexuiz-data/nexuiz-music_2.4.2-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 522...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Gerfried Fuchs  (supplier of updated nexuiz-data 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, 22 Jun 2009 19:47:52 +0200
Source: nexuiz-data
Binary: nexuiz-data nexuiz-music
Architecture: source all
Version: 2.4.2-2
Distribution: unstable
Urgency: low
Maintainer: Debian Games Team 
Changed-By: Gerfried Fuchs 
Description: 
 nexuiz-data - Nexuiz game data files
 nexuiz-music - Nexuiz music files
Closes: 522738
Changes: 
 nexuiz-data (2.4.2-2) unstable; urgency=low
 .
   * Added myself to Uploaders.
   * New patch disable_update_check to stop nagging users about the new
 upstream version (closes: #522738)
   * Update to Standards-Version 3.8.2:
 - Add debian/README.source mentioning quilt.
   * Move patch-stamp to build-stamp dependency to ensure that it happens
 before building.
Checksums-Sha1: 
 3efa4146678fb88836733cab304bd37f06bc4773 1396 nexuiz-data_2.4.2-2.dsc
 6ae30685844e02f93fd20193ddc49d81928b3367 3794 nexuiz-data_2.4.2-2.diff.gz
 243b9084be962491bea993dec113bf8b37ffbd7c 337897390 nexuiz-data_2.4.2-2_all.deb
 e6c1db7b73d99d4115f71a2bc8e7661aa3cd255d 52372564 nexuiz-music_2.4.2-2_all.deb
Checksums-Sha256: 
 56527c1ca0cec86f98a9540786f1a4a7264548037c4e20a42086cc584105eec4 1396 
nexuiz-data_2.4.2-2.dsc
 101bb5e66941ee11d5858329fbce374dcee7a20cac3af05384265904c853f428 3794 
nexuiz-data_2.4.2-2.diff.gz
 f40da058e4557a222312dc5a8ec23ea63cdfe02abde59ff4af10bf47f0a5a814 337897390 
nexuiz-data_2.4.2-2_all.deb
 6489b28694555ce5bf0a7b880158a3310a7ff7d85e07618928fda31992c23d1e 52372564 
nexuiz-music_2.4.2-2_all.deb
Files: 
 fe1d2b885151e111c77cca04f1651ab2 1396 games optional nexuiz-data_2.4.2-2.dsc
 c685bbde38f598d261543aa7c0b4ec49 3794 games optional 
nexuiz-data_2.4.2-2.diff.gz
 e947301c74f49c2fb416e8828bb0558a 337897390 games optional 
nexuiz-data_2.4.2-2_all.deb
 b62cf1f44c01ff698bdbfdef070c8b52 52372564 games optional 
nexuiz-music_2.4.2-2_all.deb

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

iEYEARECAAYFAko/2r8ACgkQELuA/Ba9d8b4mgCg6CHpkUz3Xu8VEVUxo9nD+h8m
QmMAn2pER7n7xuOjnuTJ867ifKboqVS2
=yVR8
-END PGP SIGNATURE-


--- End Message ---


Bug#521760: Reopening and reassigning

2009-06-22 Thread Matthew Johnson
reopen 521760
reassign 521760 sun-java6
retitle 521760 alternative link problems with java when upgrading packages
thanks

Right, looks like there's a definite bug here, but it's equally still
definitely nothing to do with jarwrapper, so I'm reassigning it to
sun-java6.

Matt

-- 
Matthew Johnson


signature.asc
Description: Digital signature


Processed: Reopening and reassigning

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reopen 521760
Bug#521760: fastjar: Failed upgrade 2:0.95-1 -> 2:0.97-3
Bug reopened, originator not changed.

> reassign 521760 sun-java6
Bug#521760: fastjar: Failed upgrade 2:0.95-1 -> 2:0.97-3
Bug reassigned from package `jarwrapper' to `sun-java6'.

> retitle 521760 alternative link problems with java when upgrading packages
Bug#521760: fastjar: Failed upgrade 2:0.95-1 -> 2:0.97-3
Changed Bug title to `alternative link problems with java when upgrading 
packages' from `fastjar: Failed upgrade 2:0.95-1 -> 2:0.97-3'.

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#533435: [pida] cannot start, undefined sumbol db

2009-06-22 Thread P. Kaluza
Hi Casper,

Casper Gielen wrote:
> Upon starting PIDA I get an error:
>
> Fatal error, cannot start PIDA
> Show more details
> The pida package could not be found.
> /usr/lib/libdbus-glib-1.so.2: undefined symbol: db
> Exiting. (this is fatal)
>   
this looks interesting, yeah.
Please send the output of
  /usr/bin/env python --version
  which python
  ls -lah `which python`
  ldd `which python`
  ldd /usr/lib/libdbus-glib-1.so.2

> I do have a manual build version of python3.1 installed, but as far as I can 
> see this should be invisible to pida.
>   
it might not be, depending on your path. the above should bring clarity.

> --- System information. ---
> Architecture: i386
> Kernel:   Linux 2.6.29-2-686
>
> Debian Release: squeeze/sid
>   500 unstablewww.debian-multimedia.org 
>   500 unstablerum 
>   500 stable  dl.google.com 
>   500 experimentalwww.debian-multimedia.org 
>   101 experimentalrum
You seem to be using no official debian mirrors at all. As long as one
is a full and up-to-date mirror, that should not be a problem though.

> --- Package information. ---
> Package's Depends field is empty.
>   
this however is certainly not true. did you write this bugreport with
reportbug ? it seems to be very confused about the package.
Please try again to run "reportbug pida" (after adding an official
mirror and calling apt-get update) and attach an answer to this bug.

Bye,
  Philipp



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



Bug#521760: I get the same

2009-06-22 Thread Markus Schaber
Hi,

I get the same updating sun-java6-jdk 6-14-1.

I386 running debian testing.

Thanks,
Markus



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



Bug#534252: partitionmanager: unable to install

2009-06-22 Thread Laurent Fousse
Package: partitionmanager
Version: 1.0.0~beta1a-1
Severity: grave
Justification: renders package unusable

Hello,

When I try to install partitionmanager I get the following error:

% sudo aptitude install partitionmanager
[...]
The following packages have unmet dependencies:
  partitionmanager: Depends: libparted1.8-10 (>= 1.8.8.git.2008.03.24-9) 
which is a virtual package.
The following actions will resolve these dependencies:

Keep the following packages at their current version:
partitionmanager [Not Installed]


Laurent.

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

Kernel: Linux 2.6.29-2-powerpc
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#533771: Not quite there yet

2009-06-22 Thread Mattias Ellert
Your changelog says "... for hppa and mipsel", however it was hppa and
mips that had FTBFS, not hppa and mipsel.

The new package does build on hppa, but it still fails on mips with the
same error.



signature.asc
Description: Detta är en digitalt signerad meddelandedel


Processed: strace build failure on arm

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 520084 + patch
Bug#520084: FTBFS on armel: ../linux/arm/syscallent.h:457:3: error: #error fix 
me
There were no tags set.
Tags added: patch

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#520084: strace build failure on arm

2009-06-22 Thread Riku Voipio
tags 520084 + patch
thanks

This patch allows strace to build on arm:

http://bugs.gentoo.org/attachment.cgi?id=181917&action=view





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



Bug#534081: [Pkg-scicomp-devel] Bug#534081: framewave: FTBFS: Nonexistent build-dependency: libboost-thread1.35-dev

2009-06-22 Thread Albert Huang
Hi Christophe,

Was there something wrong with the last packaging revision?  The
libboost-thread1.35-dev dependency should have been changed to
libboost-thread-dev, right?

-albert

On Sun, Jun 21, 2009 at 11:41 AM, Lucas
Nussbaum wrote:
> Package: framewave
> Version: 1.3-1
> Severity: serious
> User: debian...@lists.debian.org
> Usertags: qa-ftbfs-20090620 qa-ftbfs
> Justification: FTBFS on amd64
>
> Hi,
>
> During a rebuild of all packages in sid, your package failed to build on
> amd64.
>
> Relevant part:
>> ** Using build dependencies supplied by package:
>> Build-Depends: debhelper (>> 4.2.0), cdbs, g++ (>= 4.1.2), scons (>= 0.97), 
>> python2.5, libboost-thread1.35-dev
>>
>> ┌──┐
>> │ Install build dependencies                                                 
>>   │
>> └──┘
>>
>> Checking for already installed source dependencies...
>> debhelper: missing
>> Using default version 7.2.16
>> cdbs: missing
>> g++: already installed (4:4.3.3-9 >= 4.1.2 is satisfied)
>> scons: missing
>> Using default version 1.2.0-2
>> python2.5: missing
>> libboost-thread1.35-dev: missing
>> Checking for source dependency conflicts...
>> E: Package libboost-thread1.35-dev has no installation candidate
>
> The full build log is available from:
>   
> http://people.debian.org/~lucas/logs/2009/06/20/framewave_1.3-1_lsid64.buildlog
>
> A list of current common problems and possible solutions is available at
> http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!
>
> About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
> of the Grid'5000 platform, using a clean chroot.  Internet was not
> accessible from the build systems.
>
> --
> | Lucas Nussbaum
> | lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
> | jabber: lu...@nussbaum.fr             GPG: 1024D/023B3F4F |
>
>
>
> ___
> Pkg-scicomp-devel mailing list
> pkg-scicomp-de...@lists.alioth.debian.org
> http://lists.alioth.debian.org/mailman/listinfo/pkg-scicomp-devel



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



Processed: found 531942 in 7.6.q-16

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> found 531942 7.6.q-16
Bug#531942: FTBFS on mipsel due to missing -fPIC
Bug marked as found in version 7.6.q-16.

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: reopening 531942

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reopen 531942
Bug#531942: FTBFS on mipsel due to missing -fPIC
Bug reopened, originator not changed.

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#533572: marked as done (nfqueue-bindings-python: Depends on unavailable libpython2;6)

2009-06-22 Thread Debian Bug Tracking System

Your message dated Mon, 22 Jun 2009 19:02:09 +
with message-id 
and subject line Bug#533572: fixed in nfqueue-bindings 0.2-2
has caused the Debian Bug report #533572,
regarding nfqueue-bindings-python: Depends on unavailable libpython2;6
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.)


-- 
533572: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=533572
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: nfqueue-bindings-python
Version: 0.2-1
Severity: serious

Hi,

nfqueue-bindings-python depends on libpython2;6, which is only in
experimental.  The unstable package is therefore uninstallable.

Regards,

Adam


--- End Message ---
--- Begin Message ---
Source: nfqueue-bindings
Source-Version: 0.2-2

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

nfqueue-bindings-perl_0.2-2_amd64.deb
  to pool/main/n/nfqueue-bindings/nfqueue-bindings-perl_0.2-2_amd64.deb
nfqueue-bindings-python_0.2-2_amd64.deb
  to pool/main/n/nfqueue-bindings/nfqueue-bindings-python_0.2-2_amd64.deb
nfqueue-bindings_0.2-2.diff.gz
  to pool/main/n/nfqueue-bindings/nfqueue-bindings_0.2-2.diff.gz
nfqueue-bindings_0.2-2.dsc
  to pool/main/n/nfqueue-bindings/nfqueue-bindings_0.2-2.dsc



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

Debian distribution maintenance software
pp.
Pierre Chifflier  (supplier of updated nfqueue-bindings 
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, 22 Jun 2009 20:52:06 +0200
Source: nfqueue-bindings
Binary: nfqueue-bindings-perl nfqueue-bindings-python
Architecture: source amd64
Version: 0.2-2
Distribution: unstable
Urgency: low
Maintainer: Pierre Chifflier 
Changed-By: Pierre Chifflier 
Description: 
 nfqueue-bindings-perl - Perl bindings for nfqueue
 nfqueue-bindings-python - Python bindings for nfqueue
Closes: 533572
Changes: 
 nfqueue-bindings (0.2-2) unstable; urgency=low
 .
   * Rebuild with un-tainted build environment
 Remove dependency on libpython2.6 (Closes: #533572)
   * Bump standards version to 3.8.2 (no changes)
Checksums-Sha1: 
 655a2f08a9e2d856acb20db131d2dfe73ebee9ce 1225 nfqueue-bindings_0.2-2.dsc
 b000f5e44bcf9515e199ddce04aeaf729367b860 2638 nfqueue-bindings_0.2-2.diff.gz
 4872b0b8027eb9f428b373ff994c54b207ef1aa6 27308 
nfqueue-bindings-perl_0.2-2_amd64.deb
 20bfe6ead3da41d715a7d45fb7957fddf5430511 23254 
nfqueue-bindings-python_0.2-2_amd64.deb
Checksums-Sha256: 
 65da64c2fd5bc9dd06b8f30437bd19af58b1dce4505423e25ac8059cebca8b2b 1225 
nfqueue-bindings_0.2-2.dsc
 152901bb3fb6d3632aa9a32088cbbc1d3166f09d5d955a1ef8be5a789bb8b394 2638 
nfqueue-bindings_0.2-2.diff.gz
 e08c58e15b2491cfa5c7e2edf9c5d52f3dba3bff4904b29c1d5e229637f95af3 27308 
nfqueue-bindings-perl_0.2-2_amd64.deb
 9ac30d35bed497095df01cc29a181b91e4f4d0e0be7b601f1c67e824eb89f65b 23254 
nfqueue-bindings-python_0.2-2_amd64.deb
Files: 
 8036fceba06e12aafe6c1de7438c0b2d 1225 libs extra nfqueue-bindings_0.2-2.dsc
 bdab53cea180be75e6493656d45dc679 2638 libs extra nfqueue-bindings_0.2-2.diff.gz
 ee77b6524bf8772ef97041b309c8e681 27308 perl extra 
nfqueue-bindings-perl_0.2-2_amd64.deb
 fbb90fda81f441cabcb8ef51edec814e 23254 python extra 
nfqueue-bindings-python_0.2-2_amd64.deb

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

iD8DBQFKP9RGtwVrWo1fQMsRAph7AJ9ArXpB4HYvtGYp3otnTOYxw0TydQCePH5Y
IhvmgbbRb9udJv77w2QD3V4=
=OUjf
-END PGP SIGNATURE-


--- End Message ---


Processed: archiving 527493

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> archive 527493
Bug 527493 [libmtp8] initramfs-tools: ./etc/udev/rules.d/libmtp.rules: Cannot 
stat: No such file or directory
Bug 525094 [libmtp8] dangling symlink in /etc/udev/rules.d/
Bug 527206 [libmtp8] libmtp8: udev rules file missing
Bug 527360 [libmtp8] initramfs-tools fails to complete installation with error
Bug 530880 [libmtp8] update-initramfs broken probably due to bad symlink 
libmtp8.rules
archived 527493 to archive/93 (from 527493)
deleted 527493 (from 527493)
archived 525094 to archive/94 (from 527493)
deleted 525094 (from 527493)
archived 527206 to archive/06 (from 527493)
deleted 527206 (from 527493)
archived 527360 to archive/60 (from 527493)
deleted 527360 (from 527493)
archived 530880 to archive/80 (from 527493)
deleted 530880 (from 527493)
>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
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#531942: FTBFS on mipsel due to missing -fPIC

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 531942 tcp-wrappers
Bug#531942: FTBFS on mipsel due to missing -fPIC
Bug reassigned from package `openssh' to `tcp-wrappers'.

> tag 531942 + patch
Bug#531942: FTBFS on mipsel due to missing -fPIC
There were no tags set.
Tags added: patch

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#531942: FTBFS on mipsel due to missing -fPIC

2009-06-22 Thread Aurelien Jarno
reassign 531942 tcp-wrappers
tag 531942 + patch
thanks

-- 
Aurelien Jarno  GPG: 1024D/F1BCDB73
aurel...@aurel32.net http://www.aurel32.net



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



Processed: forcibly merging 527613 497959

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # Automatically generated email from bts, devscripts version 
> 2.10.11ubuntu5.8.04.2
> forcemerge 527613 497959
Bug#527613: unowned files after purge (policy 6.8)
Bug#497959: bind9: does not purge cleanly
Forcibly Merged 497959 527613.

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: tagging 527877

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # Automatically generated email from bts, devscripts version 
> 2.10.11ubuntu5.8.04.2
> tags 527877 + pending
Bug#527877: FTBFS: undefined reference to `db_create' and similar
There were no tags set.
Tags added: pending

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: tagging 527613

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # Automatically generated email from bts, devscripts version 
> 2.10.11ubuntu5.8.04.2
> tags 527613 + pending
Bug#527613: unowned files after purge (policy 6.8)
There were no tags set.
Tags added: pending

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#531419: mpicc segfaults when called by fakeroot

2009-06-22 Thread Jeff Squyres

These patches were accepted into OMPI v1.3.3:

https://svn.open-mpi.org/trac/ompi/changeset/21493

Exact release date is unknown, but hopefully "soon".



On Jun 20, 2009, at 7:23 AM, Jeff Squyres wrote:


Done.  The two patches you need are here:

   https://svn.open-mpi.org/trac/ompi/changeset/21479
   https://svn.open-mpi.org/trac/ompi/changeset/21489

I'll push these upstream; they might make it into OMPI v1.3.3.


On Jun 20, 2009, at 12:58 AM, Steve M. Robbins wrote:


On Fri, Jun 19, 2009 at 06:52:03AM -0400, Jeff Squyres wrote:

2. If you want a more general env variable name, like checking for  
the
presence of $FAKEROOTKEY (or whatever), let me know and we can  
also add a
check for that upstream.  To be clear, I think I'm going to do #1  
anyway
-- it's a nice way for our users to disable this stuff.  But I'm  
notopposed to having a fakeroot-specific environment variable  
check as well.


OK, that sounds like a good idea.  Could you add a check for
$FAKEROOTKEY, please.  Just check whether it exists in the
environment.

Thanks,
-Steve



--
Jeff Squyres
Cisco Systems




--
Jeff Squyres
Cisco Systems




--
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#533933: newsx: FTBFS: storage.h:67: error: expected specifier-qualifier-list before 'ARTNUM'

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 533933 inn2-dev
Bug#533933: newsx: FTBFS: storage.h:67: error: expected 
specifier-qualifier-list before 'ARTNUM'
Bug reassigned from package `inn2' to `inn2-dev'.

> found 533933 2.5.0-1
Bug#533933: newsx: FTBFS: storage.h:67: error: expected 
specifier-qualifier-list before 'ARTNUM'
Bug marked as found in version 2.5.0-1.

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#533933: newsx: FTBFS: storage.h:67: error: expected specifier-qualifier-list before 'ARTNUM'

2009-06-22 Thread Andreas Metzler
reassign 533933 inn2-dev
found 533933 2.5.0-1
thanks

On 2009-06-21 Marco d'Itri  wrote:
> reassign 533933 newsx
> notfound 533933 2.5.0-1
> thanks

> On Jun 21, Andreas Metzler  wrote:

> > > > gcc -DHAVE_CONFIG_H -I. -I. -I..   -I/usr/include/inn  -Wall -g -O2 
> > > > -Wall -c putarticle.c
> This is a different bug, the headers have been installed by mistake in
> /usr/include/inn/inn/.

No, it is not. Compilation would have thrown a different error if it
could not find the header. Newsx compilation is resistant against this
bug since it includes inn/storage.h and searches in /usr/include/inn.

> > Now it suddenly seems to be necessary to #include inn/defines.h and
> > inn/options.h.
> So do it. If you believe that this is wrong then feel free to discuss
> the issue with the upstream maintainers, I am definitely not going to
> change something like this only for the Debian package.


Reassigning back, since inn upstream has just declared that they are
going to fix it.
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=533933#28
(Thank's Russ) According to
http://inn.eyrie.org/svn/trunk/include/inn/storage.h it is already
fixed in svn.

cu andreas
-- 
`What a good friend you are to him, Dr. Maturin. His other friends are
so grateful to you.'
`I sew his ears on from time to time, sure'



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



Bug#533935: xfmedia: FTBFS: configure: error: X Window system libraries and header files are required

2009-06-22 Thread peter green

tags 533935 +patch
thanks

add libxt-dev to the build-depends to fix this bug



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



Processed: re: xfmedia: FTBFS: configure: error: X Window system libraries and header files are required

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 533935 +patch
Bug#533935: xfmedia: FTBFS: configure: error: X Window system libraries and 
header files are required
There were no tags set.
Tags added: patch

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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




Bug#521811: marked as done (python3.1_3.1~a1+20090322-1(experimental/powerpc/anakreon): error: corrupted profile info: number of executions for edge 3-4 thought to be -19)

2009-06-22 Thread Debian Bug Tracking System

Your message dated Mon, 22 Jun 2009 16:47:27 +
with message-id 
and subject line Bug#521811: fixed in python3.1 3.1~rc2+20090622-1
has caused the Debian Bug report #521811,
regarding python3.1_3.1~a1+20090322-1(experimental/powerpc/anakreon): error: 
corrupted profile info: number of executions for edge 3-4 thought to be -19
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.)


-- 
521811: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=521811
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: python3.1
Version: 3.1~a1+20090322-1
Severity: serious
Tags: experimental

| Automatic build of python3.1_3.1~a1+20090322-1 on anakreon.ayous.org by 
sbuild/powerpc 98-farm
| Build started at 20090329-0334
| **

[...]

| gcc -pthread -c -fno-strict-aliasing -DNDEBUG -g -O2 -Wall 
-Wstrict-prototypes  -fprofile-use -I. -IInclude -I../Include   -DPy_BUILD_CORE 
-o Python/ceval.o ../Python/ceval.c
| ../Python/ceval.c: In function 'PyEval_RestoreThread':
| ../Python/ceval.c:4305: error: corrupted profile info: number of executions 
for edge 3-4 thought to be -19
| ../Python/ceval.c:4305: error: corrupted profile info: number of executions 
for edge 3-1 thought to be 19
| make[3]: *** [Python/ceval.o] Error 1
| make[3]: Leaving directory 
`/build/buildd/python3.1-3.1~a1+20090322/build-static'
| make[2]: *** [build_all_use_profile] Error 2
| make[2]: Leaving directory 
`/build/buildd/python3.1-3.1~a1+20090322/build-static'
| make[1]: *** [profile-opt] Error 2
| make[1]: Leaving directory 
`/build/buildd/python3.1-3.1~a1+20090322/build-static'
| make: *** [stamp-build-static] Error 2
| dpkg-buildpackage: failure: debian/rules build gave error exit status 2
| **
| Build finished at 20090329-0355
| FAILED [dpkg-buildpackage died]
| Build needed 00:18:20, 91108k disk space

A complete build log can be found at
http://experimental.debian.net/build.php?arch=powerpc&pkg=python3.1&ver=3.1~a1+20090322-1

Marc
-- 
Fachbegriffe der Informatik - Einfach erklärt
271: Usenet
   Eine Diktatur von Newsserverbetreiber, die größtenteils auf das
   nörgelnde Volk hört (so es sich denn einig ist). (Cornell Binder)


--- End Message ---
--- Begin Message ---
Source: python3.1
Source-Version: 3.1~rc2+20090622-1

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

idle-python3.1_3.1~rc2+20090622-1_all.deb
  to pool/main/p/python3.1/idle-python3.1_3.1~rc2+20090622-1_all.deb
libpython3.1_3.1~rc2+20090622-1_i386.deb
  to pool/main/p/python3.1/libpython3.1_3.1~rc2+20090622-1_i386.deb
python3.1-dbg_3.1~rc2+20090622-1_i386.deb
  to pool/main/p/python3.1/python3.1-dbg_3.1~rc2+20090622-1_i386.deb
python3.1-dev_3.1~rc2+20090622-1_i386.deb
  to pool/main/p/python3.1/python3.1-dev_3.1~rc2+20090622-1_i386.deb
python3.1-doc_3.1~rc2+20090622-1_all.deb
  to pool/main/p/python3.1/python3.1-doc_3.1~rc2+20090622-1_all.deb
python3.1-examples_3.1~rc2+20090622-1_all.deb
  to pool/main/p/python3.1/python3.1-examples_3.1~rc2+20090622-1_all.deb
python3.1-minimal_3.1~rc2+20090622-1_i386.deb
  to pool/main/p/python3.1/python3.1-minimal_3.1~rc2+20090622-1_i386.deb
python3.1_3.1~rc2+20090622-1.diff.gz
  to pool/main/p/python3.1/python3.1_3.1~rc2+20090622-1.diff.gz
python3.1_3.1~rc2+20090622-1.dsc
  to pool/main/p/python3.1/python3.1_3.1~rc2+20090622-1.dsc
python3.1_3.1~rc2+20090622-1_i386.deb
  to pool/main/p/python3.1/python3.1_3.1~rc2+20090622-1_i386.deb
python3.1_3.1~rc2+20090622.orig.tar.gz
  to pool/main/p/python3.1/python3.1_3.1~rc2+20090622.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 521...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Matthias Klose  (supplier of updated python3.1 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, 22 Jun 2009 16:18:39 +0200
Source: python3.1
Binary: python3.1 python3.1-minimal libpython3.1 python3.1-examples 
python3.1-dev idle-python3.1 python3.1-doc python3.1-dbg
Architecture:

Processed: re: kslovar: FTBFS: configure: error: cannot run /bin/sh, admin/config.sub

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 533923 +sid squeeze
Bug#533923: kslovar: FTBFS: configure: error: cannot run /bin/sh 
admin/config.sub
There were no tags set.
Tags added: sid, squeeze

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#533923: kslovar: FTBFS: configure: error: cannot run /bin/sh, admin/config.sub

2009-06-22 Thread peter green

tags 533923 +sid squeeze
thanks

The package builds fine in lenny but fails in sid and squeeze.

A patch is attatched  which fixes some issues. I don't think patch will 
remove files so you will probablly have to remove debian/patches: 
03_libtool_update.diff  (which is no longer used since the new 
debian/rules updates the libtool stuff at build time) manually. 
Unfortunately the build now fails with undefined reference errors.









Only in kslovar-0.2.7.new/debian/patches: 02_autotools_update.diff.level-1.log
Only in kslovar-0.2.7/debian/patches: 03_libtool_update.diff
Only in kslovar-0.2.7.new/debian/patches: 05_fix_desktop_entry.diff.level-1.log
diff -ur kslovar-0.2.7/debian/rules kslovar-0.2.7.new/debian/rules
--- kslovar-0.2.7/debian/rules	2009-06-22 15:04:41.0 +
+++ kslovar-0.2.7.new/debian/rules	2009-06-22 16:21:28.0 +
@@ -24,3 +24,56 @@
 	@@wget  -nv -T10 -t3 -O ../tarballs/$(UPFILENAME) $(URL)
 	@@echo Converting $(UPFILENAME) to $(FILENAME)
 	@@bzcat ../tarballs/$(UPFILENAME) | gzip -9 > ../tarballs/$(FILENAME)
+
+makebuilddir/kslovar::
+	#adjust some symlinks to point to files that actually exist
+	rm -f admin/config.sub
+	ln -s /usr/share/misc/config.sub admin/config.sub
+	rm -f admin/config.guess
+	ln -s /usr/share/misc/config.sub admin/config.guess
+	#regenerate the libtool stuff
+	libtoolize
+	#use the systems version of libtool.m4
+	[ -f admin/libtool.m4.in.bak ] || mv admin/libtool.m4.in admin/libtool.m4.in.bak
+	cp /usr/share/aclocal/libtool.m4 admin/libtool.m4.in
+
+#for some reason theese files don't seem to get built automatically by the upstream build system when we use debians current autotools, as a workaround
+#build them manually
+configure/kslovar::
+	cd src/configuration && /usr/bin/kconfig_compiler ./kslovar.kcfg ./configuration.kcfgc
+	cd src/configuration/ui && /usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload ./ksappearancewdt.ui | /usr/bin/perl -pi -e "s,public QWizard,public KWizard,g; s,#include ,#include ,g" > ksappearancewdt.h ;
+	cd src/configuration/ui && /usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload ./ksbehaviourwdt.ui | /usr/bin/perl -pi -e "s,public QWizard,public KWizard,g; s,#include ,#include ,g" > ksbehaviourwdt.h ;
+	cd src/configuration/ui && /usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload ./kswizardwzt.ui | /usr/bin/perl -pi -e "s,public QWizard,public KWizard,g; s,#include ,#include ,g" > kswizardwzt.h ;
+	cd src/configuration && /usr/share/qt3/bin/moc ./ksappearance.h -o ksappearance.moc
+	cd src/configuration && /usr/share/qt3/bin/moc ./ksconfigdialog.h -o ksconfigdialog.moc
+	cd src/configuration && /usr/share/qt3/bin/moc ./kswizard.h -o kswizard.moc
+	cd src/handler && /usr/share/qt3/bin/moc ./ksxmlhandler.h -o ksxmlhandler.moc
+	cd src/misc/widget && /usr/share/qt3/bin/moc ./kslistview.h -o kslistview.moc
+	cd src/misc/widget && /usr/share/qt3/bin/moc ./kssearchline.h -o kssearchline.moc
+	cd src/misc/widget && /usr/share/qt3/bin/moc ./kslistviewsearchline.h -o kslistviewsearchline.moc
+	cd src/misc && /usr/share/qt3/bin/moc ./ksdata.h -o ksdata.moc
+	cd src/dialog/ui && /usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload ./ksphrasewdt.ui | /usr/bin/perl -pi -e "s,public QWizard,public KWizard,g; s,#include ,#include ,g" > ksphrasewdt.h ;
+	cd src/dialog/ui && /usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload ./ksdictionarywdt.ui | /usr/bin/perl -pi -e "s,public QWizard,public KWizard,g; s,#include ,#include ,g" > ksdictionarywdt.h ;
+	cd src/dialog/ui && /usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload ./kslanguagewdt.ui | /usr/bin/perl -pi -e "s,public QWizard,public KWizard,g; s,#include ,#include ,g" > kslanguagewdt.h ;
+	cd src/dialog/ui && /usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload ./ksconversionwdt.ui | /usr/bin/perl -pi -e "s,public QWizard,public KWizard,g; s,#include ,#include ,g" > ksconversionwdt.h ;	
+	cd src/dialog/ui && /usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload ./ksupgrademanagerwdt.ui | /usr/bin/perl -pi -e "s,public QWizard,public KWizard,g; s,#include ,#include ,g" > ksupgrademanagerwdt.h ;
+	cd src/dialog && /usr/share/qt3/bin/moc ./ksphrase.h -o ksphrase.moc
+	cd src/dialog && /usr/share/qt3/bin/moc ./ksdictionary.h -o ksdictionary.moc
+	cd src/dialog && /usr/share/qt3/bin/moc ./kslanguage.h -o kslanguage.moc
+	cd src/dialog && /usr/share/qt3/bin/moc ./ksconversion.h -o ksconversion.moc
+	cd src/dialog && /usr/share/qt3/bin/moc ./ksupgrademanager.h -o ksupgrademanager.moc
+	cd src/dialog && /usr/share/qt3/bin/moc ./kscharselect.h -o kscharselect.moc
+	cd src && /usr/share/qt3/bin/moc ./kslovar.h -o kslovar.moc
+
+#undo some changes we made above so we can build multiple times in a row
+clean::
+	rm -f admin/config.sub
+	ln -s /usr/share/libtool/config.sub admin/config.sub
+	rm -f admin/config.guess
+	ln -s /usr/share/libtool/config.guess admin/config

Processed: Re: Bug#534019: libbsd-arc4random-perl: FTBFS: arc4rnd_xs.c:167: error: expected ')' before string constant

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 534019 +pending
Bug#534019: libbsd-arc4random-perl: FTBFS: arc4rnd_xs.c:167: error: expected 
')' before string constant
There were no tags set.
Tags added: pending

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#534138: wicd: Please don't mess with netdev members.

2009-06-22 Thread David Paleino
clone 534138 -1
retitle -1 please provide a way to remove users from netdev, using debconf
severity -1 minor
owner -1 David Paleino 
tags -1 = confirmed
block -1 by 534180
thanks

On Mon, 22 Jun 2009 09:46:45 +0200, Cyril Brulebois wrote:

> David Paleino  (22/06/2009):
> > > I guess you may want to filter out users that are already in the
> > > netdev group.
> > 
> > Sure, that can be done. But then, how to handle removal of users? Or
> > maybe this shouldn't be the scope of my debconf screen.
> 
> I think your role should be limited to making it easy for the local
> admin to put network managing into the right hands, if needed, that is:
> propose additions only. If some users are already in that group, that's
> because they have been put there, so don't bother. :)

I uploaded 1.6.1-3 fixing this bug, but I'd rather provide a way to also remove
users from netdev, thus cloning this bug, and mangling it appropriately (it's
blocked by a bug in debconf, it seems)

Kindly,
David

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


signature.asc
Description: PGP signature


Bug#534019: libbsd-arc4random-perl: FTBFS: arc4rnd_xs.c:167: error: expected ')' before string constant

2009-06-22 Thread Thorsten Glaser
tags 534019 +pending
thanks

Lucas Nussbaum dixit:

>On 21/06/09 at 16:13 +, Thorsten Glaser wrote:
>> Lucas Nussbaum dixit:
>> 
>> >> arc4rnd_xs.c: At top level:
>> >> arc4rnd_xs.c:167: error: expected ')' before string constant
>> 
>> Could you please try the attached patch? If it works with it,
>> blame it on the number of brokennesses in gcc increasing along-
>> side with its version numbers.
>
>no, doesn't fix the problem.

Okay, I got it, can reproduce it on i386 sid after a dist-upgrade.
The problem was introduced by l̲i̲b̲b̲s̲d̲ because it defines __RCSID now
(to emptiness, which is not good either) and __FBSDID but neither
__SCCSID (for example) nor __IDSTRING (which triggers the problem).

//mirabilos, looking angrily into the general libbsd direction
-- 
In traditional syntax ' is ignored, but in c99 everything between two ' is
handled as character constant.  Therefore you cannot use ' in a preproces-
sing file in c99 mode.  -- Ragge
No faith left in ISO C99, undefined behaviour, and C compiler authors.



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



Bug#533959: turbotinymce: FTBFS: ImportError: No module named rules

2009-06-22 Thread Monty Taylor
This is actually a bug in python-turbojson (527512) which is fixed in
experimental. I'm not 100% sure if I should reassign this to that bug,
which is closed, because obviously the problem is not actually fixed -
so I've blocked it. Happy to hear about a different/better way of
indicating what's going on here...

Lucas Nussbaum wrote:
> Package: turbotinymce
> Version: 1.0.6-1
> Severity: serious
> User: debian...@lists.debian.org
> Usertags: qa-ftbfs-20090620 qa-ftbfs
> Justification: FTBFS on amd64
> 
> Hi,
> 
> During a rebuild of all packages in sid, your package failed to build on
> amd64.
> 
> Relevant part:
>>  /usr/bin/fakeroot debian/rules clean
>> dpatch  deapply-all  
>> 01_use_debian_tinymce not applied to ./ .
>> rm -rf patch-stamp patch-stampT debian/patched
>> dh clean
>>dh_testdir
>>dh_auto_clean
>> Traceback (most recent call last):
>>   File "setup.py", line 2, in 
>> from turbogears.finddata import find_package_data
>>   File "/usr/lib/pymodules/python2.5/turbogears/__init__.py", line 6, in 
>> 
>> from turbogears.controllers import expose, flash, validate, redirect, \
>>   File "/usr/lib/pymodules/python2.5/turbogears/controllers.py", line 14, in 
>> 
>> from turbogears import view, database, errorhandling, config
>>   File "/usr/lib/pymodules/python2.5/turbogears/view/__init__.py", line 1, 
>> in 
>> from turbogears.view.base import *
>>   File "/usr/lib/pymodules/python2.5/turbogears/view/base.py", line 15, in 
>> 
>> from turbogears.i18n import i18n_filter, get_locale
>>   File "/usr/lib/pymodules/python2.5/turbogears/i18n/__init__.py", line 5, 
>> in 
>> from turbogears.i18n.tg_gettext import gettext, ngettext, install, \
>>   File "/usr/lib/pymodules/python2.5/turbogears/i18n/tg_gettext.py", line 8, 
>> in 
>> from turbojson.jsonify import jsonify
>>   File "/usr/lib/pymodules/python2.5/turbojson/__init__.py", line 1, in 
>> 
>> from turbojson import jsonsupport
>>   File "/usr/lib/pymodules/python2.5/turbojson/jsonsupport.py", line 3, in 
>> 
>> from turbojson import jsonify
>>   File "/usr/lib/pymodules/python2.5/turbojson/jsonify.py", line 6, in 
>> 
>> from peak.rules import abstract
>> ImportError: No module named rules
>> dh_auto_clean: python returned exit code 1
>> make: *** [clean] Error 1
> 
> The full build log is available from:
>
> http://people.debian.org/~lucas/logs/2009/06/20/turbotinymce_1.0.6-1_lsid64.buildlog
> 
> A list of current common problems and possible solutions is available at 
> http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!
> 
> About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
> of the Grid'5000 platform, using a clean chroot.  Internet was not
> accessible from the build systems.
> 




-- 
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#534138: wicd: Please don't mess with netdev members.

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> clone 534138 -1
Bug#534138: wicd: Please don't mess with netdev members.
Bug 534138 cloned as bug 534224.

> retitle -1 please provide a way to remove users from netdev, using debconf
Bug#534224: wicd: Please don't mess with netdev members.
Changed Bug title to `please provide a way to remove users from netdev, using 
debconf' from `wicd: Please don't mess with netdev members.'.
(By the way, that Bug is currently marked as done.)

> severity -1 minor
Bug#534224: please provide a way to remove users from netdev, using debconf
Severity set to `minor' from `serious'

> owner -1 David Paleino 
Bug 534224 [wicd] please provide a way to remove users from netdev, using 
debconf
Owner recorded as David Paleino .
> tags -1 = confirmed
Bug#534224: please provide a way to remove users from netdev, using debconf
Tags were: confirmed
Tags set to: confirmed

> block -1 by 534180
Bug#534180: Cannot use variable in Default field for multiselect
Bug#534224: please provide a way to remove users from netdev, using debconf
Was not blocked by any bugs.
Blocking bugs of 534224 added: 534180

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#534138: marked as done (wicd: Please don't mess with netdev members.)

2009-06-22 Thread Debian Bug Tracking System

Your message dated Mon, 22 Jun 2009 16:17:27 +
with message-id 
and subject line Bug#534138: fixed in wicd 1.6.1-3
has caused the Debian Bug report #534138,
regarding wicd: Please don't mess with netdev members.
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.)


-- 
534138: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=534138
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wicd
Version: 1.6.1-1
Severity: serious

Heya,

[Initially, was:
Subject: wicd: Please don't propose additions to netdev if not relevant
Severity: minor
]

I guess you may want to filter out users that are already in the netdev
group. As for my system, got two users, cyril & guest, the former being
in the netdev group already, and both were proposed as “Users to add to
the netdev group”.

But, looking at the code:
| # Add users not there yet
| for u in $users; do
| adduser $u netdev
| netdev=$(echo $netdev | sed -e "s...@$u@@g")
| done
| 
| # Remove users, present in the group, but not chosen in debconf
| for u in $netdev; do
| deluser $u netdev
| done

So you:
 - fail to detect people already in the netdev group.
 - advertise you're going to add some users to that group.
 - actually remove people that previously were there (because the local
   admin may not want to check boxes for users that are known to already
   be in the right group).

That shouldn't migrate to testing in this shape, IMHO.

Mraw,
KiBi.

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

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

Versions of packages wicd depends on:
ii  adduser 3.110add and remove users and groups
ii  dhcp3-client3.1.2-1  DHCP client
ii  ethtool 6+20090307-1 display or change Ethernet device 
ii  iproute 20090324-1   networking and traffic control too
ii  net-tools   1.60-23  The NET-3 networking toolkit
ii  python  2.5.4-2  An interactive high-level object-o
ii  python-dbus 0.83.0-1 simple interprocess messaging syst
ii  python-glade2   2.14.1-3 GTK+ bindings: Glade support
ii  python-gtk2 2.14.1-3 Python bindings for the GTK+ widge
ii  python-support  1.0.3automated rebuilding support for P
ii  wireless-tools  29-2 Tools for manipulating Linux Wirel
ii  wpasupplicant   0.6.9-3  client support for WPA and WPA2 (I

wicd recommends no packages.

Versions of packages wicd suggests:
ii  pm-utils  1.2.5-2utilities and scripts for power ma

-- no debconf information


--- End Message ---
--- Begin Message ---
Source: wicd
Source-Version: 1.6.1-3

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

wicd_1.6.1-3.diff.gz
  to pool/main/w/wicd/wicd_1.6.1-3.diff.gz
wicd_1.6.1-3.dsc
  to pool/main/w/wicd/wicd_1.6.1-3.dsc
wicd_1.6.1-3_all.deb
  to pool/main/w/wicd/wicd_1.6.1-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 534...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
David Paleino  (supplier of updated wicd 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, 22 Jun 2009 17:59:27 +0200
Source: wicd
Binary: wicd
Architecture: source all
Version: 1.6.1-3
Distribution: unstable
Urgency: low
Maintainer: d.pale...@gmail.com
Changed-By: David Paleino 
Description: 
 wicd   - wired and wireless network manager
Closes: 532112 534138
Changes: 
 wicd (1.6.1-3) unstable; urgency=low
 .
   * debian/config, debian/templates updated:
 - only show users to add to netdev, skip those who are already
   members (Closes: #534138)
 - gracefully handle upgrades from previous broken versions, where
   debconf set a value of ${default} for wicd/users
   (Closes: #532112)
Checksums-Sha1: 
 60e179727a24418f798edb3b6f40938

Bug#534221: iceweasel: Iceweasel forgets tabs and windows on startup

2009-06-22 Thread Carsten Kosthorst
Package: iceweasel
Version: 3.0.11-1
Severity: grave
Justification: causes non-serious data loss

Hi,

iceweasel is set to show my windows and tabs from the last time (Edit ->
Preferences -> Main -> Startup "Show my windows and tabs from last time").
Unfortunately, it starts up with a blank tab or a tab showing my home page.
Which one it shows seems to be random.

This behaviour also occurs when running iceweasel in safe mode with the
-safe-mode option.

Regards,

   Carsten

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

Kernel: Linux 2.6.29
Locale: lang=de...@euro, lc_ctype=de...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages iceweasel depends on:
ii  debianutils   3.1.3  Miscellaneous utilities specific t
ii  fontconfig2.6.0-4generic font configuration library
ii  libc6 2.9-17 GNU C Library: Shared libraries
ii  libgcc1   1:4.4.0-8  GCC support library
ii  libglib2.0-0  2.20.3-1   The GLib library of C routines
ii  libgtk2.0-0   2.16.2-1   The GTK+ graphical user interface 
ii  libnspr4-0d   4.8-1  NetScape Portable Runtime Library
ii  libstdc++64.4.0-8The GNU Standard C++ Library v3
ii  procps1:3.2.8-1  /proc file system utilities
ii  psmisc22.7-1 utilities that use the proc file s
ii  xulrunner-1.9 1.9.0.11-1 XUL + XPCOM application runner

iceweasel recommends no packages.

Versions of packages iceweasel suggests:
ii  latex-xft-fonts  0.1-8   Xft-compatible versions of some La
ii  libkrb53 1.6.dfsg.4~beta1-13 Transitional library package/krb4 
pn  mozplugger (no description available)
pn  ttf-mathematica4.1 (no description available)
ii  xfonts-mathml2   Type1 Symbol font for MathML
pn  xprint (no description available)
pn  xulrunner-1.9-gnome-   (no description available)

-- no debconf information



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



Processed: setting package to wicd, tagging 534138, tagging 532112

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> #wicd (1.6.1-3) UNRELEASED; urgency=low
> #
> #  * debian/config, debian/templates updated:
> #- only show users to add to netdev, skip those who are already
> #  members (Closes: #534138)
> #- gracefully handle upgrades from previous broken versions, where
> #  debconf set a value of ${default} for wicd/users
> #  (Closes: #532112)
> #
> package wicd
Ignoring bugs not assigned to: wicd

> tags 534138 + pending confirmed
Bug#534138: wicd: Please don't mess with netdev members.
Tags were: confirmed
Tags added: pending, confirmed

> tags 532112 + pending confirmed
Bug#532112: wicd: preconfiguring package fails
Tags were: confirmed
Tags added: pending, confirmed

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#534005: marked as done (mu-cite: FTBFS: dpkg-gencontrol: error: error occurred while parsing Enhances field: mew | mew-beta | gnus | mh-e | wl | wl-beta)

2009-06-22 Thread Debian Bug Tracking System

Your message dated Mon, 22 Jun 2009 15:47:14 +
with message-id 
and subject line Bug#534005: fixed in mu-cite 8.1+0.20090514-1
has caused the Debian Bug report #534005,
regarding mu-cite: FTBFS: dpkg-gencontrol: error: error occurred while parsing 
Enhances field: mew | mew-beta | gnus | mh-e | wl | wl-beta
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.)


-- 
534005: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=534005
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: mu-cite
Version: 8.1+0.20070307-5
Severity: serious
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20090620 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
>  /usr/bin/fakeroot debian/rules binary
> dh_testdir
> dh_testroot
> dh_clean -k
> dh_installdirs
> cp MU-* Makefile *.el debian/mu-cite/usr/share/emacs/site-lisp/mu-cite/
> touch install-stamp
> dh_testdir
> dh_testroot
> dh_installdocs
> dh_installemacsen --priority 51
> dh_installinfo
> dh_installchangelogs ChangeLog
> dh_compress
> dh_fixperms
> dh_installdeb
> dh_shlibdeps
> dh_gencontrol
> dpkg-gencontrol: warning: an union dependency can only contain simple 
> dependencies
> dpkg-gencontrol: error: error occurred while parsing Enhances field: mew | 
> mew-beta | gnus | mh-e | wl | wl-beta
> dh_gencontrol: dpkg-gencontrol returned exit code 255
> make: *** [binary-indep] Error 1

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2009/06/20/mu-cite_8.1+0.20070307-5_lsid64.buildlog

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

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot.  Internet was not
accessible from the build systems.

-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F |


--- End Message ---
--- Begin Message ---
Source: mu-cite
Source-Version: 8.1+0.20090514-1

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

mu-cite_8.1+0.20090514-1.diff.gz
  to pool/main/m/mu-cite/mu-cite_8.1+0.20090514-1.diff.gz
mu-cite_8.1+0.20090514-1.dsc
  to pool/main/m/mu-cite/mu-cite_8.1+0.20090514-1.dsc
mu-cite_8.1+0.20090514-1_all.deb
  to pool/main/m/mu-cite/mu-cite_8.1+0.20090514-1_all.deb
mu-cite_8.1+0.20090514.orig.tar.gz
  to pool/main/m/mu-cite/mu-cite_8.1+0.20090514.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 534...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Tatsuya Kinoshita  (supplier of updated mu-cite 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, 23 Jun 2009 00:07:46 +0900
Source: mu-cite
Binary: mu-cite
Architecture: source all
Version: 8.1+0.20090514-1
Distribution: unstable
Urgency: low
Maintainer: Tatsuya Kinoshita 
Changed-By: Tatsuya Kinoshita 
Description: 
 mu-cite- message citation utility for emacsen
Closes: 534005
Changes: 
 mu-cite (8.1+0.20090514-1) unstable; urgency=low
 .
   * New upstream release. (CVS trunk on 2009-05-14, downloaded from
 `http://www.jpl.org/elips/mu/snapshots/mu-cite-200905142258.tar.gz')
   * debian/control:
 - Don't use alternatives in Enhances. (closes: #534005)
 - Move `Homepage:' from Description to the header.
 - Update Standards-Version to 3.8.1.
   * debian/rules: Use dh_prep instead of `dh_clean -k'.
   * debian/compat, debian/control: Update debhelper version to 7.
   * debian/copyright: Updated.
Checksums-Sha1: 
 e196f0fe5a30a56c8cf3dfe2e684c20ecf3603eb 1042 mu-cite_8.1+0.20090514-1.dsc
 89733a53f724a1905d71e8fbdcba20d5911f7849 19221 
mu-cite_8.1+0.20090514.orig.tar.gz
 5b1afe83ec7d78ea203259bfa54b9215fe0aa837 4834 mu-cite_8.1+0.20090514-1.diff.gz
 07cd6053a1b5f453e5561d3bdc21a2e4e60e33b1 26928 mu-cite_8.1+0.20090514-1_all.deb
Checksums-Sha256: 
 d5d97762472ee20bb4f82f42bac024d22ed79a9ffa5f3d721a4a7d0721455e50 1042 
mu-cite_8.1+0.20090514-1.dsc
 a2ae589ba99c5c7

Bug#534199: texlive-formats-extra: does not install: 5 year bug

2009-06-22 Thread Thiemo Nagel
Norbert Preining wrote:
> Hmmm, and
>   bash -x fmtutil-sys --byfmt mllatex > fmtutil.log 2>&1
>   echo $?

1


-- 
+---+--+
| Dipl.-Phys. Thiemo Nagel  |  |
| Technische Universitaet Muenchen  | RoomPH1 3276 |
| Physik-Department E18 |  |
| James-Franck-Strasse  | Phone  +49 89 289-12379  |
| D-85747 Garching  | Fax+49 89 289-12570  |
+---+--+



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



Bug#534199: texlive-formats-extra: does not install: 5 year bug

2009-06-22 Thread Norbert Preining
On Mo, 22 Jun 2009, Thiemo Nagel wrote:
> > Can you please as root call
> > bash -x fmtutil-sys --byfmt latex > fmtutil.log 2>&1
> > and send me the output of fmtutil.log (to the bug report please).
> 
> It's attached.

Hmmm, and
bash -x fmtutil-sys --byfmt mllatex > fmtutil.log 2>&1
echo $?

Thanks

Best wishes

Norbert

---
Dr. Norbert Preining Vienna University of Technology
Debian Developer  Debian TeX Group
gpg DSA: 0x09C5B094  fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
---
LOCHRANZA (n.)
The long unaccomplished wail in the middle of a Scottish folk song
where the pipes nip around the corner for a couple of drinks.
--- Douglas Adams, The Meaning of Liff



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



Bug#534199: texlive-formats-extra: does not install: 5 year bug

2009-06-22 Thread Thiemo Nagel
> Can you please as root call
>   bash -x fmtutil-sys --byfmt latex > fmtutil.log 2>&1
> and send me the output of fmtutil.log (to the bug report please).

It's attached.
+ test -f /bin/ksh
+ test -z ''
+ unset RUNNING_KSH
+ test -f /bin/bsh
+ unset RUNNING_BSH
+ test -n ''
+ export PATH
++ kpsewhich -var-value TEXMFSYSVAR
+ v=/var/lib/texmf
++ kpsewhich -var-value TEXMFSYSCONFIG
+ c=/etc/texmf
+ TEXMFVAR=/var/lib/texmf
+ TEXMFCONFIG=/etc/texmf
+ RUNNING_AS_SYS=true
+ export TEXMFVAR TEXMFCONFIG RUNNING_AS_SYS
+ case $argv0 in
+ exec fmtutil --byfmt latex
fmtutil: running `pdfetex -ini   -jobname=latex -progname=latex -translate-file=cp227.tcx *latex.ini' ...
This is pdfeTeX, Version 3.141592-1.30.5-2.2 (Web2C 7.5.5) (INITEX)
 (/usr/share/texmf-texlive/web2c/cp227.tcx)
entering extended mode
(/usr/share/texmf-texlive/tex/latex/config/latex.ini
(/usr/share/texmf-texlive/tex/generic/config/pdftexconfig.tex)
(/usr/share/texmf-texlive/tex/latex/base/latex.ltx
(/usr/share/texmf-texlive/tex/latex/base/texsys.cfg)
./texsys.aux found


\...@currdir set to: ./.


Assuming \openin and \input 
have the same search path.


Defining UNIX/DOS style filename parser.

catcodes, registers, compatibility for TeX 2,  parameters,

!!
! You are attempting to make a LaTeX format from a source file
! That is more than five years old.
!
! If you enter  to scroll past this message then the format
! will be built, but please consider obtaining newer source files
! before continuing to build LaTeX.
!!

! LaTeX source files more than 5 years old!.
l.540 ...aTeX source files more than 5 years old!}
  
LaTeX2e <2003/12/01>
hacks, control, par, spacing, files, font encodings, lengths,


Local config file fonttext.cfg used


(/usr/share/texmf-texlive/tex/latex/base/fonttext.cfg
(/usr/share/texmf-texlive/tex/latex/base/fonttext.ltx
=== Don't modify this file, use a .cfg file instead ===

(/usr/share/texmf-texlive/tex/latex/base/omlenc.def)
(/usr/share/texmf-texlive/tex/latex/base/t1enc.def)
(/usr/share/texmf-texlive/tex/latex/base/ot1enc.def)
(/usr/share/texmf-texlive/tex/latex/base/omsenc.def)
(/usr/share/texmf-texlive/tex/latex/base/t1cmr.fd)
(/usr/share/texmf-texlive/tex/latex/base/ot1cmr.fd)
(/usr/share/texmf-texlive/tex/latex/base/ot1cmss.fd)
(/usr/share/texmf-texlive/tex/latex/base/ot1cmtt.fd)))


Local config file fontmath.cfg used


(/usr/share/texmf-texlive/tex/latex/base/fontmath.cfg
(/usr/share/texmf-texlive/tex/latex/base/fontmath.ltx
=== Don't modify this file, use a .cfg file instead ===

(/usr/share/texmf-texlive/tex/latex/base/omlcmm.fd)
(/usr/share/texmf-texlive/tex/latex/base/omscmsy.fd)
(/usr/share/texmf-texlive/tex/latex/base/omxcmex.fd)
(/usr/share/texmf-texlive/tex/latex/base/ucmr.fd)))


Local config file preload.cfg used

=
(/usr/share/texmf-texlive/tex/latex/base/preload.cfg
(/usr/share/texmf-texlive/tex/latex/base/preload.ltx)) page nos., x-ref,
environments, center, verbatim, math definitions, boxes, title, sectioning,
contents, floats, footnotes, index, bibliography, output,
===
Local configuration file hyphen.cfg used
===
(/usr/share/texmf-texlive/tex/generic/babel/hyphen.cfg
(/usr/share/texmf-texlive/tex/generic/hyphen/hyphen.tex)
(/usr/share/texmf-texlive/tex/generic/hyphen/ushyphmax.tex)
(/usr/share/texmf-texlive/tex/generic/hyphen/dumyhyph.tex)
(/usr/share/texmf-texlive/tex/generic/hyphen/zerohyph.tex))
=
Applying patch file ltpatch.ltx
=
(/usr/share/texmf-texlive/tex/latex/base/ltpatch.ltx)
 ) )
Beginning to dump on file latex.fmt
 (format=latex 2009.6.22)
4787 strings of total length 64524
44132 memory locations dumped; current usage is 144&42144
3235 multiletter control sequences
\font\nullfont=nullfont
\font\OMX/cmex/m/n/10=cmex10
\font\tenln=line10
\font\tenlnw=linew10
\font\tencirc=lcircle10
\font\tencircw=lcirclew10
\font\OT1/cmr/m/n/5=cmr5
\font\OT1/cmr/m/n/7=cmr7
\font\OT1/cmr/m/n/10=cmr10
\font\OML/cmm/m/it/5=cmmi5
\font\OML/cmm/m/it/7=cmmi7
\font\OML/cmm/m/it/10=cmmi10
\font\OMS/cmsy/m/n/5=cmsy5
\font\OMS/cmsy/m/n/7=cmsy7
\font\OMS/cmsy/m/n/10=cmsy10
3633 words of font info for 14 preloaded fonts
28 hyphenation exceptions
Hyphenation trie of length 9934 has 560 ops out of 35111
  2 for language 2
  377 for language 1
  181 for language 0
No pages of output.
Transcript written on latex.log.
Warning: `pdfetex -ini  -jobname=latex -progname=latex -translate-file=cp227.tcx *latex.ini' possibly failed.
fmtutil: /var/lib/texmf/web2c/latex.fmt installed.

#

Bug#534199: texlive-formats-extra: does not install: 5 year bug

2009-06-22 Thread Thiemo Nagel
Norbert Preining wrote:
> On Mo, 22 Jun 2009, Thiemo Nagel wrote:
>> Because I believe that the package texlive-formats-extra is still broken
>> in oldstable.  (Well, at least it doesn't install on my system.)
> 
> It will be installable again as soon as the fixed version of
> texlive-base-bin has been accepted into proposed-updates.

But if I'm not mistaken, this already is the case:  In Bug #531595,
Frank Küster wrote:

Bug#531595: fixed in texlive-bin 2005.dfsg.2-13

That's exactly the version that I'm installing:

Get:1 http://ftp.de.debian.org etch-proposed-updates/main
texlive-base-bin 2005.dfsg.2-13 [12.0MB]
Unpacking texlive-base-bin (from
.../texlive-base-bin_2005.dfsg.2-13_i386.deb) ...

Kind regards,

Thiemo



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



Bug#534199: texlive-formats-extra: does not install: 5 year bug

2009-06-22 Thread Norbert Preining
On Mo, 22 Jun 2009, Thiemo Nagel wrote:
> But if I'm not mistaken, this already is the case:  In Bug #531595,
> Frank Küster wrote:
> 
> Bug#531595: fixed in texlive-bin 2005.dfsg.2-13
> 
> That's exactly the version that I'm installing:
> 
> Get:1 http://ftp.de.debian.org etch-proposed-updates/main
> texlive-base-bin 2005.dfsg.2-13 [12.0MB]
> Unpacking texlive-base-bin (from
> .../texlive-base-bin_2005.dfsg.2-13_i386.deb) ...

Aehmmm, that is an intersting information.

Can you please as root call
bash -x fmtutil-sys --byfmt latex > fmtutil.log 2>&1
and send me the output of fmtutil.log (to the bug report please).

Thanks.

Frank, can you explain that?

Best wishes

Norbert

---
Dr. Norbert Preining Vienna University of Technology
Debian Developer  Debian TeX Group
gpg DSA: 0x09C5B094  fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
---
FORDTell me Arthur...
ARTHUR  Yes?
FORDThis boulder we're stuck under, how big would you say it was? Roughly?
ARTHUR  Oh, about the size of Coventry Cathedral.
FORDDo you think we could move it? (Arthur doesn't reply) Just asking.
 --- Ford and Arthur in a tricky situation, Fit the Eighth.
 --- Douglas Adams, The Hitchhikers Guide to the Galaxy



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



Bug#534199: texlive-formats-extra: does not install: 5 year bug

2009-06-22 Thread Norbert Preining
On Mo, 22 Jun 2009, Thiemo Nagel wrote:
> Because I believe that the package texlive-formats-extra is still broken
> in oldstable.  (Well, at least it doesn't install on my system.)

It will be installable again as soon as the fixed version of
texlive-base-bin has been accepted into proposed-updates.

Best wishes

Norbert

---
Dr. Norbert Preining Vienna University of Technology
Debian Developer  Debian TeX Group
gpg DSA: 0x09C5B094  fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
---
QUEENZIEBURN (n.)
Something that happens when people make it up after an agglethorpe
(q.v.)
--- Douglas Adams, The Meaning of Liff



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



Bug#534199: texlive-formats-extra: does not install: 5 year bug

2009-06-22 Thread Thiemo Nagel
>> Package fails to install due to "5 year bug", cf. eg. bug #531595.
> 
> Thanks so why do you report it when we have already uploaded a package
> of texlive-base-bin that fixes this problem?

Because I believe that the package texlive-formats-extra is still broken
in oldstable.  (Well, at least it doesn't install on my system.)

Kind regards,

Thiemo


# apt-get install texlive-formats-extra
Reading package lists... Done
Building dependency tree... Done
The following extra packages will be installed:
  texlive-base texlive-base-bin texlive-latex-base texlive-pdfetex
Recommended packages:
  dvipdfmx
The following NEW packages will be installed:
  texlive-base texlive-base-bin texlive-formats-extra texlive-latex-base
texlive-pdfetex
0 upgraded, 5 newly installed, 0 to remove and 0 not upgraded.
Need to get 38.7MB of archives.
After unpacking 70.1MB of additional disk space will be used.
Do you want to continue [Y/n]?
Get:1 http://ftp.de.debian.org etch-proposed-updates/main
texlive-base-bin 2005.dfsg.2-13 [12.0MB]
Get:2 http://debian.bio.lmu.de etch/main texlive-base 2005.dfsg.3-1 [6126kB]
Get:3 http://debian.bio.lmu.de etch/main texlive-latex-base
2005.dfsg.3-1 [15.5MB]
Get:4 http://ftp.de.debian.org etch-proposed-updates/main
texlive-pdfetex 2005.dfsg.2-13 [3045kB]
Get:5 http://debian.bio.lmu.de etch/main texlive-formats-extra
2005.dfsg.3-1 [1990kB]
Fetched 38.7MB in 3s (12.4MB/s)
Selecting previously deselected package texlive-base-bin.
(Reading database ... 245262 files and directories currently installed.)
Unpacking texlive-base-bin (from
.../texlive-base-bin_2005.dfsg.2-13_i386.deb) ...
Selecting previously deselected package texlive-base.
Unpacking texlive-base (from .../texlive-base_2005.dfsg.3-1_all.deb) ...
Selecting previously deselected package texlive-pdfetex.
Unpacking texlive-pdfetex (from
.../texlive-pdfetex_2005.dfsg.2-13_i386.deb) ...
Selecting previously deselected package texlive-latex-base.
Unpacking texlive-latex-base (from
.../texlive-latex-base_2005.dfsg.3-1_all.deb) ...
Selecting previously deselected package texlive-formats-extra.
Unpacking texlive-formats-extra (from
.../texlive-formats-extra_2005.dfsg.3-1_all.deb) ...
Setting up texlive-base-bin (2005.dfsg.2-13) ...
Running mktexlsr. This may take some time... done.
Building format(s) --all . This may take some time... done.

Setting up texlive-base (2005.dfsg.3-1) ...
Running mktexlsr. This may take some time... done.
Building format(s) --all . This may take some time... done.
Running updmap-sys. This may take some time... done.

Setting up texlive-pdfetex (2005.dfsg.2-13) ...
Running mktexlsr. This may take some time... done.
Building format(s) --byfmt etex. This may take some time... done.
Building format(s) --byfmt pdfetex. This may take some time... done.

Setting up texlive-latex-base (2005.dfsg.3-1) ...
Running mktexlsr. This may take some time... done.
Building format(s) --byfmt latex. This may take some time... done.
Building format(s) --byfmt pdflatex. This may take some time... done.
Running updmap-sys. This may take some time... done.

Setting up texlive-formats-extra (2005.dfsg.3-1) ...
Running mktexlsr. This may take some time... done.
Building format(s) --byfmt mltex. This may take some time... done.
Building format(s) --byfmt mllatex. This may take some time...
fmtutil-sys failed. Output has been stored in
/tmp/texlive.fmtutil.ePxx7300
Please include this file if you report a bug.

dpkg: error processing texlive-formats-extra (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 texlive-formats-extra
E: Sub-process /usr/bin/dpkg returned an error code (1)


-- 
+---+--+
| Dipl.-Phys. Thiemo Nagel  |  |
| Technische Universitaet Muenchen  | RoomPH1 3276 |
| Physik-Department E18 |  |
| James-Franck-Strasse  | Phone  +49 89 289-12379  |
| D-85747 Garching  | Fax+49 89 289-12570  |
+---+--+
fmtutil: running `pdfetex -ini   -jobname=mllatex -progname=mllatex 
-translate-file=cp227.tcx -mltex mllatex.ini' ...
This is pdfeTeX, Version 3.141592-1.30.5-2.2 (Web2C 7.5.5) (INITEX)
 (/usr/share/texmf-texlive/web2c/cp227.tcx)
MLTeX v2.2 enabled
(/usr/share/texmf-texlive/tex/latex/config/mllatex.ini
(/usr/share/texmf-texlive/tex/latex/base/latex.ltx
(/usr/share/texmf-texlive/tex/latex/base/texsys.cfg)
./texsys.aux found


\...@currdir set to: ./.


Assuming \openin and \input 
have the same search path.


Defining UNIX/DOS style filename parser.

catcodes, registers, compatibility for TeX 2,  parameters,

!!
! You are attempting to make a LaTeX format from a source file
! That is more than five years old.
!
! If you enter  to scroll past this message then the format
! will b

Bug#460691: gnome-network-admin remove network-manager-gnome

2009-06-22 Thread Frederic MASSOT
Package: gnome-network-admin
Severity: normal


Hi,

The latest updates of Squezze removes the package network-manager-gnome 
(0.7.1-1) to update the package gnome-network-admin (2.22.1-4 -> 2.22.1-5).

I use NM to DHCP or Wifi, NM is very complete.

I prefer to keep NM, if I try to remove gnome-network-admin, it eliminates a 
useful packages.

Both packages can not they coexist?

Regards.

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

Kernel: Linux 2.6.30 (SMP w/2 CPU cores; PREEMPT)
Locale: lang=fr...@euro, lc_ctype=fr...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages gnome-network-admin depends on:
ii  gnome-system-tools 2.22.1-4  Cross-platform configuration utili
ii  libatk1.0-01.26.0-1  The ATK accessibility toolkit
ii  libc6  2.9-12GNU C Library: Shared libraries
ii  libcairo2  1.8.6-2+b1The Cairo 2D vector graphics libra
ii  libdbus-1-31.2.12-1  simple interprocess messaging syst
ii  libdbus-glib-1-2   0.80-4simple interprocess messaging syst
ii  libfontconfig1 2.6.0-3   generic font configuration library
ii  libfreetype6   2.3.9-4.1 FreeType 2 font engine, shared lib
ii  libgconf2-42.26.2-1  GNOME configuration database syste
ii  libglib2.0-0   2.20.1-2  The GLib library of C routines
ii  libgtk2.0-02.16.1-2  The GTK+ graphical user interface 
ii  libiw2929-1.1Wireless tools - library
ii  liboobs-1-42.22.0-2  GObject based interface to system-
ii  libpango1.0-0  1.24.0-3+b1   Layout and rendering of internatio
ii  libpolkit-dbus20.9-3 library for accessing PolicyKit vi
ii  libpolkit2 0.9-3 library for accessing PolicyKit
ii  zlib1g 1:1.2.3.3.dfsg-13 compression library - runtime

gnome-network-admin recommends no packages.

gnome-network-admin suggests no packages.

-- no debconf information



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



Bug#534138: wicd: working on it

2009-06-22 Thread David Paleino
Hello,
the two bugs I'm mailing (#534138 and #532112) or kind of related, but are
different bugs, so I'm not going to merge them. Rather, I'm CCing both.

Anyway, here's the point, I filed a bug against debconf, to ask the status of
"Default:" fields in template files using variables (and db_metaget/db_subst):

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

In the meanwhile, I think I'll accept KiBi's suggestion:

  "I guess you may want to filter out users that are already in the netdev
  group"

I already have a branch doing that, and it seems working fine. And no, it
doesn't fail on preconfigure on first installation. I'll still do some testing
before uploading though.

I'll upload a version with this change as soon as possible to sid, since it
can't really be more broken than it is now :)


Please be patient, and sorry for the inconvenience.

Kindly,
David

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


signature.asc
Description: PGP signature


Processed: Re: Bug#534200: texlive-lang-german: package fails to install: 5 years bug

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 534200 texlive-base-bin
Bug#534200: texlive-lang-german: package fails to install: 5 years bug
Bug reassigned from package `texlive-lang-german' to `texlive-base-bin'.

> close 534200 2005.dfsg.2-13
Bug#534200: texlive-lang-german: package fails to install: 5 years bug
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug marked as fixed in version 2005.dfsg.2-13, send any further explanations to 
Thiemo Nagel 

> merge 534200 531595
Bug#531595: texlive-latex-base: Package fails to install in etch
Bug#534200: texlive-lang-german: package fails to install: 5 years bug
Bug#534199: texlive-formats-extra: does not install: 5 year bug
Merged 531595 534199 534200.

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: Re: Processed: found 532112 in 1.6.1-2

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 532112 important
Bug#532112: wicd: preconfiguring package fails
Severity set to `important' from `serious'

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#532112: Processed: found 532112 in 1.6.1-2

2009-06-22 Thread Bernd Zeimetz
severity 532112 important
thanks

Hi,

this bug still happens if you had a broken version from experimental installed.
To get rid of the problem the following line will help:

echo "wicdwicd/users  multiselect `whoami`" |\
sudo debconf-set-selections

I'm degrading the bug and leave it open in case other people run into the
problem. Feel free to close it again, or get rid of the wrong setting - I would
imagine that db_set/get could help you with that, didn't try it yet.

Cheers,

Bernd

-- 
 Bernd Zeimetz Debian GNU/Linux Developer
 GPG Fingerprints: 06C8 C9A2 EAAD E37E 5B2C BE93 067A AD04 C93B FF79
   ECA1 E3F2 8E11 2432 D485 DD95 EB36 171A 6FF9 435F



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



Bug#534200: texlive-lang-german: package fails to install: 5 years bug

2009-06-22 Thread Norbert Preining
reassign 534200 texlive-base-bin
close 534200 2005.dfsg.2-13
merge 534200 531595
thanks

On Mo, 22 Jun 2009, Thiemo Nagel wrote:
> Package fails to install due to "5 years bug", cf. eg. bug #531595.

And one more, already known and resolved by new upload.

Best wishes

Norbert

---
Dr. Norbert Preining Vienna University of Technology
Debian Developer  Debian TeX Group
gpg DSA: 0x09C5B094  fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
---
GLINSK (n.)
A hat which politicians but to go to Russia in.
--- Douglas Adams, The Meaning of Liff



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



Processed: Re: Processed (with 1 errors): Re: Bug#534199: texlive-formats-extra: does not install: 5 year bug

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # retrying
> close 534199 2005.dfsg.2-13
Bug#534199: texlive-formats-extra: does not install: 5 year bug
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug marked as fixed in version 2005.dfsg.2-13, send any further explanations to 
Thiemo Nagel 

> merge 534199 531595
Bug#531595: texlive-latex-base: Package fails to install in etch
Bug#534199: texlive-formats-extra: does not install: 5 year bug
Merged 531595 534199.

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed (with 1 errors): Re: Bug#534199: texlive-formats-extra: does not install: 5 year bug

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 534199 texlive-base-bin
Bug#534199: texlive-formats-extra: does not install: 5 year bug
Bug reassigned from package `texlive-formats-extra' to `texlive-base-bin'.

> merge 534199 531595
Bug#531595: texlive-latex-base: Package fails to install in etch
Bug#534199: texlive-formats-extra: does not install: 5 year bug
Mismatch - only Bugs in same state can be merged:
Values for `done mark' don't match:
 #531595 has `done';
 #534199 has `open'

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#534199: texlive-formats-extra: does not install: 5 year bug

2009-06-22 Thread Norbert Preining
reassign 534199 texlive-base-bin
merge 534199 531595
thanks

On Mo, 22 Jun 2009, Thiemo Nagel wrote:
> Package fails to install due to "5 year bug", cf. eg. bug #531595.

Thanks so why do you report it when we have already uploaded a package
of texlive-base-bin that fixes this problem?

Same with that other bug.

Best wishes

Norbert

---
Dr. Norbert Preining Vienna University of Technology
Debian Developer  Debian TeX Group
gpg DSA: 0x09C5B094  fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
---
GREELEY (n.)
Someone who continually annoys you by continually apologising for
annoying you.
--- Douglas Adams, The Meaning of Liff



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



Processed: reopening 532112

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reopen 532112
Bug#532112: wicd: preconfiguring package fails
'reopen' may be inappropriate when a bug has been closed with a version;
you may need to use 'found' to remove fixed versions.
Bug reopened, originator not changed.

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: found 532112 in 1.6.1-2

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> found 532112 1.6.1-2
Bug#532112: wicd: preconfiguring package fails
Bug marked as found in version 1.6.1-2.

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#534161: [random crashes] streamtuner: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0.

2009-06-22 Thread Ari Pollak
Could you get a backtrace as described here:
http://wiki.debian.org/HowToGetABacktrace



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



Bug#534208: python2.6_2.6.2-1(sparc/experimental): FTBFS: dh_makeshlibs: dpkg-gensymbols returned exit code 1

2009-06-22 Thread Frank Lichtenheld
Package: python2.6
Version: 2.6.2-1
Severity: serious

Hi,

your package failed to build from source.

| Automatic build of python2.6_2.6.2-1 on njoerd by sbuild/sparc 98-farm
| Build started at 20090622-0728
| **
| Checking available source versions...
| Fetching source files...
| Reading package lists...
| Building dependency tree...
| Reading state information...
| Need to get 13.8MB of source archives.
| Get:1 http://sinclair.farm.ftbfs.de experimental/main python2.6 2.6.2-1 (dsc) 
[1725B]
| Get:2 http://sinclair.farm.ftbfs.de experimental/main python2.6 2.6.2-1 (tar) 
[13.4MB]
| Get:3 http://sinclair.farm.ftbfs.de experimental/main python2.6 2.6.2-1 
(diff) [381kB]
| Fetched 13.8MB in 3s (4140kB/s)
| Download complete and in download only mode
| ** Using build dependencies supplied by package:
| Build-Depends: debhelper (>= 5), autoconf, automake1.10, libreadline5-dev, 
libncursesw5-dev (>= 5.3), tk8.5-dev, zlib1g-dev, blt-dev (>= 2.4z), 
libssl-dev, sharutils, libbz2-dev, libbluetooth-dev [!hurd-i386 !kfreebsd-i386 
!kfreebsd-amd64], locales [!armel !hppa !ia64 !mipsel], libsqlite3-dev, 
libffi-dev (>= 3.0.5), mime-support, libgpm2 [!hurd-i386 !kfreebsd-i386 
!kfreebsd-amd64], netbase, lsb-release, bzip2, libdb-dev
| Build-Depends-Indep: python-sphinx
| Build-Conflicts: libgdbm-dev, python-xml, python2.6-xml, tcl8.3-dev, tk8.3-dev
| Checking for already installed source dependencies...
[...]
| dh_makeshlibs -plibpython2.6 -V 'libpython2.6'
| dpkg-gensymbols: warning: Failed to parse a line in debian/libpython.symbols: 
| dpkg-gensymbols: warning: Failed to parse a line in debian/libpython.symbols: 
| dpkg-gensymbols: warning: Failed to parse a line in debian/libpython.symbols: 
| dpkg-gensymbols: warning: Failed to parse a line in debian/libpython.symbols: 
| dpkg-gensymbols: warning: Failed to parse a line in debian/libpython.symbols: 
| dpkg-gensymbols: warning: Failed to parse a line in debian/libpython.symbols: 
| dpkg-gensymbols: warning: some new symbols appeared in the symbols file: see 
diff output below
| dpkg-gensymbols: warning: some symbols disappeared in the symbols file: see 
diff output below
| dpkg-gensymbols: warning: debian/libpython2.6/DEBIAN/symbols doesn't match 
completely debian/libpython2.6.symbols
| --- dpkg-gensymbolsOQkEhw 2009-06-22 10:50:50.0 +
| +++ dpkg-gensymbols7UKKIL 2009-06-22 10:50:50.0 +
| @@ -1122,7 +1122,7 @@
|   _py_ctype_toup...@base 2.6
|   _py_delbit...@base 2.6
|   _py_findla...@base 2.6
| - _py_force_dou...@base 2.6.2
| +#MISSING: 2.6.2-1# _py_force_dou...@base 2.6.2
|   _py_isalnum__do...@base 2.6
|   _py_isalpha__do...@base 2.6
|   _py_isdigit__do...@base 2.6
| @@ -1143,3 +1143,44 @@
|   _py_title__do...@base 2.6
|   _py_translatelab...@base 2.6
|   _py_upper__do...@base 2.6
| + asdl_int_seq_...@base 2.6.2-1
| + asdl_seq_...@base 2.6.2-1
| + fast_save_le...@base 2.6.2-1
| + init_...@base 2.6.2-1
| + init_bis...@base 2.6.2-1
| + init_cod...@base 2.6.2-1
| + init_collecti...@base 2.6.2-1
| + init_functo...@base 2.6.2-1
| + init_loc...@base 2.6.2-1
| + init_ran...@base 2.6.2-1
| + init_soc...@base 2.6.2-1
| + init_sockobj...@base 2.6.2-1
| + init_...@base 2.6.2-1
| + init_str...@base 2.6.2-1
| + init_symta...@base 2.6.2-1
| + init_weak...@base 2.6.2-1
| + initar...@base 2.6.2-1
| + initbinas...@base 2.6.2-1
| + initcpic...@base 2.6.2-1
| + initcstrin...@base 2.6.2-1
| + initer...@base 2.6.2-1
| + initfc...@base 2.6.2-1
| + ini...@base 2.6.2-1
| + init...@base 2.6.2-1
| + init...@base 2.6.2-1
| + inititerto...@base 2.6.2-1
| + initm...@base 2.6.2-1
| + initopera...@base 2.6.2-1
| + initpo...@base 2.6.2-1
| + init...@base 2.6.2-1
| + initsel...@base 2.6.2-1
| + initsig...@base 2.6.2-1
| + inits...@base 2.6.2-1
| + initst...@base 2.6.2-1
| + initsys...@base 2.6.2-1
| + initthr...@base 2.6.2-1
| + initt...@base 2.6.2-1
| + initunicoded...@base 2.6.2-1
| + initxxsubt...@base 2.6.2-1
| + initzipimp...@base 2.6.2-1
| + initz...@base 2.6.2-1
| dh_makeshlibs: dpkg-gensymbols returned exit code 1
| make: *** [binary-arch] Error 1
| dpkg-buildpackage: error: /usr/bin/fakeroot debian/rules binary-arch gave 
error exit status 2
| **
| Build finished at 20090622-1250
| FAILED [dpkg-buildpackage died]

Full build log(s): 
http://experimental.ftbfs.de/build.php?&ver=2.6.2-1&pkg=python2.6&arch=sparc

Gruesse,
-- 
Frank Lichtenheld 
www: http://www.djpig.de/



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



Bug#533929: rjava: FTBFS: ERROR: configuration failed for package 'rJava'

2009-06-22 Thread Dirk Eddelbuettel

On 22 June 2009 at 15:52, Lucas Nussbaum wrote:
| On 22/06/09 at 08:04 -0500, Dirk Eddelbuettel wrote:
| > 
| > On 22 June 2009 at 13:40, Lucas Nussbaum wrote:
| > | On 22/06/09 at 05:56 -0500, Dirk Eddelbuettel wrote:
| > | > | Hi Dirk,
| > | > | 
| > | > | I just tried, and I could reproduce the failure in a clean chroot.
| > | > | beaujolais:/tmp/rjava-0.6-3# R CMD config JAVAH
| > | > | 
| > | > | Couldn't that be caused by a missing dependancy?
| > | > 
| > | > Is your system amd64 ?  My i386 handles building rJava (aka 
r-cran-rjava)
| > | > just fine.
| > | 
| > | Yes
| > 
| > Ok, so want can we do to tie this down?
| 
| I confirm that it builds fine on i386.
| 
| i386:
| # R CMD config JAVAH 
| /usr/bin/javah
| # ls -l /usr/bin/javah 
| lrwxrwxrwx 1 root root 23 Jun 22 15:56 /usr/bin/javah -> 
/etc/alternatives/javah
| # ls -l /etc/alternatives/javah
| lrwxrwxrwx 1 root root 37 Jun 22 15:56 /etc/alternatives/javah -> 
/usr/lib/jvm/java-6-openjdk/bin/javah
| 
| amd64:
| # R CMD config JAVAH
| 
| # ls -l /usr/bin/javah 
| lrwxrwxrwx 1 root root 23 Jun 22 15:59 /usr/bin/javah -> 
/etc/alternatives/javah
| # ls -l /etc/alternatives/javah
| lrwxrwxrwx 1 root root 37 Jun 22 15:59 /etc/alternatives/javah -> 
/usr/lib/jvm/java-6-openjdk/bin/javah
| 
| So, there's really no reason why R couldn't find javah on amd64 as well.
| Looks like a problem in R.

I think it is probably an issue with something else in the toolchains that
gets in the way.

The script doing the this is   /usr/lib/R/bin/javareconf   and I suspect that
it finds some gcc/gcj/gij/... tool first.   

Incidentally I am getting actual errors on another chroot outside of Debian
where I am trying to automate building all 1700+ CRAN packages as Debian
packages:

I: ** preparing package for lazy loading
I: Warning in .jnew(""org/rosuda/iplots/Framework"") :
I:   NewObject(""org/rosuda/iplots/Framework"",""()V"",...) failed
I: Exception in thread ""main"" java.lang.UnsatisfiedLinkError: Can't load
library: /usr/lib/jvm/java-6-openjdk/jre/lib/ext/libjava-access-bridge-jni.so
I:  at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1666)
I:  at java.lang.Runtime.load0(Runtime.java:787)
I:  at java.lang.System.load(System.java:1022)
I:  at org.GNOME.Accessibility.JavaBridge.(JavaBridge.java:352)
I:  at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native
Method)
I:  at
sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
I:  at
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
I:  at java.lang.reflect.Constructor.newInstance(Constructor.java:532)
I:  at java.lang.Class.newInstance0(Class.java:372)
I:  at java.lang.Class.newInstance(Class.java:325)
I:  at java.awt.Toolkit.loadAssistiveTechnologies(Toolkit.java:786)
I:  at java.awt.Toolkit.getDefaultToolkit(Toolkit.java:874)
I:  at org.rosuda.util.Platform.initPlatform(Platform.java:39)
I:  at org.rosuda.iplots.Framework.(Framework.java:49)

'org.rosuda.*' is where rJava, JGR, ... all come from.  I am a little
confused that org.GNOME shows up there.  

Dirk

-- 
Three out of two people have difficulties with fractions.



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



Bug#530304: marked as done (irssi-plugin-xmpp fails ia64 automatic build log filter)

2009-06-22 Thread Debian Bug Tracking System

Your message dated Mon, 22 Jun 2009 13:32:06 +
with message-id 
and subject line Bug#530304: fixed in irssi-plugin-xmpp 0.13+cvs20090617-1
has caused the Debian Bug report #530304,
regarding irssi-plugin-xmpp fails ia64 automatic build log filter
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.)


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

package: irssi-plugin-xmpp
version: 0.13+cvs20090406-1
severity: serious
tags: patch

The ia64 buildd has a build log filter looking for implicit conversions 
of function results to pointers (because they belive they are almost 
certain to cause the app to segfault and usually indicate an include 
screwup or similar), this filter detects "Function `strptime' implicitly 
converted to pointer at xep/datetime.c:83" and fails the build. Hence 
your package cannot currently be built on the IA64 autobuilders and 
therefore cannot migrate to testing.


To attack the issue of major warnings (stuff that would be errors in any 
modern langauge) I enabled -Werror then as each warning came up 
depending on it's severity either fixed it or added a 
-Wno-error= for it. In doing so I also discovered I had to 
modify the makefiles a bit to make the upstream makefiles respect CFLAGS 
from debian/rules.


In the process of fixing warnings I have also fixed some code that 
didn't look like it could possiblly work (in get_jids in 
xmpp-completion.c) . Please check that the fix there is correct (i'm 
only doing flyby rc bug inspection, in this case looking at why the 
fixes for 521227 and 527697 aren't in testing.). I also had to add 
-Wno-error=uninitialized to make some code build which i'm not happy 
about but probablly needs real knowlage of the codebase to fix.


r...@debian:/irssi-plugin-xmpp-0.13+cvs20090406.new# dpkg-buildpackage 
2>&1 | grep 'used uninitialized'
rosters-tools.c:83: warning: ‘group_tmp’ may be used uninitialized in 
this function [-Wuninitialized]
xep/fe-version.c:37: warning: ‘name’ may be used uninitialized in this 
function [-Wuninitialized]

r...@debian:/irssi-plugin-xmpp-0.13+cvs20090406.new#


diff -ur irssi-plugin-xmpp-0.13+cvs20090406/config.mk irssi-plugin-xmpp-0.13+cvs20090406.new/config.mk
--- irssi-plugin-xmpp-0.13+cvs20090406/config.mk	2009-04-06 22:19:25.0 +
+++ irssi-plugin-xmpp-0.13+cvs20090406.new/config.mk	2009-05-23 22:14:01.0 +
@@ -21,7 +21,7 @@
 LIBS =	${LIB_LIBS}
 
 # flags
-CFLAGS = -fPIC -std=c99 -DUOFF_T_LONG ${INCS}
+CFLAGS = ${DEBIAN_CFLAGS} -fPIC -std=c99 -DUOFF_T_LONG ${INCS}
 LDFLAGS = -shared ${LIBS}
 
 # debug
diff -ur irssi-plugin-xmpp-0.13+cvs20090406/debian/rules irssi-plugin-xmpp-0.13+cvs20090406.new/debian/rules
--- irssi-plugin-xmpp-0.13+cvs20090406/debian/rules	2009-05-23 22:29:39.0 +
+++ irssi-plugin-xmpp-0.13+cvs20090406.new/debian/rules	2009-05-23 22:15:18.0 +
@@ -4,7 +4,8 @@
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
-CFLAGS = -Wall -g
+
+CFLAGS = -Wall -g -Werror -fdiagnostics-show-option -Wno-error=unused-parameter -Wno-error=empty-body -Wno-error=uninitialized -Wno-error=unused-variable -Wno-error=unused-parameter -Wno-error=unused-function
 
 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
 	CFLAGS += -O0
@@ -12,6 +13,8 @@
 	CFLAGS += -O2
 endif
 
+export DEBIAN_CFLAGS=${CFLAGS}
+
 build: build-stamp
 
 build-stamp:
diff -ur irssi-plugin-xmpp-0.13+cvs20090406/src/core/xep/datetime.c irssi-plugin-xmpp-0.13+cvs20090406.new/src/core/xep/datetime.c
--- irssi-plugin-xmpp-0.13+cvs20090406/src/core/xep/datetime.c	2009-04-06 22:19:32.0 +
+++ irssi-plugin-xmpp-0.13+cvs20090406.new/src/core/xep/datetime.c	2009-05-23 21:39:55.0 +
@@ -21,6 +21,9 @@
  * XEP-0082: XMPP Date and Time Profiles
  */
 
+//according to the manpage we need this #define to get strptime
+#define _XOPEN_SOURCE
+
 #include 
 #include 
 #include 
diff -ur irssi-plugin-xmpp-0.13+cvs20090406/src/core/xep/muc-nicklist.c irssi-plugin-xmpp-0.13+cvs20090406.new/src/core/xep/muc-nicklist.c
--- irssi-plugin-xmpp-0.13+cvs20090406/src/core/xep/muc-nicklist.c	2009-04-06 22:19:31.0 +
+++ irssi-plugin-xmpp-0.13+cvs20090406.new/src/core/xep/muc-nicklist.c	2009-05-23 21:42:21.0 +
@@ -179,15 +179,15 @@
 	switch (affiliation) {
 	case XMPP_NICKLIST_AFFILIATION_OWNER:
 		nick->prefixes[0] = '&';
-		nick->prefixes[1] = NULL;
+		nick->prefixes[1] = 0;
 		nick->op = TRUE;
 		break;
 	case XMPP_NICKLIST_AFFILIATION_ADMIN:
-		nick->prefixes[0] = NULL;
+		nick->prefixes[0] = 

Bug#533920: source-highlight: FTBFS: /bin/sh: ./config.status: No such file or, directory

2009-06-22 Thread peter green

retitle 533920 source-highlight: FTBFS:  ERROR! Boost::regex library is 
installed, but you must specify the suffix with --with-boost-regex at configure 
for instance, --with-boost-regex=boost_regex-gcc-1_31
thanks


/bin/sh ./config.status --recheck
/bin/sh: ./config.status: No such file or directory
make[1]: *** [config.status] Error 127


Looks like you got the wrong part of the build log. the bit you pasted is just 
some bitching from the clean target when it tries to clean an already clean 
source tree. The actual error that causes the build to fail is below.



configure: error:

ERROR! Boost::regex library is installed, but you
must specify the suffix with --with-boost-regex at configure
for instance, --with-boost-regex=boost_regex-gcc-1_31
make: *** [config-stamp] Error 1
dpkg-buildpackage: error: debian/rules build gave error exit status 2






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



Bug#533929: rjava: FTBFS: ERROR: configuration failed for package 'rJava'

2009-06-22 Thread Lucas Nussbaum
On 22/06/09 at 08:04 -0500, Dirk Eddelbuettel wrote:
> 
> On 22 June 2009 at 13:40, Lucas Nussbaum wrote:
> | On 22/06/09 at 05:56 -0500, Dirk Eddelbuettel wrote:
> | > 
> | > On 22 June 2009 at 11:02, Lucas Nussbaum wrote:
> | > | On 21/06/09 at 21:12 -0500, Dirk Eddelbuettel wrote:
> | > | > 
> | > | > On 21 June 2009 at 16:55, Lucas Nussbaum wrote:
> | > | > | Hi,
> | > | > | 
> | > | > | During a rebuild of all packages in sid, your package failed to 
> build on
> | > | > | amd64.
> | > | > | 
> | > | > | Relevant part:
> | > | > | >  /usr/bin/fakeroot debian/rules binary
> | > | > | > test -x debian/rules
> | > | > | > dh_clean -k 
> | > | > | > dh_installdirs -A 
> | > | > | > mkdir -p "."
> | > | > | > if test -e /usr/share/misc/config.guess ; then \
> | > | > | >   for i in ./jri/tools/config.guess ; do \
> | > | > | >   if ! test -e $i.cdbs-orig ; then \
> | > | > | >   mv $i $i.cdbs-orig ; \
> | > | > | >   cp --remove-destination 
> /usr/share/misc/config.guess $i ; \
> | > | > | >   fi ; \
> | > | > | >   done ; \
> | > | > | >   fi
> | > | > | > if test -e /usr/share/misc/config.sub ; then \
> | > | > | >   for i in ./jri/tools/config.sub ; do \
> | > | > | >   if ! test -e $i.cdbs-orig ; then \
> | > | > | >   mv $i $i.cdbs-orig ; \
> | > | > | >   cp --remove-destination 
> /usr/share/misc/config.sub $i ; \
> | > | > | >   fi ; \
> | > | > | >   done ; \
> | > | > | >   fi
> | > | > | > dh_installdirsusr/lib/R/site-library
> | > | > | > if test -f /usr/bin/xvfb-run; then\
> | > | > | >xvfb-run   \
> | > | > | >   R CMD INSTALL -l 
> /build/user-rjava_0.6-3-1-amd64-l63FQQ/rjava-0.6-3/debian/r-cran-rjava/usr/lib/R/site-library
>  --clean \
> | > | > | >. ;\
> | > | > | >   else
> \
> | > | > | >R CMD INSTALL -l 
> /build/user-rjava_0.6-3-1-amd64-l63FQQ/rjava-0.6-3/debian/r-cran-rjava/usr/lib/R/site-library
>  \
> | > | > | >   --clean  . ;\
> | > | > | >   fi
> | > | > | > * Installing *source* package 'rJava' ...
> | > | > | > checking for gcc... gcc -std=gnu99
> | > | > | > checking for C compiler default output file name... a.out
> | > | > | > checking whether the C compiler works... yes
> | > | > | > checking whether we are cross compiling... no
> | > | > | > checking for suffix of executables... 
> | > | > | > checking for suffix of object files... o
> | > | > | > checking whether we are using the GNU C compiler... yes
> | > | > | > checking whether gcc -std=gnu99 accepts -g... yes
> | > | > | > checking for gcc -std=gnu99 option to accept ISO C89... none 
> needed
> | > | > | > checking how to run the C preprocessor... gcc -std=gnu99 -E
> | > | > | > checking for grep that handles long lines and -e... /bin/grep
> | > | > | > checking for egrep... /bin/grep -E
> | > | > | > checking for ANSI C header files... yes
> | > | > | > checking for sys/wait.h that is POSIX.1 compatible... yes
> | > | > | > checking for sys/types.h... yes
> | > | > | > checking for sys/stat.h... yes
> | > | > | > checking for stdlib.h... yes
> | > | > | > checking for string.h... yes
> | > | > | > checking for memory.h... yes
> | > | > | > checking for strings.h... yes
> | > | > | > checking for inttypes.h... yes
> | > | > | > checking for stdint.h... yes
> | > | > | > checking for unistd.h... yes
> | > | > | > checking for string.h... (cached) yes
> | > | > | > checking sys/time.h usability... yes
> | > | > | > checking sys/time.h presence... yes
> | > | > | > checking for sys/time.h... yes
> | > | > | > checking for unistd.h... (cached) yes
> | > | > | > checking for an ANSI C-conforming const... yes
> | > | > | > checking whether time.h and sys/time.h may both be included... yes
> | > | > | > configure: checking whether gcc -std=gnu99 supports static 
> inline...
> | > | > | > yes
> | > | > | > configure: error: One or more Java configuration variables are 
> not set.
> | > | > | > Make sure R is configured with full Java support (including JDK). 
> Run
> | > | > | > R CMD javareconf
> | > | > | > as root to add Java support to R.
> | > | > | > 
> | > | > | > If you don't have root privileges, run
> | > | > | > R CMD javareconf -e
> | > | > | > to set all Java-related variables and then install rJava.
> | > | > | > 
> | > | > | > checking Java support in R... present:
> | > | > | > interpreter : '/usr/bin/java'
> | > | > | > archiver: '/usr/bin/jar'
> | > | > | > compiler: '/usr/bin/javac'
> | > | > | > header prep.: ''
> | > | > 
> | > | > That variable is set on my system and ...
> | > | > 
> | > | > | > cpp flags   : '-I/usr/lib/jvm/java-6-openjd

Bug#523027: [oss-security] incorrect upstream fix for CVE-2009-0840 (mapserver)

2009-06-22 Thread Nico Golde
Hi,
* Nico Golde  [2009-06-22 15:45]:
[...] 
> Unfortunately this doesn't fix the issue and I wonder why people always think
> changing signed types to unsigned will fix such errors.
> If I pass 0x as the content-length according to type conversion rules
> in C atoi() will convert this to -1 which is again converted to 0x when
0x^^
-- 
Nico Golde - http://www.ngolde.de - n...@jabber.ccc.de - GPG: 0xA0A0
For security reasons, all text in this mail is double-rot13 encrypted.


pgpRI65Dpj50r.pgp
Description: PGP signature


Processed: Re: Processed: reassign gcc-defaults report

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 532064 squid3
Bug#532064: squid3: Enable kerberos support
Bug reassigned from package `gcc-defaults' to `squid3'.

> reassign 532065 gcc-defaults
Bug#532065: Fails to install (postinst/update-alternatives)
Bug#532292: java-gcj-compat-dev setup breaks pdebuild for libidn.jar
Bug reassigned from package `java-gcj-compat-dev' to `gcc-defaults'.

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#523027: incorrect upstream fix for CVE-2009-0840 (mapserver)

2009-06-22 Thread Nico Golde
Hi,
from the CVE description:
| Heap-based buffer underflow in the readPostBody function in cgiutil.c in
| mapserv in MapServer 4.x before 4.10.4 and 5.x before 5.2.2 allows remote
| attackers to have an unknown impact via a negative value in the Content-Length
| HTTP header.

The affected code is in cgiutil.c:
41 static char *readPostBody( cgiRequestObj *request ) 
42 {
43   char *data; 
44   int data_max, data_len, chunk_size;
45 
46   msIO_needBinaryStdin();
47 
48   /*  */
49   /*  If the length is provided, read in one gulp.*/
50   /*  */
51   if( getenv("CONTENT_LENGTH") != NULL ) {
52 data_max = atoi(getenv("CONTENT_LENGTH"));
53 data = (char *) malloc(data_max+1);
54 if( data == NULL ) {
55   msIO_printf("Content-type: text/html%c%c",10,10);
56   msIO_printf("malloc() failed, Content-Length: %d unreasonably 
large?\n", data_max );
57   exit( 1 );
58 }
59 
60 if( (int) msIO_fread(data, 1, data_max, stdin) < data_max ) {

There is obviously a problem in case the content-length is negative.
The following is the upstream patch which was used to "fix" this issue:
 static char *readPostBody( cgiRequestObj *request ) 
 {
   char *data; 
-  int data_max, data_len, chunk_size;
+  unsigned int data_max, data_len; 
+  int chunk_size;


Unfortunately this doesn't fix the issue and I wonder why people always think
changing signed types to unsigned will fix such errors.
If I pass 0x as the content-length according to type conversion rules
in C atoi() will convert this to -1 which is again converted to 0x when
assigning it to an unsigned int. data_max+1 in line 53 will then overflow and
malloc is called with a parameter of 0. This causes malloc to allocated the 
smallest
possible chunk but it will _not_ return NULL (well, implementation defined). So 
it
is still possible to perform a heap-based buffer overflow after the upstream
fix.

I'm not sure if this should get a new CVE id but the versions in the CVE id
description should be adjusted and the upstream patch revised.

Cheers
Nico
P.S. @Alan, this is also the reason I have to reject your packages in our
security queue again.



-- 
Nico Golde - http://www.ngolde.de - n...@jabber.ccc.de - GPG: 0xA0A0
For security reasons, all text in this mail is double-rot13 encrypted.


pgpVk77bKPQ0z.pgp
Description: PGP signature


Bug#533122: ruby1.8-dev: FTBFS with newer ruby ?

2009-06-22 Thread Dirk Eddelbuettel

On 22 June 2009 at 14:29, Lucas Nussbaum wrote:
| On 14/06/09 at 18:41 -0500, Dirk Eddelbuettel wrote:
| > 
| > Package: ruby1.8-dev
| > Version: 1.8.7.72-3.1
| > Severity: serious
| > 
| > Hi, I maintain a package with Swig-generated interfaces for which I also
| > provide ruby builds. I had just done a release a few days ago, it worked
| > fine:
| > 
| > dh_installdirs -pquantlib-ruby  usr/share/quantlib-ruby
| > (cd Ruby && \
| > CXX="g++"   \
| > CFLAGS="-O2 -Wall -Wno-strict-aliasing" 
\
| > CXXFLAGS="-O2 -Wall -Wno-strict-aliasing"   
\
| > ruby setup.rb install   \
| > 
--prefix=/tmp/buildd/quantlib-swig-0.9.7/debian/quantlib-ruby/usr --debian  
)
| > creating Makefile
| > make[1]: Entering directory `/tmp/buildd/quantlib-swig-0.9.7/Ruby'
| > make[1]: Nothing to be done for `all'.
| > make[1]: Leaving directory `/tmp/buildd/quantlib-swig-0.9.7/Ruby'
| > ./QuantLibc.so -> 
/tmp/buildd/quantlib-swig-0.9.7/debian/quantlib-ruby/usr/lib/ruby/1.8/i486-linux/QuantLibc.so
| > chmod 0555 
/tmp/buildd/quantlib-swig-0.9.7/debian/quantlib-ruby/usr/lib/ruby/1.8/i486-linux/QuantLibc.so
| > ./QuantLib.rb -> 
/tmp/buildd/quantlib-swig-0.9.7/debian/quantlib-ruby/usr/lib/ruby/1.8/QuantLib.rb
| > chmod 0555 
/tmp/buildd/quantlib-swig-0.9.7/debian/quantlib-ruby/usr/lib/ruby/1.8/QuantLib.rb
| > chmod 644 debian/quantlib-ruby/usr/lib/ruby/1.8/QuantLib.rb
| > 
| > That was using the versions
| > 
| > Get:33 http://ftp.us.debian.org unstable/main libruby1.8 1.8.7.72-3.1 
[1672kB]
| > Get:34 http://ftp.us.debian.org unstable/main ruby1.8 1.8.7.72-3.1 [283kB]
| > Get:35 http://ftp.us.debian.org unstable/main ruby 4.2 [20.6kB]
| > Get:36 http://ftp.us.debian.org unstable/main ruby1.8-dev 1.8.7.72-3.1 
[826kB]
| > 
| > 
| > Now, however, using what is in unstable, ie 
| > 
| > Get:33 http://ftp.us.debian.org unstable/main libruby1.8 1.8.7.173-1 
[1679kB]
| > Get:34 http://ftp.us.debian.org unstable/main ruby1.8 1.8.7.173-1 [290kB]
| > Get:35 http://ftp.us.debian.org unstable/main ruby 4.2 [20.6kB]
| > Get:36 http://ftp.us.debian.org unstable/main ruby1.8-dev 1.8.7.173-1 
[835kB]
| > 
| > I end up with
| > 
| > 
| > (cd Ruby && ruby setup.rb test  )
| > creating Makefile
| > make[1]: Entering directory `/tmp/buildd/quantlib-swig-0.9.7/Ruby'
| > make[1]: *** No rule to make target `Makefile', needed by `QuantLibc.so'.  
Stop.
| > make[1]: Leaving directory `/tmp/buildd/quantlib-swig-0.9.7/Ruby'
| > /tmp/buildd/quantlib-swig-0.9.7/Ruby/QuantLib.rb:18:in `require': no such 
file to load -- QuantLibc (LoadError)
| > from /tmp/buildd/quantlib-swig-0.9.7/Ruby/QuantLib.rb:18
| > from ./dates.rb:18:in `require'
| > from ./dates.rb:18
| > from ./QuantLibTestSuite.rb:23:in `require'
| > from ./QuantLibTestSuite.rb:23
| > from setup.rb:134:in `load'
| > from setup.rb:134
| > from setup.rb:70:in `call'
| > from setup.rb:70:in `execute'
| > from setup.rb:173
| > Testing QuantLib-Ruby 0.9.7...
| > make: *** [test-stamp] Error 1
| > 
| > Same for the install target.
| > 
| > Or is this something that requires upstream changes in setup.rb ?
| > 
| > Thanks in advance for your help,  Dirk
| 
| Hi Dirk,
| 
| If you have time, could you please try again with the ruby1.8 packages
| now in unstable (1.8.7.174-1) ? .173 had several regressions, so it
| might be fixed now.

I did on Friday, and as it still failed.

So I decided to disable Ruby support and I uploaded a new quantlib-swing --
producing only a python package -- the same day:

quantlib-swig (0.9.7-3) unstable; urgency=low

  * debian/rules: Apply patch to support --install-layout=deb switch
for the Python 2.6 transition   (Closes: #533107)

  * debian/rules:  No longer build the ruby variant as the builds is broken
with newer packages (see bug report #533122). 
  * debian/control: Remove quantlib-ruby section, adjust Build-Depends:
  
 -- Dirk Eddelbuettel   Fri, 19 Jun 2009 17:19:03 -0500


If Ruby is broken and the maintainer doesn't care I simply won't use. If and
when this changes I can revert.

Thanks for catching this and the follow-up.

Dirk

-- 
Three out of two people have difficulties with fractions.



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



Bug#534201: [synaptic] An error occured, dpkg was interrupted, synaptic can't be used anymore

2009-06-22 Thread Matthias Krüger
Package: synaptic
Version: 0.62.6
Severity: serious

--- Please enter the report below this line. ---
Since the last update I did using synaptic, an errror occures starting it.

"
> E: dpkg was interrupted, you must manually run 'dpkg --configure -a' to 
> correct the problem. 
> E: _cache->open() failed, please report.
"

The update worked out fine beside the lines listed above appeared at the
end of the update.

Running "dpkg --configure -a" the terminal says
"
> Setting up initramfs-tools (0.93.3) ...
> update-initramfs: deferring update (trigger activated)
> Processing triggers for initramfs-tools ...
> update-initramfs: Generating /boot/initrd.img-2.6.26-2-amd64
> dpkg: warning: obsolete option '--print-installation-architecture', please 
> use '--print-architecture' instead.
> elilo: /etc/elilo.conf: No such file or directory
> dpkg: subprocess installed post-installation script returned error exit 
> status 1
"

Thank you for your fine work!
Matthias Krüger
--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.26-2-amd64

Debian Release: squeeze/sid
  500 testing 141.76.2.4
  500 stable  security.debian.org
  500 stable  http.us.debian.org

--- Package information. ---
Depends   (Version) | Installed
===-+-==
libapt-inst-libc6.9-6-1.1   |
libapt-pkg-libc6.9-6-4.7|
libatk1.0-0 (>= 1.20.0) | 1.26.0-1
libc6(>= 2.3.4) | 2.9-12
libcairo2(>= 1.2.4) | 1.8.6-2+b1
libfontconfig1   (>= 2.4.0) | 2.6.0-3
libfreetype6 (>= 2.2.1) | 2.3.9-4.1
libgcc1(>= 1:4.1.1) | 1:4.4.0-5
libglade2-0(>= 1:2.6.1) | 1:2.6.4-1
libglib2.0-0(>= 2.16.0) | 2.20.1-2
libgtk2.0-0  (>= 2.8.0) | 2.16.1-2
libpango1.0-0   (>= 1.14.0) | 1.24.0-3+b1
libstdc++6   (>= 4.2.1) | 4.4.0-5
libvte9   (>= 1:0.19.4) | 1:0.20.1-1
libx11-6| 2:1.2.1-1
libxml2 (>= 2.6.27) | 2.7.3.dfsg-1
scrollkeeper| 0.3.14-16
hicolor-icon-theme  | 0.10-2


Recommends  (Version) | Installed
=-+-===
gksu  | 2.0.2-2+b1
deborphan | 1.7.28
libgnome2-perl| 1.042-2
menu  | 2.1.41


Suggests  (Version) | Installed
===-+-===
dwww| 1.11.1







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



Bug#533929: rjava: FTBFS: ERROR: configuration failed for package 'rJava'

2009-06-22 Thread Dirk Eddelbuettel

On 22 June 2009 at 13:40, Lucas Nussbaum wrote:
| On 22/06/09 at 05:56 -0500, Dirk Eddelbuettel wrote:
| > 
| > On 22 June 2009 at 11:02, Lucas Nussbaum wrote:
| > | On 21/06/09 at 21:12 -0500, Dirk Eddelbuettel wrote:
| > | > 
| > | > On 21 June 2009 at 16:55, Lucas Nussbaum wrote:
| > | > | Hi,
| > | > | 
| > | > | During a rebuild of all packages in sid, your package failed to build 
on
| > | > | amd64.
| > | > | 
| > | > | Relevant part:
| > | > | >  /usr/bin/fakeroot debian/rules binary
| > | > | > test -x debian/rules
| > | > | > dh_clean -k 
| > | > | > dh_installdirs -A 
| > | > | > mkdir -p "."
| > | > | > if test -e /usr/share/misc/config.guess ; then \
| > | > | > for i in ./jri/tools/config.guess ; do \
| > | > | > if ! test -e $i.cdbs-orig ; then \
| > | > | > mv $i $i.cdbs-orig ; \
| > | > | > cp --remove-destination 
/usr/share/misc/config.guess $i ; \
| > | > | > fi ; \
| > | > | > done ; \
| > | > | > fi
| > | > | > if test -e /usr/share/misc/config.sub ; then \
| > | > | > for i in ./jri/tools/config.sub ; do \
| > | > | > if ! test -e $i.cdbs-orig ; then \
| > | > | > mv $i $i.cdbs-orig ; \
| > | > | > cp --remove-destination 
/usr/share/misc/config.sub $i ; \
| > | > | > fi ; \
| > | > | > done ; \
| > | > | > fi
| > | > | > dh_installdirs  usr/lib/R/site-library
| > | > | > if test -f /usr/bin/xvfb-run; then  \
| > | > | >  xvfb-run   \
| > | > | > R CMD INSTALL -l 
/build/user-rjava_0.6-3-1-amd64-l63FQQ/rjava-0.6-3/debian/r-cran-rjava/usr/lib/R/site-library
 --clean \
| > | > | >  . ;\
| > | > | > else
\
| > | > | >  R CMD INSTALL -l 
/build/user-rjava_0.6-3-1-amd64-l63FQQ/rjava-0.6-3/debian/r-cran-rjava/usr/lib/R/site-library
 \
| > | > | > --clean  . ;\
| > | > | > fi
| > | > | > * Installing *source* package 'rJava' ...
| > | > | > checking for gcc... gcc -std=gnu99
| > | > | > checking for C compiler default output file name... a.out
| > | > | > checking whether the C compiler works... yes
| > | > | > checking whether we are cross compiling... no
| > | > | > checking for suffix of executables... 
| > | > | > checking for suffix of object files... o
| > | > | > checking whether we are using the GNU C compiler... yes
| > | > | > checking whether gcc -std=gnu99 accepts -g... yes
| > | > | > checking for gcc -std=gnu99 option to accept ISO C89... none needed
| > | > | > checking how to run the C preprocessor... gcc -std=gnu99 -E
| > | > | > checking for grep that handles long lines and -e... /bin/grep
| > | > | > checking for egrep... /bin/grep -E
| > | > | > checking for ANSI C header files... yes
| > | > | > checking for sys/wait.h that is POSIX.1 compatible... yes
| > | > | > checking for sys/types.h... yes
| > | > | > checking for sys/stat.h... yes
| > | > | > checking for stdlib.h... yes
| > | > | > checking for string.h... yes
| > | > | > checking for memory.h... yes
| > | > | > checking for strings.h... yes
| > | > | > checking for inttypes.h... yes
| > | > | > checking for stdint.h... yes
| > | > | > checking for unistd.h... yes
| > | > | > checking for string.h... (cached) yes
| > | > | > checking sys/time.h usability... yes
| > | > | > checking sys/time.h presence... yes
| > | > | > checking for sys/time.h... yes
| > | > | > checking for unistd.h... (cached) yes
| > | > | > checking for an ANSI C-conforming const... yes
| > | > | > checking whether time.h and sys/time.h may both be included... yes
| > | > | > configure: checking whether gcc -std=gnu99 supports static inline...
| > | > | > yes
| > | > | > configure: error: One or more Java configuration variables are not 
set.
| > | > | > Make sure R is configured with full Java support (including JDK). 
Run
| > | > | > R CMD javareconf
| > | > | > as root to add Java support to R.
| > | > | > 
| > | > | > If you don't have root privileges, run
| > | > | > R CMD javareconf -e
| > | > | > to set all Java-related variables and then install rJava.
| > | > | > 
| > | > | > checking Java support in R... present:
| > | > | > interpreter : '/usr/bin/java'
| > | > | > archiver: '/usr/bin/jar'
| > | > | > compiler: '/usr/bin/javac'
| > | > | > header prep.: ''
| > | > 
| > | > That variable is set on my system and ...
| > | > 
| > | > | > cpp flags   : '-I/usr/lib/jvm/java-6-openjdk/jre/../include'
| > | > | > java libs   : '-L/usr/lib/jvm/java-6-openjdk/jre/lib/amd64/server 
-L/usr/lib/jvm/java-6-openjdk/jre/lib/amd64 
-L/usr/lib/jvm/java-6-openjdk/jre/../lib/amd64 -L 
-L/usr/java/packages/lib/amd64 -L/usr/

Processed: fixed 523027 in 5.2.2-1

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> fixed 523027 5.2.2-1
Bug#523027: mapserver: multiple vulnerabilities
Bug marked as fixed in version 5.2.2-1.

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#534200: texlive-lang-german: package fails to install: 5 years bug

2009-06-22 Thread Thiemo Nagel
Package: texlive-lang-german
Version: 2005.dfsg.2-5
Severity: grave
Justification: renders package unusable


Package fails to install due to "5 years bug", cf. eg. bug #531595.

Error message during installation:

!!
! You are attempting to make a LaTeX format from a source file
! That is more than five years old.
!
! If you enter  to scroll past this message then the format
! will be built, but please consider obtaining newer source files
! before continuing to build LaTeX.
!!

! LaTeX source files more than 5 years old!.
l.540 ...aTeX source files more than 5 years old!}

?
! Emergency stop.
l.540 ...aTeX source files more than 5 years old!}

-- Package-specific info:
If you report an error when running one of the TeX-related binaries 
(latex, pdftex, metafont,...), or if the bug is related to bad or wrong
output, please include a MINIMAL example input file that produces the
error in your report. Don't forget to also include minimal examples of
other files that are needed, e.g. bibtex databases. Often it also helps
to include the logfile. Please, never send included pictures!

If your example file isn't short or produces more than one page of
output (except when multiple pages are needed to show the problem),
you can probably minimize it further. Instructions on how to do that
can be found at

http://www.latex-einfuehrung.de/mini-en.html (english)

or 

http://www.latex-einfuehrung.de/mini.html (german)

##
minimal input file


##
other files

##
 List of ls-R files

-rw-r--r-- 1 root root 963 2009-06-22 14:45 /var/lib/texmf/ls-R
lrwxrwxrwx 1 root root 29 2009-06-19 13:56 /usr/share/texmf/ls-R -> 
/var/lib/texmf/ls-R-TEXMFMAIN
lrwxrwxrwx 1 root root 27 2009-06-19 13:56 /usr/share/texmf-texlive/ls-R -> 
/var/lib/texmf/ls-R-TEXLIVE
lrwxrwxrwx 1 root root 27 2009-06-19 13:56 /usr/share/texmf-texlive/ls-R -> 
/var/lib/texmf/ls-R-TEXLIVE
##
 Config files
lrwxrwxrwx 1 root root 20 2009-06-19 13:56 /usr/share/texmf/web2c/texmf.cnf -> 
/etc/texmf/texmf.cnf
-rw-r--r-- 1 root root 7114 2009-06-22 14:45 /var/lib/texmf/web2c/fmtutil.cnf
-rw-r--r-- 1 root root 9036 2009-06-22 14:45 /var/lib/texmf/web2c/updmap.cfg
-rw-r--r-- 1 root root 4649 2009-06-22 14:45 
/var/lib/texmf/tex/generic/config/language.dat

-- System Information:
Debian Release: 4.0
  APT prefers oldstable-proposed-updates
  APT policy: (1000, 'oldstable-proposed-updates'), (1000, 'oldstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.26-2-e18
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages texlive-lang-german depends on:
ii  texlive-base   2005.dfsg.3-1 TeX Live: Essential programs and f
ii  texlive-common 2005.dfsg.3-1 TeX Live: Base component

texlive-lang-german recommends no packages.

Versions of packages tex-common depends on:
ii  debconf [debconf-2.0]1.5.11etch2 Debian configuration management sy
ii  ucf  2.0020  Update Configuration File: preserv

Versions of packages texlive-lang-german is related to:
pn  tetex-base (no description available)
pn  tetex-bin  (no description available)
pn  tetex-extra(no description available)

-- debconf information:
  tex-common/check_texmf_wrong:
  tex-common/check_texmf_missing:



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



Bug#518802: (no subject)

2009-06-22 Thread Alexander Galanin
> Looking at the upstream BTS:
> 
> http://www.virtualbox.org/ticket/1499
> 
> | Sorry, but this will not work. You have to use either a 32-bit kernel
> | and a 32-bit environment or a 64-bit kernel and a 64-bit environment if
> | you want to use VirtualBox. The reason is that VirtualBox is kind of
> | system software which has to communicate closely with the host kernel. 
> 
> There seems to be no way to provide an -amd64 modules package for i386
> systems at all.

I have both kernel and userspace compiled for -amd64.

-- 
Alexander Galanin



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



Bug#534199: texlive-formats-extra: does not install: 5 year bug

2009-06-22 Thread Thiemo Nagel
Package: texlive-formats-extra
Version: 2005.dfsg.3-1
Severity: grave
Justification: renders package unusable


Package fails to install due to "5 year bug", cf. eg. bug #531595.

Error message:

!!
! You are attempting to make a LaTeX format from a source file
! That is more than five years old.
!
! If you enter  to scroll past this message then the format
! will be built, but please consider obtaining newer source files
! before continuing to build LaTeX.
!!

! LaTeX source files more than 5 years old!.
l.540 ...aTeX source files more than 5 years old!}

?
! Emergency stop.
l.540 ...aTeX source files more than 5 years old!}


-- Package-specific info:
If you report an error when running one of the TeX-related binaries 
(latex, pdftex, metafont,...), or if the bug is related to bad or wrong
output, please include a MINIMAL example input file that produces the
error in your report. Don't forget to also include minimal examples of
other files that are needed, e.g. bibtex databases. Often it also helps
to include the logfile. Please, never send included pictures!

If your example file isn't short or produces more than one page of
output (except when multiple pages are needed to show the problem),
you can probably minimize it further. Instructions on how to do that
can be found at

http://www.latex-einfuehrung.de/mini-en.html (english)

or 

http://www.latex-einfuehrung.de/mini.html (german)

##
minimal input file


##
other files

##
 List of ls-R files

-rw-r--r-- 1 root root 963 2009-06-22 14:45 /var/lib/texmf/ls-R
lrwxrwxrwx 1 root root 29 2009-06-19 13:56 /usr/share/texmf/ls-R -> 
/var/lib/texmf/ls-R-TEXMFMAIN
lrwxrwxrwx 1 root root 27 2009-06-19 13:56 /usr/share/texmf-texlive/ls-R -> 
/var/lib/texmf/ls-R-TEXLIVE
lrwxrwxrwx 1 root root 27 2009-06-19 13:56 /usr/share/texmf-texlive/ls-R -> 
/var/lib/texmf/ls-R-TEXLIVE
##
 Config files
lrwxrwxrwx 1 root root 20 2009-06-19 13:56 /usr/share/texmf/web2c/texmf.cnf -> 
/etc/texmf/texmf.cnf
-rw-r--r-- 1 root root 7114 2009-06-22 14:45 /var/lib/texmf/web2c/fmtutil.cnf
-rw-r--r-- 1 root root 9036 2009-06-22 14:45 /var/lib/texmf/web2c/updmap.cfg
-rw-r--r-- 1 root root 4649 2009-06-22 14:45 
/var/lib/texmf/tex/generic/config/language.dat

-- System Information:
Debian Release: 4.0
  APT prefers oldstable-proposed-updates
  APT policy: (1000, 'oldstable-proposed-updates'), (1000, 'oldstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.26-2-e18
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages texlive-formats-extra depends on:
ii  texlive-base   2005.dfsg.3-1 TeX Live: Essential programs and f
ii  texlive-common 2005.dfsg.3-1 TeX Live: Base component
ii  texlive-latex-base 2005.dfsg.3-1 TeX Live: Basic LaTeX packages

texlive-formats-extra recommends no packages.

Versions of packages tex-common depends on:
ii  debconf [debconf-2.0]1.5.11etch2 Debian configuration management sy
ii  ucf  2.0020  Update Configuration File: preserv

Versions of packages texlive-formats-extra is related to:
pn  tetex-base (no description available)
pn  tetex-bin  (no description available)
pn  tetex-extra(no description available)

-- debconf information:
  tex-common/check_texmf_wrong:
  tex-common/check_texmf_missing:



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



Bug#533122: ruby1.8-dev: FTBFS with newer ruby ?

2009-06-22 Thread Lucas Nussbaum
On 14/06/09 at 18:41 -0500, Dirk Eddelbuettel wrote:
> 
> Package: ruby1.8-dev
> Version: 1.8.7.72-3.1
> Severity: serious
> 
> Hi, I maintain a package with Swig-generated interfaces for which I also
> provide ruby builds. I had just done a release a few days ago, it worked
> fine:
> 
> dh_installdirs -pquantlib-rubyusr/share/quantlib-ruby
> (cd Ruby &&   \
>   CXX="g++"   \
>   CFLAGS="-O2 -Wall -Wno-strict-aliasing" 
> \
>   CXXFLAGS="-O2 -Wall -Wno-strict-aliasing"   
> \
>   ruby setup.rb install   \
>   
> --prefix=/tmp/buildd/quantlib-swig-0.9.7/debian/quantlib-ruby/usr --debian
>   )
> creating Makefile
> make[1]: Entering directory `/tmp/buildd/quantlib-swig-0.9.7/Ruby'
> make[1]: Nothing to be done for `all'.
> make[1]: Leaving directory `/tmp/buildd/quantlib-swig-0.9.7/Ruby'
> ./QuantLibc.so -> 
> /tmp/buildd/quantlib-swig-0.9.7/debian/quantlib-ruby/usr/lib/ruby/1.8/i486-linux/QuantLibc.so
> chmod 0555 
> /tmp/buildd/quantlib-swig-0.9.7/debian/quantlib-ruby/usr/lib/ruby/1.8/i486-linux/QuantLibc.so
> ./QuantLib.rb -> 
> /tmp/buildd/quantlib-swig-0.9.7/debian/quantlib-ruby/usr/lib/ruby/1.8/QuantLib.rb
> chmod 0555 
> /tmp/buildd/quantlib-swig-0.9.7/debian/quantlib-ruby/usr/lib/ruby/1.8/QuantLib.rb
> chmod 644 debian/quantlib-ruby/usr/lib/ruby/1.8/QuantLib.rb
> 
> That was using the versions
> 
> Get:33 http://ftp.us.debian.org unstable/main libruby1.8 1.8.7.72-3.1 [1672kB]
> Get:34 http://ftp.us.debian.org unstable/main ruby1.8 1.8.7.72-3.1 [283kB]
> Get:35 http://ftp.us.debian.org unstable/main ruby 4.2 [20.6kB]
> Get:36 http://ftp.us.debian.org unstable/main ruby1.8-dev 1.8.7.72-3.1 [826kB]
> 
> 
> Now, however, using what is in unstable, ie 
> 
> Get:33 http://ftp.us.debian.org unstable/main libruby1.8 1.8.7.173-1 [1679kB]
> Get:34 http://ftp.us.debian.org unstable/main ruby1.8 1.8.7.173-1 [290kB]
> Get:35 http://ftp.us.debian.org unstable/main ruby 4.2 [20.6kB]
> Get:36 http://ftp.us.debian.org unstable/main ruby1.8-dev 1.8.7.173-1 [835kB]
> 
> I end up with
> 
> 
> (cd Ruby && ruby setup.rb test)
> creating Makefile
> make[1]: Entering directory `/tmp/buildd/quantlib-swig-0.9.7/Ruby'
> make[1]: *** No rule to make target `Makefile', needed by `QuantLibc.so'.  
> Stop.
> make[1]: Leaving directory `/tmp/buildd/quantlib-swig-0.9.7/Ruby'
> /tmp/buildd/quantlib-swig-0.9.7/Ruby/QuantLib.rb:18:in `require': no such 
> file to load -- QuantLibc (LoadError)
>   from /tmp/buildd/quantlib-swig-0.9.7/Ruby/QuantLib.rb:18
>   from ./dates.rb:18:in `require'
>   from ./dates.rb:18
>   from ./QuantLibTestSuite.rb:23:in `require'
>   from ./QuantLibTestSuite.rb:23
>   from setup.rb:134:in `load'
>   from setup.rb:134
>   from setup.rb:70:in `call'
>   from setup.rb:70:in `execute'
>   from setup.rb:173
> Testing QuantLib-Ruby 0.9.7...
> make: *** [test-stamp] Error 1
> 
> Same for the install target.
> 
> Or is this something that requires upstream changes in setup.rb ?
> 
> Thanks in advance for your help,  Dirk

Hi Dirk,

If you have time, could you please try again with the ruby1.8 packages
now in unstable (1.8.7.174-1) ? .173 had several regressions, so it
might be fixed now.
-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F |



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



Bug#534103: nvidia-kernel-legacy-173xx: fails to build with 2.6.30-1

2009-06-22 Thread Krzesimir Nowak
According to lkml.org [1] proc_dir_entry::owner field was removed in
2.6.30, so for now you can fix it by simply removing or commenting all
the lines using proc_dir_entry::owner in nv.c.

Krzesimir Nowak

[1] http://lkml.org/lkml/2009/1/26/342




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



Processed: block 533974 with 534102

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> block 533974 with 534102
Bug#534102: RM: bluez-libs -- RoM; obsoleted by bluez
Bug#533974: bluez-utils: FTBFS: security.c:888: error: 'HCI_SECMGR' undeclared 
(first use in this function)
Was not blocked by any bugs.
Blocking bugs of 533974 added: 534102

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#534138: wicd: Beside installation fails because of "nonet" user

2009-06-22 Thread Eric Valette
Package: wicd
Version: 1.6.1-2
Severity: normal

Param�trage de wicd (1.6.1-2) ... 
L'utilisateur �x� est d�j� membre du groupe ��netdev��.  
L'utilisateur �y� est d�j� membre du groupe ��netdev��. 
/usr/sbin/deluser: L'utilisateur ��nonet�� n'est pas membre du groupe 
��netdev��.


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

Kernel: Linux 2.6.30 (PREEMPT)
Locale: LANG=fr_FR.UTF8, LC_CTYPE=fr_FR.UTF8 (charmap=UTF-8) (ignored: LC_ALL 
set to fr_FR.UTF8)
Shell: /bin/sh linked to /bin/bash

Versions of packages wicd depends on:
ii  adduser 3.110add and remove users and groups
ii  debconf [debconf-2.0]   1.5.26   Debian configuration management sy
ii  dhcp3-client3.1.2-1  DHCP client
ii  ethtool 6+20090307-1 display or change Ethernet device 
ii  iproute 20090324-1   networking and traffic control too
ii  lsb-base3.2-22   Linux Standard Base 3.2 init scrip
ii  net-tools   1.60-23  The NET-3 networking toolkit
ii  psmisc  22.7-1   utilities that use the proc file s
pi  python  2.5.4-3  An interactive high-level object-o
ii  python-dbus 0.83.0-1 simple interprocess messaging syst
ii  python-glade2   2.14.1-3 GTK+ bindings: Glade support
ii  python-gtk2 2.14.1-3 Python bindings for the GTK+ widge
ii  python-support  1.0.3automated rebuilding support for P
ii  python-urwid0.9.8.4-1curses-based UI/widget library for
ii  wireless-tools  30~pre8-1Tools for manipulating Linux Wirel
ii  wpasupplicant   0.6.9-3  client support for WPA and WPA2 (I

Versions of packages wicd recommends:
ii  gksu  2.0.2-2+b1 graphical frontend to su
ii  sudo  1.7.0-1Provide limited super user privile

Versions of packages wicd suggests:
ii  pm-utils  1.2.5-2utilities and scripts for power ma

-- debconf information excluded



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



Bug#533929: rjava: FTBFS: ERROR: configuration failed for package 'rJava'

2009-06-22 Thread Lucas Nussbaum
On 22/06/09 at 05:56 -0500, Dirk Eddelbuettel wrote:
> 
> On 22 June 2009 at 11:02, Lucas Nussbaum wrote:
> | On 21/06/09 at 21:12 -0500, Dirk Eddelbuettel wrote:
> | > 
> | > On 21 June 2009 at 16:55, Lucas Nussbaum wrote:
> | > | Hi,
> | > | 
> | > | During a rebuild of all packages in sid, your package failed to build on
> | > | amd64.
> | > | 
> | > | Relevant part:
> | > | >  /usr/bin/fakeroot debian/rules binary
> | > | > test -x debian/rules
> | > | > dh_clean -k 
> | > | > dh_installdirs -A 
> | > | > mkdir -p "."
> | > | > if test -e /usr/share/misc/config.guess ; then \
> | > | >   for i in ./jri/tools/config.guess ; do \
> | > | >   if ! test -e $i.cdbs-orig ; then \
> | > | >   mv $i $i.cdbs-orig ; \
> | > | >   cp --remove-destination 
> /usr/share/misc/config.guess $i ; \
> | > | >   fi ; \
> | > | >   done ; \
> | > | >   fi
> | > | > if test -e /usr/share/misc/config.sub ; then \
> | > | >   for i in ./jri/tools/config.sub ; do \
> | > | >   if ! test -e $i.cdbs-orig ; then \
> | > | >   mv $i $i.cdbs-orig ; \
> | > | >   cp --remove-destination 
> /usr/share/misc/config.sub $i ; \
> | > | >   fi ; \
> | > | >   done ; \
> | > | >   fi
> | > | > dh_installdirsusr/lib/R/site-library
> | > | > if test -f /usr/bin/xvfb-run; then\
> | > | >xvfb-run   \
> | > | >   R CMD INSTALL -l 
> /build/user-rjava_0.6-3-1-amd64-l63FQQ/rjava-0.6-3/debian/r-cran-rjava/usr/lib/R/site-library
>  --clean \
> | > | >. ;\
> | > | >   else
> \
> | > | >R CMD INSTALL -l 
> /build/user-rjava_0.6-3-1-amd64-l63FQQ/rjava-0.6-3/debian/r-cran-rjava/usr/lib/R/site-library
>  \
> | > | >   --clean  . ;\
> | > | >   fi
> | > | > * Installing *source* package 'rJava' ...
> | > | > checking for gcc... gcc -std=gnu99
> | > | > checking for C compiler default output file name... a.out
> | > | > checking whether the C compiler works... yes
> | > | > checking whether we are cross compiling... no
> | > | > checking for suffix of executables... 
> | > | > checking for suffix of object files... o
> | > | > checking whether we are using the GNU C compiler... yes
> | > | > checking whether gcc -std=gnu99 accepts -g... yes
> | > | > checking for gcc -std=gnu99 option to accept ISO C89... none needed
> | > | > checking how to run the C preprocessor... gcc -std=gnu99 -E
> | > | > checking for grep that handles long lines and -e... /bin/grep
> | > | > checking for egrep... /bin/grep -E
> | > | > checking for ANSI C header files... yes
> | > | > checking for sys/wait.h that is POSIX.1 compatible... yes
> | > | > checking for sys/types.h... yes
> | > | > checking for sys/stat.h... yes
> | > | > checking for stdlib.h... yes
> | > | > checking for string.h... yes
> | > | > checking for memory.h... yes
> | > | > checking for strings.h... yes
> | > | > checking for inttypes.h... yes
> | > | > checking for stdint.h... yes
> | > | > checking for unistd.h... yes
> | > | > checking for string.h... (cached) yes
> | > | > checking sys/time.h usability... yes
> | > | > checking sys/time.h presence... yes
> | > | > checking for sys/time.h... yes
> | > | > checking for unistd.h... (cached) yes
> | > | > checking for an ANSI C-conforming const... yes
> | > | > checking whether time.h and sys/time.h may both be included... yes
> | > | > configure: checking whether gcc -std=gnu99 supports static inline...
> | > | > yes
> | > | > configure: error: One or more Java configuration variables are not 
> set.
> | > | > Make sure R is configured with full Java support (including JDK). Run
> | > | > R CMD javareconf
> | > | > as root to add Java support to R.
> | > | > 
> | > | > If you don't have root privileges, run
> | > | > R CMD javareconf -e
> | > | > to set all Java-related variables and then install rJava.
> | > | > 
> | > | > checking Java support in R... present:
> | > | > interpreter : '/usr/bin/java'
> | > | > archiver: '/usr/bin/jar'
> | > | > compiler: '/usr/bin/javac'
> | > | > header prep.: ''
> | > 
> | > That variable is set on my system and ...
> | > 
> | > | > cpp flags   : '-I/usr/lib/jvm/java-6-openjdk/jre/../include'
> | > | > java libs   : '-L/usr/lib/jvm/java-6-openjdk/jre/lib/amd64/server 
> -L/usr/lib/jvm/java-6-openjdk/jre/lib/amd64 
> -L/usr/lib/jvm/java-6-openjdk/jre/../lib/amd64 -L 
> -L/usr/java/packages/lib/amd64 -L/usr/lib/jni -L/lib -L/usr/lib -ljvm'
> | > | > ERROR: configuration failed for package 'rJava'
> | > | > * Removing 
> '/build/user-rjava_0.6-3-1-amd64-l63FQQ/rjava-0.6-3/debi

Bug#533995: [Debian-med-packaging] Bug#533995: Bug#533995: libtfbs-perl: FTBFS: tests failed

2009-06-22 Thread Charles Plessy
tag 533995 confirmed
thanks

Le Mon, Jun 22, 2009 at 11:07:45AM +0200, Lucas Nussbaum a écrit :
> 
> I gave it another try on another machine with a slightly different
> config, and now the test simply blocks:
> make[2]: Leaving directory `/tmp/libtfbs-perl-0.5.svn.20080722/Ext'
> PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" 
> "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
> t/01_Matrix..Name "PDL::SHARE" used only once: possible typo at 
> /usr/lib/perl/5.10/DynaLoader.pm line 219,  line 206.
> t/01_Matrix..ok  
> t/02_Search..Name "PDL::SHARE" used only once: possible typo at 
> /usr/lib/perl/5.10/DynaLoader.pm line 219,  line 206.
> t/02_Search..ok  
> t/03_DB_FlatFileDir..Name "PDL::SHARE" used only once: possible typo at 
> /usr/lib/perl/5.10/DynaLoader.pm line 219,  line 206.
> t/03_DB_FlatFileDir..ok  
> t/04_DB_TRANSFAC.Name "PDL::SHARE" used only once: possible typo at 
> /usr/lib/perl/5.10/DynaLoader.pm line 219,  line 206.
> [BLOCKS HERE]

I figured out it is also a problem of network access. The test uses
/TFBS/DB/TRANSFAC.pm, which connects to
http://www.cbil.upenn.edu/cgi-bin/tess/tess33 for accessing a (proprietary)
database. More details in
http://www.ii.uib.no/svn/lenhard/TFBS/TFBS/DB/TRANSFAC.pm

I will discuss the issue with Upstream.

Bonne journée,

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



--
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-med-packaging] Bug#533995: Bug#533995: libtfbs-perl: FTBFS: tests failed

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 533995 confirmed
Bug#533995: libtfbs-perl: FTBFS: tests failed
There were no tags set.
Tags added: confirmed

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: tagging 533967

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # Fixed in SVN :
> # 
> http://svn.debian.org/wsvn/pkg-java/trunk/velocity-tools/debian/patches/02_junit_45.dpatch
> tags 533967 pending
Bug#533967: velocity-tools: FTBFS: The method assertEquals(Object, Object) is 
ambiguous for the type GenericToolsTests
There were no tags set.
Tags added: pending

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#533976: bioperl test failures not reproduced with cowbuilder.

2009-06-22 Thread Charles Plessy
forwarded 533976 http://bugzilla.open-bio.org/show_bug.cgi?id=2861
tag 533976 confirmed
thanks

Le Mon, Jun 22, 2009 at 11:12:38AM +0200, Lucas Nussbaum a écrit :
> 
> It seems that the test make use of internet access, which should not be
> considered available.

Oh, this is not supposed to happen, given that there is a switch that disables
all network-dependant tests (and that does that well on all other cases). I
just reproduced the failure by starting a cowbuild on my laptop and unplugging
the network cable.

Now I found the iptables logs at the bottom of the build logs, and I thought
that it is useful enough to be mentionned at the FTBFS page of wiki.debian.org…

http://wiki.debian.org/qa.debian.org/FTBFS?action=diff&rev2=22&rev1=21

Have a nice day,

-- 
Charles



--
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#533976: bioperl test failures not reproduced with cowbuilder.

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> forwarded 533976 http://bugzilla.open-bio.org/show_bug.cgi?id=2861
Bug#533976: bioperl: FTBFS: test failures
Noted your statement that Bug has been forwarded to 
http://bugzilla.open-bio.org/show_bug.cgi?id=2861.

> tag 533976 confirmed
Bug#533976: bioperl: FTBFS: test failures
There were no tags set.
Tags added: confirmed

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: block 534017 with 527308

2009-06-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # junit4: add hamcrest-core.jar to the Class-Path attribute
> block 534017 with 527308
Bug#527308: Please add hamcrest-core.jar to the Class-Path attribute
Bug#534017: easymock: FTBFS: test failure
Was not blocked by any bugs.
Blocking bugs of 534017 added: 527308

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#533929: rjava: FTBFS: ERROR: configuration failed for package 'rJava'

2009-06-22 Thread Dirk Eddelbuettel

On 22 June 2009 at 11:02, Lucas Nussbaum wrote:
| On 21/06/09 at 21:12 -0500, Dirk Eddelbuettel wrote:
| > 
| > On 21 June 2009 at 16:55, Lucas Nussbaum wrote:
| > | Hi,
| > | 
| > | During a rebuild of all packages in sid, your package failed to build on
| > | amd64.
| > | 
| > | Relevant part:
| > | >  /usr/bin/fakeroot debian/rules binary
| > | > test -x debian/rules
| > | > dh_clean -k 
| > | > dh_installdirs -A 
| > | > mkdir -p "."
| > | > if test -e /usr/share/misc/config.guess ; then \
| > | > for i in ./jri/tools/config.guess ; do \
| > | > if ! test -e $i.cdbs-orig ; then \
| > | > mv $i $i.cdbs-orig ; \
| > | > cp --remove-destination 
/usr/share/misc/config.guess $i ; \
| > | > fi ; \
| > | > done ; \
| > | > fi
| > | > if test -e /usr/share/misc/config.sub ; then \
| > | > for i in ./jri/tools/config.sub ; do \
| > | > if ! test -e $i.cdbs-orig ; then \
| > | > mv $i $i.cdbs-orig ; \
| > | > cp --remove-destination 
/usr/share/misc/config.sub $i ; \
| > | > fi ; \
| > | > done ; \
| > | > fi
| > | > dh_installdirs  usr/lib/R/site-library
| > | > if test -f /usr/bin/xvfb-run; then  \
| > | >  xvfb-run   \
| > | > R CMD INSTALL -l 
/build/user-rjava_0.6-3-1-amd64-l63FQQ/rjava-0.6-3/debian/r-cran-rjava/usr/lib/R/site-library
 --clean \
| > | >  . ;\
| > | > else
\
| > | >  R CMD INSTALL -l 
/build/user-rjava_0.6-3-1-amd64-l63FQQ/rjava-0.6-3/debian/r-cran-rjava/usr/lib/R/site-library
 \
| > | > --clean  . ;\
| > | > fi
| > | > * Installing *source* package 'rJava' ...
| > | > checking for gcc... gcc -std=gnu99
| > | > checking for C compiler default output file name... a.out
| > | > checking whether the C compiler works... yes
| > | > checking whether we are cross compiling... no
| > | > checking for suffix of executables... 
| > | > checking for suffix of object files... o
| > | > checking whether we are using the GNU C compiler... yes
| > | > checking whether gcc -std=gnu99 accepts -g... yes
| > | > checking for gcc -std=gnu99 option to accept ISO C89... none needed
| > | > checking how to run the C preprocessor... gcc -std=gnu99 -E
| > | > checking for grep that handles long lines and -e... /bin/grep
| > | > checking for egrep... /bin/grep -E
| > | > checking for ANSI C header files... yes
| > | > checking for sys/wait.h that is POSIX.1 compatible... yes
| > | > checking for sys/types.h... yes
| > | > checking for sys/stat.h... yes
| > | > checking for stdlib.h... yes
| > | > checking for string.h... yes
| > | > checking for memory.h... yes
| > | > checking for strings.h... yes
| > | > checking for inttypes.h... yes
| > | > checking for stdint.h... yes
| > | > checking for unistd.h... yes
| > | > checking for string.h... (cached) yes
| > | > checking sys/time.h usability... yes
| > | > checking sys/time.h presence... yes
| > | > checking for sys/time.h... yes
| > | > checking for unistd.h... (cached) yes
| > | > checking for an ANSI C-conforming const... yes
| > | > checking whether time.h and sys/time.h may both be included... yes
| > | > configure: checking whether gcc -std=gnu99 supports static inline...
| > | > yes
| > | > configure: error: One or more Java configuration variables are not set.
| > | > Make sure R is configured with full Java support (including JDK). Run
| > | > R CMD javareconf
| > | > as root to add Java support to R.
| > | > 
| > | > If you don't have root privileges, run
| > | > R CMD javareconf -e
| > | > to set all Java-related variables and then install rJava.
| > | > 
| > | > checking Java support in R... present:
| > | > interpreter : '/usr/bin/java'
| > | > archiver: '/usr/bin/jar'
| > | > compiler: '/usr/bin/javac'
| > | > header prep.: ''
| > 
| > That variable is set on my system and ...
| > 
| > | > cpp flags   : '-I/usr/lib/jvm/java-6-openjdk/jre/../include'
| > | > java libs   : '-L/usr/lib/jvm/java-6-openjdk/jre/lib/amd64/server 
-L/usr/lib/jvm/java-6-openjdk/jre/lib/amd64 
-L/usr/lib/jvm/java-6-openjdk/jre/../lib/amd64 -L 
-L/usr/java/packages/lib/amd64 -L/usr/lib/jni -L/lib -L/usr/lib -ljvm'
| > | > ERROR: configuration failed for package 'rJava'
| > | > * Removing 
'/build/user-rjava_0.6-3-1-amd64-l63FQQ/rjava-0.6-3/debian/r-cran-rjava/usr/lib/R/site-library/rJava'
| > | > make: *** [R_any_arch] Error 1
| > 
| > ... the build proceeds fine here.
| > 
| > So I cannot reproduce this.
| 
| Hi Dirk,
| 
| I just tried, and I could reproduce the failur

Bug#533976: bioperl test failures not reproduced with cowbuilder.

2009-06-22 Thread Lucas Nussbaum
On 22/06/09 at 19:43 +0900, Charles Plessy wrote:
> Now I found the iptables logs at the bottom of the build logs, and I thought
> that it is useful enough to be mentionned at the FTBFS page of 
> wiki.debian.org…
> 
> http://wiki.debian.org/qa.debian.org/FTBFS?action=diff&rev2=22&rev1=21

The problem is that several packages are building concurrently on each
node, so having something in the log doesn't mean that that package
tried to use the network.
-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F |



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



Bug#532663: marked as done (telepathy-mission-control: FTBFS with libtool 2.2)

2009-06-22 Thread Debian Bug Tracking System

Your message dated Mon, 22 Jun 2009 10:17:08 +
with message-id 
and subject line Bug#532663: fixed in telepathy-mission-control 4.67-4
has caused the Debian Bug report #532663,
regarding telepathy-mission-control: FTBFS with libtool 2.2
to be marked as done.

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

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


-- 
532663: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=532663
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: telepathy-mission-control
Version: 4.67-3
Severity: serious

From my pbuilder build log:

...
/usr/bin/make  all-am
make[4]: Entering directory 
`/tmp/buildd/telepathy-mission-control-4.67/libmcclient'
/bin/sh ../libtool --tag=CC   --mode=compile cc -DHAVE_CONFIG_H -I. -I.. 
-I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include   -I/usr/include/telepathy-1.0 
-I/usr/include/dbus-1.0 -
I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/dbus-1.0/include  
 -I.. -I.. -DLIBDIR="/usr/lib" -DLIBVERSION="0"   -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include   -DORBIT2=1 -pthread -I/usr/include/gconf/2 -
I/usr/include/orbit-2.0 -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -g -O2 -g -Wall -O2 -c -o 
libmcclient_la-dbus-api.lo `test -f 'dbus-api.c' || echo './'`dbus-api.c
../libtool: line 835: X--tag=CC: command not found
../libtool: line 868: libtool: ignoring unknown tag : command not found
../libtool: line 835: X--mode=compile: command not found
../libtool: line 1002: *** Warning: inferring the mode of operation is 
deprecated.: command not found
../libtool: line 1003: *** Future versions of Libtool will require --mode=MODE 
be specified.: command not found
../libtool: line 1146: Xcc: command not found
../libtool: line 1146: X-DHAVE_CONFIG_H: command not found
../libtool: line 1146: X-I.: command not found
../libtool: line 1146: X-I..: command not found
../libtool: line 1146: X-I/usr/include/dbus-1.0: No such file or directory
../libtool: line 1146: X-I/usr/lib/dbus-1.0/include: No such file or directory
../libtool: line 1146: X-I/usr/include/glib-2.0: No such file or directory
../libtool: line 1146: X-I/usr/lib/glib-2.0/include: No such file or directory
../libtool: line 1146: X-I/usr/include/telepathy-1.0: No such file or directory
../libtool: line 1146: X-I/usr/include/dbus-1.0: No such file or directory
../libtool: line 1146: X-I/usr/include/glib-2.0: No such file or directory
../libtool: line 1146: X-I/usr/lib/glib-2.0/include: No such file or directory
../libtool: line 1146: X-I/usr/lib/dbus-1.0/include: No such file or directory
../libtool: line 1146: X-I..: command not found
../libtool: line 1146: X-I..: command not found
../libtool: line 1146: X-DLIBDIR=/usr/lib: No such file or directory
../libtool: line 1146: X-DLIBVERSION=0: command not found
../libtool: line 1146: X-I/usr/include/glib-2.0: No such file or directory
../libtool: line 1146: X-I/usr/lib/glib-2.0/include: No such file or directory
../libtool: line 1146: X-DORBIT2=1: command not found
../libtool: line 1146: X-pthread: command not found
../libtool: line 1146: X-I/usr/include/gconf/2: No such file or directory
../libtool: line 1146: X-I/usr/include/orbit-2.0: No such file or directory
../libtool: line 1146: X-I/usr/include/dbus-1.0: No such file or directory
../libtool: line 1146: X-I/usr/lib/dbus-1.0/include: No such file or directory
../libtool: line 1146: X-I/usr/include/glib-2.0: No such file or directory
../libtool: line 1146: X-I/usr/lib/glib-2.0/include: No such file or directory
../libtool: line 1146: X-g: command not found
../libtool: line 1146: X-O2: command not found
../libtool: line 1146: X-g: command not found
../libtool: line 1146: X-Wall: command not found
../libtool: line 1146: X-O2: command not found
../libtool: line 1146: X-c: command not found
../libtool: line 1198: Xlibmcclient_la-dbus-api.lo: command not found
../libtool: line 1203: libtool: compile: cannot determine name of library 
object from `': command not found
make[4]: *** [libmcclient_la-dbus-api.lo] Error 1
make[4]: Leaving directory 
`/tmp/buildd/telepathy-mission-control-4.67/libmcclient'
make[3]: *** [all] Error 2
rm _gen/Account_Manager.xml _gen/Account.xml
make[3]: Leaving directory 
`/tmp/buildd/telepathy-mission-control-4.67/libmcclient'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/tmp/buildd/telepathy-mission-control-4.67'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/tmp/buildd/telepathy-mission-control-4.67'
make: *** [debian/stamp-makefile-build] Error 2
dpkg-buildpackage

Bug#525493: marked as done (libopenobex: Build-Depends on cmake > 2.6, but package won't build with cmake 2.6.0)

2009-06-22 Thread Debian Bug Tracking System

Your message dated Mon, 22 Jun 2009 09:33:33 +
with message-id 
and subject line Bug#525493: fixed in libopenobex 1.5-2
has caused the Debian Bug report #525493,
regarding libopenobex: Build-Depends on cmake > 2.6, but package won't build 
with cmake 2.6.0
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.)


-- 
525493: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525493
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libopenobex
Version: 1.5-1
Severity: serious
Justification: no longer builds from source

I attempted to build libopenobex on a system running Lenny (plus a few bits and 
pieces
from testing and unstable).  The documentation failed to build, complaining 
about being
unable to find ../../doc/ircp.1.

After upgrading to cmake 2.6.3 (from testing), the package seems to
finish building without error, and it even contains an ircp man page.

commit 654630ea0e46a9a7028ed5eb999eaba4cb4e1aae
Author: Zygo Blaxell 
Date:   Fri Apr 24 18:08:34 2009 -0400

cmake 2.6.0 can't build this package.  2.6.3 can.
Don't know about any intermediate versions.

diff --git a/debian/control b/debian/control
index 3c30f2b..9b70bcd 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,7 @@ Priority: optional
 Section: comm
 Maintainer: Hendrik Sattler 
 Homepage: http://www.openobex.org
-Build-Depends: debhelper (>= 7.0.0), cmake (>= 2.6), libbluetooth-dev 
[!kfreebsd-i386 !kfreebsd-amd64], libusb-dev (>= 2:0.1.11), pkg-config, 
doxygen, docbook, docbook-utils, quilt (>= 0.45)
+Build-Depends: debhelper (>= 7.0.0), cmake (>= 2.6.3), libbluetooth-dev 
[!kfreebsd-i386 !kfreebsd-amd64], libusb-dev (>= 2:0.1.11), pkg-config, 
doxygen, docbook, docbook-utils, quilt (>= 0.45)
 Standards-Version: 3.8.0.0
 
 Package: libopenobex1-dev

-- System Information:
Debian Release: 5.0.1
  APT prefers stable
  APT policy: (500, 'stable'), (189, 'testing'), (179, 'unstable'), (1, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.28.4-zb64 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash


--- End Message ---
--- Begin Message ---
Source: libopenobex
Source-Version: 1.5-2

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

libopenobex1-dev_1.5-2_amd64.deb
  to pool/main/libo/libopenobex/libopenobex1-dev_1.5-2_amd64.deb
libopenobex1_1.5-2_amd64.deb
  to pool/main/libo/libopenobex/libopenobex1_1.5-2_amd64.deb
libopenobex_1.5-2.diff.gz
  to pool/main/libo/libopenobex/libopenobex_1.5-2.diff.gz
libopenobex_1.5-2.dsc
  to pool/main/libo/libopenobex/libopenobex_1.5-2.dsc
openobex-apps_1.5-2_amd64.deb
  to pool/main/libo/libopenobex/openobex-apps_1.5-2_amd64.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 525...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Hendrik Sattler  (supplier of updated libopenobex 
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: Sun, 21 Jun 2009 17:29:41 +0200
Source: libopenobex
Binary: libopenobex1-dev libopenobex1 openobex-apps
Architecture: source amd64
Version: 1.5-2
Distribution: unstable
Urgency: low
Maintainer: Hendrik Sattler 
Changed-By: Hendrik Sattler 
Description: 
 libopenobex1 - OBEX protocol library
 libopenobex1-dev - OBEX protocol library - development files
 openobex-apps - Applications for OpenOBEX
Closes: 525493
Changes: 
 libopenobex (1.5-2) unstable; urgency=low
 .
   * Fix Docbook-XML build dependencies to build the application manual pages
   * Replace dh_clean -k with dh_prep call
   * Fix cmake version dependency (closes: #525493)
   * Bump standard revision to 3.8.2.0: no changes required.
Checksums-Sha1: 
 3016a5963b03b46bd6c2adc3a975bfe281db80e8 1204 libopenobex_1.5-2.dsc
 2c33805e11e8a0841f5574c11289bbd8bab2ab7d 9333 libopenobex_1.5-2.diff.gz
 3689584ded6b57eeebd2e956aca0a58ae631a7a1 100016 
libopenobex1-dev_1.5-2_amd64.deb
 008aa6916e8cb8a9dc7a88f5de33a50b08424b61 24166 libopenobex1_1.5-2_amd64.deb
 15e51f8b9690e3dbfc85a166e46beed185b4bd2f 38168 openobex-apps_1.5-2_amd64.deb
Checksums-Sha256: 
 efd4be81aecada534af051f788019de941eba7ae31b14248730a

Bug#533929: rjava: FTBFS: ERROR: configuration failed for package 'rJava'

2009-06-22 Thread Lucas Nussbaum
On 21/06/09 at 21:12 -0500, Dirk Eddelbuettel wrote:
> 
> On 21 June 2009 at 16:55, Lucas Nussbaum wrote:
> | Hi,
> | 
> | During a rebuild of all packages in sid, your package failed to build on
> | amd64.
> | 
> | Relevant part:
> | >  /usr/bin/fakeroot debian/rules binary
> | > test -x debian/rules
> | > dh_clean -k 
> | > dh_installdirs -A 
> | > mkdir -p "."
> | > if test -e /usr/share/misc/config.guess ; then \
> | >   for i in ./jri/tools/config.guess ; do \
> | >   if ! test -e $i.cdbs-orig ; then \
> | >   mv $i $i.cdbs-orig ; \
> | >   cp --remove-destination 
> /usr/share/misc/config.guess $i ; \
> | >   fi ; \
> | >   done ; \
> | >   fi
> | > if test -e /usr/share/misc/config.sub ; then \
> | >   for i in ./jri/tools/config.sub ; do \
> | >   if ! test -e $i.cdbs-orig ; then \
> | >   mv $i $i.cdbs-orig ; \
> | >   cp --remove-destination 
> /usr/share/misc/config.sub $i ; \
> | >   fi ; \
> | >   done ; \
> | >   fi
> | > dh_installdirsusr/lib/R/site-library
> | > if test -f /usr/bin/xvfb-run; then\
> | >xvfb-run   \
> | >   R CMD INSTALL -l 
> /build/user-rjava_0.6-3-1-amd64-l63FQQ/rjava-0.6-3/debian/r-cran-rjava/usr/lib/R/site-library
>  --clean \
> | >. ;\
> | >   else\
> | >R CMD INSTALL -l 
> /build/user-rjava_0.6-3-1-amd64-l63FQQ/rjava-0.6-3/debian/r-cran-rjava/usr/lib/R/site-library
>  \
> | >   --clean  . ;\
> | >   fi
> | > * Installing *source* package 'rJava' ...
> | > checking for gcc... gcc -std=gnu99
> | > checking for C compiler default output file name... a.out
> | > checking whether the C compiler works... yes
> | > checking whether we are cross compiling... no
> | > checking for suffix of executables... 
> | > checking for suffix of object files... o
> | > checking whether we are using the GNU C compiler... yes
> | > checking whether gcc -std=gnu99 accepts -g... yes
> | > checking for gcc -std=gnu99 option to accept ISO C89... none needed
> | > checking how to run the C preprocessor... gcc -std=gnu99 -E
> | > checking for grep that handles long lines and -e... /bin/grep
> | > checking for egrep... /bin/grep -E
> | > checking for ANSI C header files... yes
> | > checking for sys/wait.h that is POSIX.1 compatible... yes
> | > checking for sys/types.h... yes
> | > checking for sys/stat.h... yes
> | > checking for stdlib.h... yes
> | > checking for string.h... yes
> | > checking for memory.h... yes
> | > checking for strings.h... yes
> | > checking for inttypes.h... yes
> | > checking for stdint.h... yes
> | > checking for unistd.h... yes
> | > checking for string.h... (cached) yes
> | > checking sys/time.h usability... yes
> | > checking sys/time.h presence... yes
> | > checking for sys/time.h... yes
> | > checking for unistd.h... (cached) yes
> | > checking for an ANSI C-conforming const... yes
> | > checking whether time.h and sys/time.h may both be included... yes
> | > configure: checking whether gcc -std=gnu99 supports static inline...
> | > yes
> | > configure: error: One or more Java configuration variables are not set.
> | > Make sure R is configured with full Java support (including JDK). Run
> | > R CMD javareconf
> | > as root to add Java support to R.
> | > 
> | > If you don't have root privileges, run
> | > R CMD javareconf -e
> | > to set all Java-related variables and then install rJava.
> | > 
> | > checking Java support in R... present:
> | > interpreter : '/usr/bin/java'
> | > archiver: '/usr/bin/jar'
> | > compiler: '/usr/bin/javac'
> | > header prep.: ''
> 
> That variable is set on my system and ...
> 
> | > cpp flags   : '-I/usr/lib/jvm/java-6-openjdk/jre/../include'
> | > java libs   : '-L/usr/lib/jvm/java-6-openjdk/jre/lib/amd64/server 
> -L/usr/lib/jvm/java-6-openjdk/jre/lib/amd64 
> -L/usr/lib/jvm/java-6-openjdk/jre/../lib/amd64 -L 
> -L/usr/java/packages/lib/amd64 -L/usr/lib/jni -L/lib -L/usr/lib -ljvm'
> | > ERROR: configuration failed for package 'rJava'
> | > * Removing 
> '/build/user-rjava_0.6-3-1-amd64-l63FQQ/rjava-0.6-3/debian/r-cran-rjava/usr/lib/R/site-library/rJava'
> | > make: *** [R_any_arch] Error 1
> 
> ... the build proceeds fine here.
> 
> So I cannot reproduce this.

Hi Dirk,

I just tried, and I could reproduce the failure in a clean chroot.
beaujolais:/tmp/rjava-0.6-3# R CMD config JAVAH

Couldn't that be caused by a missing dependancy?
-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "u

  1   2   >