Bug#526489: eclipse: should this package be orphaned?

2009-05-01 Thread Sandro Tosi
I completely agree with Ana, this package needs new fresh blood to
maintain it. I repromised myself (some time ago) to give it some love,
but I didn't managed to have time to.

IMO this should be orphaned, and let another team aggregate to maintain it.

Regards,
-- 
Sandro Tosi (aka morph, morpheus, matrixhasu)
My website: http://matrixhasu.altervista.org/
Me at Debian: http://wiki.debian.org/SandroTosi



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



Bug#526524: /sbin/fsck.ext3: i_file_acl_hi should be zero reported on a old ro filesystem

2009-05-01 Thread Theodore Tso
On Fri, May 01, 2009 at 08:16:01PM +0200, matthieu castet wrote:
 Package: e2fsprogs
 Version: 1.41.5-1
 Severity: normal
 File: /sbin/fsck.ext3
 
 recent version cause a storm of i_file_acl_hi should be zero on a old ext3
 partion that I mount readonly.
 
 After some investigation it seems i_file_acl_hi is an ext4 feature : it
 is only present in linux-2.6/fs/ext4/ext4.h, but in
 linux-2.6/include/linux/ext3_fs.h it is a padding field (i_pad1).

That's correct.  The field should have always been all zero's, and it
would be interesting to investigate how they had gotten set to some
non-zero value in the first place.

Older (pre 2.6.30) versions of the kernel will blow up in very
entertaining ways if you try to mount an ext3 filesystem using the
ext4 filesystem code.  This is supposed to work, since the ext4 code
is fully backwards compatible and is supposed to mount ext2 and ext4
filesystems.  So there is a patch that has gone into 2.6.30-rc4 that
fixes ext4 to not look at that field unless the 64BIT feature is set.

However, in order to make things work better for people using older
code, I also added a fix to e2fsck to detect this condition and offer
to fix it.  On an ext3 filesystem, it is harmless, but it's nice to
make fix this problem, which should have never happened under normal
circumstance.

 I believe my readonly partition is valid, but wonder why I doesn't get
 no error on my read/write partition. May be the ext3 linux driver, did
 some modification.
 
 This is quite annoying as it stop the system from botting.

Probably the right thing to do is to mark this type filesystem
corruption as one that can be fixed in preen mode.  That way the
filesystems with this should never happen condition will be cleaned
up, but it won't stop users' systems from booting.

Thanks for reporting this issue!

- Ted



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



Bug#523085: [Pkg-octave-devel] Bug#523085: octave3.0: clear -all causes segfault and coredump

2009-05-01 Thread Alain Baeckeroot
Le 01/05/2009 à 18:31, Thomas Weber a écrit :
 
 On Sun, Apr 12, 2009 at 10:16:42PM +0200, Alain Baeckeroot wrote:
  Unloading does nothing, uninstalling it solve the pb.
  I have tracked this issue a little, it seems to be in swig
  (used by the octave database package).
  I did dumb test with swig, and each time i got this issue.
  
  I have written small tools to access postgresdb, so no more need
  of this package and swig.
 
 I'm wondering whether we should remove the packages that show these
 problems from Debian. We can't do anything about it[1] and a crash is
 something I can hardly tolerate?
 
 I know that the database package is currently not packaged by us, but I
 think that octave-ftp has the same problems, hasn't it?
 
 [1] TTBOMK, it's a problem with the SWIG wrapper, isn't it?
 
   Thomas

Afaik it is swig which is absolutely totally broken, octave is fine.
(using swig also creates lots of global variables, 108 in database pkg...)

I sent our small replacement tools to octave-dev, so maybe we will
soon have a replacement for the broken database package (which is
not part of debian).

Alain






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



Bug#526398: /etc/init.d/checkroot.sh: can cause serious data corruption if booting on, battery power

2009-05-01 Thread Zygo Blaxell
On Fri, May 01, 2009 at 06:35:03PM +0100, peter green wrote:
 Would a compromise be possible? Something along the lines of doing  
 urgent stuff (journal replays, checks of unclean unjournaled  
 filesystems) but skipping the n days/mounts since last check- check  
 forced checks when on battery? Does fsck have and options that would  
 allow this or would they have to be added?

That would be nice, but out of scope of this bug.  I'd like the data-loss
issues fixed first, then worry about enhancing life for ext3 users with
disks that are too big for their batteries.  ;-)

AFAICT the exceptional case is ext3, because all the other filesystems
I've used on Linux either have journals (and they work, so they don't need
fsck), or they don't (so they do need fsck).  Only ext3 (or more precisely
e2fsck) has this strange mode where it does fsck's at random even though
it has no evidence to believe they're necessary.

