Bug#569273: [Calendarserver-maintainers] Bug#569273: Parsing \t (escaped tab character) raises ParseError

2010-02-10 Thread Guido Günther
On Thu, Feb 11, 2010 at 05:00:42AM +0100, Raphael Wimmer wrote:
> Package: python-vobject
> Version: 0.8.1c-3
> 
> When parsing an iCal file containing "\t" (tab, actually two
> characters) using readOne(), the parser raises a ParseError,
> aborting the parsing.
> This defect is _not_ in the upstream source but introduced by Debian
> patch "0003-Treat-untils-as-floating.patch", removing this patch
> fixes the problem.
> I can not see any advantage of raising an exception instead of
> simply accepting unknown escaped chars (like in the upstream
> source).
This is the API calendarserver expects. However I'll apply this patch to
the next upload which should fix your issue:

diff --git a/vobject/icalendar.py b/vobject/icalendar.py
index 4a1da7c..b1dcd94 100644
--- a/vobject/icalendar.py
+++ b/vobject/icalendar.py
@@ -29,6 +29,7 @@ twoHours  = datetime.timedelta(hours=2)
 
 # TZID registry 

 __tzidMap={}
+leave_chars = True
 
 def toUnicode(s):
 """Take a string or unicode, turn it into unicode, decoding as utf-8"""
@@ -1663,9 +1664,12 @@ def stringToTextValues(s, listSeparator=',', 
charList=None, strict=False):
 else:
 current.append(char)
 else:
-state = "read normal"
-# leave unrecognized escaped characters for later passes
-current.append('\\' + char)
+if leave_chars:
+state = "read normal"
+# leave unrecognized escaped characters for later passes
+current.append('\\' + char)
+else:
+raise ParseError("error: illegal escape sequence: '\\%s'" 
% (char,))
 
 elif state == "end":#an end state
 if len(current) or len(results) == 0:

We'll can the switch APIs in calendarserver until upstream fixed this.
Cheers,
 -- Guido

> 
> BTW: is there a reason why 0.8.1.c-3 is not present in the Debian git repo?
> 
> Cheers,
> Raphael
> 
> 
> Test case:
> 
> BEGIN:VCALENDAR
> VERSION:2.0
> BEGIN:VEVENT
> DTSTAMP:20080502T160934Z
> CREATED:20071005T104029Z
> UID:KOrganizer-1534264698.483
> SEQUENCE:1
> LAST-MODIFIED:20080106T231431Z
> DESCRIPTION:Test Text and a Tab: \t and more text
> SUMMARY:Test
> PRIORITY:3
> DTSTART:20071010T09Z
> DTEND:20071010T12Z
> TRANSP:OPAQUE
> END:VEVENT
> END:VCALENDAR
> 
> 
> 
> 
> 
> ___
> Calendarserver-maintainers mailing list
> calendarserver-maintain...@lists.alioth.debian.org
> http://lists.alioth.debian.org/mailman/listinfo/calendarserver-maintainers
> 



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



Bug#543396: please close #543396

2010-02-10 Thread Dirk Schuster
tags 543396 - moreinfo + unreproducible
thanks

Hi Philipp,

since neither you nor we weren't able to reproduce #543396 (and we never had 
been), please close #543396.

Thanks for splitting up the new bugs in separated bug reports.

kind regards
Dirk





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



Bug#569231: updated and tested desktop file

2010-02-10 Thread Charles Plessy
Le Thu, Feb 11, 2010 at 05:12:56PM +1300, Achim Gädke a écrit :
>
> I've updated the hdf.desktop file.
> In addition I created an icon from the hdf5.pdf in  
> http://www.hdfgroup.org/ftp/HDF5/contrib/hdf5-logo/hdf5.tar.gz in a rush.
> It is probably better to take the hdf group logo, which appears in the  
> HDF window title.

Hello Achim,

for the logos, I strongly recommend you to check with their original authors if
they approve their use. Not only in that case there is no license information,
but also logos are under the risk of being subjected to a trademark.

The PNG file you made is borderline non-free if you do not include the original
vector file to your Debian package. Fortunately, you can use the Dpkg format
3.0 to make a multi-tarball source package, so it will be trivial to add
hdf5.tar.gz.

This said, it is an excellent initiative to add a logo to the desktop file. If
you get positive feedback from the authors, you can also try to make a SVG
version from the Illustrator or the PDF source. Gnome and other
resource-generous desktop managers can use SVG icons.

Also, the FreeDesktop standards allow you to specify the use of this icon for 
the
files that can be opened by the hdfview. You can find some hints in the 
following
wiki page: http://wiki.debian.org/MimeTypesSupport

Lastly, desktop-file-validate(1) is your friend.

Have a nice day,

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



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



Bug#500192: another scipt references + business case

2010-02-10 Thread Daniel Black

Its also very useful to have this feature when deploying 
vm images in cloud computing environment or other private
standardised and virtualised infrastructure.

other distro reference init scripts for reference;
http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/openssh/files/sshd.rc6?view=markup
http://cvs.fedoraproject.org/viewvc/rpms/openssh/F-11/sshd.init?view=markup

thanks for your maintainer efforts so far.
--
Daniel Black
Cloud Central
Scale Your Data Center In The Cloud
Switch: 1300 144 007
Fax: 02 6173 7339
Email: dan...@cloudcentral.com.au




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



Bug#500192: patch based of gentoo's

2010-02-10 Thread Daniel Black

--
Daniel Black
Cloud Central
Scale Your Data Center In The Cloud
Switch: 1300 144 007
Fax: 02 6173 7339
Email: dan...@cloudcentral.com.au
--- /etc/init.d/ssh.orig	2010-02-11 18:27:46.0 +1100
+++ /etc/init.d/ssh	2010-02-11 18:32:16.0 +1100
@@ -57,6 +57,17 @@
 fi
 }
 
+check_ssh_host_key() {
+if [ ! -e /etc/ssh/ssh_host_key ]; then
+ /usr/bin/ssh-keygen -t rsa1 -f /etc/ssh/ssh_host_key -N '' || exit 1
+fi
+if [ ! -e /etc/ssh/ssh_host_dsa_key ]; then
+ /usr/bin/ssh-keygen -t dsa -f /etc/ssh/ssh_host_dsa_key -N '' || exit 1
+fi
+if [ ! -e /etc/ssh/ssh_host_rsa_key ]; then
+ /usr/bin/ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key -N '' || exit 1
+fi
+}
 check_privsep_dir() {
 # Create the PrivSep empty dir if necessary
 if [ ! -d /var/run/sshd ]; then
@@ -75,6 +86,7 @@
 
 case "$1" in
   start)
+check_ssh_host_key
 	check_privsep_dir
 	check_for_no_start
 	check_dev_null


Bug#547739: [Mutt] #3379: typos in manual.txt doc file

2010-02-10 Thread Mutt
#3379: typos in manual.txt doc file
---+
  Reporter:  anto...@… |   Owner:  mutt-dev
  Type:  defect|  Status:  closed  
  Priority:  trivial   |   Milestone:  
 Component:  mutt  | Version:  1.5.20  
Resolution:  fixed |Keywords:  patch   
---+
Changes (by Brendan Cully ):

  * status:  new => closed
  * resolution:  => fixed


Comment:

 (In [b7ec848af36b]) Fix a typo (closes #3379)

-- 
Ticket URL: 
Mutt 
The Mutt mail user agent




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



Bug#468454: An independent IPv6 patching of bsd-finger

2010-02-10 Thread Asheesh Laroia

On Tue, 9 Feb 2010, Mats Erik Andersson wrote:


lördag den  6 februari 2010 klockan 15:53 skrev Asheesh Laroia detta:

That's thrilling. Mats, are you a DD? If not, then if the maintainer


No!



Also, can you check and see how they do it in Fedora? Better that we and
Fedora share code, I figure, than do things differently.


Will do, but have not yet done so.

After further testing, I decided it to be important to loop through all
possible addresses, in case some do not answer, so I make a revised
NMUdiff public with this message. The new patch will proceed to a
IPv4 query, should the host deny access to IPv6-finger, just as is
to be expected. My previous suggestion did not explicitly do that.

This patchedd fingerd has been checked under xinetd with IPv6, IPv4-only,
and disabled service. The patched client finger captures all functionality.


I hope you do check in with Fedora soon and join forces!

-- Asheesh.

--
No excellent soul is exempt from a mixture of madness.
-- Aristotle

Bug#542344: [Mutt] #3331: mutt mangles display of time in "From " line

2010-02-10 Thread Mutt
#3331: mutt mangles display of time in "From " line
--+-
 Reporter:  anto...@… |   Owner:  mutt-dev  
 Type:  defect|  Status:  infoneeded_new
 Priority:  trivial   |   Milestone:
Component:  display   | Version:  1.5.20
 Keywords:  patch |  
--+-
Changes (by brendan):

  * status:  new => infoneeded_new


Comment:

 I cannot reproduce this bug following these instructions, and I don't
 really understand the idea behind the patch. Do the instructions given
 here reproduce the bug for you with vanilla hg tip?

-- 
Ticket URL: 
Mutt 
The Mutt mail user agent




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



Bug#560707: [Evolution] Bug#560707: evolution: segfault adding task from list view

2010-02-10 Thread Yves-Alexis Perez
On jeu., 2010-02-11 at 12:05 +1100, Nick Jenkins wrote:
> Sounds like this upstream bug:
> https://bugzilla.gnome.org/show_bug.cgi?id=599627
> 
> It's fixed in Evo 2.28.2+ or 2.30.

Do you confirm it's fixed in 2.28.2?

Cheers,
-- 
Yves-Alexis


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


Bug#568975: ([squeeze/lenny][i386][2010-02-04] grub-installer fails, system unbootable)

2010-02-10 Thread Vincent . McIntyre

On Thu, 11 Feb 2010, vincent.mcint...@csiro.au wrote:


The options for resolving it (so lenny-via-squeeze works) seem to be:
 - add a debconf configuration item to specify the metadata version


I started a patch but I have absolutely no idea what I'm doing.
The attached is just an attempt to clarify what I am suggesting.

Cheers
VinceIndex: trunk/packages/partman/partman-auto-raid/debian/partman-auto-raid.templates
===
--- trunk/packages/partman/partman-auto-raid/debian/partman-auto-raid.templates	(revision 62177)
+++ trunk/packages/partman/partman-auto-raid/debian/partman-auto-raid.templates	(working copy)
@@ -22,3 +22,13 @@
 _Description: Not enough RAID partitions specified
  There are not enough RAID partitions specified for your preseeded
  configuration. You need at least 3 devices for a RAID5 array.
+
+Template: partman-auto-raid/superblock_type
+Type: select
+Choices-C: ${CHOICES}
+Choices: ${DESCRIPTIONS}
+# :sl1:
+Description: for internal use; can be preseeded
+ Metadata version for superblock of RAID devices
+ .
+ The default is 1.1
Index: trunk/packages/partman/partman-auto-raid/auto-raidcfg
===
--- trunk/packages/partman/partman-auto-raid/auto-raidcfg	(revision 62177)
+++ trunk/packages/partman/partman-auto-raid/auto-raidcfg	(working copy)
@@ -74,6 +74,16 @@
 		MDADM_PARAMS="$RAID_DEVICES"
 	fi
 
+	# Check for nondefault version of RAID superblock metatadata
+	db_get partman-auto-raid/superblock_type
+	if [ -z "$RET" ]; then
+		:
+	else
+	MD_SB_TYPE="$RET"
+		MDADM_PARAMS="$MDADM_PARAMS --metadata=$MD_SB_TYPE"
+		logger -t partman-auto-raid "Setting superblock metadata version to $MD_SB_TYPE"
+	fi
+
 	if ! log-output -t partman-auto-raid \
 		mdadm --create /dev/md$MD_NUM --auto=yes --force -R -l raid$RAID_TYPE \
 		  -n $DEV_COUNT $MDADM_PARAMS


Bug#488803: ITP: ioQuake3 -- GPL quake engine, to be shared between ioquake3

2010-02-10 Thread Jack Coulter
Hi Chris,

Yes unfortunately, I've had insufficient free time to work on the package


On Wed, Feb 10, 2010 at 06:27:16PM +0100, Christoph Anton Mitterer wrote:
> Hi Jack.
> 
> Have you stopped your packaging efforts?
> 
> Cheers,
> Chris.
> 
> 
> 


signature.asc
Description: Digital signature


Bug#568975: ([squeeze/lenny][i386][2010-02-04] grub-installer fails, system unbootable)

2010-02-10 Thread Vincent . McIntyre


I think I've identified the issue here. Details at the end.

In short:
partman-auto-raid v15 creates /dev/md0 with a v1.1 superblock.

The version of grub being used (0.97-47lenny2) doesn't handle this
version of the superblock metadata AFAICT (see e.g. #554500).

This seems to be causing the grub-probe and grub --batch calls
to fail (around line 373 and following in /usr/sbin/grub-install).
I've attached some syslog output to show this.
When grub-installer failed, I hacked grub-install and grub-installer
a little to display what is going on, then reran the grub-installer
step from the installer menu and extracted the resulting output
from the syslog.


Should this be reassigned to partman-auto-raid?
The options for resolving it (so lenny-via-squeeze works) seem to be:
 - add a debconf configuration item to specify the metadata version
or
 - add some hokey logic to detect the suite we're installing
   and turn on --metadata=0.90 when creating the array

Is there any way of converting the RAID sets to v0.90 metadata?

Cheers
Vince

Details:

# grep partman-auto-raid /var/log/syslog

Feb 11 04:41:48 anna[5724]: DEBUG: retrieving partman-auto-raid 15
Feb 11 04:42:28 partman-auto-raid: Selected spare count: 0
Feb 11 04:42:28 partman-auto-raid: Spare devices count: 0
Feb 11 04:42:28 partman-auto-raid: mdadm: Note: this array has metadata at the 
start and
Feb 11 04:42:28 partman-auto-raid: may not be suitable as a boot device.  
If you plan to
Feb 11 04:42:28 partman-auto-raid: store '/' or '/boot' on this device 
please ensure that
Feb 11 04:42:28 partman-auto-raid: your boot-loader understands md/v1.x 
metadata, or use
Feb 11 04:42:28 partman-auto-raid: --metadata=1.0
Feb 11 04:42:28 partman-auto-raid: mdadm: Note: this array has metadata at the 
start and
Feb 11 04:42:28 partman-auto-raid: may not be suitable as a boot device.  
If you plan to
Feb 11 04:42:28 partman-auto-raid: store '/' or '/boot' on this device 
please ensure that
Feb 11 04:42:28 partman-auto-raid: your boot-loader understands md/v1.x 
metadata, or use
Feb 11 04:42:28 partman-auto-raid: --metadata=1.0
Feb 11 04:42:28 partman-auto-raid: mdadm: Defaulting to version 1.1 metadata
Feb 11 04:42:28 partman-auto-raid: mdadm: array /dev/md0 started.
...

# grep grub /var/log/syslog
Feb 11 04:41:46 anna[5724]: DEBUG: retrieving grub-installer 1.49
Feb 11 04:48:25 in-target:   linux-doc-2.6.26 grub lilo
Feb 11 04:49:44 main-menu[769]: INFO: Menu item 'grub-installer' selected
Feb 11 04:49:44 grub-installer: info: architecture: i386/generic
Feb 11 04:49:45 grub-installer: info: Identified partition label for /dev/md0: 
loop
Feb 11 04:49:45 grub-installer: dpkg - warning: ignoring request to remove 
grub-pc which isn't installed.
Feb 11 04:49:46 in-target: Couldn't find package grub-legacy
Feb 11 04:49:47 in-target:   grub-common
Feb 11 04:49:47 in-target:   grub-legacy-doc multiboot-doc
Feb 11 04:49:47 in-target:   grub grub-common
Feb 11 04:49:47 in-target: Get:1 http://ftp.au.debian.org lenny/main 
grub-common 1.96+20080724-16 [189kB]
Feb 11 04:49:47 in-target: Get:2 http://ftp.au.debian.org lenny/main grub 
0.97-47lenny2 [389kB]
Feb 11 04:49:47 in-target: Selecting previously deselected package grub-common.
Feb 11 04:49:47 in-target: Unpacking grub-common (from 
.../grub-common_1.96+20080724-16_i386.deb) ...
Feb 11 04:49:47 in-target: Selecting previously deselected package grub.
Feb 11 04:49:47 in-target: Unpacking grub (from 
.../grub_0.97-47lenny2_i386.deb) ...
Feb 11 04:49:48 in-target: Setting up grub-common (1.96+20080724-16) ...
Feb 11 04:49:48 in-target: Setting up grub (0.97-47lenny2) ...
Feb 11 04:49:49 grub-installer: info: Installing grub on '(hd0)'
Feb 11 04:49:49 grub-installer: info: grub-install supports --no-floppy
Feb 11 04:49:49 grub-installer: info: Running chroot /target grub-install --no-floppy 
--recheck "(hd0)"
Feb 11 04:49:49 grub-installer: You shouldn't call /sbin/grub-install. Please 
call /usr/sbin/grub-install instead!
Feb 11 04:49:49 grub-installer:
Feb 11 04:49:49 grub-installer: Searching for GRUB installation directory ...
Feb 11 04:49:49 grub-installer: found: /boot/grub
Feb 11 04:49:52 grub-installer: grub-probe: error:
Feb 11 04:49:52 grub-installer: no mapping exists for `md0'


# cat /proc/mdstat
Personalities : [raid1]
md2 : active raid1 sdb3[1] sda3[0]
  727575685 blocks super 1.1 [2/2] [UU]
  [>]  resync =  4.2% (30862464/727575685) 
finish=144.3min speed=80450K/sec


md1 : active raid1 sdb2[1] sda2[0]
  4000177 blocks super 1.1 [2/2] [UU]
resync=DELAYED

md0 : active raid1 sdb1[1] sda1[0]
  995990 blocks super 1.1 [2/2] [UU]

unused devices: 

# mdadm --examine /dev/sda1
/dev/sda1:
  Magic : a92b4efc
Version : 1.1
Feature Map : 0x0
 Array UUID : e370f4cb:02d9861a:faac79fb:84ee0795
   Name : install:0  (local to host install)
  Creation Time : Thu Feb 11 04:42:28 2010
 Raid Level : raid1
   Rai

Bug#551733: linux-image-2.6.26-2-686: Cannot boot kernel 2.6.26-2-686

2010-02-10 Thread Bruce Ward

Greetings.

More data. I have managed to get an initramfs debug out of the system 
and have also provided a debug from a 2.6.26-1-686 kernel which boots 
OK. I'm damned if I can see any reason from the debug for the recent 
kernel (2.6.26-2-686) to fail to boot!


Interesting (but possibly not relevant) observations from my playing 
around (exploration). Remember there are only a few modules (thermal 
ones) loaded when the system drops out.


1. Load USB drivers - they find the pendrive, but no entry created in /dev.
2. Use mknod to create /dev/sda3 for the ext3 partition on pendrive. 
sda3 is the only SCSI entry in /dev.
3. Load ext3 module, and mount the sda3 partition and, behold, there are 
entries in /dev/ for sda, sda1, and sda2, as well as sda3.
4. Load the SATA drivers and suddenly there are sdb entries in /dev for 
all partitions on the drive I have failed to boot from.


A minor bug (?). ls /bin shows mknod, but trying to use it (/bin/mknod) 
gives the error:

  /bin/sh: /bin/mknod: not found

I have not tried using mknod to put the partitions in /dev/disk/by-label 
where init is expecting to find them, and then continuing the boot 
process. Would this be useful?


Does it look as though the process which is supposed to load modules is 
failing?


Bruce

===
Bruce Ward, Nelson, New Zealand
+ [ -z  ]
+ export resume=/dev/sdb6
+ depmod -a
+ maybe_break top
+ [  = top ]
+ run_scripts /scripts/init-top
+ initdir=/scripts/init-top
+ [ ! -d /scripts/init-top ]
+ get_prereqs
+ set_initlist
+ unset initlist
+ [ /scripts/init-top/all_generic_ide = /scripts/init-top/* ]
+ [ ! -x /scripts/init-top/all_generic_ide ]
+ [ -d /scripts/init-top/all_generic_ide ]
+ initlist= all_generic_ide
+ [ /scripts/init-top/framebuffer = /scripts/init-top/* ]
+ [ ! -x /scripts/init-top/framebuffer ]
+ [ -d /scripts/init-top/framebuffer ]
+ initlist= all_generic_ide framebuffer
+ [ /scripts/init-top/keymap = /scripts/init-top/* ]
+ [ ! -x /scripts/init-top/keymap ]
+ [ -d /scripts/init-top/keymap ]
+ initlist= all_generic_ide framebuffer keymap
+ /scripts/init-top/all_generic_ide prereqs
+ tmp=
+ eval array_all_generic_ide=""
+ array_all_generic_ide=
+ /scripts/init-top/framebuffer prereqs
+ tmp=
+ eval array_framebuffer=""
+ array_framebuffer=
+ /scripts/init-top/keymap prereqs
+ tmp=
+ eval array_keymap=""
+ array_keymap=
+ reduce_prereqs
+ unset runlist
+ set -- all_generic_ide framebuffer keymap
+ i=3
+ [ 3 -ne 0 ]
+ oldi=3
+ reduce_satisfied all_generic_ide
+ render array_all_generic_ide
+ eval echo -n ${array_all_generic_ide}
+ echo -n
+ deplist=
+ unset tmpdeplist
+ deplist=
+ eval array_all_generic_ide=""
+ array_all_generic_ide=
+ render array_all_generic_ide
+ eval echo -n ${array_all_generic_ide}
+ echo -n
+ count_unsatisfied
+ set --
+ return 0
+ cnt=0
+ [ 0 -eq 0 ]
+ runlist= all_generic_ide
+ pop_list_item all_generic_ide all_generic_ide framebuffer keymap
+ item=all_generic_ide
+ shift
+ set -- all_generic_ide framebuffer keymap
+ unset tmppop
+ [ all_generic_ide = all_generic_ide ]
+ continue
+ [ framebuffer = all_generic_ide ]
+ tmppop= framebuffer
+ [ keymap = all_generic_ide ]
+ tmppop= framebuffer keymap
+ initlist= framebuffer keymap
+ i=2
+ reduce_satisfied framebuffer
+ render array_framebuffer
+ eval echo -n ${array_framebuffer}
+ echo -n
+ deplist=
+ unset tmpdeplist
+ deplist=
+ pop_list_item all_generic_ide
+ item=all_generic_ide
+ shift
+ set --
+ unset tmppop
+ deplist=
+ eval array_framebuffer=""
+ array_framebuffer=
+ render array_framebuffer
+ eval echo -n ${array_framebuffer}
+ echo -n
+ count_unsatisfied
+ set --
+ return 0
+ cnt=0
+ [ 0 -eq 0 ]
+ runlist= all_generic_ide framebuffer
+ pop_list_item framebuffer framebuffer keymap
+ item=framebuffer
+ shift
+ set -- framebuffer keymap
+ unset tmppop
+ [ framebuffer = framebuffer ]
+ continue
+ [ keymap = framebuffer ]
+ tmppop= keymap
+ initlist= keymap
+ i=1
+ reduce_satisfied keymap
+ render array_keymap
+ eval echo -n ${array_keymap}
+ echo -n
+ deplist=
+ unset tmpdeplist
+ deplist=
+ pop_list_item all_generic_ide
+ item=all_generic_ide
+ shift
+ set --
+ unset tmppop
+ deplist=
+ pop_list_item framebuffer
+ item=framebuffer
+ shift
+ set --
+ unset tmppop
+ deplist=
+ eval array_keymap=""
+ array_keymap=
+ render array_keymap
+ eval echo -n ${array_keymap}
+ echo -n
+ count_unsatisfied
+ set --
+ return 0
+ cnt=0
+ [ 0 -eq 0 ]
+ runlist= all_generic_ide framebuffer keymap
+ pop_list_item keymap keymap
+ item=keymap
+ shift
+ set -- keymap
+ unset tmppop
+ [ keymap = keymap ]
+ continue
+ initlist=
+ i=0
+ [ 0 -eq 3 ]
+ [ 0 -ne 0 ]
+ call_scripts
+ [  = y ]
+ /scripts/init-top/all_generic_ide
+ [ -e /conf/param.conf ]
+ [  = y ]
+ /scripts/init-top/framebuffer
+ [ -e /conf/param.conf ]
+ [  = y ]
+ /scripts/init-top/keymap
+ [ -e /conf/param.conf ]
+ maybe_break modules
+ [  = modules ]
+ log_begin_msg Loading essential drivers
+ [ -x /sbin/usplash_write ]
+ _log_msg Begin: Loading essential drivers ... 
+ [ n 

Bug#568971: modem manager rapidly fills up daemon.log

2010-02-10 Thread Rico Moorman
Dear Michael,

Luckily this problem did not occur again. I restarted my machine after the 
fill-up which caused several programs to not respond anymore in order to 
investigate what was going on.

On Wednesday 10 February 2010 17:17:45 Michael Biebl wrote:
> Hi,
> 
> can you reliably reproduce this?
So no, I cannot reproduce this unfortunately.

> Is a modem-manager process running?
Currently there is a modem-manager process running and everything seems fine 
again. Checking the logs reveals the following messages:
"""
Feb 11 06:55:51 mamma NetworkManager:   starting...
Feb 11 06:55:51 mamma NetworkManager:   Trying to start the modem-
manager...
Feb 11 06:55:51 mamma NetworkManager:SCPlugin-Ifupdown: init!
Feb 11 06:55:51 mamma NetworkManager:SCPlugin-Ifupdown: 
update_system_hostname
Feb 11 06:55:51 mamma NetworkManager:SCPluginIfupdown: guessed connection 
type (eth0) = 802-3-ethernet
Feb 11 06:55:51 mamma NetworkManager:SCPlugin-Ifupdown: 
update_connection_setting_from_if_block: name:eth0, type:802-3-ethernet, 
id:Ifupdown (eth0), uuid: 681b428f-beaf-8932-dce4-687ed5bae28e
Feb 11 06:55:51 mamma NetworkManager:SCPluginIfupdown: management mode: 
unmanaged
Feb 11 06:55:51 mamma NetworkManager:SCPlugin-Ifupdown: devices added 
(path: /sys/devices/pci:00/:00:1c.1/:40:00.0/net/eth0, iface: 
eth0)
Feb 11 06:55:51 mamma NetworkManager:SCPluginIfupdown: locking wired 
connection setting
Feb 11 06:55:51 mamma NetworkManager:Ifupdown: get unmanaged devices 
count: 1
Feb 11 06:55:51 mamma NetworkManager:SCPlugin-Ifupdown: (141091568) ... 
get_connections.
Feb 11 06:55:51 mamma NetworkManager:SCPlugin-Ifupdown: (141091568) ... 
get_connections (managed=false): return empty list.
Feb 11 06:55:51 mamma NetworkManager:Ifupdown: get unmanaged devices 
count: 1
Feb 11 06:55:51 mamma NetworkManager:SCPlugin-Ifupdown: devices added 
(path: /sys/devices/virtual/net/lo, iface: lo)
Feb 11 06:55:51 mamma NetworkManager:SCPlugin-Ifupdown: device added 
(path: /sys/devices/virtual/net/lo, iface: lo): no ifupdown configuration 
found.
Feb 11 06:55:51 mamma NetworkManager:SCPlugin-Ifupdown: end _init.
Feb 11 06:55:51 mamma NetworkManager: Loaded plugin ifupdown: (C) 2008 
Canonical Ltd.  To report bugs please use the NetworkManager mailing list.
Feb 11 06:55:51 mamma modem-manager: Loaded plugin ZTE
Feb 11 06:55:51 mamma modem-manager: Loaded plugin Novatel
Feb 11 06:55:51 mamma modem-manager: Loaded plugin Generic
Feb 11 06:55:51 mamma modem-manager: Loaded plugin AnyData
Feb 11 06:55:51 mamma modem-manager: Loaded plugin Option High-Speed
Feb 11 06:55:51 mamma modem-manager: Loaded plugin Sierra
Feb 11 06:55:51 mamma modem-manager: Loaded plugin Longcheer
Feb 11 06:55:51 mamma modem-manager: Loaded plugin Ericsson MBM
Feb 11 06:55:51 mamma modem-manager: Loaded plugin Option
Feb 11 06:55:51 mamma modem-manager: Loaded plugin Nokia
Feb 11 06:55:51 mamma modem-manager: Loaded plugin Gobi
Feb 11 06:55:51 mamma NetworkManager: Loaded plugin keyfile: (c) 2007 - 2008 
Red Hat, Inc.  To report bugs please use the NetworkManager mailing list.
Feb 11 06:55:51 mamma NetworkManager:   WiFi enabled by radio 
killswitch; enabled by state file
Feb 11 06:55:51 mamma NetworkManager:   WWAN enabled by radio 
killswitch; enabled by state file
Feb 11 06:55:51 mamma modem-manager: Loaded plugin MotoC
Feb 11 06:55:51 mamma modem-manager: Loaded plugin Huawei
Feb 11 06:55:51 mamma NetworkManager:   (eth0): carrier is ON
Feb 11 06:55:51 mamma NetworkManager:   (eth0): new Ethernet device 
(driver: 'tg3')
Feb 11 06:55:51 mamma NetworkManager:   (eth0): exported as 
/org/freedesktop/NetworkManager/Devices/0
Feb 11 06:55:51 mamma NetworkManager:   modem-manager is now available
Feb 11 06:55:51 mamma NetworkManager:   default_adapter_cb(): bluez 
error getting default adapter: The name org.bluez was not provided by any 
.service files
Feb 11 06:55:51 mamma NetworkManager:   Trying to start the 
supplicant...
"""

> Was this directly after installing modemmanager?
Yes it was directly after installing the updates with "aptitude safe-upgrade" 
(and modemmanager came along with them).

> What lead to this bug, where you upgrading your system or something
>  similar? What happens if you restart network-manager and/or dbus, do you
>  still get the error messages in the daemon.log.
Maybe it was some race condition that occurred right after the update that 
caused the problem and rebooting the system (and thus restarting the network-
manager and dbus too) helped to fix it.

It was quite surprising to find my system in a (for me) somewhat unusable 
state after some updates. Furthermore I know that without being able to 
reproduce this issue, fixing it for others that install this package is tough. 
But unfortunately I cannot provide more information about it.

Best regards

Rico Moorman



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

Bug#556736:

2010-02-10 Thread Damien DEGOIS
Hello,

The goal of my patch is just to patch the uncompressed version of
setup_chroot.sh, not the source pachage. I don't want to steal your
credits or whatever (as you can notice in my patch, I quoted he same
source as you do), I just wanted  to provide a patch for those who
don't want to recompile the package but to get the setup_chroot.sh
work just "out of the wget+patch".

Sorry for the misunderstanding.

Regards,
Damien



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



Bug#569279: mutt segfaults while operating on an IMAP folder through ssh tunnel

2010-02-10 Thread pancho horrillo
Package: mutt
Version: 1.5.20-7
Severity: normal


Hi.

Since one of the recent mutt updates (cannot precise exactly when),
mutt tends to segfault when I am accessing my email folder on a remote
IMAP server (via ssh tunnel).

This is the output of dmesg:

mutt[1943]: segfault at  ip 7f6279de5411 sp 7fff37628120 error 
4 in libc-2.10.2.so[7f6279da+14a000]

It is not always, but frequently enough to be an annoyance.

Not much you can do with this little information, I guess.  I open this
bug so that if someone else has the same problem, he can comment here.



Cheers,


-- Package-specific info:
Mutt 1.5.20 (2009-06-14)
Copyright (C) 1996-2009 Michael R. Elkins and others.
Mutt comes with ABSOLUTELY NO WARRANTY; for details type `mutt -vv'.
Mutt is free software, and you are welcome to redistribute it
under certain conditions; type `mutt -vv' for details.

System: Linux 2.6.32.7-macmini-amd64 (x86_64)
ncurses: ncurses 5.7.20090803 (compiled with 5.7)
libidn: 1.15 (compiled with 1.15)
hcache backend: GDBM version 1.8.3. 10/15/2002 (built Nov 21 2009 09:33:57)
Compile options:
-DOMAIN
+DEBUG
-HOMESPOOL  +USE_SETGID  +USE_DOTLOCK  +DL_STANDALONE  +USE_FCNTL  -USE_FLOCK   
+USE_POP  +USE_IMAP  +USE_SMTP  
-USE_SSL_OPENSSL  +USE_SSL_GNUTLS  +USE_SASL  +USE_GSS  +HAVE_GETADDRINFO  
+HAVE_REGCOMP  -USE_GNU_REGEX  
+HAVE_COLOR  +HAVE_START_COLOR  +HAVE_TYPEAHEAD  +HAVE_BKGDSET  
+HAVE_CURS_SET  +HAVE_META  +HAVE_RESIZETERM  
+CRYPT_BACKEND_CLASSIC_PGP  +CRYPT_BACKEND_CLASSIC_SMIME  +CRYPT_BACKEND_GPGME  
-EXACT_ADDRESS  -SUN_ATTACHMENT  
+ENABLE_NLS  -LOCALES_HACK  +COMPRESSED  +HAVE_WC_FUNCS  +HAVE_LANGINFO_CODESET 
 +HAVE_LANGINFO_YESEXPR  
+HAVE_ICONV  -ICONV_NONTRANS  +HAVE_LIBIDN  +HAVE_GETSID  +USE_HCACHE  
-ISPELL
SENDMAIL="/usr/sbin/sendmail"
MAILPATH="/var/mail"
PKGDATADIR="/usr/share/mutt"
SYSCONFDIR="/etc"
EXECSHELL="/bin/sh"
MIXMASTER="mixmaster"
To contact the developers, please mail to .
To report a bug, please visit http://bugs.mutt.org/.

patch-1.5.13.cd.ifdef.2

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

Kernel: Linux 2.6.32.7-macmini-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 mutt depends on:
ii  libc6  2.10.2-6  Embedded GNU C Library: Shared lib
ii  libcomerr2 1.41.9-1  common error description library
ii  libgdbm3   1.8.3-9   GNU dbm database routines (runtime
ii  libgnutls262.8.5-2   the GNU TLS library - runtime libr
ii  libgpg-error0  1.6-1 library for common error values an
ii  libgpgme11 1.2.0-1.2 GPGME - GnuPG Made Easy
ii  libgssapi-krb5-2   1.8+dfsg~alpha1-5 MIT Kerberos runtime libraries - k
ii  libidn11   1.15-2GNU Libidn library, implementation
ii  libk5crypto3   1.8+dfsg~alpha1-5 MIT Kerberos runtime libraries - C
ii  libkrb5-3  1.8+dfsg~alpha1-5 MIT Kerberos runtime libraries
ii  libncursesw5   5.7+20090803-2shared libraries for terminal hand
ii  libsasl2-2 2.1.23.dfsg1-5Cyrus SASL - authentication abstra

Versions of packages mutt recommends:
ii  libsasl2-modules  2.1.23.dfsg1-5 Cyrus SASL - pluggable authenticat
ii  locales   2.10.2-6   Embedded GNU C Library: National L
ii  mime-support  3.48-1 MIME files 'mime.types' & 'mailcap
ii  postfix [mail-transport-a 2.6.5-3High-performance mail transport ag

Versions of packages mutt suggests:
pn  aspell | ispell(no description available)
ii  ca-certificates   20090814   Common CA certificates
ii  gnupg 1.4.10-2   GNU privacy guard - a free PGP rep
pn  mixmaster  (no description available)
ii  openssl   0.9.8k-8   Secure Socket Layer (SSL) binary a
ii  urlview   0.9-18.1   Extracts URLs from text

Versions of packages mutt is related to:
ii  mutt  1.5.20-7   text-based mailreader supporting M
pn  mutt-dbg   (no description available)
pn  mutt-patched   (no description available)

-- no debconf information



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



Bug#566748: shishi: FTBFS on GNU/kFreeBSD: undefined reference to `rpl_stat'

2010-02-10 Thread Petr Salinger

reopen 566748
severity 566748 normal
retitle 566748 undefined reference to `rpl_stat' when gnulib stat is used
user debian-...@lists.debian.org
usertag 566748 - kfreebsd
--


Is there any chance that squeeze will use the freebsd 8.0 kernel
instead, which (apparently) would make this problem go away?


That's the case now, and your package is Installed on both
GNU/kFreeBSD architectures.



Closing accordingly.


The bug is still here, it might affect other architectures.
But it shouldn't be serious anymore.

Petr




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



Bug#568641: Messages 40 and 45

2010-02-10 Thread Ola Lundqvist
Hi

Now I'm confused. What are you referring to now?

// Ola

On Wed, Feb 10, 2010 at 04:47:57PM +0100, J.M.Roth wrote:
> Please note that message 45 comes *before* message 40 for all of this to
> make sense. :-\
> 
> 
> 

-- 
 - Ola Lundqvist ---
/  o...@debian.org Annebergsslingan 37  \
|  o...@inguza.com  654 65 KARLSTAD  |
|  http://inguza.com/  +46 (0)70-332 1551   |
\  gpg/f.p.: 7090 A92B 18FE 7994 0C36  4FE4 18A1 B1CF 0FE5 3DD9 /
 ---



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



Bug#569150: Amavis never cleans its virusmail jail

2010-02-10 Thread Alexander Wirt
Brian May schrieb am Thursday, den 11. February 2010:

> Seems to be a sensitive issue.
> 
> If I understand the arguments correctly, the arguments for are:
> 
> * email that has been classified as spam that is past X days old is
> unlikely to be useful.
> * spam accumulating in /var could bring the system to its knees if let
> go uncheck.
> * therefore it is wise to delete emails that have been classified as
> spam that are older then X days.
> * this should be the default to ensure the computer doesn't stop working.
> 
> The arguments against are:
> 
> * email that has been classified as spam could still be important even
> if it is past X days old.
> * everyone will have different requirements, for some people the only
> way to find out for certain is with manual checking.
> * it is better to default to the option that preserves too many emails
> rather then the option that deletes emails.
> * system monitoring should be used to ensure /var doesn't fill up.
  * amavisd-new is not very usable out of the box, even if we take care about
the default you have to adapt amavisd-new to your needs
  * the directory is meaned as a quarantine queue and should get managed by
the administrator not by the system. 
  * There is no sensible default to adapt which may not lead to data loss
  * it was there for years, changing the default may be very dangerous for
everybody which uses the directory for archiving. And I don't think this
is worth a debconf question. 

Alex




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



Bug#569180: cron-apt: MAILON=never

2010-02-10 Thread Ola Lundqvist
Hi Allan

It is actually document, but maybe it is not clear enough

# When to send email about the cron-apt results.
# Value: error   (send mail on error runs)
#upgrade (when packages are upgraded)
#changes (mail when change in output from an action)
#output  (send mail when output is generated)
#always  (always send mail)
#(else never send mail)
# MAILON="error"

So anything else than the above will cause email to never been
sent, including "never".

Best regards,

// Ola

On Wed, Feb 10, 2010 at 10:46:56AM -0500, Allan Wind wrote:
> Package: cron-apt
> Version: 0.8.1
> Severity: normal
> 
> If you set MAILON=never then you get an error from cron-apt 
> saying that it could not find a mailer binary and to use 
> MAILON=never.  "never" is not a documented option in the
> config file.
> 
> -- System Information:
> Debian Release: squeeze/sid
>   APT prefers unstable
>   APT policy: (500, 'unstable')
> Architecture: amd64 (x86_64)
> 
> Kernel: Linux 2.6.32.2 (SMP w/2 CPU cores; PREEMPT)
> 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 cron-apt depends on:
> ii  apt   0.7.25.3   Advanced front-end for dpkg
> 
> Versions of packages cron-apt recommends:
> ii  bcron-run [cron]   0.09-11   Bruce's cron system
> pn  liblockfile1   (no description available)
> ii  mailutils [mailx]  1:2.1+dfsg1-4 GNU mailutils utilities for 
> handli
> 
> cron-apt suggests no packages.
> 
> -- no debconf information
> 
> -- 
> Allan Wind
> Life Integrity, LLC
> 
> 
> 
> 
> 

-- 
 - Ola Lundqvist ---
/  o...@debian.org Annebergsslingan 37  \
|  o...@inguza.com  654 65 KARLSTAD  |
|  http://inguza.com/  +46 (0)70-332 1551   |
\  gpg/f.p.: 7090 A92B 18FE 7994 0C36  4FE4 18A1 B1CF 0FE5 3DD9 /
 ---



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



Bug#568641: ntop: access.log is writeable by everyone

2010-02-10 Thread Ola Lundqvist
Hi

On Tue, Feb 09, 2010 at 09:25:44PM +0100, J.M.Roth wrote:
> On 2/9/2010 9:13 PM, Ola Lundqvist wrote:
> 
> >> When setting the correct permissions (u=rx,g=rxs,o= with ownership
> >> ntop:ntop) on the directory, the permissions will always be ok:
> >> - the directory will not be accessible by anyone else than ntop,
> >> - the contained files will have appropriate rights to be read/written by
> >> ntop. (I dislike the fact that they still are o=rw, but that doesn't
> >> matter in that case)
> > 
> > I thought the complaint in the first place was that it was o=rw?
> 
> Yes, I looked for a solution that would make
> - the files not accessible to everyone
> - still readable/writeable to ntop

Makes perfect sense.

> We may of course give a correct umask to ntop, but if files are owned by
> root and have no permission for "other", they will not be writeable by
> user ntop, no matter what the umask.

Agree.

> Let's take the example of the /var/log/clamav, which would be an example
> for correct permissions:
> 
> drwxr-xr-x  2 clamav clamav  4096 Feb  7 21:44 .
> drwxr-xr-x 34 root   root   57344 Feb  9 00:04 ..
> -rw-r-  1 clamav adm 4483 Feb  9 21:19 clamav.log
> 
> "-rw-r-" is probably achieved by setting a correct umask, and
> "clamav adm" is achieved by either
> - telling the daemon how to correctly create those files (which ntop
> seems not to be able to), or
> - make them automatically belong to the right user by using setgid on
> the directory (since ntop seems not to be able to do so itself)

Yes.

> >> If you remove the directory altogether, ntop will no longer start:
> >> "Starting network top daemon: ERR: logging directory /var/log/ntop does
> >> not exist will not start network top daemon!"
> > 
> > What I ment was to remove the files, only. Not the dir.
> 
> They will again be created "rw-rw-rw root:root" when ntop is next run.

Yes.

> >> I'm not sure what happens on an upgrade. Is postinst run on upgrade? If
> >> it is, then permissions would be correct afterwards.
> > 
> > Postinst is run on upgrade, yes.
> > 
> > My issue is if someone do not upgrade. :-)
> 
> The "fresh install" case was the case that I was talking about all along.
> And if postinst is run on upgrade then the upgrade case will not be an
> issue.

The only problem I see with the postinst solution is that it is run on
install or upgrade only. But it is a way to solve the group permissions.
I agree with that.

So now I only need to find a way to set the umask, as you have solved
the directory permission problem.

Best regards,

// Ola

> JM
> 
> 
> 

-- 
 - Ola Lundqvist ---
/  o...@debian.org Annebergsslingan 37  \
|  o...@inguza.com  654 65 KARLSTAD  |
|  http://inguza.com/  +46 (0)70-332 1551   |
\  gpg/f.p.: 7090 A92B 18FE 7994 0C36  4FE4 18A1 B1CF 0FE5 3DD9 /
 ---



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



Bug#569276: binutils-gold: internal error in convert_types linking Linux

2010-02-10 Thread Jonathan Nieder
Package: binutils-gold
Version: 2.20-6
Severity: normal

Tried to compile Linux today (next-20100210 merged with Linus’s master,
i.e., a merge of a78eeac and e28cab4) but received an error:

|   ld -m elf_i386 --emit-relocs --build-id  -o .tmp_vmlinux1 -T 
arch/x86/kernel/vmlinux.lds arch/x86/kernel/head_32.o arch/x86/kernel/head32.o 
arch/x86/kernel/head.o arch/x86/kernel/init_task.o  init/built-in.o 
--start-group  usr/built-in.o  arch/x86/built-in.o  kernel/built-in.o  
mm/built-in.o  fs/built-in.o  ipc/built-in.o  security/built-in.o  
crypto/built-in.o  block/built-in.o  lib/lib.a  arch/x86/lib/lib.a  
lib/built-in.o  arch/x86/lib/built-in.o  drivers/built-in.o  sound/built-in.o  
firmware/built-in.o  arch/x86/pci/built-in.o  arch/x86/power/built-in.o  
net/built-in.o --end-group
| ld: internal error in convert_types, at ../../gold/gold.h:294
| make[5]: *** [.tmp_vmlinux1] Error 1
| make[4]: *** [sub-make] Error 2
| make[3]: *** [all] Error 2
| make[2]: *** [deb-pkg] Error 2
| make[1]: *** [deb-pkg] Error 2
| make: *** [sub-make] Error 2

I haven’t tried building just plain master yet, but I have no reason to
believe it would be any different.  Any other tips for debugging this?

Jonathan

$ dpkg -l gcc-4.4 binutils | tail -2
ii  binutils  2.20-6The GNU assembler, linker and binary utilities
ii  gcc-4.4   4.4.3-2   The GNU C compiler



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



Bug#569277: normal

2010-02-10 Thread Hiroshi Miura
Package: twitux
Version: 0.61-2
Severity: normal

twitux cannot parse date field of message on the other locale
than C/POSIX.
When parsing, strptime() fails.
An attached patch fixes it by inserting setlocale(LC_TIME) 
before strptime(). 


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

Kernel: Linux 2.6.24-1-686 (SMP w/1 CPU core)
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages twitux depends on:
ii  gconf2 2.22.0-1  GNOME configuration database syste
ii  gnome-keyring  2.22.3-1  GNOME keyring services (daemon and
ii  libaspell150.60.6-1  GNU Aspell spell-checker runtime l
ii  libc6  2.7-13GNU C Library: Shared libraries
ii  libdbus-1-31.2.1-3   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.76-1simple interprocess messaging syst
ii  libgconf2-42.22.0-1  GNOME configuration database syste
ii  libglade2-01:2.6.2-1 library to load .glade files at ru
ii  libglib2.0-0   2.16.5-1  The GLib library of C routines
ii  libgnome-keyring0  2.22.3-1  GNOME keyring services library
ii  libgtk2.0-02.12.11-3 The GTK+ graphical user interface 
ii  libnotify1 [libnotify1-gtk 0.4.4-3   sends desktop notifications to a n
ii  libsexy2   0.1.11-2  collection of additional GTK+ widg
ii  libsoup2.4-1   2.4.1-2   an HTTP library implementation in 
ii  libxml22.6.32.dfsg-2 GNOME XML library

twitux recommends no packages.

twitux suggests no packages.

-- no debconf information
--- src/twitux-parser.c.keep2008-09-21 13:30:42.992771264 +0900
+++ src/twitux-parser.c 2008-09-21 13:29:50.972771405 +0900
@@ -421,12 +421,14 @@
ta->tm_isdst = -1;
seconds_local = mktime (ta);

+   oldenv=setlocale(LC_TIME, "C");
strptime (datetime, "%a %b %d %T + %Y", &post);
post.tm_isdst = -1;
seconds_post =  mktime (&post);
+   setlocale(LC_TIME, oldenv);
 
-   diff = seconds_local-seconds_post;
-
+   diff = difftime (seconds_local, seconds_post);
+   
if (diff < 0) {
return g_strdup (_("1 second ago"));
}


Bug#569278: FTBFS in Ubuntu with python2.6 because buildbot binary is installed in /usr/local

2010-02-10 Thread Fabrice Coutadeur
Package: buildbot
Version: 0.7.12-1
Severity: important
Tags: patch
User: debian-pyt...@lists.debian.org
Usertags: origin-ubuntu karmic ubuntu-patch python2.6

Hi,

During rebuild of buildbot in Ubuntu, the package FTBFS because some binaries 
are installed in /usr/local:

dh_builddeb
Found files in /usr/local (must be in /usr).
debian/buildbot/usr/local
debian/buildbot/usr/local/bin
debian/buildbot/usr/local/bin/buildbot
dh_builddeb: dpkg-deb --build debian/buildbot .. returned exit code 1
make: *** [binary-indep] Error 9

This can be easilly fixed by adding a --prefix argument to setup call

Thanks,
Fabrice

*** /tmp/tmpCUU380
In Ubuntu, we've applied the attached patch to achieve the following:

  * debian/rules: added --prefix value to setup.py install call to fix a FTBFS

We thought you might be interested in doing the same. 


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

Kernel: Linux 2.6.31-19-generic (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash
diff -u buildbot-0.7.12/debian/rules buildbot-0.7.12/debian/rules
--- buildbot-0.7.12/debian/rules
+++ buildbot-0.7.12/debian/rules
@@ -32,7 +32,7 @@
 		/usr/share/buildbot/contrib \
 		/usr/share/info \
 		/usr/share/doc/$(p)
-	python setup.py install --root=$(d) --no-compile
+	python setup.py install --prefix=/usr --root=$(d) --no-compile
 	cp -p contrib/*.py contrib/README.txt $(d)//usr/share/buildbot/contrib/
 	-find debian -name '*.py[co]' | xargs rm -f
 


Bug#569275: alsa-tools-gui: envy24control: Gtk-WARNING (GtkSpinButton). VU Meters don't show up anymore

2010-02-10 Thread Hello
Package: alsa-tools-gui
Version: 1.0.21-1
Severity: normal

Since a moment (couples of weeks), VU meters don't show up in envy24control.
Started from console, it speaks human  (...well, almost) : 
 
"using   --- input_channels: 2
 --- output_channels: 2
 --- pcm_output_channels: 8
 --- spdif in/out channels: 2

(envy24control:3949): Gtk-WARNING **: GtkSpinButton: setting an adjustment with 
non-zero page size is deprecated

(envy24control:3949): Gtk-WARNING **: GtkSpinButton: setting an adjustment with 
non-zero page size is deprecated
Unable to read peaks: Aucun fichier ou dossier de ce type
Unable to read peaks: Aucun fichier ou dossier de ce type
Unable to read peaks: Aucun fichier ou dossier de ce type
...
..."with endless repetition


It seems  ( 
http://www.mail-archive.com/alsa-u...@lists.sourceforge.net/msg25835.html )  
that the bug is corrected upstream in version 1.0.22.


So, I don't know if this bug report may be of any use.
Thanks for your work,

Alan.


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (700, 'testing'), (650, 'unstable'), (600, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-trunk-686-bigmem (SMP w/2 CPU cores)
Locale: LANG=fr_BE.UTF-8, LC_CTYPE=fr_BE.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to fr_BE.UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages alsa-tools-gui depends on:
ii  libasound21.0.21a-1  shared library for ALSA applicatio
ii  libatk1.0-0   1.28.0-1   The ATK accessibility toolkit
ii  libc6 2.10.2-2   GNU C Library: Shared libraries
ii  libcairo2 1.8.8-2The Cairo 2D vector graphics libra
ii  libfltk1.11.1.10-2   Fast Light Toolkit - shared librar
ii  libfontconfig12.8.0-2generic font configuration library
ii  libfreetype6  2.3.11-1   FreeType 2 font engine, shared lib
ii  libgcc1   1:4.4.2-9  GCC support library
ii  libglib2.0-0  2.22.4-1   The GLib library of C routines
ii  libgtk2.0-0   2.18.6-1   The GTK+ graphical user interface 
ii  libpango1.0-0 1.26.2-1   Layout and rendering of internatio
ii  libstdc++64.4.2-9The GNU Standard C++ Library v3

alsa-tools-gui recommends no packages.

alsa-tools-gui suggests no packages.

-- no debconf information






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



Bug#553698: gwibber: New upstream version

2010-02-10 Thread Kartik Mistry
On Wed, Feb 10, 2010 at 6:03 PM, Stefano Zacchiroli  wrote:
> Thanks a lot! If you need beta testers before the actual upload, shout!

I just realized that we need 'desktopcouch' for this, which I just
uploaded. gwibber also has to pass NEW as upstream (in our humble
case, Ubuntu) separated gwibber into two package: GUI and service.

At current stage, it simply doesn't work. Looking into issue. I'll put
it somewhere and shout for testing after it works my local machine :)

-- 
 Cheers,
 Kartik Mistry | 0xD1028C8D | IRC: kart_
 Debian GNU/Linux Developer | Identica: @kartikm
 Blogs: {ftbfs, kartikm}.wordpress.com



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



Bug#569231: updated and tested desktop file

2010-02-10 Thread Achim Gädke

Kia ora!

I've updated the hdf.desktop file.
In addition I created an icon from the hdf5.pdf in 
http://www.hdfgroup.org/ftp/HDF5/contrib/hdf5-logo/hdf5.tar.gz in a rush.
It is probably better to take the hdf group logo, which appears in the 
HDF window title.


For further hints on menu integration, see 
http://www.debian.org/doc/packaging-manuals/menu-policy/


Achim
<>[Desktop Entry]
Exec=/usr/bin/hdfview
MimeType=all/hdf file
Name=hdfview
Name[de]=hdfview
Name[en]=hdfview
Comment[DE]=HDF4/5 Daten Browser
Comment[EN]=HDF4/5 Data Browser
Terminal=false
Type=Application
Encoding=UTF-8
X-MultipleArgs=true
Type=Application
Categories=Science;Physics;Chemistry;Education
Icon=hdf5.png



Bug#569223: flim: Incorrect usage of the 8BITMIME smtp extension

2010-02-10 Thread Tatsuya Kinoshita
forwarded 569223 http://lists.airs.net/wl-en/archive/201002/msg00035.html
tags 569223 + upstream patch pending
thanks

On February 10, 2010 at 10:18PM +0100,
maus.david (at gmail.com) wrote:

> Package: flim
> Version: 1:1.14.9-4.1
> Severity: important
>
> By accident it was discovered that the smtp client part of FLIM
> (smtp.el) does not comply strictly to the specs for SMTP Service
> Extensions (RFC1869) when using the 8BITMIME extension (RFC1652).
[...]
> http://lists.airs.net/wl-en/archive/201002/msg00035.html
>
> There is a patch at the end of the linked thread that fixes this
> problem and that will be rolled into debian soon hopyfully.

I'll upload the fixed version before the `squeeze' freeze.

Anyway, I hope the patch will be applied to the upstream repository.

Thanks,
--
Tatsuya Kinoshita


pgplLzPRkjXle.pgp
Description: PGP signature


Bug#569274: libevent-dev: install libevent.pc into /usr/lib/pkgconfig

2010-02-10 Thread Clinton Roy
Package: libevent-dev
Version: 2.0.3-alpha-1
Severity: normal

Upstream supplies a generated libevent.pc file to be installed in 
/usr/lib/pkgconfig for use with pkg-config, please
add it to the Debian package.

cheers,

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

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

Versions of packages libevent-dev depends on:
ii  libevent-core2 2.0.3-alpha-1 An asynchronous event notification
ii  libevent-extra22.0.3-alpha-1 An asynchronous event notification
ii  libevent-pthreads0 2.0.3-alpha-1 An asynchronous event notification
ii  libevent2  2.0.3-alpha-1 An asynchronous event notification

libevent-dev recommends no packages.

libevent-dev suggests no packages.

-- no debconf information



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



Bug#569273: Parsing \t (escaped tab character) raises ParseError

2010-02-10 Thread Raphael Wimmer

Package: python-vobject
Version: 0.8.1c-3

When parsing an iCal file containing "\t" (tab, actually two characters)  
using readOne(), the parser raises a ParseError, aborting the parsing.
This defect is _not_ in the upstream source but introduced by Debian patch  
"0003-Treat-untils-as-floating.patch", removing this patch fixes the  
problem.
I can not see any advantage of raising an exception instead of simply  
accepting unknown escaped chars (like in the upstream source).


BTW: is there a reason why 0.8.1.c-3 is not present in the Debian git repo?

Cheers,
Raphael


Test case:

BEGIN:VCALENDAR
VERSION:2.0
BEGIN:VEVENT
DTSTAMP:20080502T160934Z
CREATED:20071005T104029Z
UID:KOrganizer-1534264698.483
SEQUENCE:1
LAST-MODIFIED:20080106T231431Z
DESCRIPTION:Test Text and a Tab: \t and more text
SUMMARY:Test
PRIORITY:3
DTSTART:20071010T09Z
DTEND:20071010T12Z
TRANSP:OPAQUE
END:VEVENT
END:VCALENDAR





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



Bug#569272: abiword: crashes on attempt to use Thesaurus from the Tools menu

2010-02-10 Thread david b
Package: abiword
Severity: normal

After copying and pasting text off website I selected Thesaurus from the tools 
menu. Abiword then crashed.

Here is a backtrace.

(gdb) bt
#0  0x0062e020 in UT_UCS4_strlen ()
#1  0x7f72b5e6ca12 in AiksaurusABI_invoke ()
   from /usr/lib/abiword-2.6/plugins/libAbiAikSaurus.so
   #2  0x0065200b in EV_Menu::invokeMenuMethod ()
   #3  0x0065539f in EV_UnixMenu::menuEvent ()
   #4  0x7f72c8c14e9d in g_closure_invoke () from 
/usr/lib/libgobject-2.0.so.0
   #5  0x7f72c8c27bfd in ?? () from /usr/lib/libgobject-2.0.so.0
   #6  0x7f72c8c290ee in g_signal_emit_valist ()
  from /usr/lib/libgobject-2.0.so.0
  #7  0x7f72c8c295f3 in g_signal_emit () from 
/usr/lib/libgobject-2.0.so.0
  #8  0x7f72ca1c1ceb in gtk_widget_activate ()
 from /usr/lib/libgtk-x11-2.0.so.0
 #9  0x7f72ca0b53ad in gtk_menu_shell_activate_item ()
from /usr/lib/libgtk-x11-2.0.so.0
#10 0x7f72ca0b7085 in ?? () from /usr/lib/libgtk-x11-2.0.so.0
#11 0x7f72ca0a8848 in ?? () from /usr/lib/libgtk-x11-2.0.so.0
#12 0x7f72c8c14e9d in g_closure_invoke () from 
/usr/lib/libgobject-2.0.so.0
#13 0x7f72c8c278dc in ?? () from /usr/lib/libgobject-2.0.so.0
#14 0x7f72c8c28f71 in g_signal_emit_valist ()
   from /usr/lib/libgobject-2.0.so.0
   #15 0x7f72c8c295f3 in g_signal_emit () from 
/usr/lib/libgobject-2.0.so.0
   #16 0x7f72ca1bd4de in ?? () from /usr/lib/libgtk-x11-2.0.so.0
   #17 0x7f72ca0a13d3 in gtk_propagate_event ()
   ---Type  to continue, or q  to quit---
  from /usr/lib/libgtk-x11-2.0.so.0
  #18 0x7f72ca0a241b in gtk_main_do_event ()
 from /usr/lib/libgtk-x11-2.0.so.0
 #19 0x7f72c99a7fac in ?? () from 
/usr/lib/libgdk-x11-2.0.so.0
 #20 0x7f72c85777ab in g_main_context_dispatch ()
from /usr/lib/libglib-2.0.so.0
#21 0x7f72c857af7d in ?? () from 
/usr/lib/libglib-2.0.so.0
#22 0x7f72c857b4ad in g_main_loop_run () from 
/usr/lib/libglib-2.0.so.0
#23 0x7f72ca0a2837 in gtk_main () from 
/usr/lib/libgtk-x11-2.0.so.0
#24 0x0052355d in AP_UnixApp::main ()
#25 0x7f72c4da91a6 in __libc_start_main () from 
/lib/libc.so.6
#26 0x00520eb9 in _start ()


-- System Information:
Debian Release: 5.0.4
  APT prefers stable
  APT policy: (900, 'stable'), (600, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32.8-grsec (SMP w/4 CPU cores)
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash



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



Bug#569271: oasis3: FTBFS: /usr/bin/ld: cannot find -lmpp_io

2010-02-10 Thread Cyril Brulebois
Source: oasis3
Version: 3.3.beta.dfsg.1-1
Severity: serious
Justification: FTBFS

Hi,

your package FTBFS on all buildds:
| mpif90.openmpi -shared  -Wl,-soname,` basename 
/build/buildd-oasis3_3.3.beta.dfsg.1-1-kfreebsd-i386-Bha3cf/oasis3-3.3.beta.dfsg.1//build/lib/libpsmile.MPI1.so.0d
 ` -o 
/build/buildd-oasis3_3.3.beta.dfsg.1-1-kfreebsd-i386-Bha3cf/oasis3-3.3.beta.dfsg.1//build/lib/libpsmile.MPI1.so.0d
  errioipsl_psmile.o  mathelp_psmile.o  mod_comprism_proto.o  mod_gsip_model.o  
mod_kinds_model.o  mod_prism_def_partition_proto.o  mod_prism_get_comm.o  
mod_prism_get_proto.o  mod_prism_grids_writing.o  mod_prism_proto.o  
mod_prism_put_proto.o  mod_psmile_io.o  mod_psmile_io_interfaces.o  
prism_put_inquire_proto.o  prism_put_restart_proto.o  stringop_psmile.o  
write_file.o  mod_psmile_date_and_time.o  prism_abort_proto.o  
prism_def_var_proto.o  prism_enddef_proto.o  prism_get_freq.o  
prism_get_localcomm_proto.o  prism_init_comp_proto.o  prism_terminate_proto.o 
-L 
/build/buildd-oasis3_3.3.beta.dfsg.1-1-kfreebsd-i386-Bha3cf/oasis3-3.3.beta.dfsg.1//src/lib
 -lmpp_io -Wl,-as-needed -L/usr/lib -lnetcdff
  -lnetcdf  
| /usr/bin/ld: cannot find -lmpp_io

Full build logs:
  https://buildd.debian.org/status/package.php?suite=experimental&p=oasis3

Mraw,
KiBi.



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



Bug#566911: closed by Fathi Boudra (Bug#566911: fixed in kaffeine 1.0~pre3-1)

2010-02-10 Thread Cyril Brulebois
found 566911 1.0~pre3-1
thanks

Debian Bug Tracking System  (05/02/2010):
> #566911: src:kaffeine: FTBFS on GNU/kFreeBSD: dvb is mandatory
> It has been closed by Fathi Boudra .

That might be fixed upstream but your packaging needs adapting as
well:
,
| make[1]: Leaving directory 
`/build/buildd-kaffeine_1.0~pre3-1-kfreebsd-amd64-BZjHzY/kaffeine-1.0~pre3/obj-x86_64-kfreebsd-gnu'
|dh_install -a -O--parallel -O--list-missing -O--dbg-package=kaffeine-dbg
| cp: cannot stat `debian/tmp/usr/lib/kde4/kaffeinedvb.so': No such file or 
directory
| dh_install: cp -a debian/tmp/usr/lib/kde4/kaffeinedvb.so 
debian/kaffeine//usr/lib/kde4/ returned exit code 1
`

Reopening accordingly.

Mraw,
KiBi.


signature.asc
Description: Digital signature


Bug#569269: youtube-dl: Currently fails to download, or even retrieve the video url

2010-02-10 Thread Rogério Brito
severity 569269 normal
tags 569269 moreinfo
thanks

Hi.

On Feb 10 2010, TheGZeus wrote:
> Fails to retrieve the video, reporting an error as though the video
> were no longer available at all.  Possible change to the obfuscation
> youtube uses, unsure if upstream is aware of the issue.

Two points here:

1 - The version that you are using is outdated and I packaged a newer
version already.

2 - You didn't mention what exactly didn't work and more details (like
which video you were trying to see etc). For this reason, I am
tagging this bug with moreinfo.

3 - It works fine with every video that I tried so far.

Also, keep in mind that different videos may be available in different
geographic locations.

> Conkeror's 'scraper' is still able to download videos with no trouble
> in all formats, so the change must be in an area that youtube-dl uses,
> but Conkeror does not.

I have no idea what conkeror is (perhaps the emacs browser?).


Regards,

-- 
Rogério Brito : rbr...@{ime.usp.br,gmail.com} : GPG key 1024D/7C2CAEB8
http://rb.doesntexist.org : Packages for LaTeX : algorithms.berlios.de
DebianQA: http://qa.debian.org/developer.php?login=rbrito%40ime.usp.br



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



Bug#569270: ajaxterm: spurious 'del self.session[s]' causes an exception

2010-02-10 Thread Raphael Geissert
Package: ajaxterm
Version: 0.10-5

Hi,

Somehow you left an extra 'del self.session[s]' in the code:
> else:
> del self.session[s]
> del self.session[uid+s]
> del self.session_ip[uid+s]

It causes an exception because self.session[s] does not exist.

Cheers,
-- 
Raphael Geissert - Debian Developer
www.debian.org - get.debian.net



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



Bug#569198: FTBFS [hppa] - free(): invalid pointer: 0x0093e938

2010-02-10 Thread Dirk Eddelbuettel

On 10 February 2010 at 19:23, dann frazier wrote:
| [cc'ing debian-admin as an fyi]
| 
| On Wed, Feb 10, 2010 at 08:10:54PM -0600, Dirk Eddelbuettel wrote:
| > 
| > On 10 February 2010 at 18:50, dann frazier wrote:
| > | On Wed, Feb 10, 2010 at 07:31:49PM -0600, Dirk Eddelbuettel wrote:
| [...]
| > | > Could you try a build without this 'make check; make benchmark' step ?
| > | 
| > | You should be able to do this test in the sid chroot on paer - it
| > | should be practically identical to the buildd environment. If you have
| > | any arch-specific questions, debian-hppa is a good place to ask.
| > 
| > Could you please install libboost-test-dev -- the rest of the build-deps
| > seems covered:
| > 
| >debhelper (>= 7.0), autoconf, automake1.7, texinfo, libboost-dev (>= 
1.34.0), libboost-test-dev (>= 1.34.0), g++ (>= 4:4.1.1-15)
| 
| Sure - looks like automake1.7 was missing too. I also upgraded the
| chroot.

Yes, sorry, I meant the sid chroot. Many thanks. (And automake is a
currently-commented-out leftover from when we need to run automake when
building from svn; that wasn't binding -- but good catch.)

Dirk

-- 
  Registration is open for the 2nd International conference R / Finance 2010
  See http://www.RinFinance.com for details, and see you in Chicago in April!



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



Bug#569269: youtube-dl: Currently fails to download, or even retrieve the video url

2010-02-10 Thread TheGZeus
Package: youtube-dl
Version: 2009.09.13-1
Severity: grave
Justification: renders package unusable

Fails to retrieve the video, reporting an error as though the video were no 
longer available at all.
Possible change to the obfuscation youtube uses, unsure if upstream is aware of 
the issue.
Conkeror's 'scraper' is still able to download videos with no trouble in all 
formats, so the change must be in an area that youtube-dl uses, but Conkeror 
does not.
Suggestion: Use a similar system to Conkeror (which is fairly simple, according 
to the developer who wrote it).

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

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

Versions of packages youtube-dl depends on:
ii  python2.5.4-9An interactive high-level object-o

youtube-dl recommends no packages.

youtube-dl suggests no packages.

-- no debconf information



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



Bug#569198: FTBFS [hppa] - free(): invalid pointer: 0x0093e938

2010-02-10 Thread dann frazier
[cc'ing debian-admin as an fyi]

On Wed, Feb 10, 2010 at 08:10:54PM -0600, Dirk Eddelbuettel wrote:
> 
> On 10 February 2010 at 18:50, dann frazier wrote:
> | On Wed, Feb 10, 2010 at 07:31:49PM -0600, Dirk Eddelbuettel wrote:
[...]
> | > Could you try a build without this 'make check; make benchmark' step ?
> | 
> | You should be able to do this test in the sid chroot on paer - it
> | should be practically identical to the buildd environment. If you have
> | any arch-specific questions, debian-hppa is a good place to ask.
> 
> Could you please install libboost-test-dev -- the rest of the build-deps
> seems covered:
> 
>debhelper (>= 7.0), autoconf, automake1.7, texinfo, libboost-dev (>= 
> 1.34.0), libboost-test-dev (>= 1.34.0), g++ (>= 4:4.1.1-15)

Sure - looks like automake1.7 was missing too. I also upgraded the
chroot.




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



Bug#569020: coreutils: failure of install-C test on GNU/kFreeBSD

2010-02-10 Thread Michael Stone

On Wed, Feb 10, 2010 at 11:19:27PM +, Pádraig Brady wrote:

That test should pass irrespective of inotify availability.
I've spun it for 20 mins now on linux with inotify disabled without issue:

while true; do
  (cd tests && make check TESTS=tail-2/inotify-hash-abuse2 VERBOSE=yes) || break
done

Can you reproduce and perhaps get a backtrace?


FAIL: tail-2/inotify-hash-abuse2 (exit: 1)
==

tail: `f' has become inaccessible: No such file or directory
./tail-2/inotify-hash-abuse2: line 34: kill: (13733) - No such process
./tail-2/inotify-hash-abuse2: line 40: kill: (13733) - No such process


As far as I read the test, there will always be a race where f could be 
temporarily unavailable between the mv and the touch. 

I forget what it's supposed to be testing for, but to close that 
race, I think


touch g
mv g f

would be better, no? 


Mike Stone




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



Bug#539919: emacs23-gtk: font fixed (emacs -fn fixed) broken

2010-02-10 Thread Vincent Lefevre
severity 539919 grave
thanks

Raising to grave since emacs23 is so much broken that it isn't usable
with its own interface (which is a must to be able to use the mouse):
the default font is very ugly, and various ways to set the font don't
work as described (making font display still ugly). Now that emacs22
will be removed from squeeze, there would be no workaround.

Here's another way to reproduce the problem:
1. emacs -q
2. Choose Options -> Set Default Font...
3. Select Fixed Regular 11. The preview doesn't look so bad.
   See attached snapshot "emacs23-pick-a-font.png".
4. Click on OK.

Result: the font is horrible and the emacs window doesn't even fit
in my screen. See attached snapshot "emacs23-fixed11.png".

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

Bug#569198: FTBFS [hppa] - free(): invalid pointer: 0x0093e938

2010-02-10 Thread Dirk Eddelbuettel

On 10 February 2010 at 18:50, dann frazier wrote:
| On Wed, Feb 10, 2010 at 07:31:49PM -0600, Dirk Eddelbuettel wrote:
| > 
| > Hi Dann,
| 
| hey Dirk!
| 
| > 
| > On 10 February 2010 at 11:12, dann frazier wrote:
| > | Source: quantlib
| > | Version: 1.0.0~20100112-1
| > | Severity: serious
| > |
| > | >From a recent build attempt on hppa:
| > | [...]
| > | ==
| > | Testing QuantLib 1.0b1
| > | ==
| > | *** glibc detected *** 
/build/buildd-quantlib_1.0.0~20100112-1-hppa-H12qa6/quantlib-1.0.0~20100112/test-suite/.libs/lt-quantlib-test-suite:
 free(): invalid pointer: 0x0093e938 ***
| > | make[1]: *** wait: No child processes.  Stop.
| > | make[1]: *** Waiting for unfinished jobs
| > | make[1]: *** wait: No child processes.  Stop.
| > | E: Caught signal 'Terminated': terminating immediately
| > | make[3]: *** wait: No child processes.  Stop.
| > | make[3]: *** Waiting for unfinished jobs
| > | make[3]: *** wait: No child processes.  Stop.
| > | make: *** [test-stamp] Terminated
| > | make[2]: *** [check-am] Error 2
| > | Build killed with signal TERM after 300 minutes of inactivity
| >  
| > 300 minutes is a long time. What do you suggest we do?
| 
| It would probably be useful to see what is causing glibc to detect an
| invalid pointer in a call to free(). This has been consistent in the
| last 3 build attempts, and it maybe related to this hang. I don't have
| any reason to believe glibc is detecting a false positive here.
| 
| >  I already skip the
| > tests here in debian/rules:
| > 
| >cpu  := $(shell dpkg-architecture -qDEB_HOST_GNU_CPU)
| > 
| >[...]
| > 
| >test:test-stamp 
| >test-stamp: build-stamp
| >ifeq "$(findstring $(cpu), m68k arm armeb mipsel mips)" ""
| >-LD_LIBRARY_PATH=$(CURDIR)/ql/.libs $(MAKE) check
| >-LD_LIBRARY_PATH=$(CURDIR)/ql/.libs $(MAKE) benchmark
| >endif
| >touch test-stamp
| > 
| > It may make sense to add hppa to the list. What do you think?  Could you try
| > a build without this 'make check; make benchmark' step ?
| 
| You should be able to do this test in the sid chroot on paer - it
| should be practically identical to the buildd environment. If you have
| any arch-specific questions, debian-hppa is a good place to ask.

Could you please install libboost-test-dev -- the rest of the build-deps
seems covered:

   debhelper (>= 7.0), autoconf, automake1.7, texinfo, libboost-dev (>= 
1.34.0), libboost-test-dev (>= 1.34.0), g++ (>= 4:4.1.1-15)

Dirk


-- 
  Registration is open for the 2nd International conference R / Finance 2010
  See http://www.RinFinance.com for details, and see you in Chicago in April!



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



Bug#569213: xserver-xorg-video-intel: Black bars across screen when using various browsers such as Firefox and Chrome

2010-02-10 Thread Frank McCormick
On Wed, 10 Feb 2010 22:45:18 +0100
Brice Goglin  wrote:

> Frank McCormick wrote:
> > Package: xserver-xorg-video-intel
> > Version: 2:2.9.1-2
> > Severity: important
> >
> > The last intel driver produces random black bars across the
> > screen when using Firefox or Chrome.  This computer uses Intel
> > on-board video 855
> >
> >   
> 
> 
> Can you try with KMS enabled ? You don't seem to be using it now.
  
   Son of a gun! That **seems** to have fixed it. What's the impliction
here? Intel video only works well with KMS ?? Or it is hit and miss ?
I'll have to surf some more..but it appears to be OK now.





-- 
Frank



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



Bug#569198: FTBFS [hppa] - free(): invalid pointer: 0x0093e938

2010-02-10 Thread dann frazier
On Wed, Feb 10, 2010 at 07:31:49PM -0600, Dirk Eddelbuettel wrote:
> 
> Hi Dann,

hey Dirk!

> 
> On 10 February 2010 at 11:12, dann frazier wrote:
> | Source: quantlib
> | Version: 1.0.0~20100112-1
> | Severity: serious
> |
> | >From a recent build attempt on hppa:
> | [...]
> | ==
> | Testing QuantLib 1.0b1
> | ==
> | *** glibc detected *** 
> /build/buildd-quantlib_1.0.0~20100112-1-hppa-H12qa6/quantlib-1.0.0~20100112/test-suite/.libs/lt-quantlib-test-suite:
>  free(): invalid pointer: 0x0093e938 ***
> | make[1]: *** wait: No child processes.  Stop.
> | make[1]: *** Waiting for unfinished jobs
> | make[1]: *** wait: No child processes.  Stop.
> | E: Caught signal 'Terminated': terminating immediately
> | make[3]: *** wait: No child processes.  Stop.
> | make[3]: *** Waiting for unfinished jobs
> | make[3]: *** wait: No child processes.  Stop.
> | make: *** [test-stamp] Terminated
> | make[2]: *** [check-am] Error 2
> | Build killed with signal TERM after 300 minutes of inactivity
>  
> 300 minutes is a long time. What do you suggest we do?

It would probably be useful to see what is causing glibc to detect an
invalid pointer in a call to free(). This has been consistent in the
last 3 build attempts, and it maybe related to this hang. I don't have
any reason to believe glibc is detecting a false positive here.

>  I already skip the
> tests here in debian/rules:
> 
>cpu:= $(shell dpkg-architecture -qDEB_HOST_GNU_CPU)
> 
>[...]
> 
>test:  test-stamp 
>test-stamp: build-stamp
>ifeq "$(findstring $(cpu), m68k arm armeb mipsel mips)" ""
>  -LD_LIBRARY_PATH=$(CURDIR)/ql/.libs $(MAKE) check
>  -LD_LIBRARY_PATH=$(CURDIR)/ql/.libs $(MAKE) benchmark
>endif
>  touch test-stamp
> 
> It may make sense to add hppa to the list. What do you think?  Could you try
> a build without this 'make check; make benchmark' step ?

You should be able to do this test in the sid chroot on paer - it
should be practically identical to the buildd environment. If you have
any arch-specific questions, debian-hppa is a good place to ask.

-- 
dann frazier




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



Bug#546281: [ia32-libs]

2010-02-10 Thread Marek Straka
Package: ia32-libs
Version: 20090808

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

Skype 2.1 does not start anymore. Please do that.

--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.32-trunk-amd64

Debian Release: squeeze/sid
  500 testing www.debian-multimedia.org 
  500 testing gd.tuwien.ac.at 



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



Bug#460331: still have this problem on kfreebsd-i386

2010-02-10 Thread Craig Small
On Thu, Feb 11, 2010 at 01:48:07AM +0100, Peter Palfrader wrote:
> | wea...@field:~$ cat /proc/uptime ; grep 'cpu ' /proc/stat ; cat /proc/uptime
> | 188847.15 673325.21
> | cpu 119994 4473784 3539322 2746621
> | 188847.16 673325.21
> | wea...@field:~$ getconf CLK_TCK
> | 60
I calculate 57 which is close enough to 60, though not close enough for
procps:
  case   58 ...   61 :  Hertz =   60; break;

However you were getting 45!
On  linux, we just use ELF notes and this problem goes away.  If there
is something equivalent in freeBSD then I could use that as well.

alternatively there is sysconf(_SC_CLK_TCK) which gives a value.

> [Is this in any way related to ps showing completely broken timestamps
> in the START column?  If not and there isn't a bug report about that
> that ought to get filed too.]
That bug was reported in procps but was moved to kfreebsd-7 package
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=344546
It boils down to that the freebsd procfs is incomplete.

 - Craig
-- 
Craig Small  GnuPG:1C1B D893 1418 2AF4 45EE  95CB C76C E5AC 12CA DFA5
http://www.enc.com.au/ csmall at : enc.com.au
http://www.debian.org/  Debian GNU/Linux, software should be Free 



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



Bug#569268: examples symlink does not work on upgrade

2010-02-10 Thread Joey Hess
Package: collectd
Version: 4.9.1-2
Severity: normal

  * debian/collectd.links:
- Symlink /u/s/d/collectd/examples to /u/s/d/collectd-core/examples.

I appreciate the attempt to symlink /usr/share/doc/collectd/examples to
collectd-core, since my webserver has the directory in its configuration
to enable the web UI. However, the attempt failed, the directory is left
as an empty directory on both systems I've checked.

dpkg will refuse to replace a directory with a symlink. Typically postinst
scripts are used to deal with that.

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

Kernel: Linux 2.6.31-1-686 (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 collectd depends on:
ii  collectd-core 4.9.1-2statistics collection and monitori
ii  libc6 2.10.2-5   Embedded GNU C Library: Shared lib
ii  librrd4   1.4.2-1+b1 time-series data storage and displ

Versions of packages collectd recommends:
ii  iptables   1.4.6-2   administration tools for packet fi
ii  libatk1.0-01.28.0-1  The ATK accessibility toolkit
ii  libc6  2.10.2-5  Embedded GNU C Library: Shared lib
ii  libcairo2  1.8.8-2   The Cairo 2D vector graphics libra
ii  libcurl3-gnutls7.19.7-1  Multi-protocol file transfer libra
ii  libdbi00.8.2-3   Database Independent Abstraction L
ii  libdbus-1-31.2.20-2  simple interprocess messaging syst
ii  libdbus-glib-1-2   0.84-1simple interprocess messaging syst
ii  libesmtp5  1.0.4-4   LibESMTP SMTP client library
ii  libfontconfig1 2.8.0-2   generic font configuration library
ii  libfreetype6   2.3.11-1  FreeType 2 font engine, shared lib
ii  libgcrypt111.4.5-2   LGPL Crypto library - runtime libr
ii  libglib2.0-0   2.22.4-1  The GLib library of C routines
ii  libgtk2.0-02.18.6-1  The GTK+ graphical user interface 
ii  libhal10.5.14-2  Hardware Abstraction Layer - share
pn  libmemcached4  (no description available)
ii  libmysqlclient16   5.1.43-1  MySQL database client library
ii  libnotify1 [libnotify1 0.4.5-1   sends desktop notifications to a n
ii  libopenipmi0   2.0.16-1.1Intelligent Platform Management In
ii  liboping0  1.3.4-1   C/C++ library to generate ICMP ECH
ii  libpango1.0-0  1.26.2-1  Layout and rendering of internatio
ii  libpcap0.8 1.0.0-6   system interface for user-level pa
ii  libperl5.105.10.1-11 shared Perl library
ii  libpq5 8.4.2-2   PostgreSQL C client library
ii  librrd41.4.2-1+b1time-series data storage and displ
ii  libsensors41:3.1.2-1 library to read temperature/voltag
ii  libsnmp15  5.4.2.1~dfsg-5+b1 SNMP (Simple Network Management Pr
ii  libssl0.9.80.9.8k-8  SSL shared libraries
pn  libtokyotyrant1(no description available)
ii  libupsclient1  2.4.1-3.2 network UPS tools - client library
ii  libvirt0   0.7.6-1   library for interfacing with diffe
ii  libxml22.7.6.dfsg-2+b1   GNOME XML library
pn  libyajl1   (no description available)
ii  python2.5  2.5.5-2   An interactive high-level object-o

collectd suggests no packages.

-- debconf-show failed

-- 
see shy jo


signature.asc
Description: Digital signature


Bug#569267: FTBFS: Files expat.cmxa and stdlib.cmxa make inconsistent assumptions over implementation Callback

2010-02-10 Thread Cyril Brulebois
Source: cduce
Version: 0.5.3-2
Severity: serious
Justification: FTBFS

Hi,

your package FTBFS for the +b2 binNMU round:
| Build cduce
| File "_none_", line 1, characters 0-1:
| Error: Files /usr/lib/ocaml/expat/expat.cmxa and /usr/lib/ocaml/stdlib.cmxa
|make inconsistent assumptions over implementation Callback
| make[1]: *** [cduce] Error 2
| make[1]: Leaving directory 
`/build/buildd-cduce_0.5.3-2-amd64-c1tXxR/cduce-0.5.3'
| make: *** [build-stamp] Error 2

Full build logs:
  https://buildd.debian.org/status/package.php?suite=unstable&p=cduce

Mraw,
KiBi.



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



Bug#569266: FTBFS: twisted.python.dist module not found.

2010-02-10 Thread Cyril Brulebois
Source: twisted-runner
Version: 9.0.0-1
Severity: serious
Justification: FTBFS

Hi,

your package FTBFS for the +b1 binNMU round (Build extension for
python2.6) this way:
| touch build-python2.5
| python2.6 setup.py build
| twisted.python.dist module not found.  Make sure you have installed the 
Twisted core package before attempting to install any other Twisted projects.
| make: *** [build-python2.6] Error 1

Full build logs:
  https://buildd.debian.org/status/package.php?suite=unstable&p=twisted-runner

Mraw,
KiBi.



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



Bug#569198: FTBFS [hppa] - free(): invalid pointer: 0x0093e938

2010-02-10 Thread Dirk Eddelbuettel

Hi Dann,


On 10 February 2010 at 11:12, dann frazier wrote:
| Source: quantlib
| Version: 1.0.0~20100112-1
| Severity: serious
|
| >From a recent build attempt on hppa:
| [...]
| ==
| Testing QuantLib 1.0b1
| ==
| *** glibc detected *** 
/build/buildd-quantlib_1.0.0~20100112-1-hppa-H12qa6/quantlib-1.0.0~20100112/test-suite/.libs/lt-quantlib-test-suite:
 free(): invalid pointer: 0x0093e938 ***
| make[1]: *** wait: No child processes.  Stop.
| make[1]: *** Waiting for unfinished jobs
| make[1]: *** wait: No child processes.  Stop.
| E: Caught signal 'Terminated': terminating immediately
| make[3]: *** wait: No child processes.  Stop.
| make[3]: *** Waiting for unfinished jobs
| make[3]: *** wait: No child processes.  Stop.
| make: *** [test-stamp] Terminated
| make[2]: *** [check-am] Error 2
| Build killed with signal TERM after 300 minutes of inactivity
 
300 minutes is a long time. What do you suggest we do?  I already skip the
tests here in debian/rules:

   cpu  := $(shell dpkg-architecture -qDEB_HOST_GNU_CPU)

   [...]

   test:test-stamp 
   test-stamp: build-stamp
   ifeq "$(findstring $(cpu), m68k arm armeb mipsel mips)" ""
   -LD_LIBRARY_PATH=$(CURDIR)/ql/.libs $(MAKE) check
   -LD_LIBRARY_PATH=$(CURDIR)/ql/.libs $(MAKE) benchmark
   endif
   touch test-stamp

It may make sense to add hppa to the list. What do you think?  Could you try
a build without this 'make check; make benchmark' step ?

Dirk
 

-- 
  Registration is open for the 2nd International conference R / Finance 2010
  See http://www.RinFinance.com for details, and see you in Chicago in April!



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



Bug#569265: autoconf2.13: should be rebuilt with new debhelper to get trigger support

2010-02-10 Thread Jonathan Nieder
Package: autoconf2.13
Version: 2.13-59
Severity: minor

Hi Ben,

When install autoconf2.13 to see whether it is necessary to keep
Build-conflicting with it, I was met with an unpleasant message:

| Configurazione di autoconf2.13 (2.13-59)...
| Ignoring install-info called from maintainer script
| The package autoconf2.13 should be rebuilt with new debhelper to get trigger 
support

Not urgent at all, but thought you might like to know.

Regards,
Jonathan



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



Bug#569264: automake1.4: should be rebuilt with new debhelper to get trigger support

2010-02-10 Thread Jonathan Nieder
Package: automake1.4
Version: 1:1.4-p6-13
Severity: minor

Hi Eric,

When installing automake1.4 to check if it is still necessary to
Build-Conflict on it for new packages, I was met with an unpleasant
warning:

| Configurazione di automake1.4 (1:1.4-p6-13)...
| Ignoring install-info called from maintainer script
| The package automake1.4 should be rebuilt with new debhelper to get trigger 
support

Not urgent at all, but thought you might like to know.

Regards,
Jonathan



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



Bug#569263: python-moinmoin: Missing documentation (UPDATE.html)

2010-02-10 Thread Sam Morris
Package: python-moinmoin
Version: 1.9.1-1
Severity: important

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

The following files from the docs directory of the upstream tarball are
missing:

README_FIRST
UPDATE.html

The UPDATE.html file contains the best instructions for how to update
from one release of moinmoin to another--quite important now that that
information has been removed from the underlay pages!

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

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

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

iEYEARECAAYFAktzW/MACgkQshl/216gEHjpigCdG60Kk2t4EtjZ1tJbbCAtQJHh
o64An3J619Y3sE4ncNpDwd8Gvbv4glt+
=Rn1p
-END PGP SIGNATURE-



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



Bug#569262: FTBFS: make[2]: runhaskell: Command not found

2010-02-10 Thread Cyril Brulebois
Source: agda-stdlib
Version: 0.3-1
Severity: serious
Justification: FTBFS

Hi,

your package FTBFS on all buildds:
| dh_auto_build
| make[2]: Entering directory 
`/build/buildd-agda-stdlib_0.3-1-hppa-YgXNuj/agda-stdlib-0.3'
| runhaskell GenerateEverything.hs
| make[2]: runhaskell: Command not found

Full build logs:
  https://buildd.debian.org/status/package.php?suite=unstable&p=agda-stdlib

Mraw,
KiBi.



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



Bug#569080: redmine: Target version combo box corrupted

2010-02-10 Thread Jérémy Lal
On 11/02/2010 00:16, Nick Semenkovich wrote:
> The patch also works on 0.9.1-1
> 
> "add version" does nothing both before and after the patch.

i'm stuck on that one, in fact ALL POST requests returns error 500,
and there is no backtrace.
I'm going to diff against rails 2.3... not sure i'll find what's wrong.

Any help ?



signature.asc
Description: OpenPGP digital signature


Bug#566513: [rle...@codelibre.net: [buildd-tools-devel] Bug#566513: Bug#566513: schroot: GNU/kFreeBSD support]

2010-02-10 Thread Roger Leigh
On Wed, Feb 10, 2010 at 10:08:18PM +0100, Emmanuel Bouthenot wrote:
> Hi Roger,
> 
> > I'm looking for testing of the following FreeBSD and GNU/kFreeBSD
> > portability work for for schroot.  I can't test this myself, so any
> > testing and feedback you could provide would be greatly appreciated.
> 
> I've tried to build it (on kfreebsd-i386 with debuild) but it failed
> with the following error:
> make[5]: *** No rule to make target `copyfiles', needed by `all-am'.  Stop.

I've now uploaded a new copy of the tarball
  http://www.codelibre.net/~rleigh/schroot-1.5.0.tar.bz2
which contains all the files.  Any testing of this would be greatly
appreciated.


Many thanks,
Roger

-- 
  .''`.  Roger Leigh
 : :' :  Debian GNU/Linux http://people.debian.org/~rleigh/
 `. `'   Printing on GNU/Linux?   http://gutenprint.sourceforge.net/
   `-GPG Public Key: 0x25BFB848   Please GPG sign your mail.


signature.asc
Description: Digital signature


Bug#569260: FTBFS: expression was expected of type string -> string -> string

2010-02-10 Thread Stéphane Glondu
tags 569260 + patch
thanks

Cyril Brulebois a écrit :
> your package FTBFS on all archs for +b1 (Recompile with OCaml 3.11.2)
> this way:
> | ocamlc.opt -I ptests -dtypes -vmthread -g -o bin/ptests.byte \
> | unix.cma threads.cma str.cma dynlink.cma 
> ptests/ptests_config.ml ptests/ptests.ml
> | File "ptests/ptests.ml", line 57, characters 6-15:
> | Error: This expression has type
> |  ?temp_dir:string -> string -> string -> string
> |but an expression was expected of type string -> string -> string
> | make[2]: *** [bin/ptests.byte] Error 2
> 
> Full build logs:
>   https://buildd.debian.org/status/package.php?suite=unstable&p=frama-c

Oh, right. I forgot to report that and remove frama-c from the binNMUs.
There is a trivial fix. I'll let Mehdi handle this.


Cheers,

-- 
Stéphane
--- frama-c-20090902+beryllium+dfsg.orig/ptests/ptests.ml
+++ frama-c-20090902+beryllium+dfsg/ptests/ptests.ml
@@ -54,7 +54,7 @@
   fun a b -> let r = temp_file a b in
 	cygpath r
 else
-  temp_file
+  (fun x y -> temp_file x y)
 end
 
 let default_env var value =


Bug#566513: [rle...@codelibre.net: [buildd-tools-devel] Bug#566513: Bug#566513: schroot: GNU/kFreeBSD support]

2010-02-10 Thread Roger Leigh
On Wed, Feb 10, 2010 at 10:08:18PM +0100, Emmanuel Bouthenot wrote:
> Hi Roger,
> 
> > I'm looking for testing of the following FreeBSD and GNU/kFreeBSD
> > portability work for for schroot.  I can't test this myself, so any
> > testing and feedback you could provide would be greatly appreciated.
> 
> I've tried to build it (on kfreebsd-i386 with debuild) but it failed
> with the following error:
> make[5]: *** No rule to make target `copyfiles', needed by `all-am'.  Stop.

I made the distribution of that file platform-specific as well as
installation.  D'oh!  I'll get a fixed tarball uploaded tomorrow.


Thanks for testing.  I'll send out another mail once I've fixed it.



Regards,
Roger

-- 
  .''`.  Roger Leigh
 : :' :  Debian GNU/Linux http://people.debian.org/~rleigh/
 `. `'   Printing on GNU/Linux?   http://gutenprint.sourceforge.net/
   `-GPG Public Key: 0x25BFB848   Please GPG sign your mail.


signature.asc
Description: Digital signature


Bug#560707: evolution: segfault adding task from list view

2010-02-10 Thread Nick Jenkins
Sounds like this upstream bug:
https://bugzilla.gnome.org/show_bug.cgi?id=599627

It's fixed in Evo 2.28.2+ or 2.30.

-- All the best,
Nick.




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



Bug#546209: Bug#498125 closed by Sandro Tosi (Package removed from Debian unstable)

2010-02-10 Thread W. Martin Borgert
reopen 546209
reassign 546209 emacs23
thanks

According to problem description, this is an Emacs 23 issue.



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



Bug#567747: patches that helped me with this or a similar problem

2010-02-10 Thread Xavi Drudis Ferran
Hello.

Sorry if I send this to the wrong place, but I started commenting on
another bug (#534422), now I no longer think it is appropiate there and I
don't know if it belongs here, but it's late, I'm half asleep and yesterday
I already felt asleep before finding the right place to post.

2.6.26 from a clean lenny install worked, and the I just upgraded to
sid, with some misunderstnading on my part about udev and the kernel,
that I finally sorted out.

I've also being unable to boot with KMS on my laptop, with
linux-image-2.6.32-trunk-686 2.6.32-5 . The laptop is some model of
the brand Ahtec, forgot which, but it is a clone of an AOpen 1551 and
a label at the bottom says so.  I can dig up old papers if you need
more info. It has a 1.5 GHz pentium M and intel 855 GME graphics. The
panel native resolution is 1280x800, and I set it in Grub-pc after
using its 915resolution module.

It showed the console on an external monitor but it would not display on
the laptop panel. If I booted in text mode then it showed text, but X
would not start, and the Xorg log said LVDS1 was disconnected. It could
be fixed by closing and opening the laptop lid twice before re/starting X.
But then Ctrl-Alt-F1 did not work. It just removed the cursor from screen
until I pressed Ctrl-Alt-F7.
So it apparently was something about guessing wrong the initial lid state
in inteldrmfb (i915 kernel module).
In the kernel source I found some quirk provision for an Aspire One which
apparently had the same problem, and I just copypasted it for my laptop.
This is patch i915-aopen1551.diff
It works for me (it no longer requires me to open and close the laptop
before X) but I don't know if the match with DMI info is the best one.
It might be too specific or too general (is BOARD_SERIAL supposed to
be unique for each board manufactured, like a CPU UUID, or just identifies
the board model?). I'll attach the output of dmidecode, but it does not
look very explicit to me.

Then I did another patch (forcelvds.diff) to simply accept a kernel
boot parameter to tell it it should consider the LVDS1 connected at
boot regardless of the lid state it thinks it's in just in case the
previous quirk does not match all cases. With this patch I can pass
i915.forcelvds=1 in the kernel command line and it also works for me
like with the i915_aopen1551.diff. Its the same with either patch or both.

But with either of those I have to boot in text mode (i.e. without
video=i915 in the kernel command line).

If I put video=i915 then i get blank screen and the console or X only
in the external monitor. I also get /dev/fb0 and
/dev/fb1 and the messages below in syslog .
This happens both with and without those
patches, i.e. with the debian kernel too. It's the same also with this
patch http://lists.freedesktop.org/archives/intel-gfx/2009-December/004979.html
(I tried it because i2cdetect output looked strange).

# grep fb /var/log/syslog
Feb  9 23:21:54 ideafix kernel: [0.513612] efifb: probing for efifb
Feb  9 23:21:54 ideafix kernel: [0.513708] efifb: framebuffer at 
0xe800, mapped to 0xdff0, using 4000k, total 4000k
Feb  9 23:21:54 ideafix kernel: [0.513712] efifb: mode is 1280x800x32, 
linelength=5120, pages=1
Feb  9 23:21:54 ideafix kernel: [0.513714] efifb: scrolling: redraw
Feb  9 23:21:54 ideafix kernel: [0.513719] efifb: Truecolor: size=8:8:8:8, 
shift=24:16:8:0
Feb  9 23:21:54 ideafix kernel: [0.618139] fb0: EFI VGA frame buffer device
Feb  9 23:21:54 ideafix kernel: [2.183638] fb: conflicting fb hw usage 
inteldrmfb vs EFI VGA - removing generic driver
Feb  9 23:21:54 ideafix kernel: [2.183836] fb1: inteldrmfb frame buffer 
device

So it looks that efifb is finding the laptop panel already configured by
grub, and the efifb gets hold of it, and it won't let go when i915 (inteldrmfb)
tries to open it, so i915 uses the external monitor for an output (and I think
it hangs if it is not connected).

If I compile a kernel with either or both patches, without vesafb or
efifb and with i915, intel_agpgart, drm etc. linked in (), not as
modules (not ) , and without initrd (I don't think initrd matters, but
I never use it in custom kernels) then inteldrmfb gets the laptop
panel, I can see the console in it, X works fine and all is well.

Is there away to tell the kernel to never activate efifb or vesafb
and load i915 form initrd instead ? Or is there a way to unbind it
from all outputs before loading inteldrmfb ? I'd prefer to use debian kernels
than rebuild them at each upgrade. And I guess that compiling
in all framebuffers in a distribution kernel is a little contrary to the
idea of initrd, keeping the kernel small and all that.

It should be obvious by now, but I have no clue about kernel programming,
so don't trust the patches too much (at least until someone knowledgeable
looks at them). It's more a way to describe a problem
by something that fixes it than a good fix. They might be incorrect or
undesirable or redundant or ...

Tha

Bug#569261: FTBFS: failed to change mode of debian/anyremote-data/…

2010-02-10 Thread Cyril Brulebois
Package: anyremote
Version: 5.1.1+dfsg-2
Severity: serious
Justification: FTBFS

Hi Philipp,

your package FTBFS on the buildds, apparently because you try to do some
stuff on Arch: all packages; this failure is probably trivially
reproducible by using -B.

Log excerpt:
| dh_install -panyremote-data
| dh_install: No packages to build.
| chmod -vf a+x debian/anyremote-data/usr/share/anyremote/cfg-data/Utils/*.sh
| failed to change mode of 
`debian/anyremote-data/usr/share/anyremote/cfg-data/Utils/*.sh' to  
(-)
| make[1]: *** [override_dh_install] Error 1

Full build logs:
  https://buildd.debian.org/status/package.php?suite=unstable&p=anyremote

Mraw,
KiBi.



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



Bug#569242: libtiff4-dev: please depend on libjpeg-dev, not libjpeg62-dev

2010-02-10 Thread Jay Berkenbilt

Ignore my previous messagemy pbuilder update had failed and I still
had the old libjpeg62-dev and libjpeg8-dev.  I'll rebuild with an
updated chroot that has your recently changed jpeg packages.  Then I'll
upload.


Jay Berkenbilt  wrote:

> Bill Allombert  wrote:
>
>> libtiff4-dev depends on libjpeg62-dev. Please change it to depends on
>> libjpeg-dev instead. Please also change the Build-Dependency to be on
>> libjpeg-dev and not libjpeg62-dev.
>
> I've done this, but doing so makes the package uninstallable at the
> moment without having to uninstall a bunch of other things.  In light of
> the discussion on debian-devel, should I go ahead and upload now?
> libtiff4-dev is relatively early in the dependency graph, so I'd think
> it should be one of the first to be uploaded.
>
> --Jay



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



Bug#569260: FTBFS: expression was expected of type string -> string -> string

2010-02-10 Thread Cyril Brulebois
Source: frama-c
Version: 20090902+beryllium+dfsg-3
Severity: serious
Justification: FTBFS

Hi,

your package FTBFS on all archs for +b1 (Recompile with OCaml 3.11.2)
this way:
| ocamlc.opt -I ptests -dtypes -vmthread -g -o bin/ptests.byte \
| unix.cma threads.cma str.cma dynlink.cma ptests/ptests_config.ml 
ptests/ptests.ml
| File "ptests/ptests.ml", line 57, characters 6-15:
| Error: This expression has type
|  ?temp_dir:string -> string -> string -> string
|but an expression was expected of type string -> string -> string
| make[2]: *** [bin/ptests.byte] Error 2

Full build logs:
  https://buildd.debian.org/status/package.php?suite=unstable&p=frama-c

Mraw,
KiBi.



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



Bug#454374: Bug#498125 closed by Sandro Tosi (Package removed from Debian unstable)

2010-02-10 Thread W. Martin Borgert
These bugs (see "To:" field) seem really to be solved
or unreproducable in Emacs 23. Please check yourself.



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



Bug#569259: x11proto-dri2: Please package new version 2.2

2010-02-10 Thread Andres Mejia
Package: x11proto-dri2
Version: 2.1-1
Severity: wishlist

Please package x11proto-dri2 2.2. libvdpau 0.4 has a feature that needs
dri2proto >= 2.2.

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

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



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



Bug#460331: still have this problem on kfreebsd-i386

2010-02-10 Thread Peter Palfrader
On Thu, 11 Feb 2010, Craig Small wrote:

> On Wed, Feb 10, 2010 at 02:33:52PM +0100, Peter Palfrader wrote:
> > I upgraded procps on field.debian.org in the hope of appeasing ps (and
> > this nagios) but no such luck:
> kfreebsd has unbelievably broken procfs so it could be a symptom of
> that. Unforuntately the bugs about procfs are several years old.
> 
> Can you send me the output of
> cat /proc/uptime ; grep 'cpu ' /proc/stat ; cat /proc/uptime
> 
> also
> getconf CLK_TCK

Sure:

| wea...@field:~$ cat /proc/uptime ; grep 'cpu ' /proc/stat ; cat /proc/uptime
| 188847.15 673325.21
| cpu 119994 4473784 3539322 2746621
| 188847.16 673325.21
| wea...@field:~$ getconf CLK_TCK
| 60


> That will at least tell me if we're getting sensible numbers first.
> Jiffies is calculated by adding the 7 numbers of the cpu line and
> dividing it by the average of the two first number of the uptime.
> On my amd64 it was 102 which is close enough to 100, which is what
> CLK_TCK gives me.

[Is this in any way related to ps showing completely broken timestamps
in the START column?  If not and there isn't a bug report about that
that ought to get filed too.]
-- 
   |  .''`.  ** Debian GNU/Linux **
  Peter Palfrader  | : :' :  The  universal
 http://www.palfrader.org/ | `. `'  Operating System
   |   `-http://www.debian.org/



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



Bug#569258: obex-data-server: segfault when trying to send a file

2010-02-10 Thread Darren Salt
Package: obex-data-server
Version: 0.4.5-1
Tags: patch

When trying to send a file to a phone (transfer initiated by the phone),
obex-data-server was reliably segfaulting. A debuggable build showed that
this was occurring in strcmp(), called from ods-obex.c:1019, due to
obex_content->type being NULL.

With that fixed, transfer was being reported as "not allowed"; this turned
out to be because both ->type and ->local were NULL. Setting ->local to the
full path of the file fixes this, allowing normal completion of the transfer.

(These problems were observed with two different Samsung phones.

-- 
| Darren Salt| linux at youmustbejoking | nr. Ashington, | Doon
| using Debian GNU/Linux | or ds,demon,co,uk| Northumberland | Army
| + This comment has been censored.

How do frogs die? They ker-mit suicide...



obex-samsung.patch
Description: Binary data


Bug#569227: ncurses-base: break handling of ctrl-c in xterm and rxvt using bash

2010-02-10 Thread Helmut Grohne
Hi Sven,

thanks for your very quick reply.

On Wed, Feb 10, 2010 at 11:26:07PM +0100, Sven Joachim wrote:
> > I have still some xterms that are not affected open. Those were started
> > in 2009.
> Before or after you upgraded ncurses-base?  That package has not been
> touched for more than five months.

Unfortunately I don't have any idea when I started the last working
xterm. But I probably restarted some xterm within the past four months,
so we can assume that ncurses-base is not the causing package.

> > On a broken xterm it looks like:
> > speed 38400 baud; line = 0;
> > -brkint -imaxbel
> 
> Here it looks exactly the same as in your "broken" xterm, and ^C works
> fine anyway.

Ok. This information is of no help then.

> > Using stty brkint imaxbel or stty sane does not solve the issue. Also
> > stty intr ^C does not help.
> 
> stty sane should remove the "-brkint -imaxbel".  Does it?

It does.

> > Do you have any other ideas for debugging the issue?
> 
> Not really, but you could send the output of 'env' and

Uhm. I don't really like to show my complete environment. I therefore
give a diff from working to broken:
-SHLVL=5
+SHLVL=20
-WINDOWID=20971535
+WINDOWID=12582927
-XTERM_LOCALE=de_DE
+XTERM_LOCALE=C

Here are some variables that might be of interest:
LANG=C
LANGUAGE=C
LC_CTYPE=de_DE
(no other LC_* is set)
TERM=xterm
WINDOWPATH=7
XTERM_SHELL=/bin/bash
XTERM_VERSION=XTerm(253)

> 'xrdb -query | grep -i xterm'.  Do you see any differences between
> working and broken xterms?

The xrdb -query | grep -i xterm command has no output at all for me.

> > If you feel that I have assigned the bug report to the wrong package,
> > please reassign it to the correct package.
> 
> I feel it is assigned to the wrong package, but I have no idea what the
> right package could be.

Actually I didn't feel it was the right package either. However packages
like xterm, rxvt or bash seemed even more wrong.

> > Kernel: Linux 2.6.24.3
> 
> Ever thought of upgrading this two years old, totally unsupported kernel?

Yes, it is on my todo list for about a year. Unfortunately I really rely
on that system (well I shouldn't be running testing then ;-).
Additionally I experience bugs that cause data loss on reboots, so I
avoid the latter as hard as possible.

Helmut

PS: I will be unable to read mail for the extended weekend starting in
14 hours.



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



Bug#569242: libtiff4-dev: please depend on libjpeg-dev, not libjpeg62-dev

2010-02-10 Thread Jay Berkenbilt
Bill Allombert  wrote:

> libtiff4-dev depends on libjpeg62-dev. Please change it to depends on
> libjpeg-dev instead. Please also change the Build-Dependency to be on
> libjpeg-dev and not libjpeg62-dev.

I've done this, but doing so makes the package uninstallable at the
moment without having to uninstall a bunch of other things.  In light of
the discussion on debian-devel, should I go ahead and upload now?
libtiff4-dev is relatively early in the dependency graph, so I'd think
it should be one of the first to be uploaded.

--Jay



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



Bug#569257: preinst does not check for /var/log/dpkg/info/denyhosts.postrm before using it

2010-02-10 Thread Brian Murray
Package: denyhosts
Version: 2.6-6.1
Severity: normal
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu lucid

Binary package hint: denyhosts

In lucid alpha2 when installing denyhosts on a fresh system aptitude (or 
apt-get) shows an error form the preinst script:

/var/lib/dpkg/tmp.ci/preinst: 10: cannot open 
/var/lib/dpkg/info/denyhosts.postrm: No such file

The existence of the file should be checked before using it.

full output:

r...@ubuntu-lucid-alpha2:~# aptitude -y install denyhosts
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Reading extended state information  
Initializing package states... Done
The following NEW packages will be installed:
  denyhosts 
0 packages upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 66.0kB of archives. After unpacking 442kB will be used.
Writing extended state information... Done
Get:1 http://es.archive.ubuntu.com lucid/universe denyhosts 2.6-6.1 [66.0kB]
Fetched 66.0kB in 0s (139kB/s)
Selecting previously deselected package denyhosts.
(Reading database ... 43531 files and directories currently installed.)
Unpacking denyhosts (from .../denyhosts_2.6-6.1_all.deb) ...
/var/lib/dpkg/tmp.ci/preinst: 10: cannot open 
/var/lib/dpkg/info/denyhosts.postrm: No such file
Processing triggers for ureadahead ...
Setting up denyhosts (2.6-6.1) ...
 * Starting DenyHosts denyhosts 
 [ OK ] 

Reading package lists... Done 
Building dependency tree   
Reading state information... Done
Reading extended state information  
Initializing package states... Done
Writing extended state information... Done

This bug report was originally filed about Ubuntu and it can be found at 
http://launchpad.net/bugs/516160

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

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



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



Bug#460331: still have this problem on kfreebsd-i386

2010-02-10 Thread Craig Small
On Wed, Feb 10, 2010 at 02:33:52PM +0100, Peter Palfrader wrote:
> I upgraded procps on field.debian.org in the hope of appeasing ps (and
> this nagios) but no such luck:
kfreebsd has unbelievably broken procfs so it could be a symptom of
that. Unforuntately the bugs about procfs are several years old.

Can you send me the output of
cat /proc/uptime ; grep 'cpu ' /proc/stat ; cat /proc/uptime

also
getconf CLK_TCK

That will at least tell me if we're getting sensible numbers first.
Jiffies is calculated by adding the 7 numbers of the cpu line and
dividing it by the average of the two first number of the uptime.
On my amd64 it was 102 which is close enough to 100, which is what
CLK_TCK gives me.

On asdfasdf which is an amd64 kfreebsd computer getconf gives 60 but 
the calculation gives 99. This is wrong!
 - Craig
-- 
Craig Small  GnuPG:1C1B D893 1418 2AF4 45EE  95CB C76C E5AC 12CA DFA5
http://www.enc.com.au/ csmall at : enc.com.au
http://www.debian.org/  Debian GNU/Linux, software should be Free 



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



Bug#569256: nagios-statd- port assignment

2010-02-10 Thread Matt Taggart
Package: nagios-statd
Version: 3.12-1

Today I was trying to remember what port nagios-statd runs on, so I ran

  grep nagios /etc/services

but if found nothing. So I looked in the nagios-statd manpage and found 
that is was 1040. So I did

  grep 1040 /etc/services

which also found nothing. So I thought maybe I'd file a bug on netbase to 
ask for it to be added (since it's not in the latest version). But before I 
did I thought I'd see if it was reserved upstream

  http://www.iana.org/assignments/port-numbers

well it's already listed as

  netarx  1040/tcp   Netarx Netcare
  netarx  1040/udp   Netarx Netcare
  #  Previous Contact: Fredrick Paul Eisele 
  #  Current Contact: Sandy Kronenberg  03 April 2008

I don't know if nagios-statd should move or not, but it's sort of annoying 
it's not listed in /etc/services. I don't know what netarx is, I don't know 
if it's providing it's own service or if it's also use nagios-statd and 
they just claimed it for themselves.

-- 
Matt Taggart
tagg...@debian.org





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



Bug#288147: Bug#498125 closed by Sandro Tosi (Package removed from Debian unstable)

2010-02-10 Thread W. Martin Borgert
reopen 288147
reassign 288147 emacs23
thanks

Still an issue in emacs23. xmllint is correct, IMHO, nxml-mode is wrong.



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



Bug#568849: osynctool is listed below libs, should anywhere else, no?

2010-02-10 Thread Michael Banck
tags 568849 +pending
thanks

On Mon, Feb 08, 2010 at 10:30:15AM +0100, Peter Wiersig wrote:
> aptitude listed the new package osynctool in the section libs. It
> should reside elsewhere.

Indeed, fixed in svn.


Thanks,

Michael



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



Bug#568956: [debian/debian-sid] Build sqlite3 as shared (Closes: #568956)

2010-02-10 Thread Raphael Geissert
tag 568956 pending
thanks

Date: Wed Feb 10 18:01:42 2010 -0600
Author: Raphael Geissert 
Commit ID: 5c1125d690e578c34425b52e2e61ed9eb92ea4c4
Commit URL: 
http://git.debian.org/?p=pkg-php/php.git;a=commitdiff;h=5c1125d690e578c34425b52e2e61ed9eb92ea4c4
Patch URL: 
http://git.debian.org/?p=pkg-php/php.git;a=commitdiff_plain;h=5c1125d690e578c34425b52e2e61ed9eb92ea4c4

Build sqlite3 as shared (Closes: #568956)

  



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



Bug#569255: tofrodos: unix2dos/dos2unix removed without substitute being available

2010-02-10 Thread Jeppe Øland
Package: tofrodos
Version: 1.7.8.debian.1-2
Severity: normal

*** Please type your report below this line ***
The 1.7.8.debian.1-2 version of tofrodos removed the unix2dos/dos2unix symlinks.
Obviously this causes breakage for people needing the tools.

The package NEWS file recommends making aliases to solve the problem,
but that does not always work.
(For example if your makefiles use 'which unix2dos' to assign variables).

Manually making the links of course works, but it's a hassle
(especially when large groups have to do it).

Would it be possible to bring the symlinks back?

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

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

Versions of packages tofrodos depends on:
ii  libc6 2.10.2-2   GNU C Library: Shared libraries

tofrodos recommends no packages.

tofrodos suggests no packages.

-- no debconf information



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



Bug#569250: [initramfs-tools] Please add plymouth compatibility

2010-02-10 Thread Steve Langasek
On Thu, Feb 11, 2010 at 12:30:36AM +0100, Rafael Belmonte wrote:
> Package: initramfs-tools
> Version: 0.93.4
> Severity: wishlist

> Plymouth is an application that runs very early in the boot process (even 
> before the root filesystem is mounted!) that provides a graphical boot 
> animation while the boot process happens in the background.

> Plymouth isn't really designed to be built from source by end users. For it 
> to 
> work correctly, it needs integration with the distribution. Because it starts 
> so early, it needs to be packed into the distribution's initial ram disk, and 
> the distribution needs to poke plymouth to tell it how boot is progressing. 
> This could be the cause of Bug #565188.
> http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=565188

Plymouth does not *need* to be in the initramfs at all, that's a design
choice.  But *if* it is included in the initramfs, then several other
components need to be started before it in order to get the desired results
(namely, the udev and framebuffer scripts).

But the plymouth package in Debian doesn't install a script to start
plymouth /at all/ in the initramfs.  That's not a bug in initramfs-tools.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
Ubuntu Developerhttp://www.debian.org/
slanga...@ubuntu.com vor...@debian.org


signature.asc
Description: Digital signature


Bug#293557: Bug#498125 closed by Sandro Tosi (Package removed from Debian unstable)

2010-02-10 Thread W. Martin Borgert
reopen 293557
reassign 293557 emacs23
thanks

Issue still exists in emacs23.



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



Bug#569254: debconf: [INTL:pt] Updated Portuguese translation for program messages

2010-02-10 Thread Traduz - Portuguese Translation Team

Package: debconf
Version: n/a
Tags: l10n, patch
Severity: wishlist

Updated Portuguese translation for debconf program messages.
Translator: Miguel Figueiredo 
Feel free to use it.

For translation updates please contact 'Last Translator' or the
Portuguese Translation Team .


--
Best regards,

"Traduz" - Portuguese Translation Team
http://www.DebianPT.org


# Portuguese translation of Debconf for the Debian Installer
# Copyright (C) 2004 Miguel Figueiredo 
# This file is distributed under the same license as the debconf package.
# Miguel Figueiredo , 2004-2010.
#
msgid ""
msgstr ""
"Project-Id-Version: debconf\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-05-13 22:23+0200\n"
"PO-Revision-Date: 2010-02-10 23:07+\n"
"Last-Translator: YOUR NAME \n"
"Language-Team: Portuguese \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#: ../Debconf/AutoSelect.pm:76
#, perl-format
msgid "falling back to frontend: %s"
msgstr "caindo para o frontend; %s"

#: ../Debconf/AutoSelect.pm:84
#, perl-format
msgid "unable to initialize frontend: %s"
msgstr "não foi possível inicializar o frontend: %s"

#: ../Debconf/AutoSelect.pm:90
#, perl-format
msgid "Unable to start a frontend: %s"
msgstr "Não foi possível iniciar o frontend: %s"

#: ../Debconf/Config.pm:130
msgid "Config database not specified in config file."
msgstr ""
"Base de dados de configuração não especificada no ficheiro de configuração."

#: ../Debconf/Config.pm:134
msgid "Template database not specified in config file."
msgstr "Base de dados template não especificada no ficheiro de configuração."

#: ../Debconf/Config.pm:139
msgid ""
"The Sigils and Smileys options in the config file are no longer used. Please "
"remove them."
msgstr ""
"As opções Sigils e Smileys no ficheiro de configuração já não são "
"utilizadas. Por favor remova-as."

#: ../Debconf/Config.pm:153
#, perl-format
msgid "Problem setting up the database defined by stanza %s of %s."
msgstr "Problema ao configurar a base de dados definida pela estrofe %s de %s."

#: ../Debconf/Config.pm:228
msgid ""
"  -f,  --frontend\t\tSpecify debconf frontend to use.\n"
"  -p,  --priority\t\tSpecify minimum priority question to show.\n"
"   --terse\t\t\tEnable terse mode.\n"
msgstr ""
"  -f,  --frontend\t\tEspecificar o frontend do debconf a utilizar.\n"
"  -p,  --prority\t\tEspecificar a prioridade mínima das perguntas a "
"mostrar.\n"
"   --terse\t\t\tHabilitar o modo abreviado.\n"

#: ../Debconf/Config.pm:308
#, perl-format
msgid "Ignoring invalid priority \"%s\""
msgstr "A ignorar a prioridade inválida \"%s\""

#: ../Debconf/Config.pm:309
#, perl-format
msgid "Valid priorities are: %s"
msgstr "As prioridades válidas são: %s"

#: ../Debconf/Element/Editor/Boolean.pm:30
#: ../Debconf/Element/Editor/Multiselect.pm:31
#: ../Debconf/Element/Editor/Select.pm:31
msgid "Choices"
msgstr "Escolhas"

#: ../Debconf/Element/Editor/Boolean.pm:30
#: ../Debconf/Element/Editor/Boolean.pm:36
#: ../Debconf/Element/Editor/Boolean.pm:59
#: ../Debconf/Element/Teletype/Boolean.pm:28
msgid "yes"
msgstr "sim"

#: ../Debconf/Element/Editor/Boolean.pm:30
#: ../Debconf/Element/Editor/Boolean.pm:39
#: ../Debconf/Element/Editor/Boolean.pm:62
#: ../Debconf/Element/Teletype/Boolean.pm:29
msgid "no"
msgstr "não"

#: ../Debconf/Element/Editor/Multiselect.pm:32
msgid ""
"(Enter zero or more items separated by a comma followed by a space (', ').)"
msgstr ""
"(Introduza os itens que deseja escolher separados por uma vírgula seguida de "
"um espaço (', ').)"

#: ../Debconf/Element/Gnome.pm:182
msgid "_Help"
msgstr "_Ajuda"

#: ../Debconf/Element/Gnome.pm:184
msgid "Help"
msgstr "Ajuda"

#: ../Debconf/Element/Noninteractive/Error.pm:39
msgid ""
"Debconf was not configured to display this error message, so it mailed it to "
"you."
msgstr ""
"O Debconf não foi configurado para mostrar esta mensagem de erro, por isso "
"enviou-a por mail para si."

#: ../Debconf/Element/Noninteractive/Error.pm:63
msgid "Debconf"
msgstr "Debconf"

#: ../Debconf/Element/Noninteractive/Error.pm:86
#, perl-format
msgid "Debconf, running at %s"
msgstr "Debconf, a correr em %s"

#: ../Debconf/Element/Select.pm:95 ../Debconf/Element/Select.pm:110
#, perl-format
msgid ""
"Input value, \"%s\" not found in C choices! This should never happen. "
"Perhaps the templates were incorrectly localized."
msgstr ""
"Valor de entrada, \"%s\" não foi encontrado nas escolhas de C! Isto nunca "
"deveria acontecer. Talvez os templates estejam com os locales incorrectos."

#: ../Debconf/Element/Teletype/Multiselect.pm:27
msgid "none of the above"
msgstr "nenhum dos acima"

#: ../Debconf/Element/Teletype/Multiselect.pm:47
msgid "Enter the items you want to select, separated by spaces."
msgstr "Introduza os items que deseja escolher, separados por espaços."

#: ../Debconf/FrontEnd.pm:140
#, perl-format
msgid "Unable to load Debconf::Element::%s. Failed because: %s"
msgstr "Não conseguiu carregar Debconf::Element::%s. 

Bug#421505: Bug#498125 closed by Sandro Tosi (Package removed from Debian unstable)

2010-02-10 Thread W. Martin Borgert
reopen 421505
reassign 421505 emacs23
thanks

xmlschema.rnc is not included in emacs23.



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



Bug#335052: Bug#498125 closed by Sandro Tosi (Package removed from Debian unstable)

2010-02-10 Thread W. Martin Borgert
reopen 335052
reassign 335052 emacs23
thanks

The DocBook version in Debian is now 4.5, emacs23 still uses 4.2, it seems.



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



Bug#569253: perhaps use virtual packages instead

2010-02-10 Thread jidanni
Package: libsdl1.2debian
Version: 1.2.14-4
Severity: wishlist

I was doing
$ grep-status dummy
and I notice your dummy package doesn't seem like the others, which
usually say they can "safely be removed". Therefore perhaps say it is a
dependency package instead of a dummy package. Or perhaps use
"Provides:" in the other packages to create a virtual package,
eliminating the need for this package.



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



Bug#448563: Bug#498125 closed by Sandro Tosi (Package removed from Debian unstable)

2010-02-10 Thread W. Martin Borgert
reopen 448563
reassign 448563 emacs23
thanks

Same issue with  elements etc. in DocBook files. The text
in between is most likely code and should not be according to XML rules.



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



Bug#569252: rednotebook: Global Tags

2010-02-10 Thread Torquil Macdonald Sørensen
Package: rednotebook
Version: 0.9.2-1
Severity: wishlist

I'm submitting this here, an hoping that the Debian maintainer will forward it
as a wishlist item to wherever appropriate.

Say that I have written an entry on some day, and tagged it e.g. with the tag
"work", this tag. The the tag "work" should be available on the drop-down menu
that appears when assigning a tag for a different text entry. Otherwise the user
needs to write the same tag name many times.

Or it should at least be possible to choose that a tag can be globally abailable
of this drop-down menu.

Best regards
Torquil Sørensen

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

Kernel: Linux 2.6.32-trunk-686 (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages rednotebook depends on:
ii  python   2.5.4-9 An interactive high-level object-o
ii  python-glade22.16.0-2GTK+ bindings: Glade support
ii  python-gobject   2.20.0-1+b1 Python bindings for the GObject li
ii  python-gtk2  2.16.0-2Python bindings for the GTK+ widge
ii  python-support   1.0.6   automated rebuilding support for P
ii  python-yaml  3.09-2+b2   YAML parser and emitter for Python

Versions of packages rednotebook recommends:
pn  python-gtkspell(no description available)
pn  python-webkit  (no description available)

Versions of packages rednotebook suggests:
ii  texlive-latex-extra   2009-7 TeX Live: LaTeX supplementary pack

-- no debconf information



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



Bug#569134: xorg: Display will "hang" with a solid colour screen, only fixed by a suspend/resume cycle.

2010-02-10 Thread Julien Cristau
On Wed, Feb 10, 2010 at 23:57:35 +0100, Richard Atterer wrote:

> Hello,
> 
> I can confirm this on an EeePC 1008HA, running a vanilla 2.6.33-rc6 kernel 
> and xserver-xorg-video-intel 2:2.9.1-2. It seems to be caused by KMS:
> 
> http://wiki.debian.org/KernelModesetting
> https://bugs.freedesktop.org/show_bug.cgi?id=25681
> 
> >From the moment the X server starts, the console becomes inaccessible, with 
> corrupt output being shown when I switch there. For example, I can still 
> see the cursor blinking, but that blinking happens for a couple of pixels 
> spread all over parts of the screen. I use GRUB_GFXMODE=800x600 in 
> /etc/default/grub for a VESA fb console - 
> http://en.gentoo-wiki.com/wiki/Intel_GMA#Kernel_Modesetting says that this 
> is a bad idea...
> 
> A possible temporary fix might be to disable KMS, by passing i915.modeset=0 
> to the kernel.
> 
> For the record, the rest is exactly the same as in the original bug report: 
> Occasional (every 30 sec?) flickering/tearing of the screen, as if the 
> start of the video RAM were wrong for a frame or less. Eventually (after 
> maybe 20 minutes use on average), the screen will go all black or grey. 
> Suspend to RAM and resume is the only way to fix it, switching to the 
> console and back won't do. Before the last upgrade, everything worked just 
> fine.
> 
Is this on 945GM?  If so, it can be worked around by passing
i915.powersave=0 to the kernel, and was fixed for me by
http://lists.freedesktop.org/pipermail/intel-gfx/2010-February/005763.html

Note that the debian kernel defaults to i915.powersave=0 so shouldn't be
affected by this bug anymore.

Cheers,
Julien



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



Bug#569250: [initramfs-tools] Please add plymouth compatibility

2010-02-10 Thread Rafael Belmonte
Package: initramfs-tools
Version: 0.93.4
Severity: wishlist

Plymouth is an application that runs very early in the boot process (even 
before the root filesystem is mounted!) that provides a graphical boot 
animation while the boot process happens in the background.

Plymouth isn't really designed to be built from source by end users. For it to 
work correctly, it needs integration with the distribution. Because it starts 
so early, it needs to be packed into the distribution's initial ram disk, and 
the distribution needs to poke plymouth to tell it how boot is progressing. 
This could be the cause of Bug #565188.
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=565188


--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.32-trunk-amd64

Debian Release: squeeze/sid
  500 testing security.debian.org 
  500 testing oktan.ls.fi.upm.es 
  500 testing ftp.fr.debian.org 
  500 karmic  ppa.launchpad.net 
1 experimentalftp.fr.debian.org 

--- Package information. ---
Depends  (Version) | Installed
==-+-=
klibc-utils   (>= 1.5.9-1) | 1.5.15-1
cpio   | 2.10-1
module-init-tools  | 3.12~pre1-1
udev  (>= 0.086-1) | 150-2
findutils  (>= 4.2.24) | 4.4.2-1


Recommends (Version) | Installed
-+-===
busybox   (>= 1:1.01-3)  | 1:1.14.2-2
 OR busybox-initramfs| 


Package's Suggests field is empty.


--- Output from package bug script ---
-- /proc/cmdline
BOOT_IMAGE=/boot/vmlinuz-2.6.32-trunk-amd64 root=UUID=5f134591-8eca-4c2b-bd7e-
ca80edcbad3a ro quiet

-- /proc/filesystems
ext4
fuseblk

-- lsmod
Module  Size  Used by
i915  247359  2 
drm_kms_helper 18883  1 i915
drm   137190  3 i915,drm_kms_helper
i2c_algo_bit4225  1 i915
ppdev   5030  0 
lp  7462  0 
parport27938  2 ppdev,lp
sco 7193  2 
bridge 39582  0 
stp 1440  1 bridge
bnep9395  2 
rfcomm 29501  4 
l2cap  24656  16 bnep,rfcomm
vboxnetflt  9978  0 
vboxnetadp  4225  0 
vboxdrv  1710310  2 vboxnetflt,vboxnetadp
acpi_cpufreq  0 
cpufreq_conservative 5162  0 
cpufreq_stats   2659  0 
cpufreq_userspace   1992  0 
cpufreq_powersave902  0 
uinput  6376  1 
fuse   50078  2 
loop   11767  0 
btusb   9785  2 
snd_hda_codec_realtek   235095  1 
bluetooth  41795  9 sco,bnep,rfcomm,l2cap,btusb
snd_hda_intel  18147  3 
snd_hda_codec  54212  2 snd_hda_codec_realtek,snd_hda_intel
snd_hwdep   5364  1 snd_hda_codec
snd_pcm_oss32399  0 
snd_mixer_oss  12606  1 snd_pcm_oss
snd_pcm60615  3 snd_hda_intel,snd_hda_codec,snd_pcm_oss
joydev  8411  0 
uvcvideo   51663  0 
videodev   29977  1 uvcvideo
v4l1_compat11442  2 uvcvideo,videodev
v4l2_compat_ioctl32 8538  1 videodev
snd_seq_midi4208  0 
snd_rawmidi15291  1 snd_seq_midi
snd_seq_midi_event  4628  1 snd_seq_midi
snd_seq42769  2 snd_seq_midi,snd_seq_midi_event
snd_timer  15502  2 snd_pcm,snd_seq
snd_seq_device  4477  3 snd_seq_midi,snd_rawmidi,snd_seq
serio_raw   3752  0 
acer_wmi   12640  0 
lib80211_crypt_tkip 7477  0 
rfkill 12996  3 bluetooth,acer_wmi
snd44718  17 
snd_hda_codec_realtek,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_rawmidi,snd_seq,snd_timer,snd_seq_device
pcspkr  1699  0 
led_class   2401  1 acer_wmi
soundcore   4598  1 snd
psmouse49521  0 
i2c_i8017766  0 
i2c_core   15584  5 i915,drm,i2c_algo_bit,videodev,i2c_i801
evdev   7336  21 
wl   1255954  0 
snd_page_alloc  6217  2 snd_hda_intel,snd_pcm
lib802113638  2 lib80211_crypt_tkip,wl
processor  29479  3 acpi_cpufreq
battery 4998  0 
ac  2192  0 
wmi 4307  1 acer_wmi
ext4  285067  1 
mbcache 4970  1 ext4
jbd2   66855  1 ext4
crc16   1319  2 l2cap,ext4
sd_mod 29673  4 
crc_t10dif  1276  1 sd_mod
ide_cd_mod 24744  0 
cdrom  29399  1 ide_cd_mod
ata_generic 2983  0 
usb_storage38585  0 
uhci_hcd   18457  0 
ide_pci_generic 2788  0 
ata_piix   19757 

Bug#569248: lr_log2mail: store doesn't contain a 'lire_import_log' stream at /usr/share/perl5/Lire/DlfConverterProcess.pm line 170

2010-02-10 Thread Kevin Baradon
Package: lire
Version: 2:2.1-1
Severity: important

I recently noticed I wasn't receiving syslog/exim4/apache2 log reports 
generated by lire. 
The following message appears in syslog: 

lire: lr_log2mail: ERREUR store doesn't contain a 'lire_import_log' stream at 
/usr/share/perl5/Lire/DlfConverterProcess.pm line 170

No reports are generated, and even worse, lr_vendor_cron seems to return an 
exit code of 0, which makes cron think everything has gone right !

I think this message first appeared following a lire or perl upgrade, but I'm 
not sure.
Package is unusable for me, hence the severity.

Let me know if I can do something to help solving this bug.


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

Kernel: Linux 2.6.32 (SMP w/2 CPU cores; PREEMPT)
Locale: lang=fr...@euro, lc_ctype=fr...@euro (charmap=UTF-8) (ignored: LC_ALL 
set to fr_FR.UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages lire depends on:
ii  adduser  3.112   add and remove users and groups
ii  debconf [debconf-2.0]1.5.28  Debian configuration management sy
ii  exim44.71-3  metapackage to ease Exim MTA (v4) 
ii  exim4-daemon-light [mail-tra 4.71-3  lightweight Exim MTA (v4) daemon
ii  libcurses-ui-perl0.9607-1curses-based OO user interface fra
ii  libdbd-sqlite3-perl  1.29-1  Perl DBI driver with a self-contai
ii  libintl-perl 1.20-1  Uniforum message translations syst
ii  libmime-tools-perl   5.427-2 Perl5 modules for MIME-compliant m
ii  libtime-modules-perl 2006.0814-2 Various Perl modules for time/date
ii  libxml-parser-perl   2.36-1.1+b1 Perl module for parsing XML files
ii  perl 5.10.1-11   Larry Wall's Practical Extraction 

Versions of packages lire recommends:
ii  libterm-readline-perl-perl1.0303-1   Perl implementation of Readline li
ii  ploticus  2.41-3 script driven business graphics pa

Versions of packages lire suggests:
pn  libspreadsheet-writeexcel-per  (no description available)
ii  lire-doc  2:2.1-1Documentation for Lire
pn  sqlite (no description available)
pn  sqlite3(no description available)

-- debconf information:
  lire/lire_user_not_lire: false
* lire/use_existing_user: true
* lire/purge_user_files: true
* lire/use_existing_group: true



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



Bug#569251: libwmf-dev: please depend on libjpeg-dev, not libjpeg62-dev

2010-02-10 Thread Bill Allombert
Package: libwmf-dev
Version: 0.2.8.4-6.1
Severity: serious

Hello Loic,

There is a new version of libjpeg (libjpeg8) that replace libjpeg62.
libjpeg62-dev is only kept for LSB compatibility and should not be
used for building packages.

libwmf-dev depends on libjpeg62-dev. Please change it to depends on libjpeg-dev
instead. Please also change the Build-Dependency to be on libjpeg-dev and
not libjpeg62-dev.

This dependency on libjpeg62-dev prevent packages Build-Depending on both 
libwmf-dev and libjpeg-dev to install their dependencies, due to the conflict
between libjpeg62-dev and libjpeg-dev.

Cheers,
-- 
Bill. 

Imagine a large red swirl here. 



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



Bug#569249: libhdf4-alt-dev: please depend on libjpeg-dev, not libjpeg62-dev

2010-02-10 Thread Bill Allombert
Package: libhdf4-alt-dev
Version: 4.2r4-10
Severity: serious

Hello Debian GIS Project,

There is a new version of libjpeg (libjpeg8) that replace libjpeg62.
libjpeg62-dev is only kept for LSB compatibility and should not be
used for building packages.

libhdf4-alt-dev depends on libjpeg62-dev. Please change it to depends on 
libjpeg-dev
instead. Please also change the Build-Dependency to be on libjpeg-dev and
not libjpeg62-dev.

This dependency on libjpeg62-dev prevent packages Build-Depending on both 
libhdf4-alt-dev and libjpeg-dev to install their dependencies, due to the 
conflict
between libjpeg62-dev and libjpeg-dev.

Cheers,
-- 
Bill. 

Imagine a large red swirl here. 



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



Bug#569020: coreutils: failure of install-C test on GNU/kFreeBSD

2010-02-10 Thread Pádraig Brady

On 10/02/10 19:56, Michael Stone wrote:

Figures that I get completely different results with kfreebsd 8 kernel.
(Presumably the install test isn't an issue because my user doesn't have
multiple groups--will still look at that.)

tests/tail-2/inotify-hash-abuse2 fails, which I'm not even sure is
relevant. (No inotify; maybe have the test check the config status?
Fails because tail dies at some point when the file disappears,
presumably a race condition.)


That test should pass irrespective of inotify availability.
I've spun it for 20 mins now on linux with inotify disabled without issue:

while true; do
  (cd tests && make check TESTS=tail-2/inotify-hash-abuse2 VERBOSE=yes) || break
done

Can you reproduce and perhaps get a backtrace?

cheers,
Pádraig.



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



Bug#565188: Plymouth integration in initramfs

2010-02-10 Thread Rafael Belmonte
Hello, i am writing to Debian Kernel Team to request support/compatibility
for plymouth package in initramfs.

Plymouth is an application that runs very early in the boot process (even
before the root filesystem is mounted!) that provides a graphical boot
animation while the boot process happens in the background.

Plymouth isn't really designed to be built from source by end users. For it
to work correctly, it needs integration with the distribution. Because it
starts so early, it needs to be packed into the distribution's initial ram
disk, and the distribution needs to poke plymouth to tell it how boot is
progressing. This could be the cause of Bug #565188.
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=565188

I will be waiting for your feedback.

Cheers.


Bug#568828: mkd.vim: wrong interpretation of _ inside [[/]]

2010-02-10 Thread James Vega
On Mon, Feb 08, 2010 at 02:36:10PM +1300, martin f krafft wrote:
> the markdown syntax plugin doesn't properly handle
> 
>   [[description|link_with_underscore]]
> 
> or
> 
>   [[!command link_with_underscore]]
> 
> and renders the rest of the document bold-italic, which is not very
> nice.

As discussed on IRC, these are not valid markdown syntax but extra
directives understood by ikiwiki.  Ikiwiki's site has a syntax file[0]
that can be used, with the extra setup shown at the top of the file.
Given that, should I close the bug or do you want to repurpose it?

[0]: http://ikiwiki.info/tips/vim_syntax_highlighting/
-- 
James
GPG Key: 1024D/61326D40 2003-09-02 James Vega 


signature.asc
Description: Digital signature


Bug#569247: 5.0.4 missing from cdimage.debian.org::debian-iso/project/build/

2010-02-10 Thread Simon Paillard
Package: cdimage.debian.org
Severity: minor

Hi,

Nicolas Aupetit noticed that 5.0.4 dir is missing from
http://cdimage.debian.org/debian-cd/project/build/

It impacts mirrors based on jigdo-mirror scripts. 

A copy of the 5.0.3 dir should be enough.

Cheers.

-- 
Simon Paillard



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



Bug#569246: gcin FTBFS: undefined GTK_WIDGET_APP_PAINTABLE

2010-02-10 Thread Kamal Mostafa
Package: gcin
Version: 1.4.6-1
Severity: important
Tags: patch
Justification: fails to build from source
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu karmic ubuntu-patch


Package fails to build due to use of deprecated Gtk+ macro 
GTK_WIDGET_APP_PAINTABLE. (Also uses deprecated GTK_WIDGET_NO_WINDOW).

http://launchpadlibrarian.net/38892602/buildlog_ubuntu-lucid-i386.gcin_1.4.6-1_FAILEDTOBUILD.txt.gz

gcc -o gcin gcin.o eve.o util.o gcin-conf.o gcin-settings.o locale.o 
gcin-icon.o gcin-switch.o gcin-exec-script.o pho-play.o cache.o gtk_bug_fix.o 
intcode.o win-int.o win-message.o win-sym.o win-inmd-switch.o pinyin.o 
win-pho-near.o win-kbm.o tsin-char.o anthy.o win-pho.o pho.o pho-util.o 
pho-sym.o table-update.o pho-dbg.o gtab.o win-gtab.o gtab-util.o gtab-list.o 
gtab-buf.o gcin-common.o phrase.o t2s-lookup.o gtab-use-count.o IC.o tray.o 
eggtrayicon.o tray-win32.o tsin.o tsin-util.o win0.o win1.o tsin-parse.o gcb.o 
IMdkit/lib/libXimd.a im-addr.o im-dispatch.o im-srv.o gcin-crypt.o -lXtst 
-Wl,--as-needed -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lpangoft2-1.0 
-lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lgio-2.0 -lcairo -lpango-1.0 -lfreetype 
-lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lX11 
-Wl,-rpath,/usr/lib/gcin -ldl -L/usr/X11R6/lib
eggtrayicon.o: In function `make_transparent':
/build/buildd/gcin-1.4.6/eggtrayicon.cpp:401: undefined reference to 
`GTK_WIDGET_APP_PAINTABLE'

-

In Ubuntu, we've applied the attached patch to achieve the following:

  * debian/patches/fix_gtk_deprecations.diff
- Fix FTBFS due to deprecated Gtk+ macros GTK_WIDGET_APP_PAINTABLE and
  GTK_WIDGET_NO_WINDOW. (LP: #520148)

We thought you might be interested in doing the same. 
--- gcin-1.4.6/debian/patches/fix_gtk_deprecations.diff 1969-12-31 
16:00:00.0 -0800
+++ gcin-1.4.6/debian/patches/fix_gtk_deprecations.diff 2010-02-10 
14:57:18.0 -0800
@@ -0,0 +1,13 @@
+Index: gcin-1.4.6/eggtrayicon.cpp
+===
+--- gcin-1.4.6.orig/eggtrayicon.cpp2010-02-10 14:52:19.0 -0800
 gcin-1.4.6/eggtrayicon.cpp 2010-02-10 14:55:40.0 -0800
+@@ -398,7 +398,7 @@
+ static void
+ make_transparent (GtkWidget *widget, gpointer user_data)
+ {
+-  if (GTK_WIDGET_NO_WINDOW (widget) || GTK_WIDGET_APP_PAINTABLE (widget))
++  if (!gtk_widget_get_has_window (widget) || gtk_widget_get_app_paintable 
(widget))
+   return;
+ 
+   gtk_widget_set_app_paintable (widget, TRUE);
diff -Nru gcin-1.4.6/debian/patches/series gcin-1.4.6/debian/patches/series
--- gcin-1.4.6/debian/patches/series2010-01-28 02:14:10.0 -0800
+++ gcin-1.4.6/debian/patches/series2010-02-10 14:51:40.0 -0800
@@ -4,3 +4,4 @@
 fix_install_paths.diff
 ld_only_link_needed.diff
 fix_anthy_error_message.diff
+fix_gtk_deprecations.diff


Bug#569245: libwraster3-dev: please depend on libjpeg-dev, not libjpeg62-dev

2010-02-10 Thread Bill Allombert
Package: libwraster3-dev
Version: 0.92.0-8.1
Severity: serious

Hello John,

There is a new version of libjpeg (libjpeg8) that replace libjpeg62.
libjpeg62-dev is only kept for LSB compatibility and should not be
used for building packages.

libwraster3-dev depends on libjpeg62-dev. Please change it to depends on
libjpeg-dev instead. Please also change the Build-Dependency to be on
libjpeg-dev and not libjpeg62-dev.

This dependency on libjpeg62-dev prevent packages Build-Depending on both
libwraster3-dev and libjpeg-dev to install their dependencies, due to the
conflict between libjpeg62-dev and libjpeg-dev.

Cheers,
-- 
Bill. 

Imagine a large red swirl here. 



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



Bug#535260: severity of 535260 is serious

2010-02-10 Thread gregor herrmann
On Wed, 10 Feb 2010 22:41:44 +0100, Luk Claes wrote:

> > there's a newer package in the Debian Perl Group's svn repository
> > already. It hasn't been uploaded yet because noone has an oracle
> > server to test it against.
> > IIRC you offered to test this package; it'd be great if this offer is
> > still standing :)
> Like I said in the orphan bug, I had to make some changes which I don't
> think are appropriate to make for Debian to get it working and is
> against upstream's advice.

Oh, I forgot or missed that piece of information (and can't see it in
#548322 at the moment either).
 
> Personally I would go for removal of the package.

Fine with me, let's wait a bit if someone speaks and and ask for
removal otherwise.

Cheers,
gregor 
-- 
 .''`.   http://info.comodo.priv.at/ -- GPG Key IDs: 0x00F3CFE4, 0x8649AA06
 : :' :  Debian GNU/Linux user, admin, & developer - http://www.debian.org/
 `. `'   Member of VIBE!AT & SPI, fellow of Free Software Foundation Europe
   `-NP: Pink Floyd: Shine On You Crazy Diamond (Parts 6-9)


signature.asc
Description: Digital signature


Bug#569243: abakus: Please fix lintian report

2010-02-10 Thread Angel Abad
Package: abakus
Version: 0.91-1
Severity: normal
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu lucid ubuntu-patch



*** /tmp/tmpAAbUpT
In Ubuntu, we've applied the attached patch to achieve the following:

  * Swith to debhelper compat 5
  * debian/control
- Add misc:Depends to Depends
- Build-Depends on debhelper (>= 5.0.51~) for dh_icons
- Add Homepage field (updated)
  * Update homepage
  * debian/watch: new file
  * debian/copyright: Update with new format specification
  * Fix errors in menu section
  * Bump Standards-Version to 3.8.4 (LP: #)

We thought you might be interested in doing the same. 


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

Kernel: Linux 2.6.32-12-generic (SMP w/1 CPU core)
Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -u abakus-0.91/debian/copyright abakus-0.91/debian/copyright
--- abakus-0.91/debian/copyright
+++ abakus-0.91/debian/copyright
@@ -1,20 +1,27 @@
-This package was debianized by Steffen Joeris  on
-Sun, 23 Oct 2005 15:19:58 +0200.
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Maintainer: Michael Pyne 
+Source: http://purinchu.net/abakus/
+Name: Abakus
+
+Files: *
+Copyright: 2004-2006, Michael Pyne 
+License: GPL-2+
+
+Files: debian/*
+Copyright: 2010, Angel Abad 
+   2008, Siegfried-Angel Gevatter Pujals (RainCT) 
+   2007, Martin Pitt 
+   2006, Barry deFreese 
+   2006, Zak B. Elep 
+   2005-2006, Steffen Joeris 
+License: GPL-2+
+
+License: GPL-2+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2, or (at your option)
+ any later version.
+ .
+ On Debian GNU/Linux systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL-2'
 
-It was downloaded from http://grammarian.homelinux.net/abakus/
-
-Copyright Holder: Michael Pyne 
-
-License:
-
-This program is free software; you can redistribute it and/or
-modify it under the terms of the GNU General Public License, version 2
-as published by the Free Software Foundation.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANDABILITY of FITNESS FOR A PARTICULAR PURPOSE.
-See the GNU General Public License for details.
-
-On Debian GNU/Linux systems, the complete text of the GNU General
-Public License can be found in /usr/share/common-licenses/GPL.
diff -u abakus-0.91/debian/abakus.menu abakus-0.91/debian/abakus.menu
--- abakus-0.91/debian/abakus.menu
+++ abakus-0.91/debian/abakus.menu
@@ -1,5 +1,5 @@
 ?package(abakus):needs="X11"\
- section="Apps/Math"\
+ section="Applications/Science/Mathematics"\
  title="AbaKus"\
  command="/usr/bin/abakus"\
  hints="KDE"\
diff -u abakus-0.91/debian/changelog abakus-0.91/debian/changelog
diff -u abakus-0.91/debian/control abakus-0.91/debian/control
--- abakus-0.91/debian/control
+++ abakus-0.91/debian/control
@@ -6,14 +6,13 @@
-Build-Depends: autotools-dev, debhelper (>= 4.1.0), cdbs (>= 0.4.0), scons (>= 0.96), imagemagick, kdelibs4-dev, chrpath, bison, flex
-Standards-Version: 3.7.2
+Build-Depends: autotools-dev, debhelper (>= 5.0.51~), cdbs (>= 0.4.0), scons (>= 0.96), imagemagick, kdelibs4-dev, chrpath, bison, flex
+Standards-Version: 3.8.4
+Homepage: http://purinchu.net/abakus/
 
 Package: abakus
 Architecture: any
-Depends: ${shlibs:Depends}
+Depends: ${shlibs:Depends}, ${misc:Depends}
 Description: calculator for KDE
  AbaKus is a complex calculator, which provides
  many different kinds of calculations.
  Think of it as bc (the command-line calculator) with a nice GUI.
  It also gives information about mathematical variables and
  has the user-friendly menu options of a normal KDE application.
- .
- Web site: http://grammarian.homelinux.net/abakus/
diff -u abakus-0.91/debian/compat abakus-0.91/debian/compat
--- abakus-0.91/debian/compat
+++ abakus-0.91/debian/compat
@@ -1 +1 @@
-4
+5
only in patch2:
unchanged:
--- abakus-0.91.orig/debian/watch
+++ abakus-0.91/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://purinchu.net/abakus/abakus-(.*).tar.bz2


Bug#569240: libsane-dev: please depend on libjpeg-dev, not libjpeg62-dev

2010-02-10 Thread Bill Allombert
Package: libsane-dev
Version: 1.0.20-13
Severity: serious

Hello Julien,

There is a new version of libjpeg (libjpeg8) that replace libjpeg62.
libjpeg62-dev is only kept for LSB compatibility and should not be
used for building packages.

libsane-dev depends on libjpeg62-dev. Please change it to depends on libjpeg-dev
instead. Please also change the Build-Dependency to be on libjpeg-dev and
not libjpeg62-dev.

This dependency on libjpeg62-dev prevent packages Build-Depending on both 
libsane-dev and libjpeg-dev to install their dependencies, due to the conflict
between libjpeg62-dev and libjpeg-dev.

Cheers,
-- 
Bill. 

Imagine a large red swirl here. 



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



Bug#569241: libsdl-image1.2-dev: please depend on libjpeg-dev, not libjpeg62-dev

2010-02-10 Thread Bill Allombert
Package: libsdl-image1.2-dev
Version: 1.2.10-1
Severity: serious

Hello Debian SDL packages maintainers,

There is a new version of libjpeg (libjpeg8) that replace libjpeg62.
libjpeg62-dev is only kept for LSB compatibility and should not be
used for building packages.

libsdl-image1.2-dev depends on libjpeg62-dev. Please change it to depends on
libjpeg-dev instead. Please also change the Build-Dependency to be on
libjpeg-dev and not libjpeg62-dev.

This dependency on libjpeg62-dev prevent packages Build-Depending on both 
libsdl-image1.2-dev and libjpeg-dev to install their dependencies, due to the
conflict between libjpeg62-dev and libjpeg-dev.

Cheers,
-- 
Bill. 

Imagine a large red swirl here. 



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



Bug#569080: redmine: Target version combo box corrupted

2010-02-10 Thread Nick Semenkovich
The patch also works on 0.9.1-1

"add version" does nothing both before and after the patch.

I don't see the "TargetRelease" field.


- Nick



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



  1   2   3   4   5   >