A simple solution to the ext3-specific part of the problem
is to have the Debian installer use 'tune2fs -c0 -i0' after
'mke2fs -j' when installing on laptops.  This eliminates ext3's
fscking-at-random-and-inconvenient-times behavior.  Users who are
concerned about running fsck on battery power should be directed to
run this command, instead of breaking initscripts for everyone else.
This solution would be a bug for the installer and/or the documentation
of rcS, and implementing the ext3-specific solution doesn't remove the
need to fix this bug (#526398) on initscripts.

There are some valid points in the ext3 documentation about the need to
do fsck's at regular intervals to check for past failures to maintain
data integrity in the filesystem; however, those apply equally to all
filesystems, and arguably should be implemented by the initscripts for all
local read/write filesystem types that have fsck tools--not buried in the
ext3-specific tools themselves.  Also, fsck only makes the filesystem
usable to store new data--it doesn't restore any of the data you've
probably lost if your storage subsystem has these sorts of problems.
I don't think this is a problem that initscripts should try to solve
beyond alerting the user to the fact that their storage subsystem is
lossy and needs serious debugging.

Ideally there should be a fsck-detection tool (possibly a flag supported
by modified versions of the existing fsck tools) which can, given a
filesystem, tell initscripts which of three states the filesystem is in:

1.  The filesystem is known to have errors, or lacks journalling
and was not cleanly umounted, and *must* be checked.  When
initscripts detects the machine is on battery power, it could
prompt the user for various options:

a.  check the filesystem and boot normally

b.  power off immediately

c.  (with root password) boot without checking filesystem

d.  run sulogin

e.  after a timeout, proceed with one of the above options
chosen by a config file (e.g. /etc/default/rcS).

2.  The filesystem is not known to have errors, but a policy
limit (mount count or days since last fsck) has been reached.
initscripts would not check the filesystem if on battery power
in this case, based on the assumption that the user will reboot
later on battery power to perform the advised fsck.

3.  The filesystem is known to be cleanly umounted (or recoverable
from journal) and no fsck is recommended.  initscripts may
always run fsck in this case, since fsck should exit quickly
(if it doesn't, that's either a bug in the fsck package or
the fsck-detection tool).  Some filesystems may not be able
to determine quickly if they were cleanly umounted, so maybe
initscripts might skip fsck entirely for those filesystems.

Of course, if /fastboot or /forcefsck are present, initscripts would
honor those as it does now.

Note that the above proposal requires work to either modify the various
filesystem-specific fsck tools packages so that initscripts can use
them, or initscripts could implement the currently ext3-specific maximum
mounts/days behavior itself.  Both of those are wishlist items, but this
bug (#526398) is a critical bug.



signature.asc
Description: Digital signature


Bug#526522: Just checked the problem with python-ldaptor from unstable

2009-05-01 Thread Mika Pflüger
I just noticed that I had installed the stable version of
python-ldaptor and installed 0.0.43-3 from unstable.
The problem did not change.


signature.asc
Description: PGP signature


Bug#526511: snort-mysql: Snort does not log to mysql db

2009-05-01 Thread Jeffrey B. Green

 Everything work okay before the upgrade to lenny.
The db was receiving alerts after the upgrade and in particular it was 
receiving alerts up until 26 April. The events stop there in the acidbase 
listings.

...still exploring.





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



Bug#526527: pysparse: diff for NMU version 1.0.1-5.1

2009-05-01 Thread Thomas Viehmann
Package: pysparse
Version: 1.0.1-5
Severity: serious
Tags: patch

Hi Adam,

thanks for maintaining pysparse. If I may venture a request: it would be
nice if pysparse.superlu worked instead of segfaulting. Attached is my
suggestion to fix it. (Yeah, it breaks some options which are
undocumented and in part have changed before without notice and it is
not segfaulting anymore, I would claim that that is strictly better.)

See this message for a test case:

https://lists.ubuntu.com/archives/ubuntu-users/2008-May/148160.html

Note, however, that unlike the claim of his code the output
should not be a vector with all ones.

I have allowed myself to fix some unrelated bogosities.

Kind regards

T.

diff -u pysparse-1.0.1/debian/changelog pysparse-1.0.1/debian/changelog
--- pysparse-1.0.1/debian/changelog
+++ pysparse-1.0.1/debian/changelog
@@ -1,3 +1,11 @@
+pysparse (1.0.1-5.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix pysparse.superlu module port to superlu 3 based on reading
+the docs.
+
+ -- Thomas Viehmann t...@beamnet.de  Fri, 01 May 2009 20:56:39 +0200
+
 pysparse (1.0.1-5) unstable; urgency=low
 
   * Removed removal of /usr/lib and Build-Depends on python-central = 0.6
diff -u pysparse-1.0.1/Src/superlumodule.c pysparse-1.0.1/Src/superlumodule.c
--- pysparse-1.0.1/Src/superlumodule.c
+++ pysparse-1.0.1/Src/superlumodule.c
@@ -89,8 +89,9 @@
   dCreate_Dense_Matrix(B, self-n, 1, (double *)x-data, self-n, SLU_DN, 
SLU_D, SLU_GE);
 #endif
 
+StatInit(dummy);
   /* Solve the system, overwriting vector x. */
-  dgstrs(trans, self-L, self-U, self-perm_r, self-perm_c, B, dummy, 
info);
+  dgstrs(trans, self-L, self-U, self-perm_c, self-perm_r, B, dummy, 
info);
 
   /* free memory */
   Destroy_SuperMatrix_Store(B);
@@ -197,20 +198,17 @@
   SuperMatrix A;  /* A in NC format used by the factorization routine. */
   SuperMatrix AC; /* Matrix postmultiplied by Pc */
   mem_usage_t mem_usage;
-  int lwork = 0;
   int *etree;
   int info;
   
-  optionst.Trans = NOTRANS;
-  optionst.DiagPivotThresh = diag_pivot_thresh;
-  statt.panel_histo = panel_size;
-  statt.RefineSteps = relax;
+  set_default_options(optionst);
 
+  /* the below comment is interesting because statt is a local variable. eh?
   /* make sure StatInit is only called once */
-  if (!StatInit_done) {
+  //if (!StatInit_done) {
 StatInit(statt);
-StatInit_done = 1;
-  }
+  //  StatInit_done = 1;
+  //}
 
   /* Create SuperLUObject */
   self = PyObject_New(SuperLUObject, SuperLUType);
@@ -231,16 +229,17 @@
   etree = intMalloc(n);
   self-perm_r = intMalloc(n);
   self-perm_c = intMalloc(n);
-  if (self-perm_r == NULL || self-perm_c == NULL) {
+  if (self-perm_r == NULL || self-perm_c == NULL || etree == NULL) {
 PyErr_NoMemory();
 goto fail;
   }
   get_perm_c(permc_spec, A, self-perm_c); /* calc column permutation */
   sp_preorder(optionst, A, self-perm_c, etree, AC); /* apply column 
permutation */
-
+  panel_size = sp_ienv(1);
+  relax = sp_ienv(2);
   /* Perform factorization */
   dgstrf(optionst, AC, drop_tol, relax, panel_size,
- etree, NULL, lwork, self-perm_r, self-perm_c,
+ etree, NULL, 0, self-perm_c,self-perm_r,
  self-L, self-U, statt, info);
 
   /* free memory */
@@ -263,8 +262,8 @@
   return (PyObject *)self;
 
  fail:
-  PyMem_Del(self-perm_r);
-  PyMem_Del(self-perm_c);
+  SUPERLU_FREE(self-perm_r);
+  SUPERLU_FREE(self-perm_c);
   PyObject_Del(self);
   return NULL;
 }



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



Bug#526435: lintian: [checks/binaries.desc] Please add to the description that the case of the string can be different

2009-05-01 Thread Adam D. Barratt
On Fri, 2009-05-01 at 13:32 -0500, Raphael Geissert wrote:
 Paul Gevers wrote:
 
  
  I spend quite some time yesterday of finding a sting which was in all
  CAPS. Please add some comment to the description that the string
  reported might be found in any variant of capitization. Maybe also a add
  comment on how to find the string yourself, i.e. use
  strings binary | grep -i string.
  
 
 Good idea, thanks. The new description proposed in the attached patch
 follows:

Applied, thanks (with only one small tweak, to s/lintian/Lintian/ :-)

 N:   To find the original word you can run:
 N:
 N:   strings binary | grep -i word
 N:
 N:   You can often find the word in the source code by running:
 N:
 N:   grep -r '\boriginal-word\b' source-tree

Shouldn't that be grep -ir?

Regards,

Adam



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



Bug#498660: I can confirm this bug (+screenshot)

2009-05-01 Thread Daniel Gibson
Hi,
I've got (almost) the same behaviour:
With mode set to Normal the graph doesn't use the whole width of the
cpugraph-plugin. It's more than half of it (maybe 2/3) though.
The attached screenshot shows this: two of four cores have been at
100% load for some time, so the graph should touch the left border of
the plugins window. (The number of cores used have no impact on the
problem).

I'm using Debian Lenny/amd64 on a quadcore-system. I had a
dualcore-machine before with the same problems.
On my Notebook i'm using Lenny/i386 (on a singlecore-system) and the
problem does not occur so i guess it's amd64 or 64bit-specific.

Cheers,
- Daniel
attachment: cpugraph.png

Bug#525997: old-versioned-python-dependency check returns false results

2009-05-01 Thread Bernd Zeimetz
Russ Allbery wrote:
 We really need to overhaul the Python package checking to check more of
 what people are currently doing.  I haven't had the time to figure out
 what that is (patches definitely welcome).
 
 In the meantime, I think the best solution for this particular problem
 is to skip this test if the package depends on python-support.  Does
 that sound okay to you?  (I think checking all the rest of the
 information you mention is probably overkill in most circumstances.)

If we assume that the maintainers are sane enough not to add such a dependency
manually to a package while not using dh_py{support,central}, I think checking
for an existing dependency should be enough.

I'll be happy to provide help and patches to check this, but my todo list is way
too long already, so it won't happen too soon. Probably discussing the lintian
check for the new Python stuff would make sense, #debian-python on oftc would be
a good place for that I think.

Cheers,

Bernd

-- 
 Bernd Zeimetz   Debian GNU/Linux Developer
 GPG Fingerprint: 06C8 C9A2 EAAD E37E 5B2C BE93 067A AD04 C93B FF79



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



Bug#445489: Reminder about LSB conformance

2009-05-01 Thread Peter Eisentraut
The advice in the previous message is bogus.  What LSB says is that conforming 
applications should not use set -e in their init scripts.  Debian, however, is 
a (possibly) conforming *implementation* that is supposed to host (possibly) 
conforming *applications*.  The advice on set -e has no relevance there, 
unless you want to create packages that you can also use on other conforming 
LSB implementations (i.e., other Linux distributions).



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



Bug#526260: xorg: cursor appears on all displays

2009-05-01 Thread Jakob
On Thu, Apr 30, 2009 at 06:34:45PM +0200, Julien Cristau wrote:

 Please send your full X log and config.

Attached.

Thanks,
Jakob
Section ServerLayout
Identifier Default Layout
Screen 0 Screen0 0 0
Screen 1 Screen1 RightOf Screen0
InputDeviceGeneric Keyboard
InputDeviceConfigured Mouse
EndSection

Section ServerFlags
Option DontZap false
EndSection

Section Files
FontPath/usr/share/fonts/X11/misc
FontPath/usr/share/fonts/X11/cyrillic
FontPath/usr/share/fonts/X11/75dpi/:unscaled
FontPath/usr/share/fonts/X11/100dpi/:unscaled
FontPath/usr/share/fonts/X11/Type1
FontPath/usr/share/fonts/X11/75dpi
FontPath/usr/share/fonts/X11/100dpi
FontPath/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
EndSection

Section Module
Load   bitmap
Load   dbe
Load   ddc
Load   extmod
Load   freetype
Load   glx
Load   int10
Load   record
Load   type1
Load   vbe
EndSection

Section InputDevice
Identifier Generic Keyboard
Driver kbd
Option CoreKeyboard
Option XkbRules xorg
Option XkbModel pc104
Option XkbLayout us
Option XkbOptions compose:rwin
EndSection

Section InputDevice
Identifier Configured Mouse
Driver mouse
Option CorePointer
Option Device /dev/input/mice
Option Protocol ExplorerPS/2
EndSection

Section Monitor
Identifier DELL
HorizSync   30.0 - 65.0
VertRefresh 50.0 - 75.0
Option DPMS
EndSection

Section Monitor
Identifier Hanns-G
HorizSync   31.0 - 80.0
VertRefresh 56.0 - 75.0
Option DPMS
EndSection

Section Device
BusID  AGP:1:0:0
Identifier Card0
Driver nvidia
Screen 0
EndSection

Section Device
BusID  AGP:1:0:0
Identifier Card1
Driver nvidia
Screen 1
EndSection

Section Screen
Identifier Screen0
Device Card0
MonitorDELL
DefaultDepth24
SubSection Display
Depth   24
Modes  1280x1024 1024x768 800x600 640x480
EndSubSection
EndSection

Section Screen
Identifier Screen1
Device Card1
MonitorHanns-G
DefaultDepth24
SubSection Display
Depth   24
Modes  1680x1050 1280x1024 1024x768 800x600 640x480
EndSubSection
EndSection

Section DRI
Mode0666
EndSection

X.Org X Server 1.6.1
Release Date: 2009-4-14
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.26-1-vserver-amd64 x86_64 Debian
Current Operating System: Linux dalek 2.6.29-1-amd64 #1 SMP Fri Apr 17 10:12:36 
UTC 2009 x86_64
Build Date: 15 April 2009  12:08:18PM
xorg-server 2:1.6.1-1 (bui...@excelsior.roeckx.be) 
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Fri May  1 12:25:17 2009
(==) Using config file: /etc/X11/xorg.conf
(==) ServerLayout Default Layout
(**) |--Screen Screen0 (0)
(**) |   |--Monitor DELL
(**) |   |--Device Card0
(**) |--Screen Screen1 (1)
(**) |   |--Monitor Hanns-G
(**) |   |--Device Card1
(**) |--Input Device Generic Keyboard
(**) |--Input Device Configured Mouse
(**) Option DontZap false
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory /usr/share/fonts/X11/cyrillic does not exist.
Entry deleted from font path.
(WW) The directory /usr/share/fonts/X11/cyrillic does not exist.
Entry deleted from font path.
(**) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/75dpi,
/usr/share/fonts/X11/100dpi,
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
built-ins
(==) ModulePath set to /usr/lib/xorg/modules
(WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' 
will be disabled.
(WW) Disabling Generic Keyboard
(WW) Disabling Configured Mouse
(II) Loader magic: 0xd40
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.4
X.Org Video Driver: 5.0

Bug#515874: wajig pretend to install depends of the upgrade version of an hold package

2009-05-01 Thread Jaime Ochoa Malagón
Hi Graham,

You are right, the bug is on apt-get.

I didn know how work the hold feature in apt-get any way at this
moment didn't work...

I don't know how to reasign the bug, did you mind to do this for me?

Really I use aptitude that brings to me the feel of control and in
this case thats true, someone write about wajig and their good
features and I was testing it but this problem disapoint me and I
return to use aptitude, I feel confortable with wajig while that works
for me (not any more until this bug in apt-get is solved), thanks.

2009/4/30 Graham Williams graham.willi...@togaware.com

 Hi Jaime,

 Thanks for the bug report.

 Underneath, the dailyupgrade command is simply doing:

  apt-get --show-upgraded dist-upgrade

 so I would guess the same situation is there with apt-get.

 Do you think instead this might be a wajig specific problem?

 Otherwise could you reassign this to apt-get, perhaps as a wishlist?

 Or is there an option to apt-get to get the behaviour you want? That
 might be something we could fix wajig with.

 Thanks,
 Graham

 Received Wed 18 Feb 2009  4:41pm +1100 from Jaime Ochoa Malagón:
  Package: wajig
  Version: 2.0.38
  Severity: normal
 
  *** Please type your report below this line ***
 
  Some package have a bug and I request to downgrade it to the stable 
  version...
 
  wajig dailyupgrade wants to upgrade it to my preferences (testing)
 
  I hold the package
 
  wajig dailyupgrade hold the stable package BUT pretends to install the
  depends of the test version, thats is a bug...
 
  -- System Information:
  Debian Release: 5.0
   APT prefers stable
   APT policy: (900, 'stable'), (550, 'unstable'), (500, 'oldstable')
  Architecture: amd64 (x86_64)
 
  Kernel: Linux 2.6.26-1-amd64 (SMP w/2 CPU cores)
  Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
  Shell: /bin/sh linked to /bin/bash
 
  Versions of packages wajig depends on:
  ii  apt                         0.7.20.2     Advanced front-end for dpkg
  ii  dselect                     1.14.25      Debian package management 
  front-en
  ii  python                      2.5.2-3      An interactive high-level 
  object-o
  ii  python-apt                  0.7.7.1+nmu1 Python interface to libapt-pkg
  ii  python-central              0.6.8        register and build utility for 
  Pyt
 
  wajig recommends no packages.
 
  Versions of packages wajig suggests:
  ii  alien                   8.72             convert and install rpm and 
  other
  ii  apt-listbugs            0.0.94           Lists critical bugs before 
  each ap
  ii  apt-move                4.2.27-1+b4      Maintain Debian packages in a 
  pack
  ii  apt-show-versions       0.15             lists available package 
  versions w
  ii  debconf                 1.5.24           Debian configuration 
  management sy
  ii  deborphan               1.7.27           program that can find unused 
  packa
  ii  dpkg-repack             1.30             puts an unpacked .deb file 
  back to
  ii  fakeroot                1.11             Gives a fake root environment
  ii  fping                   2.4b2-to-ipv6-15 sends ICMP ECHO_REQUEST 
  packets to
  pn  gkdebconf               none           (no description available)
  pn  gnome-tasksel           none           (no description available)
  pn  gnome-terminal          none           (no description available)
  ii  locales                 2.7-18           GNU C Library: National 
  Language (
  pn  lynx                    none           (no description available)
  ii  python-glade2           2.12.1-6         GTK+ bindings: Glade support
  ii  python-gnome2           2.22.3-1         Python bindings for the GNOME 
  desk
  ii  python-gtk2             2.12.1-6         Python bindings for the GTK+ 
  widge
  ii  reportbug               3.48             reports bugs in the Debian 
  distrib
  ii  sudo                    1.6.9p17-2       Provide limited super user 
  privile
 
 
 
  --
  Perhaps the depth of love can be calibrated by the number of different
  selves that are actively involved in a given relationship.
 
                                         Carl Sagan (Contact)
 
                                         Jaime Ochoa Malagón
                                         Arquitecto de Soluciones
                                         Cel: +52 (55) 1021 0774
 
 
 
  --
  Perhaps the depth of love can be calibrated by the number of different
  selves that are actively involved in a given relationship.
 
                                        Carl Sagan (Contact)
 
                                        Jaime Ochoa Malagón
                                        Arquitecto de Soluciones
                                        Cel: +52 (55) 1021 0774
 
 
 



--
Perhaps the depth of love can be calibrated by the number of different
selves that are actively involved in a given relationship.

Carl Sagan (Contact)

Jaime Ochoa Malagón
Arquitecto de Soluciones
Cel: +52 (55) 1021 0774



--
To UNSUBSCRIBE, 

Bug#526528: dokuwiki: no source code for multipleUpload.swf

2009-05-01 Thread Raphael Geissert
Package: dokuwiki
Severity: serious
Version: 0.0.20090214-1

Hi,

While the copyright file claims that the package is licenced under the terms 
of the GNU GPL v2 there's no source code of multipleUpload.swf

Paul Wise did some research (see #516250)  some time ago and it looks like it 
comes from [1] (or a different version of it, since the md5sums don't match) 
which does provide the source code.

In the eventuality that it comes from [1]:
a) there's no copyright/licence information for it
b) there would be a copyright violation because Andreas Gohr claims its his 
work.

Whatever case it is, it is serious.

[1] http://blog.vixiom.com/uploads/multiFlashRailsFileUpload.zip

Cheers,
-- 
Raphael Geissert - Debian Maintainer
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#526529: amavisd-new: Can't locate object method new via package Amavis::SpamControl

2009-05-01 Thread Achim Schaefer
Package: amavisd-new
Version: 1:2.6.3-1
Severity: grave
Justification: renders package unusable

Starting fails with:
/etc/init.d/amavis start
Starting amavisd: Can't locate object method new via package 
Amavis::SpamControl at /usr/sbin/amavisd-new line 13905.
(failed).



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

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

Versions of packages amavisd-new depends on:
ii  adduser   3.110  add and remove users and groups
ii  debconf [debconf-2.0] 1.5.26 Debian configuration management sy
ii  file  5.00-1 Determines file type using magic
ii  libarchive-zip-perl   1.18-1 Module for manipulation of ZIP arc
ii  libberkeleydb-perl0.38-1 use Berkeley DB 4 databases from P
ii  libcompress-zlib-perl 2.015-1Perl module for creation and manip
ii  libconvert-tnef-perl  0.17-8 Perl module to read TNEF files
ii  libconvert-uulib-perl 1.11-1 Perl interface to the uulib librar
pn  libdigest-md5-perlnone (no description available)
ii  libio-stringy-perl2.110-4Perl modules for IO from scalars a
ii  libmailtools-perl 2.04-1 Manipulate email in perl programs
pn  libmime-base64-perl   none (no description available)
ii  libmime-tools-perl5.427-2Perl5 modules for MIME-compliant m
ii  libnet-server-perl0.97-1 An extensible, general perl server
ii  libunix-syslog-perl   1.1-2  Perl interface to the UNIX syslog(
ii  pax   1:1.5-16   Portable Archive Interchange
ii  perl [libtime-hires-perl] 5.10.0-19  Larry Wall's Practical Extraction 
ii  perl-modules [libarchive-tar- 5.10.0-19  Core Perl modules

amavisd-new recommends no packages.

Versions of packages amavisd-new suggests:
pn  apt-listchangesnone(no description available)
ii  arj3.10.22-6 archiver for .arj files
ii  cabextract 1.2-3 a program to extract Microsoft Cab
ii  clamav 0.95.1+dfsg-2 anti-virus utility for Unix - comm
ii  clamav-daemon  0.95.1+dfsg-2 anti-virus utility for Unix - scan
ii  cpio   2.9.90-3  GNU cpio -- a program to manage ar
pn  dspam  none(no description available)
pn  lhanone(no description available)
ii  libauthen-sasl-per 2.12-1Authen::SASL - SASL Authentication
ii  libdbi-perl1.607-1   Perl5 database interface by Tim Bu
pn  libmail-dkim-perl  none(no description available)
pn  libnet-ldap-perl   none(no description available)
pn  lzop   none(no description available)
pn  nomarchnone(no description available)
ii  p7zip  4.65~dfsg.1-1 7zr file archiver with high compre
ii  rpm4.4.2.3-1 Red Hat package manager
ii  spamassassin   3.2.5-4   Perl-based spam filter using text 
pn  unrar  none(no description available)
ii  unrar-free 1:0.0.1+cvs20071127-1 Unarchiver for .rar files
ii  zoo2.10-21   manipulate zoo archives

-- debconf information:
  amavisd-new/outdated_config_style_warning:



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



Bug#483494: the state of wacom support with xorg1.6

2009-05-01 Thread Jakob
On Sat, Apr 18, 2009 at 10:38:31PM +0930, Ron wrote:

 My apologies for the mass-ish mailing, but could you all please
 confirm or deny if the problems you reported to the Debian BTS
 are still problems for you with the new xorg now in Sid.

I've confirmed this problem still exists.

Jakob



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



Bug#526530: ggz-server: FTBFS: redefinition of 'struct flock'

2009-05-01 Thread Daniel Schepler
Package: ggz-server
Version: 0.0.14.1-1.2
Severity: serious

From my pbuilder build log:

...
cc -DHAVE_CONFIG_H -I. -I..  -I../ggzd/database -I../ggzd/meta -I../ggzdmod -I 
/usr/include  -I/usr/include -DGGZDCONFDIR=\/etc/ggzd\ 
-DGGZDSTATEDIR=\/var/lib/ggzd\ -DGGZDEXECMODDIR=\/usr/lib/ggzd\ -I 
/usr/include -I 
/usr/local/include -DGGZDDATADIR=\/usr/share/ggz/ggzd\  -g -O2 -g -Wall -O2 
-D_REENTRANT -c -o ggzd-control.o `test -f 'control.c' || echo './'`control.c
In file included from /usr/include/asm/fcntl.h:1,
 from /usr/include/linux/fcntl.h:4,
 from /usr/include/linux/inotify.h:11,
 from reconfiguration.h:31,
 from control.c:63:
/usr/include/asm-generic/fcntl.h:117: error: redefinition of 'struct flock'
/usr/include/asm-generic/fcntl.h:140: error: redefinition of 'struct flock64'
make[4]: *** [ggzd-control.o] Error 1
make[4]: Leaving directory `/tmp/buildd/ggz-server-0.0.14.1/ggzd'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/tmp/buildd/ggz-server-0.0.14.1/ggzd'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/tmp/buildd/ggz-server-0.0.14.1'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/tmp/buildd/ggz-server-0.0.14.1'
make: *** [debian/stamp-makefile-build] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
-- 
Daniel Schepler




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



Bug#526532: babel: FTBFS: 'ULONG_MAX' undeclared

2009-05-01 Thread Daniel Schepler
Package: babel
Version: 1.2.0.dfsg-7
Severity: serious

From my pbuilder build log:

...
/bin/sh ../libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../sidl  
-I./../sidl -I.   -g -O2 -fno-strict-aliasing -Wall -Wstrict-prototypes 
-pthread -c -o sidlx_common.lo sidlx_common.c
 gcc -DHAVE_CONFIG_H -I. -I../sidl -I./../sidl -I. -g -O2 -fno-strict-aliasing 
-Wall -Wstrict-prototypes -pthread -c sidlx_common.c  -fPIC -DPIC -o 
.libs/sidlx_common.o
sidlx_common.c: In function 's_accept':
sidlx_common.c:289: error: 'ULONG_MAX' undeclared (first use in this function)
sidlx_common.c:289: error: (Each undeclared identifier is reported only once
sidlx_common.c:289: error: for each function it appears in.)
sidlx_common.c: In function 's_connect':
sidlx_common.c:370: error: 'ULONG_MAX' undeclared (first use in this function)
make[3]: *** [sidlx_common.lo] Error 1
make[3]: Leaving directory `/tmp/buildd/babel-1.2.0.dfsg/runtime/sidlx'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/tmp/buildd/babel-1.2.0.dfsg/runtime'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/tmp/buildd/babel-1.2.0.dfsg'
make: *** [stamp-build] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2

Looks like a missing #include limits.h.
-- 
Daniel Schepler




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



Bug#526531: libogdi3.2-dev: Missing header projects.h or dependency for it

2009-05-01 Thread Daniel Schepler
Package: libogdi3.2-dev
Version: 3.2.0~beta2-3
Severity: serious

From my pbuilder build log for gdal:

...
/usr/bin/make -C ogdi install-obj
make[3]: Entering directory `/tmp/buildd/gdal-1.5.4/frmts/ogdi'
/bin/sh /tmp/buildd/gdal-1.5.4/libtool --mode=compile --tag=CXX g++ -g -O2  
-Wall  -I/tmp/buildd/gdal-1.5.4/port -I/tmp/buildd/gdal-1.5.4/gcore 
-I/tmp/buildd/gdal-1.5.4/alg -I/tmp/buildd/gdal-1.5.4/ogr -
I/tmp/buildd/gdal-1.5.4/ogr/ogrsf_frmts -I/usr/include/ogdi  -DOGR_ENABLED 
-I/tmp/buildd/gdal-1.5.4/port  -c -o ../o/ogdidataset.o ogdidataset.cpp
libtool: compile:  g++ -g -O2 -Wall -I/tmp/buildd/gdal-1.5.4/port 
-I/tmp/buildd/gdal-1.5.4/gcore -I/tmp/buildd/gdal-1.5.4/alg 
-I/tmp/buildd/gdal-1.5.4/ogr -I/tmp/buildd/gdal-1.5.4/ogr/ogrsf_frmts 
-I/usr/include/ogdi -DOGR_ENABLED -
I/tmp/buildd/gdal-1.5.4/port -c ogdidataset.cpp  -fPIC -DPIC -o 
../o/.libs/ogdidataset.o
In file included from /usr/include/ogdi/ecs.h:353,
 from ogdidataset.cpp:32:
/usr/include/ogdi/ecs_util.h:108:22: error: projects.h: No such file or 
directory
In file included from /usr/include/ogdi/ecs.h:353,
 from ogdidataset.cpp:32:
/usr/include/ogdi/ecs_util.h:1095: error: ISO C++ forbids declaration of 'PJ' 
with no type
/usr/include/ogdi/ecs_util.h:1095: error: expected ';' before '*' token
/usr/include/ogdi/ecs_util.h:1096: error: ISO C++ forbids declaration of 'PJ' 
with no type
/usr/include/ogdi/ecs_util.h:1096: error: expected ';' before '*' token
/usr/include/ogdi/ecs_util.h:1168: error: expected constructor, destructor, or 
type conversion before '*' token
make[3]: *** [../o/ogdidataset.o] Error 1
make[3]: Leaving directory `/tmp/buildd/gdal-1.5.4/frmts/ogdi'
make[2]: *** [ogdi-install-obj] Error 2
make[2]: Leaving directory `/tmp/buildd/gdal-1.5.4/frmts'
make[1]: *** [frmts-target] Error 2
make[1]: Leaving directory `/tmp/buildd/gdal-1.5.4'
make: *** [build-stamp] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
-- 
Daniel Schepler




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



Bug#526534: uudeview: FTBFS: Missing Build-Depends for a4.sty

2009-05-01 Thread Daniel Schepler
Package: uudeview
Version: 0.5.20-3.1
Severity: serious

From my pbuilder build log:

...
(cd doc  /usr/bin/make html)
make[1]: Entering directory `/tmp/buildd/uudeview-0.5.20/doc'
fig2dev -L latex  structure.fig  structure.tex
fig2dev -L latex  binhex.fig  binhex.tex
latex library.ltx
This is pdfTeXk, Version 3.141592-1.40.3 (Web2C 7.5.6)
 %-line parsing enabled.
entering extended mode
(./library.ltx
LaTeX2e 2005/12/01
Babel v3.8h and hyphenation patterns for english, usenglishmax, dumylang, noh
yphenation, loaded.
(/usr/share/texmf-texlive/tex/latex/base/article.cls
Document Class: article 2005/09/16 v1.4f Standard LaTeX document class
(/usr/share/texmf-texlive/tex/latex/base/size10.clo))
(/usr/share/texmf-texlive/tex/latex/graphics/epsfig.sty
(/usr/share/texmf-texlive/tex/latex/graphics/graphicx.sty
(/usr/share/texmf-texlive/tex/latex/graphics/keyval.sty)
(/usr/share/texmf-texlive/tex/latex/graphics/graphics.sty
(/usr/share/texmf-texlive/tex/latex/graphics/trig.sty)
(/etc/texmf/tex/latex/config/graphics.cfg)
(/usr/share/texmf-texlive/tex/latex/graphics/dvips.def
(/usr/share/texmf-texlive/tex/latex/psnfss/times.sty)
(/usr/share/texmf-texlive/tex/latex/ltxmisc/a4wide.sty

! LaTeX Error: File `a4.sty' not found.

Type X to quit or RETURN to proceed,
or enter new name. (Default extension: sty)

Enter file name: 
! Emergency stop.
read * 
 
l.13 ^^M

No pages of output.
Transcript written on library.log.
make[1]: *** [library.dvi] Error 1
make[1]: Leaving directory `/tmp/buildd/uudeview-0.5.20/doc'
make: *** [build-stamp] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2

(See also bug 427009, a4wide is obsolete.)
-- 
Daniel Schepler




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



Bug#526533: no instruments in newest version of ams

2009-05-01 Thread rosea
Package: ams
Version: 1.8.8~rc2-3.1
Severity: normal


In the latest version of ams, there are no instruments (or less) in 
/usr/share/doc/ams/instruments/

I had to download an previous version and mv the instruments from that package.

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

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

Versions of packages ams depends on:
ii  cmt1.15-3.1  Computer Music Toolkit (cmt) a col
ii  libasound2 1.0.19-1  shared library for ALSA applicatio
ii  libc6  2.9-4 GNU C Library: Shared libraries
ii  libclalsadrv1  1.2.2-1   ALSA driver C++ access library
ii  libgcc11:4.3.3-3 GCC support library
ii  libjack0   0.116.1-4 JACK Audio Connection Kit (librari
ii  libqt3-mt  3:3.3.8b-5+b1 Qt GUI Library (Threaded runtime v
ii  libstdc++6 4.3.3-3   The GNU Standard C++ Library v3
ii  mcp-plugins0.3.0-4   LADSPA plugins designed for Alsa M
ii  sfftw2 2.1.3-22  library for computing Fast Fourier
ii  swh-plugins0.4.15-1  Steve Harris's LADSPA plugins

Versions of packages ams recommends:
ii  amb-plugins   0.3.0-1ambisonics LADPSA plugins
ii  rev-plugins   0.3.1-1greverb-like ladspa plugin
ii  vco-plugins   0.3.0-1LADSPA plugin sporting anti-aliase

ams 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#526535: ecasound2.2: FTBFS: Missing Build-Depends

2009-05-01 Thread Daniel Schepler
Package: ecasound2.2
Version: 2.5.2-3
Severity: serious

From my pbuilder build log:

...
latex eci_doc.latex
This is pdfTeXk, Version 3.141592-1.40.3 (Web2C 7.5.6)
 %-line parsing enabled.
entering extended mode
(./eci_doc.latex
LaTeX2e 2005/12/01
Babel v3.8h and hyphenation patterns for english, usenglishmax, dumylang, noh
yphenation, loaded.
(/usr/share/texmf-texlive/tex/latex/base/article.cls
Document Class: article 2005/09/16 v1.4f Standard LaTeX document class
(/usr/share/texmf-texlive/tex/latex/base/size10.clo))
(/usr/share/texmf-texlive/tex/latex/base/fontenc.sty
(/usr/share/texmf-texlive/tex/latex/base/t1enc.def)kpathsea: Running mktextfm 
ecrm1000
mktextfm: Running mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode; 
input ecrm1000
This is METAFONT, Version 2.71828 (Web2C 7.5.6)
kpathsea: Running mktexmf ecrm1000

! I can't find file `ecrm1000'.
* ...ljfour; mag:=1; nonstopmode; input ecrm1000
  
Please type another input file name
! Emergency stop.
* ...ljfour; mag:=1; nonstopmode; input ecrm1000
  
Transcript written on mfput.log.
grep: ecrm1000.log: No such file or directory
mktextfm: `mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode; input 
ecrm1000' failed to make ecrm1000.tfm.
kpathsea: Appending font creation commands to missfont.log.

! Font T1/cmr/m/n/10=ecrm1000 at 10.0pt not loadable: Metric (TFM) file not fou
nd.
to be read again 
   relax 
l.100 \fontencoding\encodingdefault\selectfont
  
? 
! Emergency stop.
to be read again 
   relax 
l.100 \fontencoding\encodingdefault\selectfont
  
No pages of output.
Transcript written on eci_doc.log.
make[2]: *** [ecasound_eci_doc.pdf] Error 1
make[2]: Leaving directory 
`/tmp/buildd/ecasound2.2-2.5.2/Documentation/programmers_guide'
make[1]: *** [docs_guides] Error 2
make[1]: Leaving directory `/tmp/buildd/ecasound2.2-2.5.2/Documentation'
make: *** [build-stamp] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
-- 
Daniel Schepler




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



Bug#477449: Bug solved

2009-05-01 Thread chaica
Hi,

With the latest version 4.2, reportbug automatically stops after having
been configured. So I think we may consider this bug as closed.

Bye,
Carl Chenet




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



Bug#526538: update-alternatives --remove: deletes file without checking it is a symlink

2009-05-01 Thread Yann Dirson
Package: dpkg
Version: 1.14.26
Severity: critical

When aptitude-gtk appeared in experimental I installed it just to
test, but kept aptitude itself from sid or testing.  When the new
version added a versionned dep on aptitude, I decided to remove it
rather than upgrading aptitude itself to experimental.  Then I was
left with /usr/bin/aptitude non existent.

Looking at the new postinst I noticed the experimental packages now
use alternatives, so I sorta replayed what had happenned:

* at install time:

# update-alternatives --install /usr/bin/aptitude aptitude /bin/ls 60
# ls -l /usr/bin/aptitude
-rwxr-xr-x 1 root root 2113556 Nov 20 05:10 /usr/bin/aptitude
# ls -l /etc/alternatives/aptitude
lrwxrwxrwx 1 root root 7 May  1 22:13 /etc/alternatives/aptitude - /bin/ls


It is dubious that --install would even not issue a warning that
/usr/bin/aptitude was already there without being a symlink at first.
I even think it should be made an error.


* then at uninstall time:

# update-alternatives --remove aptitude /bin/ls
# ls -l /etc/alternatives/aptitude
ls: cannot access /etc/alternatives/aptitude: No such file or directory
# ls -l /usr/bin/aptitude
ls: cannot access /usr/bin/aptitude: No such file or directory


Unconditionnal removal of an unrelated file without any check was
surely not wanted.

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

Kernel: Linux 2.6.23.8-smp (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=french (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages dpkg depends on:
ii  coreutils 7.2-1  The GNU core utilities
ii  libc6 2.9-4  GNU C Library: Shared libraries
ii  lzma  4.43-14Compression method of 7z format in

dpkg recommends no packages.

Versions of packages dpkg suggests:
ii  apt   0.7.20.2   Advanced front-end for dpkg

-- 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#526537: gtkhtml3.8: FTBFS: Compiler parser error

2009-05-01 Thread Daniel Schepler
Package: gtkhtml3.8
Version: 3.12.3-3
Severity: serious

From my pbuilder build log:

...
/bin/sh ../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. 
-I../src -DORBIT2=1 -pthread -D_REENTRANT -I/usr/include/libgnomeui-2.0 
-I/usr/include/libart-2.0 -I/usr/include/gconf/2 -I/usr/include/gnome-keyring-1 
-
I/usr/include/libgnome-2.0 -I/usr/include/libbonoboui-2.0 
-I/usr/include/libgnomecanvas-2.0 -I/usr/include/gtk-2.0 
-I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include 
-I/usr/include/orbit-2.0 -I/usr/include/dbus-1.0 -
I/usr/lib/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/usr/include/libbonobo-2.0 -I/usr/include/bonobo-activation-2.0 
-I/usr/include/libxml2 -I/usr/include/pango-1.0 -I/usr/include/gail-1.0 
-I/usr/include/freetype2 -
I/usr/include/atk-1.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairo 
-I/usr/include/pixman-1 -I/usr/include/directfb -I/usr/include/libpng12 
-I/usr/include/libgnomeprintui-2.2 -I/usr/include/libgnomeprint-2.2 
-I/usr/include/libglade-2.0   -
DGNOME_EXPLICIT_TRANSLATION_DOMAIN=\gtkhtml-3.8\ 
-DBONOBO_EXPLICIT_TRANSLATION_DOMAIN=\gtkhtml-3.8\   -D_REENTRANT 
-I/usr/include/gail-1.0 -I/usr/include/atk-1.0 -I/usr/include/gtk-2.0 
-I/usr/include/glib-2.0 -
I/usr/lib/glib-2.0/include -I/usr/lib/gtk-2.0/include -I/usr/include/cairo 
-I/usr/include/pango-1.0 -I/usr/include/pixman-1 -I/usr/include/freetype2 
-I/usr/include/directfb -I/usr/include/libpng12   -DGTK_DISABLE_DEPRECATED=1 -
DGDK_DISABLE_DEPRECATED=1 -DG_DISABLE_DEPRECATED=1 -DGNOME_DISABLE_DEPRECATED=1 
-g -O2 -g -Wall -O2 -Wall -Wmissing-prototypes -c -o factory.lo factory.c
 cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -DORBIT2=1 -pthread -D_REENTRANT 
-I/usr/include/libgnomeui-2.0 -I/usr/include/libart-2.0 -I/usr/include/gconf/2 
-I/usr/include/gnome-keyring-1 -I/usr/include/libgnome-2.0 -
I/usr/include/libbonoboui-2.0 -I/usr/include/libgnomecanvas-2.0 
-I/usr/include/gtk-2.0 -I/usr/include/gnome-vfs-2.0 
-I/usr/lib/gnome-vfs-2.0/include -I/usr/include/orbit-2.0 
-I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include -
I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libbonobo-2.0 
-I/usr/include/bonobo-activation-2.0 -I/usr/include/libxml2 
-I/usr/include/pango-1.0 -I/usr/include/gail-1.0 -I/usr/include/freetype2 
-I/usr/include/atk-1.0 -
I/usr/lib/gtk-2.0/include -I/usr/include/cairo -I/usr/include/pixman-1 
-I/usr/include/directfb -I/usr/include/libpng12 
-I/usr/include/libgnomeprintui-2.2 -I/usr/include/libgnomeprint-2.2 
-I/usr/include/libglade-2.0 -
DGNOME_EXPLICIT_TRANSLATION_DOMAIN=\gtkhtml-3.8\ 
-DBONOBO_EXPLICIT_TRANSLATION_DOMAIN=\gtkhtml-3.8\ -D_REENTRANT 
-I/usr/include/gail-1.0 -I/usr/include/atk-1.0 -I/usr/include/gtk-2.0 
-I/usr/include/glib-2.0 -
I/usr/lib/glib-2.0/include -I/usr/lib/gtk-2.0/include -I/usr/include/cairo 
-I/usr/include/pango-1.0 -I/usr/include/pixman-1 -I/usr/include/freetype2 
-I/usr/include/directfb -I/usr/include/libpng12 -DGTK_DISABLE_DEPRECATED=1 -
DGDK_DISABLE_DEPRECATED=1 -DG_DISABLE_DEPRECATED=1 -DGNOME_DISABLE_DEPRECATED=1 
-g -O2 -g -Wall -O2 -Wall -Wmissing-prototypes -c factory.c  -fPIC -DPIC -o 
.libs/factory.o
In file included from factory.c:3:
../src/gtkhtml.h:135: error: expected '=', ',', ';', 'asm' or '__attribute__' 
before 'gtk_html_get_type'
factory.c: In function 'gtk_html_accessibility_init':
factory.c:61: warning: implicit declaration of function 'gtk_html_get_type'
make[3]: *** [factory.lo] Error 1
make[3]: Leaving directory `/tmp/buildd/gtkhtml3.8-3.12.3/a11y'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/tmp/buildd/gtkhtml3.8-3.12.3'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/tmp/buildd/gtkhtml3.8-3.12.3'
make: *** [debian/stamp-makefile-build] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
-- 
Daniel Schepler




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



Bug#515035: Backport changes from 2.3.1 to 2.2.2 or new upload?

2009-05-01 Thread Mazen NEIFER
FPC 2.2.4 will be uploaded soon by Carlos. 

Cheers,
Mazen,

Le vendredi 01 mai 2009 à 16:12 +0200, Salvatore Bonaccorso a écrit :
 Hi Mazen!
 
 On Mon, Mar 16, 2009 at 12:18:42PM +0100, Mazen Neifer wrote:
  FPC 2.2.4 is being released by the end of the week, This problem is
  probably fixed in it. Otherwise I will backport the fixed from 2.3.1
 
 fpc 2.2.4 is released now, so I would like to ask, if there were plan
 to upload this to unstable, and if the fix did it into 2.2.4?
 
 Thanks a lot and best regards
 Salvatore





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



Bug#520656: capisuite patch

2009-05-01 Thread Savvas Radevic
Hi, I am terribly sorry, I forgot to update the patch in debian based
on ubuntu. The patch attached in debian needs Namely, there are two
patches involved. Which patch did you use?

This is the ubuntu patch similar to the one I included in the debian report:
http://launchpadlibrarian.net/23325206/capisuite_0.4.5-8ubuntu2_without_zlib.debdiff

This change is required as well, in order for the patches to be
applied *before* the configure command is issued:
http://launchpadlibrarian.net/24194341/capisuite_0.4.5-8ubuntu3.debdiff



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



Bug#477364: use of the gd driver for graphviz disables the antialiasing in graphs. The bug is still present

2009-05-01 Thread Ludovic Rousseau

Matthias Klose a écrit :

Ludovic Rousseau schrieb:

As suggested by
http://ekaia.org/blog/2009/01/01/new-years-proposal-look-at-your-reported-bugs/
I tried to reproduce the problem I reported.

The bug is still present in version 1.5.8-1~exp1 from experimental.

Maybe there is a good reason for the debian/patches/gd-renderer.dpatch
patch. A better reason than nicer graphics.


we can change it, however won't it open #444147 again?


If I understand well this patch is used just to reduce the size of some 
Debian -doc packages. It is Debian (and derivatives) specific.



Regarding #444147 I note that asterisk-doc (1:1.4.21.2~dfsg-3.1) from 
unstable is 32 MB but asterisk-doc (1:1.6.1.0~dfsg~rc3-1) from 
experimental is 2 MB only and does not contain Doxygen images any more. 
So it looks like the size of the asterisk-doc packages will not be and 
issue any more.

So #444147 may not be opened again.

The perfect solution would be to be able to configure doxygen to use low 
quality images only when needed/requested. Maybe -Tpng:gd can be used 
for that as suggested in [1], and should be used for asterisk-doc 
instead of lowering the quality of the images for _all_ the doxygen users.


Regards,

[1] 
https://mailman.research.att.com/pipermail/graphviz-interest/2007q3/004771.html


--
 Dr. Ludovic Rousseau



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



Bug#526536: avifile: FTBFS: multiple definition of `sws_freeContext'

2009-05-01 Thread Daniel Schepler
Package: avifile
Version: 1:0.7.47.20070718-1.2
Severity: serious

From my pbuilder build log:

...
/bin/sh ../libtool --tag=CXX --mode=link x86_64-linux-gnu-g++ 
-finline-limit-200 -Wall -O2 -ffast-math -fomit-frame-pointer -pipe   -o 
libaviplay.la -rpath /usr/lib -release 0.7 -version-info 0:47:0 codeckeeper.lo 
Uncompressed.lo 
aviplay/libaviplay.la aviread/libaviread.la aviwrite/libaviwrite.la 
common/libcommon.la subtitle/libsubtitle.la video/libvideo.la -lpthread -ldl 
-lnsl 
libtool: link: x86_64-linux-gnu-g++ -shared -nostdlib 
/usr/lib/gcc/x86_64-linux-gnu/4.3.3/../../../../lib/crti.o 
/usr/lib/gcc/x86_64-linux-gnu/4.3.3/crtbeginS.o  .libs/codeckeeper.o 
.libs/Uncompressed.o  -Wl,--whole-archive 
aviplay/.libs/libaviplay.a aviread/.libs/libaviread.a 
aviwrite/.libs/libaviwrite.a common/.libs/libcommon.a 
subtitle/.libs/libsubtitle.a video/.libs/libvideo.a -Wl,--no-whole-archive  -lz 
/usr/lib/liba52.so -ldts /usr/lib/libSDL.so -lSM -lICE -
lXinerama -lXi -lXext -lX11 -lXft -lpthread -ldl -lnsl 
-L/usr/lib/gcc/x86_64-linux-gnu/4.3.3 
-L/usr/lib/gcc/x86_64-linux-gnu/4.3.3/../../../../lib -L/lib/../lib 
-L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.3.3/../../.. 
-L/usr/lib/x86_64-linux-gnu -
lstdc++ -lm -lc -lgcc_s /usr/lib/gcc/x86_64-linux-gnu/4.3.3/crtfastmath.o 
/usr/lib/gcc/x86_64-linux-gnu/4.3.3/crtendS.o 
/usr/lib/gcc/x86_64-linux-gnu/4.3.3/../../../../lib/crtn.o-Wl,-soname 
-Wl,libaviplay-0.7.so.0 -o 
.libs/libaviplay-0.7.so.0.0.47
aviread/.libs/libaviread.a(swscale.o): In function `sws_freeContext':
swscale.c:(.text+0x4910): multiple definition of `sws_freeContext'
aviread/.libs/libaviread.a(imgresample.o):imgresample.c:(.text+0x20): first 
defined here
aviread/.libs/libaviread.a(swscale.o): In function `sws_scale':
swscale.c:(.text+0x4d00): multiple definition of `sws_scale'
aviread/.libs/libaviread.a(imgresample.o):imgresample.c:(.text+0x930): first 
defined here
aviread/.libs/libaviread.a(swscale.o): In function `sws_getContext':
swscale.c:(.text+0x8440): multiple definition of `sws_getContext'
aviread/.libs/libaviread.a(imgresample.o):imgresample.c:(.text+0xdb0): first 
defined here
aviread/.libs/libaviread.a(swscale.o): In function `sws_getCachedContext':
swscale.c:(.text+0xa370): multiple definition of `sws_getCachedContext'
aviread/.libs/libaviread.a(imgresample.o):imgresample.c:(.text+0xed0): first 
defined here
collect2: ld returned 1 exit status
make[3]: *** [libaviplay.la] Error 1
make[3]: Leaving directory `/tmp/buildd/avifile-0.7.47.20070718/lib'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/tmp/buildd/avifile-0.7.47.20070718/lib'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/tmp/buildd/avifile-0.7.47.20070718'
make: *** [build-stamp] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
-- 
Daniel Schepler




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



Bug#526539: otf-stix: FTBFS: Missing Build-Depends

2009-05-01 Thread Daniel Schepler
Package: otf-stix
Version: 0.9~2007.10.31-2
Severity: serious

From my pbuilder build log:

...
 debian/rules build
dh_testdir
# Add here commands to configure the package.
touch configure-stamp
dh_testdir
mkdir build
cd build; unzip ../STIXBeta.zip
/bin/sh: unzip: command not found
make: *** [build-stamp] Error 127
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
-- 
Daniel Schepler




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



Bug#526540: cxxtools: FTBFS: Cannot find debian/tmp/usr/lib/*.a

2009-05-01 Thread Daniel Schepler
Package: cxxtools
Version: 1.4.8-2
Severity: serious

From my pbuilder build log:

...
dh_installudev -plibcxxtools-dev 
dh_lintian -plibcxxtools-dev 
dh_install -plibcxxtools-dev  
dh_install: libcxxtools-dev missing files (debian/tmp/usr/lib/*.a), aborting
make: *** [binary-install/libcxxtools-dev] Error 1
dpkg-buildpackage: failure: fakeroot debian/rules binary gave error exit status 
2
-- 
Daniel Schepler




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



Bug#450674: Moreinfo

2009-05-01 Thread chaica
tags 450674 moreinfo
thanks

Hi,

I'm not sure to understand the problem, is it you have â and ä character
in the email subject and it is generating the funny justification we can
read on the bug report? If it is the case, I was not able to reproduce
it with the latest 4.1 version.

Bye,
Carl Chenet




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



Bug#526541: ladr: FTBFS: Cannot find debian/tmp/usr/lib/lib*.a

2009-05-01 Thread Daniel Schepler
Package: ladr
Version: 0.0.200902a-1
Severity: serious

From my pbuilder build log:

...
dh_installdocs
dh_installexamples
find debian/*/usr/share/doc -size 0 -exec rm -f \{\} \;
dh_install
dh_install: libladr-dev missing files (debian/tmp/usr/lib/lib*.a), aborting
make: *** [binary-arch] Error 1
dpkg-buildpackage: failure: fakeroot debian/rules binary gave error exit status 
2
-- 
Daniel Schepler




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



Bug#526542: initramfs-tools: fails if swap is encrypted and LVM is used

2009-05-01 Thread Mate Soos
Package: initramfs-tools
Version: 0.92o
Severity: important

Use LVM and have a swap an encrypted partition. Then
suspend to disk. Then try to resume now all those nasty no sed,
no tr errors during boot (before the passphrase prompt) will kick into
effect, and your system will boot normally, instead of resuming.

Also, there is a useless prompt where the computer asks at every boot to
identify the swap, even though the correct path in the LVM is on the
prompt (but says that that's not good).

Once the sed and tr are in the generated iniramfs, all is OK.

-- Package-specific info:
-- /proc/cmdline
root=/dev/hda2 ro quiet

-- /proc/filesystems
ext3

-- lsmod
Module  Size  Used by
i915   25856  2 
drm66120  3 i915
binfmt_misc 7336  1 
ppdev   6500  0 
parport_pc 27576  0 
lp  8140  0 
parport30964  3 ppdev,parport_pc,lp
acpi_cpufreq6636  1 
cpufreq_conservative 5896  0 
cpufreq_userspace   3204  0 
cpufreq_stats   3844  0 
cpufreq_powersave   1824  0 
microcode   8336  0 
nfsd  187644  17 
auth_rpcgss31048  1 nfsd
exportfs4000  1 nfsd
nfs   217432  0 
lockd  54040  2 nfsd,nfs
nfs_acl 2880  2 nfsd,nfs
sunrpc163156  13 nfsd,auth_rpcgss,nfs,lockd,nfs_acl
ipv6  210372  22 
loop   13164  0 
snd_hda_intel 323540  1 
snd_pcm_oss32096  0 
snd_mixer_oss  12256  1 snd_pcm_oss
snd_pcm62788  2 snd_hda_intel,snd_pcm_oss
arc41824  2 
ecb 2624  2 
snd_seq_dummy   2660  0 
snd_seq_oss24636  0 
iwlagn 76676  0 
snd_seq_midi5760  0 
iwlcore74724  1 iwlagn
pcmcia 29940  0 
snd_rawmidi18688  1 snd_seq_midi
snd_seq_midi_event  6368  2 snd_seq_oss,snd_seq_midi
psmouse32016  0 
led_class   3876  1 iwlcore
rtc_cmos8704  0 
snd_seq41576  6 
snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_seq_midi_event
firmware_class  6888  3 microcode,iwlagn,pcmcia
rtc_core   13948  1 rtc_cmos
i2c_i8018112  0 
mac80211  114864  2 iwlagn,iwlcore
rtc_lib 2848  1 rtc_core
yenta_socket   20780  1 
rsrc_nonstatic  9344  1 yenta_socket
serio_raw   4804  0 
i2c_core   20564  1 i2c_i801
iTCO_wdt9572  0 
pcmcia_core30484  3 pcmcia,yenta_socket,rsrc_nonstatic
snd_timer  17992  2 snd_pcm,snd_seq
cfg80211   21320  3 iwlagn,iwlcore,mac80211
snd_seq_device  6412  5 
snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_rawmidi,snd_seq
video  16240  0 
snd45688  11 
snd_hda_intel,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_seq_oss,snd_rawmidi,snd_seq,snd_timer,snd_seq_device
output  2784  1 video
intel_agp  22460  1 
soundcore   6440  1 snd
joydev  8672  0 
wmi 6408  0 
snd_page_alloc  7336  2 snd_hda_intel,snd_pcm
battery10116  0 
agpgart29780  3 drm,intel_agp
button  6032  0 
ac  4132  0 
evdev   8324  9 
dcdbas  6336  0 
ext3  105128  5 
jbd40820  1 ext3
mbcache 7396  1 ext3
sha256_generic 11392  0 
cbc 3264  1 
dm_crypt   11268  1 
crypto_blkcipher   15204  4 ecb,cbc,dm_crypt
dm_mirror  15936  0 
dm_log  8548  1 dm_mirror
dm_snapshot15332  0 
dm_mod 46772  15 dm_crypt,dm_mirror,dm_log,dm_snapshot
usbhid 23364  0 
hid33868  1 usbhid
ide_disk   10464  4 
ata_piix   15460  0 
ata_generic 4580  0 
libata143788  2 ata_piix,ata_generic
scsi_mod  129948  1 libata
dock8368  1 libata
piix5800  3 
atkbd  15476  0 
firewire_ohci  18020  0 
firewire_core  32096  1 firewire_ohci
crc_itu_t   2080  1 firewire_core
ide_pci_generic 3588  0 
ide_core   84548  3 ide_disk,piix,ide_pci_generic
ehci_hcd   29292  0 
tg3   104836  0 
libphy 17248  1 tg3
uhci_hcd   19088  0 
usbcore   118392  4 usbhid,ehci_hcd,uhci_hcd
thermal15132  0 
processor  33420  4 acpi_cpufreq,thermal
fan 4324  0 
thermal_sys 9416  4 video,thermal,processor,fan

-- /etc/kernel-img.conf
# Kernel image management overrides
# See 

Bug#526511: snort-mysql: Snort does not log to mysql db

2009-05-01 Thread Jeffrey B. Green

  Everything work okay before the upgrade to lenny.
 The db was receiving alerts after the upgrade and in particular it was 
 receiving alerts up until 26 April. The events stop there in the acidbase 
 listings.

   
Alerts have started being logged again to the database.

They only active thing that I did was mysql connect from the firewall to
the db server as the snort user and also connect to the database from
the database server as the snort user. In both connects I tried to
retrieve the last cid from the data table. The request did not return
anything, it hung in a way, i.e. no return. Go figure.

-jeff



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



Bug#526543: moodle: copyright file lacks information about flv/mp3player

2009-05-01 Thread Raphael Geissert
Package: moodle
Version: 1.6.3-2
Severity: important

Hi,

filter/mediaplugin/flvplayer.README.txt claims that *flv*player is included 
under the terms of the GPL (the Genius People License maybe? credits for 
that one goes to Cyril Brulebois.) And there's no mention of the mp3player 
there either (although I can see a .fla file for that one as well.)

But in neither of them are mentioned in the copyright file.

Would you please clarify what GPL stands for (heh, I know; but it could be 
any version, or any licence), probably together with a copyright notice?

Cheers,
-- 
Raphael Geissert - Debian Maintainer
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#526544: gnome-session: Should use gnome-wm by default rather than metacity

2009-05-01 Thread Josh Triplett
Package: gnome-session
Version: 2.26.1-1
Severity: wishlist

Currently, gnome-session launches the window manager specified by
/desktop/gnome/session/required_components/windowmanager, which defaults
to metacity.  This means that changing the window manager launched by
gnome-session requires setting that gconf key.  That gconf key can only
have one value, making it difficult to implement logic like Launch my
preferred window manager if available, but fall back to metacity if
not.

gnome-session ships a script, gnome-wm, specifically designed to find
and exec an appropriate window manager, defaulting to metacity.  This
script supports setting the WINDOW_MANAGER environment variable, which
..xsession could then set based on the availability of different window
managers.

Please consider setting the default for
/desktop/gnome/session/required_components/windowmanager to gnome-wm.
Users could still override this setting themselves to set the window
manager, or they could set the WINDOW_MANAGER environment variable.

Note that this will also require installing the gnome-wm .desktop file
to /usr/share/applications, which the gnome-session package does not
currently do.

- Josh Triplett

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

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

Versions of packages gnome-session depends on:
ii  dbus-x11 1.2.12-1simple interprocess messaging syst
ii  gconf2   2.26.0-1GNOME configuration database syste
ii  gnome-settings-daemon2.26.0-2daemon handling the GNOME session 
ii  libc62.9-9   GNU C Library: Shared libraries
ii  libdbus-1-3  1.2.12-1simple interprocess messaging syst
ii  libdbus-glib-1-2 0.80-4  simple interprocess messaging syst
ii  libgconf2-4  2.26.0-1GNOME configuration database syste
ii  libglade2-0  1:2.6.4-1   library to load .glade files at ru
ii  libglib2.0-0 2.20.1-1The GLib library of C routines
ii  libgtk2.0-0  2.16.1-2The GTK+ graphical user interface 
ii  libice6  2:1.0.5-1   X11 Inter-Client Exchange library
ii  libpango1.0-01.24.0-3+b1 Layout and rendering of internatio
ii  libpolkit-dbus2  0.9-3   library for accessing PolicyKit vi
ii  libpolkit-gnome0 0.9.2-2 PolicyKit-gnome library
ii  libpolkit2   0.9-3   library for accessing PolicyKit
ii  libsm6   2:1.1.0-2   X11 Session Management library
ii  libstartup-notification0 0.10-1  library for program launch feedbac
ii  libx11-6 2:1.2.1-1   X11 client-side library
ii  libxau6  1:1.0.4-2   X11 authorisation library
ii  libxext6 2:1.0.4-1   X11 miscellaneous extension librar
ii  libxrender1  1:0.9.4-2   X Rendering Extension client libra
ii  libxtst6 2:1.0.3-1   X11 Testing -- Resource extension 
ii  policykit-gnome  0.9.2-2 GNOME dialogs for PolicyKit

Versions of packages gnome-session recommends:
ii  gnome-panel   2.26.0-1   launcher and docking facility for 
ii  metacity  1:2.24.0-2 A lightweight GTK2 based Window Ma
ii  nautilus  2.24.2-2   file manager and graphical shell f

Versions of packages gnome-session suggests:
ii  desktop-base  5.0.5  common files for the Debian Deskto
ii  gnome-keyring 2.26.0-4   GNOME keyring services (daemon and
ii  gnome-user-guide [gnome2-user 2.24.2-2   GNOME user's guide

-- 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#526497: [873e67d] Fix for Bug#526497 committed to git

2009-05-01 Thread Manoj Srivastava

tags 526497 +pending
thanks
Hi,

 The following change has been committed for this bug by
 Manoj Srivastava sriva...@debian.org on Fri, 1 May 2009 15:27:50 -0500.
 The fix will be in the next upload. 
=
[526497] Fix typo in header_postinst.d/link example

The first change  is an simple typo fix, ~ -- !

Next, the test to set the correct architecture is incorrect for
i386/amd64, as both got merged around 2.6.24, thus the check should be
amd64|i386) instead of just amd64).

Thanks to Sven Hartge

Closes: #526497

Signed-off-by: Manoj Srivastava sriva...@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#526475: ampache does install 145 MByte including MySQL on an Embedded System

2009-05-01 Thread Charlie Smotherman
On Fri, 2009-05-01 at 15:58 +0200, Michelle Konzack wrote:
 Package: ampache
 Version: 3.4.1-2
 Severity: major
 
 Hello Maintainer,
 
 according  to   the   Website   http://ampache.org/wiki/install:debian
 ampache does NOT require the installation of MySQL but  on  my  embedded
 i386 System with a 512 MByte NAND  Flash  it  try  to  and  enforce  the
 installation of MySQL.  In summary 145 MByte!!!
 
Thank you for bringing this to my attention.  Indeed mysql-server is in
the Recommends field of debian/control, I will demote mysql-server to
the Suggests field in Ampache-3.5 which is due to be released in the
coming weeks.

You should be able to use the --no-install-recommends option with
apt-get to prevent the installation of mysql-server.

 
 I do not know a singel person which install on its own a MySQL server on
 a System connected directly to the Internet.

Having Ampache not install mysql-server was actually suggested by the DD
who sponsors this package.  IMHO mysql-server upgrades should be done by
a system admin and not by a maintainer script.
 
 My current MySQL which I was forced to install for  an  OnlineShop  (now
 closed) has 18 grave/rc bugs and I was hacked over MySQL several times.

Hopefully these will be resolved soon.
 
 My PostgresQL (from Debian Lenny and 8.3) is running since 1999 with  an
 open SSL port to the internet on a Dual-STM-4 (- 2 x 622 MBit)  without
 being hacked, even if I have several 1000 hack attempts per day.
 
 So, my feature request is to use PostgreSQL and of  course,  remote  SQL
 server.  On the website it was write, it is posibel, but it seems I have
 to recompile the whole bunch my own because potential security issues in
 the Debian version because MySQL.
 
I would forward your request to the upstream developer, however it seems
that you have already contacted the upstream developer about this
feature request already.

http://ampache.org/bugs/ticket/446 

Best regards
Charlie


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


Bug#526552: qd: FTBFS: libtool errors

2009-05-01 Thread Daniel Schepler
Package: qd
Version: 1.0.0-rc2-6
Severity: serious

From my pbuilder build log:

...
Making all in src
make[3]: Entering directory `/tmp/buildd/qd-2.3.7/src'
/bin/sh ../libtool --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H   -I.. 
-I../include -I../include   -O3  -c -o c_dd.lo c_dd.cpp
../libtool: line 855: X--tag=CXX: command not found
../libtool: line 888: libtool: ignoring unknown tag : command not found
../libtool: line 855: X--mode=compile: command not found
../libtool: line 1021: *** Warning: inferring the mode of operation is 
deprecated.: command not found
../libtool: line 1022: *** Future versions of Libtool will require --mode=MODE 
be specified.: command not found
../libtool: line 1165: Xg++: command not found
../libtool: line 1165: X-DHAVE_CONFIG_H: command not found
../libtool: line 1165: X-I..: command not found
../libtool: line 1165: X-I../include: No such file or directory
../libtool: line 1165: X-I../include: No such file or directory
../libtool: line 1165: X-O3: command not found
../libtool: line 1165: X-c: command not found
../libtool: line 1216: Xc_dd.lo: command not found
../libtool: line 1221: libtool: compile: cannot determine name of library 
object from `': command not found
make[3]: *** [c_dd.lo] Error 1
make[3]: Leaving directory `/tmp/buildd/qd-2.3.7/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/tmp/buildd/qd-2.3.7'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/tmp/buildd/qd-2.3.7'
make: *** [debian/stamp-makefile-build] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2

That kind of error is usually caused by the autoconf macros for libtool
being out of sync with ltmain.sh.
-- 
Daniel Schepler




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



Bug#526555: libsql-abstract-perl: please remove me from Uploaders

2009-05-01 Thread Bart Martens
Package: libsql-abstract-perl
Version: 1.52-1
Severity: wishlist

Please remove Bart Martens ba...@debian.org from the Uploaders
field in debian/control.



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


Bug#526556: munge: FTBFS: storage size of 'cred' isn't known

2009-05-01 Thread Daniel Schepler
Package: munge
Version: 0.5.8-7
Severity: serious

From my pbuilder build log:

...
Making install in munged
make[3]: Entering directory `/tmp/buildd/munge-0.5.8/src/munged'
if x86_64-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I../../config  
-I../../src/libcommon -I../../src/libmissing -I../../src/libmunge  
-DWITH_PTHREADS  -Wall -g -O2 -Wl,-z,defs -MT munged-auth_recv.o -MD -MP -MF 
.deps/munged-auth_recv.Tpo 
-c -o munged-auth_recv.o `test -f 'auth_recv.c' || echo './'`auth_recv.c; \
then mv -f .deps/munged-auth_recv.Tpo .deps/munged-auth_recv.Po; 
else rm -f .deps/munged-auth_recv.Tpo; exit 1; fi
auth_recv.c: In function 'auth_recv':
auth_recv.c:312: error: storage size of 'cred' isn't known
auth_recv.c:312: warning: unused variable 'cred'
make[3]: *** [munged-auth_recv.o] Error 1
make[3]: Leaving directory `/tmp/buildd/munge-0.5.8/src/munged'
make[2]: *** [install-recursive] Error 1
make[2]: Leaving directory `/tmp/buildd/munge-0.5.8/src'
make[1]: *** [install-recursive] Error 1
make[1]: Leaving directory `/tmp/buildd/munge-0.5.8'
make: *** [install-arch] Error 2
dpkg-buildpackage: failure: fakeroot debian/rules binary gave error exit status 
2
-- 
Daniel Schepler




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



Bug#526558: timps: FTBFS: 'INT_MIN' undeclared here

2009-05-01 Thread Daniel Schepler
Package: timps
Version: 0.25-2
Severity: serious

From my pbuilder build log:

...
gcc -DHAVE_CONFIG_H -I. -I. -I../include -I. -I../libmx/include -I../include 
-I/usr/local/include/libnbio -I/usr/include/libnbio-fno-strict-aliasing 
-Wall -g -DNOXML -c conn.c
In file included from conn.c:66:
/usr/include/linux/netfilter_ipv4.h:53: error: 'INT_MIN' undeclared here (not 
in a function)
/usr/include/linux/netfilter_ipv4.h:64: error: 'INT_MAX' undeclared here (not 
in a function)
conn.c: In function 'listconns_tag_matcher':
conn.c:972: warning: cast from pointer to integer of different size
conn.c: In function 'cleanlisteners_matcher':
conn.c:1216: warning: the address of 'addr' will always evaluate as 'true'
make[3]: *** [conn.o] Error 1
make[3]: Leaving directory `/tmp/buildd/timps-0.25/naf'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/tmp/buildd/timps-0.25/naf'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/tmp/buildd/timps-0.25'
make: *** [build-stamp] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2

Looks like a missing #include limits.h.
-- 
Daniel Schepler




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



Bug#526557: swh-plugins: FTBFS: unsupported hardcode properties in libtool

2009-05-01 Thread Daniel Schepler
Package: swh-plugins
Version: 0.4.15-1
Severity: serious

From my pbuilder build log:

...
/bin/sh ./libtool --tag=CC --mode=link x86_64-linux-gnu-gcc  -g -O2 -Wall -O3 
-fomit-frame-pointer -fstrength-reduce -funroll-loops -ffast-math -fPIC -DPIC   
-module -avoid-version -Wc,-nostartfiles  -o mbeq_1197.la -rpath 
/usr/lib/ladspa  mbeq_1197_la-mbeq_1197.lo -lfftw3f -lm   -lrt -lm -lm  -lm
libtool: link: unsupported hardcode properties
libtool: link: See the libtool documentation for more information.
libtool: link: Fatal configuration error.
make[3]: *** [mbeq_1197.la] Error 1
make[3]: Leaving directory `/tmp/buildd/swh-plugins-0.4.15'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/tmp/buildd/swh-plugins-0.4.15'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/tmp/buildd/swh-plugins-0.4.15'
make: *** [build-stamp] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
-- 
Daniel Schepler




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



Bug#520794: samba: smbd memory usage always increase - memory leak

2009-05-01 Thread Peter Cordes
On Fri, May 01, 2009 at 07:45:47AM +0200, Christian Perrier wrote:
 Quoting Peter Cordes (pe...@cordes.ca):
   It doesn't leak memory anymore, but I'm seeing smbd panics every
  few days.
 
 
 Well, ae you sure that this is related to the memory leak fix??

 No.

 I didn't see any panics in the week I was running the leaky Debian
binary package.  Maybe that was just random chance, since I have
only seen 4 panics since Apr 14th, when I installed the self-compiled
version.
Sat Apr 18 14:04:32 2009
Tue Apr 21 16:06:47 2009
Fri Apr 24 17:39:27 2009
Wed Apr 29 18:06:36 2009
(So probably while samba was actually in use from one of the client
machines, judging from the times.)

 Even if the binary package was ok, it's possible my build environment
introduced a problem.  I built the packages on the same fully
up-to-date Lenny that I'm running Samba on, though.  Using
dpkg-buildpackage -us -uc -b,  IIRC.

 It's possible I would have seen those samba panics if I'd just
compiled from source without applying the patch.

 My machine doesn't have enough memory to test for long with the leak
happening, so I can't think of any great solutions.  I can install the
-dbg package, though, and maybe get a useful backtrace.

-- 
#define X(x,y) x##y
Peter Cordes ;  e-mail: X(pe...@cor , des.ca)

The gods confound the man who first found out how to distinguish the hours!
 Confound him, too, who in this place set up a sundial, to cut and hack
 my day so wretchedly into small pieces! -- Plautus, 200 BC



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



Bug#526560: libjingle0.3: FTBFS: libtool errors

2009-05-01 Thread Daniel Schepler
Package: libjingle0.3
Version: 0.3.11-5
Severity: serious

From my pbuilder build log:

...
/bin/sh ../../libtool --silent --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H 
-I../.. -I../..-DPOSIX  -g -O2 -g -Wall -O2   -c -o socketaddress.lo 
socketaddress.cc
../../libtool: line 807: X--tag=CXX: command not found
../../libtool: line 840: libtool: ignoring unknown tag : command not found
../../libtool: line 807: X--mode=compile: command not found
../../libtool: line 973: *** Warning: inferring the mode of operation is 
deprecated.: command not found
../../libtool: line 974: *** Future versions of Libtool will require 
--mode=MODE be specified.: command not found
../../libtool: line 1117: Xg++: command not found
../../libtool: line 1117: X-DHAVE_CONFIG_H: command not found
../../libtool: line 1117: X-I../..: No such file or directory
../../libtool: line 1117: X-I../..: No such file or directory
../../libtool: line 1117: X-DPOSIX: command not found
../../libtool: line 1117: X-g: command not found
../../libtool: line 1117: X-O2: command not found
../../libtool: line 1117: X-g: command not found
../../libtool: line 1117: X-Wall: command not found
../../libtool: line 1117: X-O2: command not found
../../libtool: line 1117: X-c: command not found
../../libtool: line 1168: Xsocketaddress.lo: command not found
../../libtool: line 1173: libtool: compile: cannot determine name of library 
object from `': command not found
make[4]: *** [socketaddress.lo] Error 1
make[4]: Leaving directory `/tmp/buildd/libjingle0.3-0.3.11/talk/base'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/tmp/buildd/libjingle0.3-0.3.11/talk'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/tmp/buildd/libjingle0.3-0.3.11'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/tmp/buildd/libjingle0.3-0.3.11'
make: *** [debian/stamp-makefile-build] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2

That kind of error is usually caused by libtool's autoconf macros being out
of sync with ltmain.sh.
-- 
Daniel Schepler




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



Bug#526559: makeztxt: FTBFS: storage size of 'regs' isn't known

2009-05-01 Thread Daniel Schepler
Package: makeztxt
Version: 1.60-5
Severity: serious

From my pbuilder build log:

...
gcc -Wall -O2 -pipe -I../common -I. -DO_BINARY=0 -DLONG_OPTS=1 -I../../common 
-I.. -O2 -Wall -c ztxt_init.c
ztxt_init.c: In function 'ztxt_init':
ztxt_init.c:64: warning: pointer targets in passing argument 1 of 'strcpy' 
differ in signedness
gcc -Wall -O2 -pipe -I../common -I. -DO_BINARY=0 -DLONG_OPTS=1 -I../../common 
-I.. -O2 -Wall -c ztxt_process.c
ztxt_process.c: In function 'process_regex':
ztxt_process.c:167: error: storage size of 'regs' isn't known
ztxt_process.c:174: error: 'RE_SYNTAX_POSIX_EXTENDED' undeclared (first use in 
this function)
ztxt_process.c:174: error: (Each undeclared identifier is reported only once
ztxt_process.c:174: error: for each function it appears in.)
ztxt_process.c:174: error: 'RE_CHAR_CLASSES' undeclared (first use in this 
function)
ztxt_process.c:195: error: 'struct re_pattern_buffer' has no member named 
'buffer'
ztxt_process.c:196: error: 'struct re_pattern_buffer' has no member named 
'allocated'
ztxt_process.c:197: error: 'struct re_pattern_buffer' has no member named 
'translate'
ztxt_process.c:198: error: 'struct re_pattern_buffer' has no member named 
'fastmap'
ztxt_process.c:200: warning: implicit declaration of function 
're_compile_pattern'
ztxt_process.c:201: warning: assignment makes pointer from integer without a 
cast
ztxt_process.c:207: error: 'struct re_pattern_buffer' has no member named 
'fastmap'
ztxt_process.c:208: error: 'struct re_pattern_buffer' has no member named 
'fastmap'
ztxt_process.c:237: warning: implicit declaration of function 're_search'
ztxt_process.c:167: warning: unused variable 'regs'
ztxt_process.c: In function 'compress_ztxt':
ztxt_process.c:324: warning: pointer targets in assignment differ in signedness
ztxt_process.c:325: warning: pointer targets in assignment differ in signedness
ztxt_process.c:357: warning: pointer targets in assignment differ in signedness
ztxt_process.c:368: warning: pointer targets in assignment differ in signedness
ztxt_process.c:405: warning: pointer targets in assignment differ in signedness
ztxt_process.c:406: warning: pointer targets in assignment differ in signedness
make[2]: *** [ztxt_process.o] Error 1
make[2]: Leaving directory `/tmp/buildd/makeztxt-1.60/libztxt'
make[1]: *** [libztxt/libztxt.a] Error 2
make[1]: Leaving directory `/tmp/buildd/makeztxt-1.60'
make: *** [build-stamp] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2

Looks like a missing #include.
-- 
Daniel Schepler




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



Bug#526561: libgps17 v 2.38 breaks BU-353 (Sirf) GPS

2009-05-01 Thread Steve Stancliff
Package: libgps17
Version: 2.38-1
Severity: normal


I am using the BU-353 USB GPS units on numerous machines of various 
architectures.  The specific machine that I have debugged this on is an armel.  
 After an upgrade to 2.38 this GPS stopped working.

The symptom is no output from GPSD, either using one of the supplied client 
programs, or via telnet.  Downgrading the gpsd package to 2.37 did not fix the 
problem.  I then downgraded libgps17 to 2.37 and now all is back to normal. 
Before downgrading to 2.37 I tried upgrading to 2.39, since the gpsd changelogs 
mention breakage in 2.38.  2.39 acted the same as 2.38 for me.

Running gpsd in foreground mode with debug level=2 did not reveal anything 
useful - 2.37 and 2.38 debug messages look about the same. 


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

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

Versions of packages libgps17 depends on:
ii  libc6 2.9-4  GNU C Library: Shared libraries
ii  libgcc1   1:4.3.2-1  GCC support library
ii  libstdc++64.3.2-1The GNU Standard C++ Library v3

libgps17 recommends no packages.

libgps17 suggests no packages.

-- debconf-show failed



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



Bug#526562: tgt: FTBFS: storage size of 'cred' isn't known

2009-05-01 Thread Daniel Schepler
Package: tgt
Version: 20070924-1
Severity: serious

From my pbuilder build log:

...
cc -c -Wall -g -O2 -DISCSI -D_LARGEFILE64_SOURCE -I../include -I/include -I. -
g -O2 -Wall -Wstrict-prototypes -fPIC mgmt.c -o mgmt.o
mgmt.c: In function 'ipc_perm':
mgmt.c:341: error: storage size of 'cred' isn't known
mgmt.c:341: warning: unused variable 'cred'
make[1]: *** [mgmt.o] Error 1
make[1]: Leaving directory `/tmp/buildd/tgt-20070924/usr'
make: *** [build-stamp] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
-- 
Daniel Schepler




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



Bug#526549: radiusclient: FTBFS: libtool error

2009-05-01 Thread Daniel Schepler
Package: radiusclient
Version: 0.3.2-11.1
Severity: serious

From my pbuilder build log:

...
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
updating cache ./config.cache
ltconfig: you must specify a host type if you use `--no-verify'
Try `ltconfig --help' for more information.
configure: error: libtool configure failed
make: *** [build-stamp] Error 1
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
-- 
Daniel Schepler




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



Bug#372250: patch to allow -f option to cancel configure mode

2009-05-01 Thread chaica
tags 372250 patch
thanks

Hi,

Here is the patch to solve this issue, allowing reportbug to have the
same behavior when configuration files have not been defined and using
-f option or not e.g : 

$ reportbug chmod

and 

$ reportbug -f chmod

These two commands now don't launch the configuration mode.

Bye,
Carl Chenet


0001-f-option-does-not-trigger-configure-mode-anymore.patch
Description: application/mbox


Bug#526565: use of stamps in debian/rules.d/binary-*.mk breaks parallel build (-j2)

2009-05-01 Thread Robert Millan
Package: gcc-4.4
Severity: normal

Several debian/rules.d/binary-*.mk files perform the following hack.  At
the beginning of a target:

mv $(install_stamp) $(install_stamp)-tmp

and at its end:

trap '' 1 2 3 15; touch $@; mv $(install_stamp)-tmp $(install_stamp)

Since the value of $(install_stamp) is shared among them, this makes them
collide with each other, breaking parallel builds (-j2).

I suggest you use a different stamp name for each file.

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

Kernel: Linux 2.6.26-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=ca_AD.UTF-8, LC_CTYPE=ca_AD.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#526566: libbio-primerdesigner-perl: FTBFS: Failed test 'Call to remote server'

2009-05-01 Thread Daniel Schepler
Package: libbio-primerdesigner-perl
Version: 0.05-1
Severity: serious

From my pbuilder build log:

...
/usr/bin/perl Build test
t/epcr...ok
t/pod-coverage...ok
t/podok
t/primer3ok
t/primer_designerok
t/remote.
#   Failed test 'Call to remote server'
#   at t/remote.t line 20.
# Looks like you failed 1 test of 5.
dubious
Test returned status 1 (wstat 256, 0x100)
DIED. FAILED test 5
Failed 1/5 tests, 80.00% okay
t/result.ok
2/3 skipped: various reasons
t/tables.ok
8/10 skipped: various reasons
Failed Test Stat Wstat Total Fail  List of Failed
---
t/remote.t 1   256 51  5
10 subtests skipped.
Failed 1/8 test scripts. 1/72 subtests failed.
Files=8, Tests=72, 203 wallclock secs ( 1.11 cusr +  0.11 csys =  1.22 CPU)
Failed 1/8 test programs. 1/72 subtests failed.
make: *** [build-stamp] Error 255
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
-- 
Daniel Schepler




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



Bug#526563: trousers: FTBFS: Invalid libtool wrapper script

2009-05-01 Thread Daniel Schepler
Package: trousers
Version: 0.3.1-7
Severity: serious

From my pbuilder build log:

...
make[2]: Leaving directory `/tmp/buildd/trousers-0.3.1'
make[1]: Leaving directory `/tmp/buildd/trousers-0.3.1'
libtool --mode=install install tools/ps_convert 
/tmp/buildd/trousers-0.3.1/debian/tmp/usr/sbin/ps_convert
libtool: install: invalid libtool wrapper script `tools/ps_convert'
make: *** [install] Error 1
dpkg-buildpackage: failure: fakeroot debian/rules binary gave error exit status 
2
-- 
Daniel Schepler




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



Bug#526564: cal command crashing

2009-05-01 Thread Praveen A
Package: bsdmainutils
Version: 6.1.10
Severity: critical

cal command is crashing with the following error message.

cal
*** glibc detected *** cal: free(): invalid next size (fast): 0x09bf5998 ***
=== Backtrace: =
/lib/i686/cmov/libc.so.6[0xb7f68204]
/lib/i686/cmov/libc.so.6(cfree+0x96)[0xb7f6a1b6]
cal[0x8048dd0]
cal[0x8049fbd]
cal[0x804a945]
/lib/i686/cmov/libc.so.6(__libc_start_main+0xe5)[0xb7f0f775]
cal[0x8048931]
=== Memory map: 
08048000-0804c000 r-xp  fe:02 452301 /usr/bin/ncal
0804c000-0804d000 rw-p 4000 fe:02 452301 /usr/bin/ncal
09bf5000-09c16000 rw-p 09bf5000 00:00 0  [heap]
b7c0-b7c21000 rw-p b7c0 00:00 0
b7c21000-b7d0 ---p b7c21000 00:00 0
b7d7c000-b7da7000 r-xp  fe:02 703138 /lib/libgcc_s.so.1
b7da7000-b7da8000 rw-p 0002a000 fe:02 703138 /lib/libgcc_s.so.1
b7db6000-b7ef8000 r--p  fe:02 468156 /usr/lib/locale/locale-archive
b7ef8000-b7ef9000 rw-p b7ef8000 00:00 0
b7ef9000-b8053000 r-xp  fe:02 711364 /lib/i686/cmov/libc-2.9.so
b8053000-b8055000 r--p 0015a000 fe:02 711364 /lib/i686/cmov/libc-2.9.so
b8055000-b8056000 rw-p 0015c000 fe:02 711364 /lib/i686/cmov/libc-2.9.so
b8056000-b8059000 rw-p b8056000 00:00 0
b806-b8067000 r--s  fe:02 449686
/usr/lib/gconv/gconv-modules.cache
b8067000-b8069000 rw-p b8067000 00:00 0
b8069000-b806a000 r-xp b8069000 00:00 0  [vdso]
b806a000-b8086000 r-xp  fe:02 703486 /lib/ld-2.9.so
b8086000-b8087000 r--p 0001b000 fe:02 703486 /lib/ld-2.9.so
b8087000-b8088000 rw-p 0001c000 fe:02 703486 /lib/ld-2.9.so
bfa72000-bfa87000 rw-p bffeb000 00:00 0  [stack]
Aborted

-- 
പ്രവീണ്‍ അരിമ്പ്രത്തൊടിയില്‍
GPLv2 I know my rights; I want my phone call!
DRM What use is a phone call, if you are unable to speak?
(as seen on /.)
Join The DRM Elimination Crew Now!
http://fci.wikia.com/wiki/Anti-DRM-Campaign



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



Bug#526567: libspreadsheet-read-perl: FTBFS: Test failures

2009-05-01 Thread Daniel Schepler
Package: libspreadsheet-read-perl
Version: 0.34-1
Severity: serious

From my pbuilder build log:

...
t/60_xls...# Parser: Spreadsheet::XLSX-0.1
ok
t/61_clr...
#   Failed test 'Unspecified fill color'
#   at t/61_clr.t line 27.
#  got: '#00'
# expected: undef

#   Failed test 'BG (1, 1)'
#   at t/61_clr.t line 47.
#  got: '#00'
# expected: undef

#   Failed test 'FG (1, 2)'
#   at t/61_clr.t line 46.
#  got: undef
# expected: '#ff'

...
#   Failed test 'Formatted values for row 19
# '
#   at t/65_perc.t line 31.
#  got: '0.00100%'
# expected: '0%'
# Looks like you failed 19 tests of 77.
dubious
Test returned status 19 (wstat 4864, 0x1300)
DIED. FAILED tests 5, 9, 13, 17, 21, 25, 29, 33, 37, 41, 45, 49, 53, 57, 61, 
65, 69, 73, 77
Failed 19/77 tests, 75.32% okay
Failed Test  Stat Wstat Total Fail  List of Failed
---
t/61_clr.t154 39424   256  154  4 8 10-11 13-14 16-17 19-20 22-23 25-26 28-
29 31-32 36 38-39 41-42 44-45 47-48 50-51
53-54 56-57 59-60 64 66-67 69-70 72-73 75-
76 78-79 81-82 84-85 87-88 92 94-95 97-98
100-101 103-104 106-107 109-110 112-113
115-116 120 122-123 125-126 128-129 131-132
134-135 137-138 140-141 143-144 148 150-151
153-154 156-157 159-160 162-163 165-166
168-169 171-172 176 178-179 181-182 184-185
187-188 190-191 193-194 196-197 199-200 204
206-207 209-210 212-213 215-216 218-219
221-222 224-225 227-228 232 234-235 237-238
240-241 243-244 246-247 249-250 252-253
255-256
t/62_fmt.t  9  2304399  3 5-7 13 30 34 36-37
t/64_dates.t   24  614469   24  6 11-13 18 23-25 30 35-37 42 47-53 58-61
t/65_perc.t19  486477   19  5 9 13 17 21 25 29 33 37 41 45 49 53 57 61
65 69 73 77
3 tests skipped.
Failed 4/23 test scripts. 206/1526 subtests failed.
Files=23, Tests=1526,  5 wallclock secs ( 4.23 cusr +  0.41 csys =  4.64 CPU)
Failed 4/23 test programs. 206/1526 subtests failed.
make[1]: *** [test_dynamic] Error 19
make[1]: Leaving directory `/tmp/buildd/libspreadsheet-read-perl-0.34'
dh_auto_test: make returned exit code 2
make: *** [build-stamp] Error 1
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
-- 
Daniel Schepler




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



Bug#526555: Bug in libsql-abstract-perl fixed in revision 34600

2009-05-01 Thread pkg-perl-maintainers
tag 526555 + pending
thanks

Some bugs are closed in revision 34600
by Gregor Herrmann (gregoa)

Commit message:

debian/control: remove Bart Martens from Uploaders on his request
(closes: #526555).



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



Bug#526568: firebird2.0: FTBFS: autoconf errors

2009-05-01 Thread Daniel Schepler
Package: firebird2.0
Version: 2.0.4.13130-1.ds1-4
Severity: serious

From my pbuilder build log:

...
touch debian/stamp-patched
NOCONFIGURE=1 sh autogen.sh
AUTOCONF=autoconf
LIBTOOL=libtool
LIBTOOLiZE=libtoolize
Running libtoolize ...
cp: target `aclocal.m4' is not a directory
libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 
`builds/make.new/config'.
libtoolize: copying file `builds/make.new/config/ltmain.sh'
libtoolize: You should add the contents of the following files to `aclocal.m4':
libtoolize:   `/usr/share/aclocal/libtool.m4'
libtoolize:   `/usr/share/aclocal/ltoptions.m4'
libtoolize:   `/usr/share/aclocal/ltversion.m4'
libtoolize:   `/usr/share/aclocal/ltsugar.m4'
libtoolize:   `/usr/share/aclocal/lt~obsolete.m4'
libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.in and
libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree.
libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
Running autoheader ...
Running autoconf ...
configure.in:427: error: possibly undefined macro: AC_PROG_LIBTOOL
  If this token and others are legitimate, please use m4_pattern_allow.
  See the Autoconf documentation.
configure.in:428: error: possibly undefined macro: AC_LIBTOOL_DLOPEN
configure.in:429: error: possibly undefined macro: AC_LIBTOOL_WIN32_DLL
make: *** [autogen-stamp] Error 1
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
-- 
Daniel Schepler




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



Bug#526561: libgps17 v 2.38 breaks BU-353 (Sirf) GPS

2009-05-01 Thread Bernd Zeimetz
Steve Stancliff wrote:
 Package: libgps17
 Version: 2.38-1
 Severity: normal
 
 
 I am using the BU-353 USB GPS units on numerous machines of various 
 architectures.  The specific machine that I have debugged this on is an 
 armel.   After an upgrade to 2.38 this GPS stopped working.
 
 The symptom is no output from GPSD, either using one of the supplied client 
 programs, or via telnet.  Downgrading the gpsd package to 2.37 did not fix 
 the problem.  I then downgraded libgps17 to 2.37 and now all is back to 
 normal. 
 Before downgrading to 2.37 I tried upgrading to 2.39, since the gpsd 
 changelogs mention breakage in 2.38.  2.39 acted the same as 2.38 for me.

Please give gpsd 2.39 (still in unstable, not migrated yet as we have a library
transition) a try and check if the problem still exists there.

Thanks,

Bernd

-- 
 Bernd Zeimetz   Debian GNU/Linux Developer
 GPG Fingerprint: 06C8 C9A2 EAAD E37E 5B2C BE93 067A AD04 C93B FF79



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



Bug#526551: linux-image-2.6.29-1-686: Does not halt/reboot on EeePC 901

2009-05-01 Thread Erwin Rieger
Package: linux-image-2.6.29-1-686
Version: 2.6.29-3
Severity: normal

System shutdown (poweroff or reboot) does not complete. Screen blanks and then 
it hangs.
Have to press powerbutton for some seconds to turn it off. The system will NOT 
start again,
it hangs with hdd-led on at power-on. 

The funny part: everything is ok if the ac-powersupply is disconnected and the 
eeepc is 
running on battery! For example, to start the eeepc after a unsuccessful 
poweroff, i have to 
unplug the powersupply, press the powerbutton and then it will start. 

Rebooting is working when running on battery, too.

I have also issues with resuming from suspend with this kernel.

-- Package-specific info:

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

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

Versions of packages linux-image-2.6.29-1-686 depends on:
ii  debconf [debconf-2.0] 1.5.26 Debian configuration management sy
ii  initramfs-tools [linux-initra 0.93.2 tools for generating an initramfs
ii  module-init-tools 3.7-pre9-1 tools for managing Linux kernel mo

Versions of packages linux-image-2.6.29-1-686 recommends:
ii  libc6-i6862.9-9  GNU C Library: Shared libraries [i

Versions of packages linux-image-2.6.29-1-686 suggests:
ii  grub  0.97-53GRand Unified Bootloader (Legacy v
pn  linux-doc-2.6.29  none (no description available)

-- debconf information:
  linux-image-2.6.29-1-686/preinst/abort-overwrite-2.6.29-1-686:
  shared/kernel-image/really-run-bootloader: true
  linux-image-2.6.29-1-686/preinst/overwriting-modules-2.6.29-1-686: true
  linux-image-2.6.29-1-686/preinst/elilo-initrd-2.6.29-1-686: true
  linux-image-2.6.29-1-686/preinst/initrd-2.6.29-1-686:
  linux-image-2.6.29-1-686/preinst/bootloader-initrd-2.6.29-1-686: true
  linux-image-2.6.29-1-686/postinst/bootloader-test-error-2.6.29-1-686:
  linux-image-2.6.29-1-686/postinst/depmod-error-initrd-2.6.29-1-686: false
  linux-image-2.6.29-1-686/prerm/removing-running-kernel-2.6.29-1-686: true
  linux-image-2.6.29-1-686/preinst/lilo-has-ramdisk:
  linux-image-2.6.29-1-686/postinst/old-system-map-link-2.6.29-1-686: true
  linux-image-2.6.29-1-686/postinst/kimage-is-a-directory:
  linux-image-2.6.29-1-686/postinst/old-dir-initrd-link-2.6.29-1-686: true
  linux-image-2.6.29-1-686/preinst/lilo-initrd-2.6.29-1-686: true
  linux-image-2.6.29-1-686/postinst/depmod-error-2.6.29-1-686: false
  linux-image-2.6.29-1-686/postinst/bootloader-error-2.6.29-1-686:
  linux-image-2.6.29-1-686/preinst/failed-to-move-modules-2.6.29-1-686:
  linux-image-2.6.29-1-686/postinst/create-kimage-link-2.6.29-1-686: true
  linux-image-2.6.29-1-686/prerm/would-invalidate-boot-loader-2.6.29-1-686: true
  linux-image-2.6.29-1-686/preinst/abort-install-2.6.29-1-686:
  linux-image-2.6.29-1-686/postinst/old-initrd-link-2.6.29-1-686: true



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



Bug#526545: www.debian.org: update Debian Policy delegates

2009-05-01 Thread Russ Allbery
Package: www.debian.org
Severity: normal

Could you update the list of Debian Policy delegates on
http://www.debian.org/intro/organization?  The current delegate list is:

Russ Allbery
Bill Allombert
Andrew McMillan
Manoj Srivastava
Colin Watson

Thanks!

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

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



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



Bug#526548: libuninameslist: FTBFS: cannot run /bin/sh ./config.sub

2009-05-01 Thread Daniel Schepler
Package: libuninameslist
Version: 0.0.20080409-1
Severity: serious

From my pbuilder build log:

...
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for a BSD-compatible install... /usr/bin/install -c
configure: error: cannot run /bin/sh ./config.sub
make: *** [configure-stamp] Error 1
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
-- 
Daniel Schepler




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



Bug#526547: libnoise: FTBFS: undefined reference to `main'

2009-05-01 Thread Daniel Schepler
Package: libnoise
Version: 1.0.0
Severity: serious

From my pbuilder build log:

...
libtool --mode=link g++  -shared -Wl,-soname=libnoise.so.0 -o libnoise.so.0.3 
../src/latlon.lo ../src/noisegen.lo ../src/model/cylinder.lo 
../src/model/line.lo ../src/model/plane.lo ../src/model/sphere.lo 
../src/module/abs.lo 
../src/module/add.lo ../src/module/billow.lo ../src/module/blend.lo 
../src/module/cache.lo ../src/module/checkerboard.lo ../src/module/clamp.lo 
../src/module/const.lo ../src/module/curve.lo ../src/module/cylinders.lo 
../src/module/displace.lo ../src/module/exponent.lo ../src/module/invert.lo 
../src/module/max.lo ../src/module/min.lo ../src/module/modulebase.lo 
../src/module/multiply.lo ../src/module/perlin.lo ../src/module/power.lo 
../src/module/ridgedmulti.lo ../src/module/rotatepoint.lo 
../src/module/scalebias.lo ../src/module/scalepoint.lo ../src/module/select.lo 
../src/module/spheres.lo ../src/module/terrace.lo 
../src/module/translatepoint.lo 
../src/module/turbulence.lo ../src/module/voronoi.lo
libtool: link: g++ -Wl,-soname=libnoise.so.0 -o libnoise.so.0.3 
../src/.libs/latlon.o ../src/.libs/noisegen.o ../src/model/.libs/cylinder.o 
../src/model/.libs/line.o ../src/model/.libs/plane.o 
../src/model/.libs/sphere.o 
../src/module/.libs/abs.o ../src/module/.libs/add.o 
../src/module/.libs/billow.o ../src/module/.libs/blend.o 
../src/module/.libs/cache.o ../src/module/.libs/checkerboard.o 
../src/module/.libs/clamp.o ../src/module/.libs/const.o 
../src/module/.libs/curve.o ../src/module/.libs/cylinders.o 
../src/module/.libs/displace.o ../src/module/.libs/exponent.o 
../src/module/.libs/invert.o ../src/module/.libs/max.o 
../src/module/.libs/min.o ../src/module/.libs/modulebase.o 
../src/module/.libs/multiply.o ../src/module/.libs/perlin.o 
../src/module/.libs/power.o ../src/module/.libs/ridgedmulti.o 
../src/module/.libs/rotatepoint.o ../src/module/.libs/scalebias.o 
../src/module/.libs/scalepoint.o 
../src/module/.libs/select.o ../src/module/.libs/spheres.o 
../src/module/.libs/terrace.o ../src/module/.libs/translatepoint.o 
../src/module/.libs/turbulence.o ../src/module/.libs/voronoi.o 
/usr/lib/gcc/x86_64-linux-gnu/4.3.3/../../../../lib/crt1.o: In function 
`_start':
/tmp/buildd/glibc-2.9/csu/../sysdeps/x86_64/elf/start.S:109: undefined 
reference to `main'
collect2: ld returned 1 exit status
make[2]: *** [libnoise.so.0.3] Error 1
make[2]: Leaving directory `/tmp/buildd/libnoise-1.0.0/build-tree/noise/src'
make[1]: *** [src] Error 2
make[1]: Leaving directory `/tmp/buildd/libnoise-1.0.0/build-tree/noise'
make: *** [stampdir/build-stamp] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
-- 
Daniel Schepler




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



Bug#526550: ggtl: FTBFS: Missing argument to -L

2009-05-01 Thread Daniel Schepler
Package: ggtl
Version: 2.1.4-2
Severity: serious

From my pbuilder build log:

...
/bin/sh ./libtool --tag=CC --mode=link cc  -W -Wall -Werror   -o reversi-demo 
-L -lreversi reversi-demo.o  -lsimplelist 
libtool: link: require no space between `-L' and `-lreversi'
make[1]: *** [reversi-demo] Error 1
make[1]: Leaving directory `/tmp/buildd/ggtl-2.1.4'
make: *** [debian/stamp-makefile-build] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
-- 
Daniel Schepler




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



Bug#471905: wpasupplicant: Wpasupplicant works only good if I start it with low Priority

2009-05-01 Thread Mario Schmidt
Hi,

I'm having same Problems as described above: no way to connect to my router 
(sitecom WL114) with WPA. Using no encryption works.
Writing this from my wired workstation - so no copyPaste at moment.
But I can give you information which hopefully helps:
-using Ubuntu 9.04 UNR (with Kubuntu 8.04+madwifi-hal-0.10.5.6 it worked)
-very slow machine: 600MHz Celeron (Asus Eee701 Netbook)
-tried different drivers: above mentioned Madwifi, madwifi shipped with 9.04, 
ath5k
-SSID visible
-with the nice option it takes about 5 to 10 tries to connect, and even then 
its very unstable
-tried NetworkManager, WICD and wpa_supplicant directly
-gnome response is very slow on trying to connect, CPU is between 20 and 90 
percent while trying to connect
-when connected, connection is very unstable (slow, packets lost, resulting in 
disconnect)

uname -r: 2.6.28-11-generic
version: v0.6.6

Router Log:
Mo 03 Nov 2008 23:45:31 CET Associated:  00-11-22-33-44-55 st=17
Mo 03 Nov 2008 23:45:31 CET Associated:  00-11-22-33-44-55 st=17
Mo 03 Nov 2008 23:47:08 CET Associated:  00-11-22-33-44-55 st=0
Mo 03 Nov 2008 23:47:11 CET Disassociated: 00-11-22-33-44-55 because WPA retey 
failed
(internal clock of is wrong :/ )

Mario



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



Bug#526553: jclassinfo: FTBFS: libtool error

2009-05-01 Thread Daniel Schepler
Package: jclassinfo
Version: 0.19.1-2
Severity: serious

From my pbuilder build log:

...
Making all in jclass
make[3]: Entering directory `/tmp/buildd/jclassinfo-0.19.1/jclass'
/bin/sh ../libtool --tag=CC   --mode=compile x86_64-linux-gnu-gcc 
-DHAVE_CONFIG_H -I. -I.. -g -O2 -Wall -MT attributes.lo -MD -MP -MF 
.deps/attributes.Tpo -c -o attributes.lo attributes.c
../libtool: line 648: X--tag=CC: command not found
../libtool: line 681: libtool: ignoring unknown tag : command not found
../libtool: line 648: X--mode=compile: command not found
../libtool: line 798: *** Warning: inferring the mode of operation is 
deprecated.: command not found
../libtool: line 799: *** Future versions of Libtool will require -mode=MODE be 
specified.: command not found
../libtool: line 942: Xx86_64-linux-gnu-gcc: command not found
../libtool: line 942: X-DHAVE_CONFIG_H: command not found
../libtool: line 942: X-I.: command not found
../libtool: line 942: X-I..: command not found
../libtool: line 942: X-g: command not found
../libtool: line 942: X-O2: command not found
../libtool: line 942: X-Wall: command not found
../libtool: line 942: X-MT: command not found
../libtool: line 942: Xattributes.lo: command not found
../libtool: line 942: X-MD: command not found
../libtool: line 942: X-MP: command not found
../libtool: line 942: X-MF: command not found
../libtool: line 942: X.deps/attributes.Tpo: No such file or directory
../libtool: line 942: X-c: command not found
../libtool: line 990: Xattributes.lo: command not found
../libtool: line 995: libtool: compile: cannot determine name of library object 
from `': command not found
make[3]: *** [attributes.lo] Error 1
make[3]: Leaving directory `/tmp/buildd/jclassinfo-0.19.1/jclass'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/tmp/buildd/jclassinfo-0.19.1'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/tmp/buildd/jclassinfo-0.19.1'
make: *** [build-stamp] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2

That kind of error is usually caused by the autoconf macros for libtool being
out of sync with ltmain.sh.
-- 
Daniel Schepler




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



Bug#526554: CVE-2009-1494: Information disclosure

2009-05-01 Thread Moritz Muehlenhoff
Package: memcached
Severity: important
Tags: security

Please see this link for more information:
http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-1494 

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

Kernel: Linux 2.6.29-1-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages memcached depends on:
ii  libc6 2.9-9  GNU C Library: Shared libraries
pn  libevent1 none (no description available)
ii  perl  5.10.0-19  Larry Wall's Practical Extraction 

memcached recommends no packages.

Versions of packages memcached suggests:
pn  libcache-memcached-perl   none (no description available)



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



Bug#463643: no i386 and powerpc build daemons available which can run 64bit binaries

2009-05-01 Thread Philipp Kern
On Sat, Apr 04, 2009 at 10:48:02PM +0200, Matthias Klose wrote:
  Another new buildd for powerpc (praetorius) is a ppc64 LPAR partition got
  set up and runs a 64bit kernel.  Now we need to identify the packages 
  needing
  such testsuites and pin them to the capable buildds.
 this is good news!
  Matthias and Aurelien, are there more than just gcc-4.x and glibc which
  need this?
 potentially all packages which build a lib64xxx package and which can run a
 testsuite. If these packages do have a testsuite it is probably not run now.

With the help of Aurelien I blacklisted the following on malo, voltaire (both
ppc) and murphy (i386):

gcc-4.1 gcc-4.2 gcc-4.3 gcc-4.4 gcj-4.2 gcj-4.3 gcj-4.4 gfortran-4.1
gfortran-4.2 glibc eglibc

If you need more we should collect them here.

Kind regards,
Philipp Kern



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



Bug#524196: [Pkg-alsa-devel] Bug#524196: USB webcam randomly disables soundcard

2009-05-01 Thread Philip
Hi
there is no /etc/modprobe.d/sound.conf on my system
but there is a /etc/modprobe.d/sound
so I edited that as you suggest, and removed my entry from
/etc/modprobe.d/alsa-base
so far it seems to work
I haven't tried disconnecting the webcam though
I was just hoping that there might be a more automatic way for this to
happen when people install alsa rather than editing conf files
I'm happy for you to close the bug.  Hopefully folks will find it when
they have the same problem that I had.
thanks, Philip

Elimar Riesebieter wrote:
 * Philip [090415 13:12 +0100]
 Package: alsa-base
 Version: 1.0.17.dfsg-4

 If a logitech pro 9000 webcam (with built in microphone) is plugged in
 then the Intel motherboard sound card will randomly fail on boot.
 This will appear in dmesg
 [   10.698812] cannot find the slot for index 0 (range 0-0), error: -16
 [   10.698812] Intel ICH: probe of :00:1e.2 failed with error -12

 Solution.
 Edit /etc/modprobe.d/alsa-base
 add this to the file

 # Keep webcam from being loaded first
 options snd_usb_audio index=-2
 
 snd-usb-audio covers more than only a webcam. There are snd cards
 supported bei that driver which one wants to be the first card. So in
 your case a file /etc/modprobe.d/sound.conf which encloses:
 
 alias snd-card-0snd-yourdriver
 options snd-yourdriver  index=0
 alias snd-card-1snd-usb-audio
 options snd-usb-audio index=1
 
 were snd-yourdriver is your prefered driver, should do the job.
 
 See also /usr/share/doc/alsa-base/README.Debian.gz.
 
 Please let me know whether this works for you so we can close this
 bug then ;-)
 
 Elimar
 




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



Bug#365365: ITA: galternatives -- graphical setup tool for the alternatives system

2009-05-01 Thread Barry deFreese

David P.,

If you are still interested in maintaining galternatives, please go 
ahead.  Two years of  waiting for an ITA is  plenty  long  enough.


Let me know if you need a sponsor.

Thanks,

Barry deFreese
Debian QA



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



Bug#511235: libev FTBFS in sid

2009-05-01 Thread Daniel Schepler
package libev
severity 511235 serious
thanks

Now that libtool 2.2 is in unstable, libev FTBFS:

...
checking whether to enable maintainer-specific portions of Makefiles... no
checking for a BSD-compatible install... /usr/bin/install -c
configure: error: cannot run /bin/sh ./config.sub
dh_auto_configure: ./configure returned exit code 1
make: *** [build-stamp] Error 1
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
-- 
Daniel Schepler




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



Bug#526546: FTBFS: #error unsupported architecture

2009-05-01 Thread Riku Voipio
Package: lxc
Version: 0.6.2-1
Severity: serious
User: debian-...@lists.debian.org
Usertags: eabi

Your package failed to build with the following error:

 mkdir .libs
  cc -DHAVE_CONFIG_H -I. -I../../src -I../../src -DLXCPATH=\/var/lib/lxc\ 
 -DLXCBINDIR=\/usr/bin\ -DLXCLIBEXECDIR=\/usr/lib/lxc\ -g -O2 -g -Wall -O2 
 -Wall -DNETWORK_DESTROY -c create.c  -fPIC -DPIC -o .libs/create.o
 In file included from ../../src/lxc/lxc.h:41,
  from create.c:34:
 ../../src/lxc/namespace.h:70:5: error: #error unsupported architecture



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



Bug#526570: init.d status support

2009-05-01 Thread Peter Eisentraut
Package: distcc
Version: 2.18.3-8
Severity: wishlist
Tags: patch

Here is a patch to support the status action in the init.d script.
diff -u distcc-2.18.3/debian/distcc.init.d distcc-2.18.3/debian/distcc.init.d
--- distcc-2.18.3/debian/distcc.init.d
+++ distcc-2.18.3/debian/distcc.init.d
@@ -128,9 +128,12 @@
 	}
 	log_end_msg 0
 	;;
+  status)
+	status_of_proc $DAEMON $NAME
+	;;
   *)
 	N=/etc/init.d/$NAME
-	echo Usage: $N {start|stop|restart|force-reload} 2
+	echo Usage: $N {start|stop|restart|force-reload|status} 2
 	exit 1
 	;;
 esac
diff -u distcc-2.18.3/debian/control distcc-2.18.3/debian/control
--- distcc-2.18.3/debian/control
+++ distcc-2.18.3/debian/control
@@ -7,7 +7,7 @@
 
 Package: distcc
 Architecture: any
-Depends: ${shlibs:Depends}, adduser (= 3.52), debconf (= 1.2.0) | debconf-2.0, netbase (= 4.09), dbus, lsb-base
+Depends: ${shlibs:Depends}, adduser (= 3.52), debconf (= 1.2.0) | debconf-2.0, netbase (= 4.09), dbus, lsb-base (= 3.2-13)
 Suggests: distccmon-gnome, ccache
 Description: Simple distributed compiler client and server
  distcc is a program to distribute compilation of C or C++ code across


Bug#526569: fbreader: grabs Enter key release when started from command line

2009-05-01 Thread Andrei Paskevich
Package: fbreader
Version: 0.10.7dfsg-1
Severity: important


When I launch FBReader from command line, it starts quickly enough
to get focus before I release the Enter key. FBReader interprets 
key releases rather than key presses and thus dutifully toggles 
the fullscreen mode on every start.

Currently, I worked around this issue by changing the shortcut to 
Ctrl-Enter in /usr/share/FBReader/default/keymap.xml.

I would suggest either to handle the key presses instead of releases, 
or, if this is inappropriate, to skip the first key release arriving
during the first 500ms.


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

Kernel: Linux 2.6.29.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/bash

Versions of packages fbreader depends on:
ii  libc6   2.9-7GNU C Library: Shared libraries
ii  libgcc1 1:4.3.3-8GCC support library
ii  libstdc++6  4.3.3-8  The GNU Standard C++ Library v3
ii  libzlcore0.10   0.10.7dfsg-1 ZLibrary cross-platform developmen
ii  libzltext0.10   0.10.7dfsg-1 ZLibrary text model/viewer part (s
ii  libzlui-qt4 0.10.7dfsg-1 Qt4 interface module for ZLibrary

fbreader recommends no packages.

fbreader 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#514055: [Cbe-oss-dev] Bug#514055: debian still not working on PS3

2009-05-01 Thread Geoff Levand
On 04/23/2009 01:54 AM, Wouter Verhelst wrote:
 On Tue, Apr 21, 2009 at 10:34:34PM -0400, thegame4121...@msn.com wrote:
 This is great news. Is this only for the testing version of Debian 
 codename squeeze or will this fix also be included in the next point 
 release of Debian Lenny?
 
 It will not be included in the next point release. However, it might be
 included as part of the planned 'lenny and a half' release where a new
 kernel and installer will be provided, to support new hardware.
 
 Before that can happen, however, testing will be necessary.
 
 You can find the daily builds here:
 
 http://people.debian.org/~wouter/d-i/powerpc/


Hi,

I tried today's build (20090430) and the 'CD-ROM driver not found'
problem is fixed:

  http://people.debian.org/~wouter/d-i/powerpc/20090430-22:00/powerpc64/netboot/

I was able to finish the install, but still got the
same other known problems:

(1) At kernel install:

  'No installable kernel was found in the defined APT sources'
  'base-installer: info: could not determine kernel flavor'

It should install the 64 bit powerpc kernel.

(2) At boot loader install:

  'No boot loader has been installed'
  'GRUB not yet usable on PowerPC systems'

It should create a /etc/yaboot.conf on the same partition that the
kernel was installed to, but nothing else is needed.  The petitboot
bootloader can read from vfat, ext2, ext3, and ext4 file systems.

-Geoff





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



Bug#526571: gastables: FTBFS: can't open file 'setup.py'

2009-05-01 Thread Daniel Schepler
Package: gastables
Version: 0.2-1
Severity: serious

From my pbuilder build log:

...
copying gastables/Isentropic.py - build/lib/gastables
copying gastables/PrandtlMeyer.py - build/lib/gastables
touch python-build-stamp-2.5
cd .  python setup.py build --build-base=/tmp/buildd/gastables-0.2/./build
python: can't open file 'setup.py': [Errno 2] No such file or directory
make: *** [debian/python-module-stampdir/gastables] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
-- 
Daniel Schepler




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



Bug#526573: codeville: FTBFS: Cannot stat `debian/codeville/usr/share/doc/Codeville-0.8.0/cdvserver.conf.sample'

2009-05-01 Thread Daniel Schepler
Package: codeville
Version: 0.8.0-1
Severity: serious

From my pbuilder build log:

...
cd .  python setup.py build --build-base=/tmp/buildd/codeville-0.8.0/./build
running build
running build_py
running build_scripts
touch debian/python-module-stampdir/codeville
mkdir -p debian/codeville/etc
mv debian/codeville/usr/share/doc/Codeville-0.8.0/cdvserver.conf.sample \
debian/codeville/etc/cdvserver.conf
mv: cannot stat 
`debian/codeville/usr/share/doc/Codeville-0.8.0/cdvserver.conf.sample': No such 
file or directory
make: *** [common-install-indep] Error 1
dpkg-buildpackage: failure: fakeroot debian/rules binary gave error exit status 
2
-- 
Daniel Schepler




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



Bug#512546: just binary patch it..

2009-05-01 Thread Clemens Fruhwirth
Binary patch PCI-IDs:

dd bs=1 count=73332 if=e1000e.ko  head
dd bs=1 skip=73334 if=e1000e.ko  tail
echo -ne \\0336\\0020  middle
cat head middle tail  e1000e.ko

Works only with the 105756 sized binary from Lenny i386 release CDs.
You have to modprobe e1000e.ko manually, of course.

I like Debian because it puts stability before features. But the
difference between regular software features and hardware support is
that there is no option of downgrading/keeping the older version. So
go ahead and add the PCI-IDs; for hardware there is nothing noble
about choosing unsupported over not fully tested, please consider
this experimental

.. and btw the drivers survived the Debian installation pretty well
with this hack.
-- 
Fruhwirth Clemens http://clemens.endorphin.org



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



Bug#526572: linkchecker: FTBFS: Cannot find debian/tmp/usr/bin/linkchecker-gui

2009-05-01 Thread Daniel Schepler
Package: linkchecker
Version: 5.0.1-1
Severity: serious

From my pbuilder build log:

...
dh_installudev -plinkchecker-gui 
dh_lintian -plinkchecker-gui 
dh_install -plinkchecker-gui  
cp: cannot stat `debian/tmp/usr/bin/linkchecker-gui': No such file or directory
dh_install: cp returned exit code 1
make: *** [binary-install/linkchecker-gui] Error 1
dpkg-buildpackage: failure: fakeroot debian/rules binary gave error exit status 
2
-- 
Daniel Schepler




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



Bug#523835:

2009-05-01 Thread Alex Goebel
Still broken in 12.012, had to generate initrd by hand (mkinitrd).

I'd also recommend to re-classify this as 'important', as it leaves
people with an unbootable system (no matter what the corresponding
piece of code is classified as within the package).



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



Bug#526574: fbreader: toggle toolbar with a shortcut, save in the UI state

2009-05-01 Thread Andrei Paskevich
Package: fbreader
Version: 0.10.7dfsg-1
Severity: wishlist


It would be very handy to show/hide the toolbar with a shortcut 
and to have the current state saved in ui.xml. Currently, the 
toolbar is always visible at the start (in the windowed mode).


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

Kernel: Linux 2.6.29.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/bash

Versions of packages fbreader depends on:
ii  libc6   2.9-7GNU C Library: Shared libraries
ii  libgcc1 1:4.3.3-8GCC support library
ii  libstdc++6  4.3.3-8  The GNU Standard C++ Library v3
ii  libzlcore0.10   0.10.7dfsg-1 ZLibrary cross-platform developmen
ii  libzltext0.10   0.10.7dfsg-1 ZLibrary text model/viewer part (s
ii  libzlui-qt4 0.10.7dfsg-1 Qt4 interface module for ZLibrary

fbreader recommends no packages.

fbreader 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#515874: wajig pretend to install depends of the upgrade version of an hold package

2009-05-01 Thread Graham Williams
Hi Jaime,

Could you provide the sequence of commands or example that exhibits
the bug behaviour and is repeatable. I've not been able to repeat
this yet and without repeatability and a clear demonstration it is
hard to fix.

Thanks,
Graham

Received Sat 02 May 2009  5:33am +1000 from Jaime Ochoa Malagón:
 Hi Graham,
 
 You are right, the bug is on apt-get.
 
 I didn know how work the hold feature in apt-get any way at this
 moment didn't work...
 
 I don't know how to reasign the bug, did you mind to do this for me?
 
 Really I use aptitude that brings to me the feel of control and in
 this case thats true, someone write about wajig and their good
 features and I was testing it but this problem disapoint me and I
 return to use aptitude, I feel confortable with wajig while that works
 for me (not any more until this bug in apt-get is solved), thanks.
 
 2009/4/30 Graham Williams graham.willi...@togaware.com
 
  Hi Jaime,
 
  Thanks for the bug report.
 
  Underneath, the dailyupgrade command is simply doing:
 
   apt-get --show-upgraded dist-upgrade
 
  so I would guess the same situation is there with apt-get.
 
  Do you think instead this might be a wajig specific problem?
 
  Otherwise could you reassign this to apt-get, perhaps as a wishlist?
 
  Or is there an option to apt-get to get the behaviour you want? That
  might be something we could fix wajig with.
 
  Thanks,
  Graham
 
  Received Wed 18 Feb 2009  4:41pm +1100 from Jaime Ochoa Malagón:
   Package: wajig
   Version: 2.0.38
   Severity: normal
  
   *** Please type your report below this line ***
  
   Some package have a bug and I request to downgrade it to the stable 
   version...
  
   wajig dailyupgrade wants to upgrade it to my preferences (testing)
  
   I hold the package
  
   wajig dailyupgrade hold the stable package BUT pretends to install the
   depends of the test version, thats is a bug...
  
   -- System Information:
   Debian Release: 5.0
    APT prefers stable
    APT policy: (900, 'stable'), (550, 'unstable'), (500, 'oldstable')
   Architecture: amd64 (x86_64)
  
   Kernel: Linux 2.6.26-1-amd64 (SMP w/2 CPU cores)
   Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
   Shell: /bin/sh linked to /bin/bash
  
   Versions of packages wajig depends on:
   ii  apt                         0.7.20.2     Advanced front-end for dpkg
   ii  dselect                     1.14.25      Debian package management 
   front-en
   ii  python                      2.5.2-3      An interactive high-level 
   object-o
   ii  python-apt                  0.7.7.1+nmu1 Python interface to 
   libapt-pkg
   ii  python-central              0.6.8        register and build utility 
   for Pyt
  
   wajig recommends no packages.
  
   Versions of packages wajig suggests:
   ii  alien                   8.72             convert and install rpm and 
   other
   ii  apt-listbugs            0.0.94           Lists critical bugs before 
   each ap
   ii  apt-move                4.2.27-1+b4      Maintain Debian packages in 
   a pack
   ii  apt-show-versions       0.15             lists available package 
   versions w
   ii  debconf                 1.5.24           Debian configuration 
   management sy
   ii  deborphan               1.7.27           program that can find unused 
   packa
   ii  dpkg-repack             1.30             puts an unpacked .deb file 
   back to
   ii  fakeroot                1.11             Gives a fake root environment
   ii  fping                   2.4b2-to-ipv6-15 sends ICMP ECHO_REQUEST 
   packets to
   pn  gkdebconf               none           (no description available)
   pn  gnome-tasksel           none           (no description available)
   pn  gnome-terminal          none           (no description available)
   ii  locales                 2.7-18           GNU C Library: National 
   Language (
   pn  lynx                    none           (no description available)
   ii  python-glade2           2.12.1-6         GTK+ bindings: Glade support
   ii  python-gnome2           2.22.3-1         Python bindings for the 
   GNOME desk
   ii  python-gtk2             2.12.1-6         Python bindings for the GTK+ 
   widge
   ii  reportbug               3.48             reports bugs in the Debian 
   distrib
   ii  sudo                    1.6.9p17-2       Provide limited super user 
   privile
  
  
  
   --
   Perhaps the depth of love can be calibrated by the number of different
   selves that are actively involved in a given relationship.
  
                                          Carl Sagan (Contact)
  
                                          Jaime Ochoa Malagón
                                          Arquitecto de Soluciones
                                          Cel: +52 (55) 1021 0774
  
  
  
   --
   Perhaps the depth of love can be calibrated by the number of different
   selves that are actively involved in a given relationship.
  
                                         Carl Sagan (Contact)
  
     

Bug#526569: fbreader: grabs Enter key release when started from command line

2009-05-01 Thread Eugene V. Lyubimkin
package fbreader
severity 526569 normal
forwarded 526569 http://fbreader.org/mantis/view.php?id=169
thanks

Andrei Paskevich wrote:
 Package: fbreader
 Version: 0.10.7dfsg-1
 Severity: important
 
 
 When I launch FBReader from command line, it starts quickly enough
 to get focus before I release the Enter key. FBReader interprets 
 key releases rather than key presses and thus dutifully toggles 
 the fullscreen mode on every start.
 
 Currently, I worked around this issue by changing the shortcut to 
 Ctrl-Enter in /usr/share/FBReader/default/keymap.xml.
 
 I would suggest either to handle the key presses instead of releases, 
 or, if this is inappropriate, to skip the first key release arriving
 during the first 500ms.
 
 
Thanks for report, I just forwarded it upstream.

-- 
Eugene V. Lyubimkin aka JackYF, JID: jackyf.devel(maildog)gmail.com
C++/Perl developer, Debian Maintainer



signature.asc
Description: OpenPGP digital signature


Bug#526575: python-django-filebrowser: FTBFS: Missing Build-Depends

2009-05-01 Thread Daniel Schepler
Package: python-django-filebrowser
Version: 0+svn296-1
Severity: serious

From my pbuilder build log:

...
 fakeroot debian/rules clean
dh clean
   dh_testdir
   dh_auto_clean
Traceback (most recent call last):
  File setup.py, line 1, in module
from setuptools import setup, find_packages
ImportError: No module named setuptools
dh_auto_clean: python returned exit code 1
make: *** [clean] Error 1
dpkg-buildpackage: failure: fakeroot debian/rules clean gave error exit status 2
-- 
Daniel Schepler




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



Bug#525737: O: oprofile -- system-wide profiler for Linux systems

2009-05-01 Thread Ben Hutchings
I'm somewhat interested in adopting oprofile, but I will need to have a
look at the package before making a commitment to maintain it.

Ben.

-- 
Ben Hutchings
No political challenge can be met by shopping. - George Monbiot


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


Bug#526576: python-pypcap: FTBFS: deferencing pointer to incomplete type

2009-05-01 Thread Daniel Schepler
Package: python-pypcap
Version: 1.1.2+debian-1
Severity: serious

From my pbuilder build log:

...
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall 
-Wstrict-prototypes -Wall -g -O2 -fPIC -I/usr/include -I/usr/include/python2.5 
-c pcap_ex.c -o build/temp.linux-x86_64-2.5/pcap_ex.o
pcap_ex.c: In function 'pcap_ex_fileno':
pcap_ex.c:165: error: dereferencing pointer to incomplete type
pcap_ex.c: In function 'pcap_ex_next':
pcap_ex.c:253: error: dereferencing pointer to incomplete type
pcap_ex.c: In function 'pcap_ex_compile_nopcap':
pcap_ex.c:285: warning: implicit declaration of function 'mktemp'
error: command 'gcc' failed with exit status 1
make: *** [build-stamp] Error 1
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
-- 
Daniel Schepler




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



Bug#526577: python-werkzeug: FTBFS: cannot remove `debian/python-werkzeug/usr/docs/README'

2009-05-01 Thread Daniel Schepler
Package: python-werkzeug
Version: 0.3.1-1
Severity: serious

From my pbuilder build log:

...
writing top-level names to Werkzeug.egg-info/top_level.txt
writing dependency_links to Werkzeug.egg-info/dependency_links.txt
reading manifest file 'Werkzeug.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching 'TODO'
writing manifest file 'Werkzeug.egg-info/SOURCES.txt'
touch debian/python-module-stampdir/python-werkzeug
mkdir -p debian/python-werkzeug/usr/share/doc/python-werkzeug
rm debian/python-werkzeug/usr/docs/README
rm: cannot remove `debian/python-werkzeug/usr/docs/README': No such file or 
directory
make: *** [common-install-indep] Error 1
dpkg-buildpackage: failure: fakeroot debian/rules binary gave error exit status 
2
-- 
Daniel Schepler




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



Bug#526578: poker-engine: FTBFS: Test failures

2009-05-01 Thread Daniel Schepler
Package: poker-engine
Version: 1.3.3-1
Severity: serious

From my pbuilder build log:

...
OK
PASS: muck.py
sh: ps: command not found
sh: ps: command not found
sh: ps: command not found
sh: ps: command not found
sh: ps: command not found
sh: ps: command not found
sh: ps: command not found
sh: ps: command not found
==
ERROR: test01_config (__main__.QuickLeakTestCase)
--
Traceback (most recent call last):
  File ./libxml2leak.py, line 83, in test01_config
self.leakWatch(func, pokerengineconfig.Config)
  File ./libxml2leak.py, line 52, in leakWatch
leaks[0] = getVsize()
  File ./libxml2leak.py, line 35, in getVsize
return int(os.popen(echo -n $(ps h -o vsize -p  + str(os.getpid()) + 
)).read())
ValueError: invalid literal for int() with base 10: ''

==
ERROR: test02_libxml_freeDoc (__main__.QuickLeakTestCase)
--
Traceback (most recent call last):
  File ./libxml2leak.py, line 89, in test02_libxml_freeDoc
self.leakWatch(func, libxml2.freeDoc)
  File ./libxml2leak.py, line 52, in leakWatch
leaks[0] = getVsize()
  File ./libxml2leak.py, line 35, in getVsize
return int(os.popen(echo -n $(ps h -o vsize -p  + str(os.getpid()) + 
)).read())
ValueError: invalid literal for int() with base 10: ''
...
FAILED (errors=8)
FAIL: libxml2leak.py
Name   Stmts   Exec  Cover   Missing

../pokerengine/__init__1  1   100%   
../pokerengine/pokercards120120   100%   
../pokerengine/pokerchips128128   100%   
../pokerengine/pokerengineconfig 110110   100%   
../pokerengine/pokergame2537   251599%   1176-1180, 1407, 1692, 
1784, 2337, 2535-2539, 2698, 2713-2715, 3022, 3057, 3060, 3626
../pokerengine/pokerprizes70 70   100%   
../pokerengine/pokerrake  27 27   100%   
../pokerengine/pokertournament   39138798%   97, 131, 240, 485
../pokerengine/version78 78   100%   

TOTAL   3462   343699%   
PASS: coverage-report

1 of 24 tests failed

make[3]: *** [check-TESTS] Error 1
make[3]: Leaving directory `/tmp/buildd/poker-engine-1.3.3/tests'
make[2]: *** [check-am] Error 2
make[2]: Leaving directory `/tmp/buildd/poker-engine-1.3.3/tests'
make[1]: *** [check-recursive] Error 1
make[1]: Leaving directory `/tmp/buildd/poker-engine-1.3.3'
make: *** [debian/stamp-makefile-check] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2

Maybe there's a missing Build-Depends on procps?
-- 
Daniel Schepler




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



Bug#526574: fbreader: toggle toolbar with a shortcut, save in the UI state

2009-05-01 Thread Eugene V. Lyubimkin
Andrei Paskevich wrote:
 Package: fbreader
 Version: 0.10.7dfsg-1
 Severity: wishlist
 
 
 It would be very handy to show/hide the toolbar with a shortcut 
 and to have the current state saved in ui.xml. Currently, the 
 toolbar is always visible at the start (in the windowed mode).
 
Well, the toolbar is nearly only one thing that is there except the text :).
However, I will forward you wish upstream (right now fbreader BTS somewhy
refuses to accept a second report).

-- 
Eugene V. Lyubimkin aka JackYF, JID: jackyf.devel(maildog)gmail.com
C++/Perl developer, Debian Maintainer



signature.asc
Description: OpenPGP digital signature


Bug#526577: python-werkzeug: FTBFS: cannot remove `debian/python-werkzeug/usr/docs/README'

2009-05-01 Thread Noah Slater
I believe this is caused by #525436.

Should be fixed in the next upload. Unsure what to do with this bug though.

Piotr, comments?

-- 
Noah Slater, http://tumbolia.org/nslater



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



Bug#526579: elisa: FTBFS: cannot touch `/tmp/buildd/elisa-0.3.5/debian/tmp//usr/lib/python2.5/site-packages/elisa/__init__.py'

2009-05-01 Thread Daniel Schepler
Package: elisa
Version: 0.3.5-3
Severity: serious

From my pbuilder build log:

...
running build_scripts
touch debian/python-module-stampdir/python-elisa
rm -f /tmp/buildd/elisa-0.3.5/debian/tmp//usr/lib/python2.5/site-packages/*.pth
touch 
/tmp/buildd/elisa-0.3.5/debian/tmp//usr/lib/python2.5/site-packages/elisa/__init__.py
touch: cannot touch 
`/tmp/buildd/elisa-0.3.5/debian/tmp//usr/lib/python2.5/site-packages/elisa/__init__.py':
 No such file or directory
make: *** [common-install-indep] Error 1
dpkg-buildpackage: failure: fakeroot debian/rules binary gave error exit status 
2
-- 
Daniel Schepler




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



Bug#526580: libpoe-component-jabber-perl: FTBFS: Missing Build-Depends

2009-05-01 Thread Daniel Schepler
Package: libpoe-component-jabber-perl
Version: 2.03-1
Severity: serious

From my pbuilder build log:

...
   dh_auto_test
make[1]: Entering directory `/tmp/buildd/libpoe-component-jabber-perl-2.03'
/usr/bin/perl Build --makefile_env_macros 1 test
t/01_basic.Can't locate Filter/Template.pm in @INC (@INC contains: 
/tmp/buildd/libpoe-component-jabber-perl-2.03/blib/lib 
/tmp/buildd/libpoe-component-jabber-perl-2.03/blib/arch /etc/perl 
/usr/local/lib/perl/5.10.0 
/usr/local/share/perl/5.10.0 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.10 
/usr/share/perl/5.10 /usr/local/lib/site_perl . /etc/perl 
/usr/local/lib/perl/5.10.0 /usr/local/share/perl/5.10.0 /usr/lib/perl5 
/usr/share/perl5 /usr/lib/perl/5.10 
/usr/share/perl/5.10 /usr/local/lib/site_perl .) at t/01_basic.t line 2.
BEGIN failed--compilation aborted at t/01_basic.t line 2.
dubious
Test returned status 2 (wstat 512, 0x200)
t/02_xmpp..Can't locate Filter/Template.pm in @INC (@INC contains: 
/tmp/buildd/libpoe-component-jabber-perl-2.03/blib/lib 
/tmp/buildd/libpoe-component-jabber-perl-2.03/blib/arch /etc/perl 
/usr/local/lib/perl/5.10.0 
/usr/local/share/perl/5.10.0 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.10 
/usr/share/perl/5.10 /usr/local/lib/site_perl . /etc/perl 
/usr/local/lib/perl/5.10.0 /usr/local/share/perl/5.10.0 /usr/lib/perl5 
/usr/share/perl5 /usr/lib/perl/5.10 
/usr/share/perl/5.10 /usr/local/lib/site_perl .) at t/02_xmpp.t line 2.
BEGIN failed--compilation aborted at t/02_xmpp.t line 2.
dubious
Test returned status 2 (wstat 512, 0x200)
...
FAILED--5 test scripts could be run, alas--no output ever seen
make[1]: *** [test] Error 2
make[1]: Leaving directory `/tmp/buildd/libpoe-component-jabber-perl-2.03'
dh_auto_test: make returned exit code 2
make: *** [build-stamp] Error 1
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
-- 
Daniel Schepler




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



Bug#526346: Patch

2009-05-01 Thread John Wright
tags 526346 + patch
thanks

Hello,

The build system in this version of apr doesn't work with libtool 2.x.
It's fixed in the upstream Subversion repository.  The attached patch is
a port of the relevant commits in upstream svn.

Thanks,
-- 
John Wright j...@debian.org
#! /bin/sh /usr/share/dpatch/dpatch-run
## 025_libtool_2.x_fixes.dpatch by  j...@debian.org
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: Update build system to work with libtool 2.x
## DP:
## DP: This corresponds to upstream revisions:
## DP:   733052
## DP:   742752
## DP:   748902
## DP:   757363
@DPATCH@

diff --git a/build/buildcheck.sh b/build/buildcheck.sh
index 62fe931..c236810 100755
--- a/build/buildcheck.sh
+++ b/build/buildcheck.sh
@@ -38,7 +38,7 @@ fi
 # output is multiline from 1.5 onwards
 
 # Require libtool 1.4 or newer
-libtool=`build/PrintPath glibtool libtool libtool15 libtool14`
+libtool=`build/PrintPath glibtool1 glibtool libtool libtool15 libtool14`
 lt_pversion=`$libtool --version 2/dev/null|sed -e 
's/([^)]*)//g;s/^[^0-9]*//;s/[- ].*//g;q'`
 if test -z $lt_pversion; then
 echo buildconf: libtool not found.
diff --git a/buildconf b/buildconf
index bc0e9fd..11554ed 100755
--- a/buildconf
+++ b/buildconf
@@ -23,7 +23,7 @@
 #
 build/buildcheck.sh || exit 1
 
-libtoolize=`build/PrintPath glibtoolize libtoolize15 libtoolize14 libtoolize`
+libtoolize=`build/PrintPath glibtoolize1 glibtoolize libtoolize15 libtoolize14 
libtoolize`
 if [ x$libtoolize = x ]; then
 echo libtoolize not found in path
 exit 1
@@ -35,17 +35,20 @@ fi
 # Note: APR supplies its own config.guess and config.sub -- we do not
 #   rely on libtool's versions
 #
-echo Copying libtool helper files ...
+echo buildconf: copying libtool helper files using $libtoolize
 
 # Remove any libtool files so one can switch between libtool 1.3
 # and libtool 1.4 by simply rerunning the buildconf script.
-(cd build ; rm -f ltconfig ltmain.sh libtool.m4)
-
-$libtoolize --copy --automake
-
-if [ -f libtool.m4 ]; then 
-   ltfile=`pwd`/libtool.m4
-else
+(cd build ; rm -f ltconfig ltmain.sh libtool.m4 ltoptions.m4 ltsugar.m4 
ltversion.m4 lt~obsolete.m4)
+
+lt_pversion=`$libtoolize --version 2/dev/null|sed -e 
's/([^)]*)//g;s/^[^0-9]*//;s/[- ].*//g;q'`
+lt_version=`echo $lt_pversion|sed -e 's/\([a-z]*\)$/.\1/'`
+IFS=.; set $lt_version; IFS=' '
+if test $1 = 1; then
+  $libtoolize --copy --automake
+  if [ -f libtool.m4 ]; then 
+ltfile=`pwd`/libtool.m4
+  else
ltfindcmd=`sed -n \/=[^\\\`]/p;/libtool_m4=/{s/.*=/echo /p;q;}\ \
 $libtoolize`
ltfile=${LIBTOOL_M4-`eval $ltfindcmd`}
@@ -54,21 +57,21 @@ else
  ltpath=`dirname $libtoolize`
  ltfile=`cd $ltpath/../share/aclocal ; pwd`/libtool.m4
fi
-fi
-  
-if [ ! -f $ltfile ]; then
+  fi
+  if [ ! -f $ltfile ]; then
 echo $ltfile not found
 exit 1
+  fi
+  # Do we need this anymore?
+  echo buildconf: Using libtool.m4 at ${ltfile}.
+  cat $ltfile | sed -e 's/LIBTOOL=\(.*\)top_build/LIBTOOL=\1apr_build/'  
build/libtool.m4
 fi
-
-echo buildconf: Using libtool.m4 at ${ltfile}.
-
-cat $ltfile | sed -e 's/LIBTOOL=\(.*\)top_build/LIBTOOL=\1apr_build/'  
build/libtool.m4
-
-# libtool.m4 from 1.6 requires ltsugar.m4
-if [ -f ltsugar.m4 ]; then
-   rm -f build/ltsugar.m4
-   mv ltsugar.m4 build/ltsugar.m4
+if test $1 = 2; then
+  $libtoolize --copy
+  # Wouldn't it just be better to define top_builddir??
+  mv build/libtool.m4 build/libtool.m4.$$
+  cat build/libtool.m4.$$ | sed -e 
's/LIBTOOL=\(.*\)top_build/LIBTOOL=\1apr_build/'  build/libtool.m4
+  rm build/libtool.m4.$$
 fi
 
 # Clean up any leftovers
@@ -77,22 +80,22 @@ rm -f aclocal.m4 libtool.m4
 #
 # Generate the autoconf header and ./configure
 #
-echo Creating include/arch/unix/apr_private.h.in ...
+echo buildconf: creating include/arch/unix/apr_private.h.in ...
 ${AUTOHEADER:-autoheader}
 
-echo Creating configure ...
+echo buildconf: creating configure ...
 ### do some work to toss config.cache?
 ${AUTOCONF:-autoconf}
 
 # Remove autoconf 2.5x's cache directory
 rm -rf autom4te*.cache
 
-echo Generating 'make' outputs ...
+echo buildconf: generating 'make' outputs ...
 build/gen-build.py make
 
 # Create RPM Spec file
 if [ -f `which cut` ]; then
-  echo rebuilding rpm spec file
+  echo buildconf: rebuilding rpm spec file
   ( REVISION=`build/get-version.sh all include/apr_version.h APR`
 VERSION=`echo $REVISION | cut -d- -s -f1`
 RELEASE=`echo $REVISION | cut -d- -s -f2`
diff --git a/configure.in b/configure.in
index 46b4b32..2ac1439 100644
--- a/configure.in
+++ b/configure.in
@@ -9,6 +9,7 @@ AC_PREREQ(2.50)
 AC_INIT(build/apr_common.m4)
 AC_CONFIG_HEADER(include/arch/unix/apr_private.h)
 AC_CONFIG_AUX_DIR(build)
+AC_CONFIG_MACRO_DIR(build)
 
 dnl 
 dnl Include our own M4 macros along with those for libtool
@@ -20,6 +21,10 @@ sinclude(build/apr_win32.m4)
 sinclude(build/apr_hints.m4)
 sinclude(build/libtool.m4)
 sinclude(build/ltsugar.m4)
+sinclude(build/argz.m4)

Bug#526581: xgalaga: FTBFS: conflicting types for 'fd_set'

2009-05-01 Thread Daniel Schepler
Package: xgalaga
Version: 2.1.1.0-3
Severity: serious

From my pbuilder build log:

...
gcc -I. -Wall -g -DXF86VIDMODE -O2 -DHAVE_CONFIG_H  
-DXGALAGADIR=\/usr/share/games/xgalaga/\ 
-DSOUNDSERVER=\/usr/lib/games/xgalaga/xgal.sndsrv.oss\ -DORIGINAL_XGALAGA -c 
linux-joystick.c -o linux-joystick.o
In file included from /usr/include/sys/time.h:31,
 from /usr/include/linux/input.h:12,
 from /usr/include/linux/joystick.h:31,
 from linux-joystick.c:9:
/usr/include/sys/select.h:78: error: conflicting types for 'fd_set'
/usr/include/linux/types.h:12: error: previous declaration of 'fd_set' was here
In file included from /usr/include/linux/input.h:14,
 from /usr/include/linux/joystick.h:31,
 from linux-joystick.c:9:
/usr/include/sys/types.h:46: error: conflicting types for 'loff_t'
/usr/include/linux/types.h:30: error: previous declaration of 'loff_t' was here
/usr/include/sys/types.h:62: error: conflicting types for 'dev_t'
/usr/include/linux/types.h:13: error: previous declaration of 'dev_t' was here
In file included from /usr/include/sys/types.h:133,
 from /usr/include/linux/input.h:14,
 from /usr/include/linux/joystick.h:31,
 from linux-joystick.c:9:
/usr/include/time.h:105: error: conflicting types for 'timer_t'
/usr/include/linux/types.h:22: error: previous declaration of 'timer_t' was here
In file included from /usr/include/linux/input.h:14,
 from /usr/include/linux/joystick.h:31,
 from linux-joystick.c:9:
/usr/include/sys/types.h:198: error: conflicting types for 'int64_t'
/usr/include/linux/types.h:98: error: previous declaration of 'int64_t' was here
/usr/include/sys/types.h:204: error: conflicting types for 'u_int64_t'
/usr/include/linux/types.h:97: error: previous declaration of 'u_int64_t' was 
here
In file included from /usr/include/linux/input.h:14,
 from /usr/include/linux/joystick.h:31,
 from linux-joystick.c:9:
/usr/include/sys/types.h:235: error: conflicting types for 'blkcnt_t'
/usr/include/linux/types.h:119: error: previous declaration of 'blkcnt_t' was 
here
make[1]: *** [linux-joystick.o] Error 1
make[1]: Leaving directory `/tmp/buildd/xgalaga-2.1.1.0'
make: *** [build-stamp] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
-- 
Daniel Schepler




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



Bug#516897: Acknowledgement (lighttpd: Please package 1.4.21)

2009-05-01 Thread Yonas
+1 Olaf. Please update. It's been over a year!!

- Yonas




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



Bug#523467: xserver-xorg-video-radeon: Problem solved here

2009-05-01 Thread Torquil Macdonald Sørensen
Package: xserver-xorg-video-radeon
Severity: normal

This problem is now also (mainly) solved for me, by doing similarly to what 
Mathias explained. First
I installed a linux 2.6.30 from the Debian kernel team, but it did not fix the 
problem. Then I saw in
the dmesg log that it asked for a radeon firmware file. It is located in the
firmware-linux package, so I installed it. Now e.g. googleearth works fine, but 
glxgears
complains about missing double buffered visuals. But that is something I will 
try to figure
out next by playing with different options in xorg.conf.

Sorry Michel, for not answering your question earlier about disabling the 
xorg.conf options, I didn't
get that message on email, I was it just now when I checked if there was any 
new responses
to this bug report. I don't really know what to do to ensure that responses to 
bug reports are
sent to me by mail. It seems that sometimes they are and sometimes not...

The problem was independent of those options (ColorTiling, PageFlipping, etc), 
as I recall.
After the actions described above, the problem was fixed even though these 
options were on.
But there was some stability problems, so commented out the EXA line, and the 
other options. I
will play with them abit and see if I can find which option that causes the 
stability problems
when running google earth. But that  would probably be unrelated to this 
particular bug report.

Best regards
Torquil Sørensen

-- Package-specific info:
Contents of /var/lib/x11/X.roster:
xserver-xorg

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 2007-09-17 16:46 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1695356 2009-04-15 13:47 /usr/bin/Xorg

Contents of /var/lib/x11/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:
01:00.0 VGA compatible controller: ATI Technologies Inc RV350 [Mobility Radeon 
9600 M10]

/var/lib/x11/xorg.conf.md5sum does not exist.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 1483 2009-05-02 00:56 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
Section ServerLayout
Identifier  Layout0
Screen 0 Screen0 0 0
InputDevice Mouse0 CorePointer
InputDevice Keyboard0 CoreKeyboard
EndSection

Section Files
FontPath unix/:7100
EndSection

Section ServerFlags
Option BlankTime 10
Option StandbyTime 12
Option SuspendTime 14
Option OffTime 16
Option Xinerama false
Option AllowEmptyInput false
EndSection

Section InputDevice
Identifier Keyboard0
Driver kbd
Option AutoRepeat 500 30
Option XkbRules xfree86
Option XkbModel pc101
Option XkbLayout no
EndSection

Section InputDevice
Identifier Mouse0
Driver mouse
Option Protocol ImPS/2
Option ZAxisMapping 4 5
Option Device /dev/input/mice
EndSection

Section Monitor
Identifier Monitor0
DisplaySize 306 229
Option DPMS true
EndSection

Section Device
Identifier Device0
Driver radeon
#   Option AccelMethod EXA
#   Option BackingStore true
#   Option ColorTiling true
#   Option EnablePageFlip true
Option AGPMode 4
Option GARTSize 128
#   Option AGPFastWrite true
#   Option DynamicClocks true
Option Monitor-LVDS Monitor0
EndSection

Section Screen
Identifier Screen0
Device Device0
Monitor Monitor0
DefaultDepth 24
SubSection Display
Viewport 0 0
Depth 24
Modes 1400x1050 1280x1024 1280x960 1024x768 800x600 
700x525 640x480
EndSubSection
EndSection

Section DRI
Group 44
Mode 0660
EndSection



Xorg X server log files on system:
-rw-r--r-- 1 root root 40810 2008-02-06 21:06 /var/log/Xorg.1.log
-rw-r--r-- 1 root root 50273 2009-05-02 00:57 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X.Org X Server 1.6.1
Release Date: 2009-4-14
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.26-1-amd64 x86_64 Package files:  100 
/var/lib/dpkg/status  release a=now  500 http://ftp.debian.org sid/main 
Packages  release o=Debian,a=unstable,l=Debian,c=main  origin 
ftp.debian.org Pinned packages:
Current Operating System: Linux tmac 2.6.30-rc3-686 #1 SMP Mon Apr 27 08:56:08 
UTC 2009 i686
Build Date: 15 April 2009  11:46:22AM
xorg-server 2:1.6.1-1 (bgog...@debian.org) 
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Sat May  2 00:56:38 2009
(==) Using config file: /etc/X11/xorg.conf
(==) ServerLayout Layout0
(**) |--Screen Screen0 (0)
(**) |   

Bug#526582: kile: Provides empty path when executing external programs

2009-05-01 Thread Rodrigo Chandia
Package: kile
Version: 1:2.1.0~svn949704-1
Severity: normal


Trying to execute ViewDVI gives an error as if kpsewhich were not installed or 
in the
path.

Upon further examination it appears that the enviroment does not provide a PATH 
variable.

forcing kile to execute an script that provides a minimal PATH variable 
containing /usr/bin (and then executes okular) provides a temporary fix.

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

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

Versions of packages kile depends on:
ii  kdebase-runtime4:4.2.2-1 runtime components from the offici
ii  kdelibs5   4:4.2.2-2 core libraries for all KDE 4 appli
ii  konsole4:4.2.2-1 X terminal emulator for KDE 4
ii  libc6  2.9-9 GNU C Library: Shared libraries
ii  libgcc11:4.3.3-8 GCC support library
ii  libqt4-dbus4.5.1-1   Qt 4 D-Bus module
ii  libqt4-network 4.5.1-1   Qt 4 network module
ii  libqt4-script  4.5.1-1   Qt 4 script module
ii  libqt4-svg 4.5.1-1   Qt 4 SVG module
ii  libqt4-xml 4.5.1-1   Qt 4 XML module
ii  libqtcore4 4.5.1-1   Qt 4 core module
ii  libqtgui4  4.5.1-1   Qt 4 GUI module
ii  libstdc++6 4.3.3-8   The GNU Standard C++ Library v3
ii  texlive-base-bin   2007.dfsg.2-6 TeX Live: Essential binaries
ii  texlive-latex-base 2007.dfsg.2-3 TeX Live: Basic LaTeX packages

Versions of packages kile recommends:
ii  asymptote1.43-1  script-based vector graphics langu
ii  context  2008.05.21-1powerful TeX format
ii  dblatex  0.2.9-4 Produces DVI, PostScript, PDF docu
ii  dvipdfmx 1:20090115-1.1  A DVI to PDF translator with CJK s
ii  dvipng   1.11-1  convert DVI files to PNG graphics
ii  ghostscript  8.64~dfsg-1.1   The GPL Ghostscript PostScript/PDF
ii  gv   1:3.6.7-1   PostScript and PDF viewer for X
ii  iceweasel3.0.9-1 lightweight web browser based on M
ii  imagemagick  7:6.5.1.0-1 image manipulation programs
ii  kbibtex  0.2.1-1 BibTeX editor for KDE
ii  konqueror4:4.2.2-1   KDE 4's advanced file manager, web
ii  latex2html   2002-2-1-20050114-6 LaTeX to HTML translator
ii  lilypond 2.10.33-2.3 A program for typesetting sheet mu
ii  okular   4:4.2.2-1   document viewer for KDE 4
ii  psutils  1.17-26 A collection of PostScript documen
ii  tex4ht   20090223-1  LaTeX and TeX for Hypertext (HTML)
ii  texlive-metapost 2007.dfsg.2-6   TeX Live: MetaPost (and Metafont) 
ii  texlive-xetex2007.dfsg.2-6   TeX Live: XeTeX macros
ii  zip  3.0-1   Archiver for .zip files

Versions of packages kile suggests:
ii  kile-doc 1:2.1.0~svn949704-1 KDE Integrated LaTeX Environment (
pn  kile-i18nnone  (no description available)
ii  texlive-doc-base 2007.dfsg.2-2   TeX Live: Base documentation

-- 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#526583: plotutils: FTBFS: Automake errors

2009-05-01 Thread Daniel Schepler
Package: plotutils
Version: 2.5-2
Severity: serious

From my pbuilder build log:

...
chmod +x debian/backup.sh
debian/backup.sh
debian/backup.sh: backing up upstreams autotooled files
AUTOMAKE=automake-1.9 autoreconf --force --install
libtoolize: putting auxiliary files in `.'.
libtoolize: copying file `./ltmain.sh'
libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and
libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree.
libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
configure.ac: installing `./install-sh'
configure.ac: installing `./missing'
double/Makefile.am: installing `./depcomp'
info/Makefile.am:3: installing `info/texinfo.tex'
/usr/share/automake-1.9/am/depend2.am: am__fastdepCXX does not appear in 
AM_CONDITIONAL
libplotter/Makefile.am: C++ source seen but `CXX' is undefined
libplotter/Makefile.am: 
libplotter/Makefile.am: The usual way to define `CXX' is to add `AC_PROG_CXX'
libplotter/Makefile.am: to `configure.ac' and run `autoconf' again.
ode/Makefile.am:9: `YFLAGS' is a user variable, you should not override it;
ode/Makefile.am:9: use `AM_YFLAGS' instead.
/usr/share/automake-1.9/am/depend2.am: am__fastdepCXX does not appear in 
AM_CONDITIONAL
pic2plot/Makefile.am: C++ source seen but `CXX' is undefined
pic2plot/Makefile.am: 
pic2plot/Makefile.am: The usual way to define `CXX' is to add `AC_PROG_CXX'
pic2plot/Makefile.am: to `configure.ac' and run `autoconf' again.
pic2plot/Makefile.am:10: `YFLAGS' is a user variable, you should not override 
it;
pic2plot/Makefile.am:10: use `AM_YFLAGS' instead.
/usr/share/automake-1.9/am/depend2.am: am__fastdepCXX does not appear in 
AM_CONDITIONAL
pic2plot/libgroff/Makefile.am: C++ source seen but `CXX' is undefined
pic2plot/libgroff/Makefile.am: 
pic2plot/libgroff/Makefile.am: The usual way to define `CXX' is to add 
`AC_PROG_CXX'
pic2plot/libgroff/Makefile.am: to `configure.ac' and run `autoconf' again.
configure.ac:68: installing `./config.guess'
configure.ac:68: installing `./config.sub'
Makefile.am: installing `./INSTALL'
autoreconf: automake-1.9 failed with exit status: 1
make: *** [autogen-stamp] Error 1
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
-- 
Daniel Schepler




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



Bug#526566: Bug in libbio-primerdesigner-perl fixed in revision 34601

2009-05-01 Thread pkg-perl-maintainers
tag 526566 + pending
thanks

Some bugs are closed in revision 34601
by Gregor Herrmann (gregoa)

Commit message:

debian/rules: skip test t/remote.t which tries to connect to somewhere and
causes a FBTFS; thanks to Daniel Schepler for the bug report
(closes: #526566)



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



Bug#491602: [PATCH] Populate slime-lisp-implementations automatically

2009-05-01 Thread Torsten Landschoff
Hi there, 

Attached is a trivial patch to initialize slime-lisp-implementations by 
looking for Debian packaged Common-Lisp implementations on path.

This is far from ideal, but it is a start and it allows me to run 

$ emacs -f slime

to start emacs and get directly into a slime session (provided I have
clisp, ecl, sbcl or cmucl on my $PATH).

Greetings, Torsten
From dc06400cfc13d0d572cc46770680b7c7306d2039 Mon Sep 17 00:00:00 2001
From: Torsten Landschoff tors...@landschoff.net
Date: Sat, 2 May 2009 01:30:41 +0200
Subject: [PATCH] Add trivial initialization of slime-lisp-implementations.

---
 debian/changelog |8 
 slime.el |   11 ++-
 2 files changed, 18 insertions(+), 1 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 24b4a40..023f900 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+slime (1:20090409-1.1) unstable; urgency=low
+
+  [ Torsten Landschoff ]
+  * slime.el: Populate slime-lisp-implementations from known common
+lisp implementations on PATH (closes: #491602).
+
+ -- Torsten Landschoff tors...@debian.org  Sat, 02 May 2009 01:25:22 +0200
+
 slime (1:20090409-1) unstable; urgency=low
 
   * New upstream version. 
diff --git a/slime.el b/slime.el
index 7f0f1bb..04c5793 100644
--- a/slime.el
+++ b/slime.el
@@ -123,6 +123,15 @@ Return nil if the ChangeLog file cannot be found.
 (setq slime-protocol-version
   (eval-when-compile (slime-changelog-date)))
 
+(defun slime-gather-lisp-implementations ()
+  Compute sane default value for slime-lisp-implementations.
+  (let ((known-lisps '(sbcl clisp ecl cmucl)))
+(remove-if
+ 'null
+ (mapcar 
+  (lambda (l) (if (executable-find l) (list l (list l
+  known-lisps
+
 
  Customize groups
 ;;
@@ -1116,7 +1125,7 @@ last activated the buffer.
 (defvar inferior-lisp-program lisp 
   *Program name for invoking an inferior Lisp with for Inferior Lisp mode.)
 
-(defvar slime-lisp-implementations nil
+(defvar slime-lisp-implementations (slime-gather-lisp-implementations)
   *A list of known Lisp implementations.
 The list should have the form: 
   ((NAME (PROGRAM PROGRAM-ARGS...) key INIT CODING-SYSTEM ENV) ...)
-- 
1.6.2.4



<    1   2   3   4   >