Processed: Re: Bug#444357: gnome-core not istallable due to broken libwnck18i package (not available).

2007-09-28 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 reassign 444357 gnome-core
Bug#444357: gnome-core not istallable due to broken libwnck18i package (not 
available).
Warning: Unknown package 'libwnck18i'
Bug reassigned from package `libwnck18i' to `gnome-core'.

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444357: gnome-core not istallable due to broken libwnck18i package (not available).

2007-09-28 Thread Martin Michlmayr
reassign 444357 gnome-core
thanks

* Arnfinn Ringvold [EMAIL PROTECTED] [2007-09-28 01:39]:
 Package: libwnck18i
 Version: 2.18.3-1
 
gnome-core: Depends: gedit (= 2.18.1) but it is not going to be installed
Depends: gnome-applets (= 2.18.0) but it is not going to be 
  installed
  E: Broken packages
  gnome-applets: Depends: libwnck18 (= 2.18.2) but it is not
  installable

libwnck18 is no longer in unstable.

-- 
Martin Michlmayr
http://www.cyrius.com/



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#385520: patch

2007-09-28 Thread Mike O'Connor
tags 385520 patch
tags 385520 forwarded [EMAIL PROTECTED]
thanks

Attached are two patches, one (kxstitch.gcc-4.2.diff) is a patch I sent
upstream which fixes this bug only.  I forwarded this patch to the
upstream author.

The second (kxstitch_0.7-2_0.7-2.1.inter.diff) is an interdiff for an
NMU of the package which fixes this bug, but also fixes all of the
lintian warnings of the package:
http://lintian.debian.org/reports/meric_pareja.html#kxstitch

This NMU is also available here:

http://vireo.org/debian/kxstitch

thanks,
stew
diff -ru kxstitch-0.7.orig/kxstitch/editview.cpp kxstitch-0.7/kxstitch/editview.cpp
--- kxstitch-0.7.orig/kxstitch/editview.cpp	2005-07-03 06:54:14.0 -0400
+++ kxstitch-0.7/kxstitch/editview.cpp	2007-09-27 21:37:25.0 -0400
@@ -47,6 +47,9 @@
 
 extern C double round(double x);
 
+#define MIN(X,Y) ((X)  (Y) ? (X) : (Y))
+#define MAX(X,Y) ((X)  (Y) ? (Y) : (X))
+
 #define TIMERSPEED 50
 
 EditView::EditView(KXStitchDoc* doc,QWidget* parent)
@@ -800,13 +803,13 @@
 QRect EditView::selectionArea()
 {
   int left = m_selectedArea.left();
-  left = left?0;
+  left = MAX(left,0);
   int top = m_selectedArea.top();
-  top = top?0;
+  top = MAX(top,0);
   int right = m_selectedArea.right();
-  right = right?contentsWidth();
+  right = MIN(right,contentsWidth());
   int bottom = m_selectedArea.bottom();
-  bottom = bottom ? contentsHeight();
+  bottom = MIN(bottom,contentsHeight());
   int width = (right-left+1)/m_cellSize;
   int height = (bottom-top+1)/m_cellSize;
   left /= m_cellSize;
@@ -936,11 +939,11 @@
 painter-fillRect(b,QBrush(Qt::black));
 painter-fillRect(r,QBrush(Qt::white));
 painter-drawRect(r);
-QRect currentPage(r.left()+(50*x/patternHeight),r.top()+(50*y/patternHeight),(50*pageCellsWide/patternHeight)?(50*(patternWidth-x)/patternHeight),(50*pageCellsTall/patternHeight)?(50*(patternHeight-y)/patternHeight));
+QRect currentPage(r.left()+(50*x/patternHeight),r.top()+(50*y/patternHeight),MIN((50*pageCellsWide/patternHeight),(50*(patternWidth-x))/patternHeight),MIN((50*pageCellsTall/patternHeight),(50*(patternHeight-y)/patternHeight)));
 painter-fillRect(currentPage,QBrush(Qt::lightGray));
 painter-drawRect(currentPage);
   }
-  printContents(printer, painter, x, y, printable, pageCellsWide?(patternWidth-x), pageCellsTall?(patternHeight-y), printCellSize);
+  printContents(printer, painter, x, y, printable, MIN(pageCellsWide,(patternWidth-x)), MIN(pageCellsTall,(patternHeight-y)), printCellSize);
   // print footer
   painter-drawText(0,height+dy,width,dy,Qt::AlignHCenter,QString(i18n(Page %1)).arg(++pages));
   if (--totalPages)
@@ -1758,7 +1761,7 @@
 m_end = snapToContents(bs-end);
 // found a backstitch that starts and ends where indicated
 m_doc-deleteBackstitch(bs); // this should also update the iterator
-updateContents(QRect(QPoint((m_start.x()?m_end.x())-2,(m_start.y()?m_end.y())-2),QPoint((m_start.x()?m_end.x())+2,(m_start.y()?m_end.y())+2)));
+updateContents(QRect(QPoint(MIN(m_start.x(),m_end.x())-2,MIN(m_start.y(),m_end.y())-2),QPoint(MAX(m_start.x(),m_end.x())+2,MAX(m_start.y(),m_end.y())+2)));
 break;
   }
 }
@@ -1810,7 +1813,7 @@
   drawBoundingRect(m_start, m_end);
   painter.begin(dm);
   painter.setPen(QPen(black,1));
-  painter.drawRect(QRect(QPoint(m_start.x()?m_end.x(),m_start.y()?m_end.y()),QPoint(m_start.x()?m_end.x(),m_start.y()?m_end.y(;
+  painter.drawRect(QRect(QPoint(MIN(m_start.x(),m_end.x()),MIN(m_start.y(),m_end.y())),QPoint(MAX(m_start.x(),m_end.x()),MAX(m_start.y(),m_end.y();
   painter.end();
   m_doc-addStitches(processPixmap(dm),m_currentStitchType);
   emit locationOrSize(QPoint(-1,-1));
@@ -1821,7 +1824,7 @@
   painter.begin(dm);
   painter.setPen(QPen(black,1));
   painter.setBrush(black);
-  painter.drawRect(QRect(QPoint(m_start.x()?m_end.x(),m_start.y()?m_end.y()),QPoint(m_start.x()?m_end.x(),m_start.y()?m_end.y(;
+  painter.drawRect(QRect(QPoint(MIN(m_start.x(),m_end.x()),MIN(m_start.y(),m_end.y())),QPoint(MAX(m_start.x(),m_end.x()),MAX(m_start.y(),m_end.y();
   painter.end();
   m_doc-addStitches(processPixmap(dm),m_currentStitchType);
   emit locationOrSize(QPoint(-1,-1));
@@ -1831,7 +1834,7 @@
   drawBoundingEllipse(m_start, m_end);
   painter.begin(dm);
   painter.setPen(QPen(black,1));
-  painter.drawEllipse(QRect(QPoint(m_start.x()?m_end.x(),m_start.y()?m_end.y()),QPoint(m_start.x()?m_end.x(),m_start.y()?m_end.y(;
+  painter.drawEllipse(QRect(QPoint(MIN(m_start.x(),m_end.x()),MIN(m_start.y(),m_end.y())),QPoint(MAX(m_start.x(),m_end.x()),MAX(m_start.y(),m_end.y();
   painter.end();
   

Processed (with 1 errors): patch

2007-09-28 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 385520 patch
Bug#385520: FTBFS with GCC 4.2: uses removed minimum/maximum operator
Tags were: sid lenny
Tags added: patch

 tags 385520 forwarded [EMAIL PROTECTED]
Unknown tag/s: forwarded, [EMAIL PROTECTED]
Recognized are: patch wontfix moreinfo unreproducible fixed potato woody sid 
help security upstream pending sarge sarge-ignore experimental d-i confirmed 
ipv6 lfs fixed-in-experimental fixed-upstream l10n etch etch-ignore lenny 
lenny-ignore.

Bug#385520: FTBFS with GCC 4.2: uses removed minimum/maximum operator
Tags were: patch sid lenny
Tags added: 

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444360: ocamlnet_2.2.8.1-3(hppa/experimental): FTBFS: tries to link non-PIC static object into shared object

2007-09-28 Thread Stefano Zacchiroli
merge 444360 443150
tags 444360 + help
tags 443150 + help
thanks

On Fri, Sep 28, 2007 at 02:10:06AM +0200, Frank Lichtenheld wrote:
 your package failed to build from source.

Yep, thanks, was already reported.

I'll look into this but I would appreciate help from some of the Apache
guys, since apparently apxs is not invoking the compilers to build PIC
code ...

Cheers.

-- 
Stefano Zacchiroli -*- PhD in Computer Science ... now what?
[EMAIL PROTECTED],debian.org,bononia.it} -%- http://www.bononia.it/zack/
(15:56:48)  Zack: e la demo dema ?/\All one has to do is hit the
(15:57:15)  Bac: no, la demo scema\/right keys at the right time


signature.asc
Description: Digital signature


Processed: Re: Bug#444360: ocamlnet_2.2.8.1-3(hppa/experimental): FTBFS: tries to link non-PIC static object into shared object

2007-09-28 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 merge 444360 443150
Bug#443150: ocamlnet/2.2.8.1-3 (alpha) FTBFS, Re: Log for failed build of 
ocamlnet_2.2.8.1-3 (dist=experimental)
Bug#444360: ocamlnet_2.2.8.1-3(hppa/experimental): FTBFS: tries to link non-PIC 
static object into shared object
Merged 443150 444360.

 tags 444360 + help
Bug#444360: ocamlnet_2.2.8.1-3(hppa/experimental): FTBFS: tries to link non-PIC 
static object into shared object
There were no tags set.
Bug#443150: ocamlnet/2.2.8.1-3 (alpha) FTBFS, Re: Log for failed build of 
ocamlnet_2.2.8.1-3 (dist=experimental)
Tags added: help

 tags 443150 + help
Bug#443150: ocamlnet/2.2.8.1-3 (alpha) FTBFS, Re: Log for failed build of 
ocamlnet_2.2.8.1-3 (dist=experimental)
Tags were: help
Bug#444360: ocamlnet_2.2.8.1-3(hppa/experimental): FTBFS: tries to link non-PIC 
static object into shared object
Tags added: help

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processed: your mail

2007-09-28 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 forwarded 385520 [EMAIL PROTECTED]
Bug#385520: FTBFS with GCC 4.2: uses removed minimum/maximum operator
Noted your statement that Bug has been forwarded to [EMAIL PROTECTED]


End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processed: forwarded

2007-09-28 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 forwarded 385520 [EMAIL PROTECTED]
Bug#385520: FTBFS with GCC 4.2: uses removed minimum/maximum operator
Forwarded-to-address changed from [EMAIL PROTECTED] to [EMAIL PROTECTED]


End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444375: Broken on amd64 environment

2007-09-28 Thread Tatsuki Sugiura
Hello,

 In Message Bug#444375: Broken on amd64 environment
[EMAIL PROTECTED],
 ISHIKAWA Mutsumi [EMAIL PROTECTED]  said;
  Unicode::Japanese perl module does not work on amd64 environment.

  It was fixed on upstream version 0.27. It was released 2 years ago
 (2005), but debian package is not updated since 2004.

  Please update package, it is too old and buggy. Current upstreem
 release is 0.37 (released at Mon Jul  3 10:38:01 JST 2006).

I'm sorry that I neglect that long time.

  If you don't have enough time to maintain this package now, I
 wish to take over this package or to be co-maintainer for it.

Thanks lot!
I'd like to ask you to take over the package...

Are there something I have to do for passing it to you?

-- 
Tatsuki Sugiura   mailto:[EMAIL PROTECTED]



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#367831: 367831: builds fine on amd64, too

2007-09-28 Thread Paul Brossier
hi,

unfortunately, i don't have access to powerpc at the moment, so Martin,
any help would be greatly appreciated.

cheers, Paul

On Mon, May 07, 2007 at 05:18:50PM +, brian m. carlson wrote:
 Just as a data point, freebirth builds fine on amd64 as well.  I might
 eventually get around to booting an old powerpc machine and trying it,
 but don't hold your breath.
 
 -- 
 brian m. carlson / brian with sandals: Houston, Texas, US
 +1 713 440 7475 | http://crustytoothpaste.ath.cx/~bmc | My opinion only
 Screw you, AACS LA: 09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0
 OpenPGP: RSA v3 2048b 560553E7: FE82 7C9F EB21 5436 2F96 25BA 927B 0A51
 
 



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444428: libwnck-common replaces libwnck1, but does not provide it

2007-09-28 Thread Hans-Georg Bork
Package: libwnck-common
Version: 2.20.0-1
Severity: critical

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

Package conflicts and replaces libwnck1 (= 0.10-1), but does not provide it, 
so that all packages depending on it are going to be deinstalled ore are broken.

# apt-get install libwnck-common
Reading package lists... Done
Building dependency tree   
Reading state information... Done
The following packages will be REMOVED
  anjuta devhelp gnome-applets gnome-system-monitor libdevhelp-1-0 libwnck18 
notification-daemon
The following packages will be upgraded:
  libwnck-common
1 upgraded, 0 newly installed, 7 to remove and 1 not upgraded.
Need to get 254kB of archives.
After unpacking 11.5MB disk space will be freed.
Do you want to continue [Y/n]? n
Abort.

Kind regards
-- hgb

--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.22.sokrates.home

Debian Release: lenny/sid
  500 unstablewww.debian-multimedia.org 
  500 unstableftp.nl.debian.org 

--- Package information. ---
Depends   (Version) | Installed
===-+-===
| 



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


Bug#444429: dhelp: error linking against libdb4.5

2007-09-28 Thread Francesco Potorti`
Package: dhelp
Version: 0.5.24-0.1
Severity: serious

Setting up dhelp (0.5.24-0.1) ...
Building HTML tree .../usr/sbin/dhelp_parse: /usr/lib/libdb-4.5.so: no version 
information available (required by /usr/sbin/dhelp_parse)
/var/lib/dpkg/info/dhelp.postinst: line 45: 14800 Segmentation fault (core 
dumped) /usr/sbin/dhelp_parse -r
dpkg: error processing dhelp (--configure):
 subprocess post-installation script returned error exit status 139
Errors were encountered while processing:
 dhelp
E: Sub-process /usr/bin/dpkg returned an error code (1)


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

Kernel: Linux 2.6.18-4-amd64 (SMP w/2 CPU cores)
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set 
to C)
Shell: /bin/sh linked to /bin/bash

Versions of packages dhelp depends on:
ii  debconf [debconf-2.0] 1.5.14 Debian configuration management sy
ii  libc6 2.6.1-1GNU C Library: Shared libraries
ii  libdb4.5  4.5.20-1   Berkeley v4.5 Database Libraries [
ii  perl-modules  5.8.8-7Core Perl modules

Versions of packages dhelp recommends:
ii  dillo [www-browser 0.8.5-4.1+b1  Small and fast web browser
ii  elinks [www-browse 0.11.1-1.4advanced text-mode WWW browser
ii  galeon [www-browse 2.0.2-4   GNOME web browser for advanced use
ii  iceweasel [www-bro 2.0.0.6-0etch1+lenny1 lightweight web browser based on M
ii  lynx [www-browser] 2.8.6-2   Text-mode WWW Browser
ii  mozilla-firefox2.0.0.6-0etch1+lenny1 Transition package for iceweasel r
ii  w3m [www-browser]  0.5.1-5.1+b1  WWW browsable pager with excellent

-- debconf information:
  dhelp/www-browser-console: w3m
  dhelp/www-browser-x: mozilla



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444267: Patches for these issues against 6.2.3

2007-09-28 Thread Thijs Kinkhorst
tags 444267 patch
thanks

Hi,

I've received these patches against 6.2.3 from a helpful third party.
These might be helpful to fix the Debian packages. Please credit Jonathan
Smith when using the patches. Thanks!


Thijsdiff -r 6e2f7c2469aa coders/dcm.c
--- a/coders/dcm.c	Fri Sep 28 03:02:20 2007 -0800
+++ b/coders/dcm.c	Fri Sep 28 03:35:00 2007 -0800
@@ -2899,12 +2899,10 @@ static Image *ReadDCMImage(const ImageIn
 else
   if ((quantum != 0)  (length != 0))
 {
- /* new check for CVE-2007-1797 */
- if (length  ((~0UL)/quantum))
-   ThrowReaderException(CorruptImageError,ImproperImageHeader);
-
-  data=(unsigned char *)
-AcquireMagickMemory((size_t) quantum*(length+1));
+  data=(unsigned char *) NULL;
+  if (~length = 1)
+data=(unsigned char *) AcquireQuantumMemory(length+1,quantum*
+  sizeof(*data));
   if (data == (unsigned char *) NULL)
 ThrowReaderException(ResourceLimitError,
   MemoryAllocationFailed);
diff -r 6e2f7c2469aa coders/xcf.c
--- a/coders/xcf.c	Fri Sep 28 03:02:20 2007 -0800
+++ b/coders/xcf.c	Fri Sep 28 03:35:00 2007 -0800
@@ -944,6 +944,11 @@ static Image *ReadXCFImage(const ImageIn
 else
   if ( image_type == GIMP_INDEXED )
 ThrowReaderException(CoderError,ColormapTypeNotSupported);
+  if (SetImageExtent(image,0,0) == MagickFalse)
+{
+  InheritException(exception,image-exception);
+  return(DestroyImageList(image));
+}
   SetImageBackgroundColor(image);
   /*
 Read properties.diff -r 0b40602aff9a coders/dcm.c
--- a/coders/dcm.c	Fri Sep 28 04:42:08 2007 -0800
+++ b/coders/dcm.c	Fri Sep 28 04:54:16 2007 -0800
@@ -3041,8 +3041,7 @@ static Image *ReadDCMImage(const ImageIn
   break;
 colors=(unsigned long) (length/bytes_per_pixel);
 datum=(long) colors;
-graymap=(unsigned short *)
-  AcquireMagickMemory((size_t) colors*sizeof(*graymap));
+graymap=(unsigned short *) AcquireQuantumMemory((size_t) colors,sizeof(*graymap));
 if (graymap == (unsigned short *) NULL)
   ThrowReaderException(ResourceLimitError,MemoryAllocationFailed);
 for (i=0; i  (long) colors; i++)
@@ -3202,8 +3201,7 @@ static Image *ReadDCMImage(const ImageIn
   /*
 Compute pixel scaling table.
   */
-  scale=(Quantum *)
-AcquireMagickMemory((size_t) (max_value+1)*sizeof(*scale));
+  scale=(Quantum *) AcquireQuantumMemory(length,sizeof(*scale));
   if (scale == (Quantum *) NULL)
 ThrowReaderException(ResourceLimitError,MemoryAllocationFailed);
   for (i=0; i = (long) max_value; i++)
diff -r 0b40602aff9a coders/dib.c
--- a/coders/dib.c	Fri Sep 28 04:42:08 2007 -0800
+++ b/coders/dib.c	Fri Sep 28 04:54:16 2007 -0800
@@ -581,8 +581,9 @@ static Image *ReadDIBImage(const ImageIn
 ThrowReaderException(CorruptImageError,ImproperImageHeader);
   if (AllocateImageColormap(image,image-colors) == MagickFalse)
 ThrowReaderException(ResourceLimitError,MemoryAllocationFailed);
-  dib_colormap=(unsigned char *) AcquireMagickMemory(4*image-colors*
-sizeof(*dib_colormap));
+  length=(size_t) image-colors;
+  dib_colormap=(unsigned char *) AcquireQuantumMemory(length,
+4*sizeof(*dib_colormap));
   if (dib_colormap == (unsigned char *) NULL)
 ThrowReaderException(ResourceLimitError,MemoryAllocationFailed);
   packet_size=4;
@@ -607,8 +608,8 @@ static Image *ReadDIBImage(const ImageIn
 dib_info.bits_per_pixel=1;
   bytes_per_line=4*((image-columns*dib_info.bits_per_pixel+31)/32);
   length=bytes_per_line*image-rows;
-  pixels=(unsigned char *) AcquireMagickMemory((size_t)
-Max(bytes_per_line,image-columns+256)*image-rows*sizeof(*pixels));
+  pixels=(unsigned char *) AcquireQuantumMemory((size_t) image-rows,
+MagickMax(bytes_per_line,image-columns+256)*sizeof(*pixels));
   if (pixels == (unsigned char *) NULL)
 ThrowReaderException(ResourceLimitError,MemoryAllocationFailed);
   if ((dib_info.compression == 0) || (dib_info.compression == 3))
@@ -1059,7 +1060,8 @@ static MagickBooleanType WriteDIBImage(c
   /*
 Convert MIFF to DIB raster pixels.
   */
-  pixels=(unsigned char *) AcquireMagickMemory(dib_info.image_size);
+  pixels=(unsigned char *) AcquireQuantumMemory(dib_info.image_size,
+sizeof(*pixels));
   if (pixels == (unsigned char *) NULL)
 ThrowWriterException(ResourceLimitError,MemoryAllocationFailed);
   (void) ResetMagickMemory(pixels,0,dib_info.image_size);
@@ -1190,7 +1192,8 @@ static MagickBooleanType WriteDIBImage(c
   Convert run-length encoded raster pixels.
 */
 length=2*(bytes_per_line+2)*(image-rows+2)+2;
-dib_data=(unsigned char *) AcquireMagickMemory(length);
+dib_data=(unsigned char *) AcquireQuantumMemory(length,
+   

Processed: Re: Bug#444363: gnome-core not istallable due to broken libwnck18i package (not available).

2007-09-28 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 444363 serious
Bug#444363: gnome-core not istallable due to broken libwnck18i package (not 
available).
Severity set to `serious' from `critical'

 stop
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444315: python-gobject-dev: Missing Depends on libffi4-dev.

2007-09-28 Thread Josselin Mouette
Le jeudi 27 septembre 2007 à 20:13 +0200, Kurt Roeckx a écrit :
 Package: python-gobject-dev
 Version: 2.14.0-2
 Severity: serious
 
 Hi,
 
 The file /usr/lib/pkgconfig/pygobject-2.0.pc has this in it:
 Libs: -L${libdir} -lffi
 
 However, python-gobject-dev doesn't have a Depends on libffi4-dev
 making other package that Build-Depend on python-gobject-dev fail
 to build.

Depends: python, python-gobject (= 2.14.0-2), python-dev, libglib2.0-dev (= 
2.8.0), libffi-dev

What is exactly missing?

-- 
 .''`.   Josselin Mouette/\./\
: :' :   [EMAIL PROTECTED]
`. `'[EMAIL PROTECTED]
  `-  Debian GNU/Linux -- The power of freedom


signature.asc
Description: Ceci est une partie de message	numériquement signée


Bug#444360: ocamlnet_2.2.8.1-3(hppa/experimental): FTBFS: tries to link non-PIC static object into shared object

2007-09-28 Thread Julien Cristau
On Fri, Sep 28, 2007 at 09:12:35 +0200, Stefano Zacchiroli wrote:

 On Fri, Sep 28, 2007 at 02:10:06AM +0200, Frank Lichtenheld wrote:
  your package failed to build from source.
 
 Yep, thanks, was already reported.
 
 I'll look into this but I would appreciate help from some of the Apache
 guys, since apparently apxs is not invoking the compilers to build PIC
 code ...
 

The problem seems to be that you're trying to build the
mod_netcgi_apache.so shared object while linking with -lcamlrun, but
libcamlrun only exists as a static (non-PIC) library.

Cheers,
Julien



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444360: ocamlnet_2.2.8.1-3(hppa/experimental): FTBFS: tries to link non-PIC static object into shared object

2007-09-28 Thread Stefano Zacchiroli
On Fri, Sep 28, 2007 at 09:48:50AM +0200, Julien Cristau wrote:
 The problem seems to be that you're trying to build the
 mod_netcgi_apache.so shared object while linking with -lcamlrun, but
 libcamlrun only exists as a static (non-PIC) library.

Aaaarggh, right! IIRC that's an upstream issue for which exists a patch
(by Richard Jones maybe ...), isn't it? What about applying it in the
OCaml Debian package?

Thanks for the pointer,
Cheers.

-- 
Stefano Zacchiroli -*- PhD in Computer Science ... now what?
[EMAIL PROTECTED],debian.org,bononia.it} -%- http://www.bononia.it/zack/
(15:56:48)  Zack: e la demo dema ?/\All one has to do is hit the
(15:57:15)  Bac: no, la demo scema\/right keys at the right time


signature.asc
Description: Digital signature


Processed: Patches for these issues against 6.2.3

2007-09-28 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 444267 patch
Bug#444267: CVE-2007-4985, CVE-2007-4986, CVE-2007-4987, CVE-2007-4988 multiple 
vulnerabilities
Tags were: security
Tags added: patch

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444360: ocamlnet_2.2.8.1-3(hppa/experimental): FTBFS: tries to link non-PIC static object into shared object

2007-09-28 Thread Stefano Zacchiroli
On Fri, Sep 28, 2007 at 02:10:45PM +0100, Richard Jones wrote:
 In particular I could do it if INRIA said that they would support the
 change in some future release (see the exception Patches Heading
 Upstream).  But otherwise this is quite a large ABI change -- if
 Fedora users started to build lots of 64 bit shared libraries linked
 with -lcamlrun I could end up maintaining it separately forever.

I think you misunderstood my proposal. I don't want to apply your
initial fix which changes libcamlrun.a into libcamlrun.so. I want to add
a libcamlrun_shared.so, so there would be no ABI change, just the added
possibility to link against it.

Or maybe you're concerned about having to drop in the future support for
libcamlrun_shared.so, but I think the user impact of that new library
would be quite low. In fact I don't think anything else that
mod_caml-like projects will need it ...

Cheers.

-- 
Stefano Zacchiroli -*- PhD in Computer Science ... now what?
[EMAIL PROTECTED],debian.org,bononia.it} -%- http://www.bononia.it/zack/
(15:56:48)  Zack: e la demo dema ?/\All one has to do is hit the
(15:57:15)  Bac: no, la demo scema\/right keys at the right time



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processed: severity of 444428 is serious

2007-09-28 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.8
 severity 28 serious
Bug#28: libwnck-common replaces libwnck1, but does not provide it
Severity set to `serious' from `critical'


End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processed: setting package to libapache2-mod-ocamlnet libequeue-gtk2-ocaml-dev libequeue-ocaml libequeue-ocaml-dev libnetclient-ocaml-dev libnethttpd-ocaml-dev libocamlnet-gtk2-ocaml-dev libocamlnet-o

2007-09-28 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.8
 package libapache2-mod-ocamlnet libequeue-gtk2-ocaml-dev libequeue-ocaml 
 libequeue-ocaml-dev libnetclient-ocaml-dev libnethttpd-ocaml-dev 
 libocamlnet-gtk2-ocaml-dev libocamlnet-ocaml libocamlnet-ocaml-bin 
 libocamlnet-ocaml-dev libocamlnet-ocaml-doc libocamlnet-ssl-ocaml 
 libocamlnet-ssl-ocaml-dev librpc-ocaml-dev ocamlnet
Ignoring bugs not assigned to: libocamlnet-ocaml-dev libequeue-ocaml-dev 
ocamlnet libocamlnet-ocaml libocamlnet-ocaml-doc libnethttpd-ocaml-dev 
libapache2-mod-ocamlnet libequeue-gtk2-ocaml-dev libequeue-ocaml 
libocamlnet-ssl-ocaml-dev libocamlnet-ocaml-bin libocamlnet-gtk2-ocaml-dev 
libnetclient-ocaml-dev libocamlnet-ssl-ocaml librpc-ocaml-dev

 tags 443150 + pending
Bug#443150: ocamlnet/2.2.8.1-3 (alpha) FTBFS, Re: Log for failed build of 
ocamlnet_2.2.8.1-3 (dist=experimental)
Tags were: help
Bug#444360: ocamlnet_2.2.8.1-3(hppa/experimental): FTBFS: tries to link non-PIC 
static object into shared object
Tags added: pending

 tags 444360 + pending
Bug#444360: ocamlnet_2.2.8.1-3(hppa/experimental): FTBFS: tries to link non-PIC 
static object into shared object
Tags were: pending help
Bug#443150: ocamlnet/2.2.8.1-3 (alpha) FTBFS, Re: Log for failed build of 
ocamlnet_2.2.8.1-3 (dist=experimental)
Tags added: pending


End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444360: ocamlnet_2.2.8.1-3(hppa/experimental): FTBFS: tries to link non-PIC static object into shared object

2007-09-28 Thread Richard Jones
On Fri, Sep 28, 2007 at 03:17:27PM +0200, Stefano Zacchiroli wrote:
 On Fri, Sep 28, 2007 at 02:10:45PM +0100, Richard Jones wrote:
  In particular I could do it if INRIA said that they would support the
  change in some future release (see the exception Patches Heading
  Upstream).  But otherwise this is quite a large ABI change -- if
  Fedora users started to build lots of 64 bit shared libraries linked
  with -lcamlrun I could end up maintaining it separately forever.

[I meant to say -lcamlrun_shared here]

 I think you misunderstood my proposal. I don't want to apply your
 initial fix which changes libcamlrun.a into libcamlrun.so. I want to add
 a libcamlrun_shared.so, so there would be no ABI change, just the added
 possibility to link against it.
 
 Or maybe you're concerned about having to drop in the future support for
 libcamlrun_shared.so, but I think the user impact of that new library
 would be quite low. In fact I don't think anything else that
 mod_caml-like projects will need it ...

That would also need to go upstream before Fedora could accept it.

Rich.

-- 
Richard Jones
Red Hat



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444441: pidgin: Exits immediately on startup

2007-09-28 Thread Ari Pollak
Please install the pidgin-dbg and libgtk2.0-0 packages, and get a
backtrace as described here:
http://developer.pidgin.im/wiki/GetABacktrace
Also, moving your ~/.purple directory out of the way and trying again
might help, as will attaching the output of pidgin -d.


On Fri, 2007-09-28 at 11:00 -0400, Jerry Quinn wrote:
 Package: pidgin
 Version: 2.2.0-1
 Severity: grave
 Justification: renders package unusable
 
 I just upgraded from pidgin 2.0 and now pidgin exits silently as soon as you 
 run it.
 There are no messages in .xsession, and nothing printed to the console.  I 
 don't know
 enough to see why it's unhappy from strace output.
 
 I tried purging and reinstalling the package and it still fails to run.





-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444430: CVE-2007-4993 privilege escalation

2007-09-28 Thread Nico Golde
Package: xen-3.0
Version: 3.0.3-0-2
Severity: grave
Tags: security

Hi,
the following CVE (Common Vulnerabilities  Exposures) id was
published for xen-3.0.

CVE-2007-4993[0]:
| pygrub (tools/pygrub/src/GrubConf.py) in Xen 3.0.3, when booting a guest
| domain, allows local users with elevated privileges in the guest domain to
| execute arbitrary commands in domain 0 via a crafted grub.conf file whose
| contents are used in exec statements. 

If you fix this vulnerability please also include the CVE id
in your changelog entry.

For further information:
[0] http://nvd.nist.gov/nvd.cfm?cvename=CVE-2007-4993

Kind regards
Nico

-- 
Nico Golde - http://ngolde.de - [EMAIL PROTECTED] - GPG: 0x73647CFF
For security reasons, all text in this mail is double-rot13 encrypted.


pgp1AGIE0kvSX.pgp
Description: PGP signature


Bug#444441: pidgin: Exits immediately on startup

2007-09-28 Thread Jerry Quinn
Package: pidgin
Version: 2.2.0-1
Severity: grave
Justification: renders package unusable

I just upgraded from pidgin 2.0 and now pidgin exits silently as soon as you 
run it.
There are no messages in .xsession, and nothing printed to the console.  I 
don't know
enough to see why it's unhappy from strace output.

I tried purging and reinstalling the package and it still fails to run.

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

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

Versions of packages pidgin depends on:
ii  gconf2  2.18.0.1-3   GNOME configuration database syste
ii  libatk1.0-0 1.18.0-2 The ATK accessibility toolkit
ii  libc6   2.6.1-1  GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1 The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.1.1-3  simple interprocess messaging syst
ii  libdbus-glib-1-20.74-1   simple interprocess messaging syst
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libglib2.0-02.14.0-2 The GLib library of C routines
ii  libgstreamer0.10-0  0.10.14-1Core GStreamer libraries and eleme
ii  libgtk2.0-0 2.10.13-1The GTK+ graphical user interface 
ii  libgtkspell02.0.10-3+b1  a spell-checking addon for GTK's T
ii  libice6 2:1.0.3-3X11 Inter-Client Exchange library
ii  libpango1.0-0   1.18.1-1 Layout and rendering of internatio
ii  libpurple0  2.2.0-1  multi-protocol instant messaging l
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libstartup-notification00.9-1library for program launch feedbac
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcursor1 1:1.1.8-2X cursor management library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxfixes3  1:4.0.3-2X11 miscellaneous 'fixes' extensio
ii  libxi6  2:1.1.2-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxrandr2  2:1.2.1-1X11 RandR extension library
ii  libxrender1 1:0.9.2-1X Rendering Extension client libra
ii  libxss1 1:1.1.2-1X11 Screen Saver extension library
ii  pidgin-data 2.2.0-1  multi-protocol instant messaging c

Versions of packages pidgin recommends:
ii  gstreamer0.10-plugins-base0.10.13-2  GStreamer plugins from the base 
ii  gstreamer0.10-plugins-good0.10.6-1   GStreamer plugins from the good 

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444360: ocamlnet_2.2.8.1-3(hppa/experimental): FTBFS: tries to link non-PIC static object into shared object

2007-09-28 Thread Stefano Zacchiroli
On Fri, Sep 28, 2007 at 01:17:00PM +0100, Richard Jones wrote:
 No I don't actually.  It's strange because I didn't hit this bug at
 all when compiling ocamlnet for Fedora.

Are you building the Apache connector? The bug manifests itself only if
you're building that, and only on architecture in which PIC code is
actually different than non-PIC code.

 Unfortunately Fedora policy stops me from incorporating this fix:
 http://caml.inria.fr/mantis/view.php?id=3866
 into our OCaml.  It would have to be accepted into upstream (INRIA's)
 OCaml first.

Why?

 But it's desperately needed, so please vote for INRIA to include it :-)

Well, nobody replied to the bug report, so I don't think pinging there
will be useful. The only other possible step is to raise the problem on
the caml mailing list, what do you think?

-- 
Stefano Zacchiroli -*- PhD in Computer Science ... now what?
[EMAIL PROTECTED],debian.org,bononia.it} -%- http://www.bononia.it/zack/
(15:56:48)  Zack: e la demo dema ?/\All one has to do is hit the
(15:57:15)  Bac: no, la demo scema\/right keys at the right time


signature.asc
Description: Digital signature


Bug#430967: [Pkg-xen-devel] Bug#430967: xen-3.0: FTBFS with gcc-4.2 [i386]: C99 inline functions are not supported

2007-09-28 Thread Bastian Blank
reassign 430967 xen-3
close 430967 3.1-1
thanks

On Thu, Jun 28, 2007 at 11:11:57AM -0400, Daniel Schepler wrote:
 From my pbuilder build log, using a chroot with packages mostly from sid
 except that gcc-defaults is from experimental:

Fixed.

Bastian

-- 
The heart is not a logical organ.
-- Dr. Janet Wallace, The Deadly Years, stardate 3479.4



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444360: ocamlnet_2.2.8.1-3(hppa/experimental): FTBFS: tries to link non-PIC static object into shared object

2007-09-28 Thread Richard Jones
On Fri, Sep 28, 2007 at 12:59:20PM +0200, Stefano Zacchiroli wrote:
 On Fri, Sep 28, 2007 at 09:59:45AM +0200, Stefano Zacchiroli wrote:
  Aaaarggh, right! IIRC that's an upstream issue for which exists a patch
  (by Richard Jones maybe ...), isn't it? What about applying it in the
  OCaml Debian package?
 
 Yep, that was the case, here is a link to the corresponding entry in the
 caml BTS: http://caml.inria.fr/mantis/view.php?id=3866 .
 
 Apparently upstream do not care a lot about this issue, but I think the
 final solution hinted by Richard is the right one: leave libcarmlrun.a
 as it is and additionally provide a libcamlrun_shared.so which we can
 use where PIC code is required.
 
 Any comments / objection to add something like that to the ocaml package
 in Debian?
 
 Richard: do you perhaps already have a patch for this in Red Hat?

No I don't actually.  It's strange because I didn't hit this bug at
all when compiling ocamlnet for Fedora.

Unfortunately Fedora policy stops me from incorporating this fix:
http://caml.inria.fr/mantis/view.php?id=3866
into our OCaml.  It would have to be accepted into upstream (INRIA's)
OCaml first.

But it's desperately needed, so please vote for INRIA to include it :-)

Rich.

-- 
Richard Jones
Red Hat



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processed: Re: [Pkg-xen-devel] Bug#430967: xen-3.0: FTBFS with gcc-4.2 [i386]: C99 inline functions are not supported

2007-09-28 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 reassign 430967 xen-3
Bug#430967: xen-3.0: FTBFS with gcc-4.2 [i386]: C99 inline functions are not 
supported
Bug reassigned from package `xen-3.0' to `xen-3'.

 close 430967 3.1-1
Bug#430967: xen-3.0: FTBFS with gcc-4.2 [i386]: C99 inline functions are not 
supported
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug marked as fixed in version 3.1-1, send any further explanations to Daniel 
Schepler [EMAIL PROTECTED]

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444360: ocamlnet_2.2.8.1-3(hppa/experimental): FTBFS: tries to link non-PIC static object into shared object

2007-09-28 Thread Stefano Zacchiroli
On Fri, Sep 28, 2007 at 09:59:45AM +0200, Stefano Zacchiroli wrote:
 Aaaarggh, right! IIRC that's an upstream issue for which exists a patch
 (by Richard Jones maybe ...), isn't it? What about applying it in the
 OCaml Debian package?

Yep, that was the case, here is a link to the corresponding entry in the
caml BTS: http://caml.inria.fr/mantis/view.php?id=3866 .

Apparently upstream do not care a lot about this issue, but I think the
final solution hinted by Richard is the right one: leave libcarmlrun.a
as it is and additionally provide a libcamlrun_shared.so which we can
use where PIC code is required.

Any comments / objection to add something like that to the ocaml package
in Debian?

Richard: do you perhaps already have a patch for this in Red Hat?

-- 
Stefano Zacchiroli -*- PhD in Computer Science ... now what?
[EMAIL PROTECTED],debian.org,bononia.it} -%- http://www.bononia.it/zack/
(15:56:48)  Zack: e la demo dema ?/\All one has to do is hit the
(15:57:15)  Bac: no, la demo scema\/right keys at the right time


signature.asc
Description: Digital signature


Bug#439927: t1lib security flaw: CVE-2007-4033/#439927

2007-09-28 Thread Ionut Georgescu
On Thu, 2007-09-27 at 20:12 +0200, Torsten Werner wrote:
 On 9/17/07, Torsten Werner [EMAIL PROTECTED] wrote:
  On 9/16/07, Artur R. Czechowski [EMAIL PROTECTED] wrote:
   The t1lib 5.1.0 available in Debian (either etch as lenny and sid[1]) is
   vulnerable to CVE-2007-4033 security flaw.
 
  I have uploaded a new package to unstable that can be easily
  backported to etch/lenny. I am attaching the output of debdiff.
 
 Do you plan to update the package through security.debian.org?
 
 Cheers,
 Torsten
 

Hi Torsten,

I think one should, because php depends on it. It would be nice if any
of you could do that at the moment. My laptop kissed me goodbye a few
weeks ago together with all my work. I could do it from work, but there
I hardly have any time to breathe.

Thanks a lot,
Ionut


-- 
***
* Ionuţ Georgescu
* Max-Planck-Institut für Physik komplexer Systeme
* Noethnitzer Str. 38, D-01187 Dresden
* Phone: +49 (351) 871-2209
* Fax:   +49 (351) 871-1999 






Bug#444458: fbset tries to create /dev/fb device on upgrade

2007-09-28 Thread Bas Zoetekouw
Package: fbset
Version: 2.1-20
Severity: serious

durting upgrade, I get this:

Setting up fbset (2.1-20) ...
error making /dev/fb: File exists
dpkg: error processing fbset (--configure):
 subprocess post-installation script returned error exit status 9
Errors were encountered while processing:
 fbset

I guess this is MAKEDEV's fault, because it shouldn't be trying to
mess with udev.  In any case, fbset's postinst shouldn't fail if it
can't create the device.  Is there any reason for fbset to create the
devices in the first place?

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

Kernel: Linux 2.6.22.1 (PREEMPT)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages fbset depends on:
ii  libc6 2.6.1-5GNU C Library: Shared libraries
ii  makedev   3.3.8.2-0  Creates device files in /dev
ii  udev  0.114-2/dev/ and hotplug management daemo

fbset recommends no packages.

-- debconf information:
  fbset/create_framebuffer_devices:



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processed: your mail

2007-09-28 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 444285 serious
Bug#444285: gimp-data: Generated cache was invalid
Severity set to `serious' from `normal'


End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444427: libpam-modules: pam_group: bad users matching

2007-09-28 Thread Matthieu CASTET

Package: libpam-modules
Version: 0.99.7.1-4
Severity: grave
Tags: security
Justification: user security hole

Hi,

this line should add the group floppy to the user us according to the
documentation.
group.conf :
xsh;tty*!ttyp*;us;Al-2400;floppy.

But this line give all the us* users the floppy group.

After looking at the source code, it seems the match is only done on the
length of the username in group.conf. So we only check the start of the
name.

The code for evaluating expression is used for other fields, and the same
bug could happen for the tty or service field.

Note the code for parsing entries is duplicated from pam_time (and may 
be other

modules). They may be have the same issue

(note that pam_time are already a parsing bug #326407)

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

Kernel: Linux 2.6.22-1-686 (SMP w/2 CPU cores)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages libpam-modules depends on:
ii  libc62.6.1-5 GNU C Library: Shared libraries
ii  libcap1  1:1.10-14   support for getting/setting 
POSIX.
ii  libdb4.6 4.6.19-1Berkeley v4.6 Database 
Libraries [
ii  libpam0g 0.99.7.1-4  Pluggable Authentication 
Modules l

ii  libselinux1  2.0.15-2+b1 SELinux shared libraries

libpam-modules recommends no packages.

-- no debconf information



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#442260: marked as done (fftw2 should depend on libmpich1.0ldbl)

2007-09-28 Thread Debian Bug Tracking System
Your message dated Fri, 28 Sep 2007 19:20:30 +0200
with message-id [EMAIL PROTECTED]
and subject line Bug#442260: fftw2 should depend on libmpich1.0ldbl
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: fftw2
Version: 2.1.3-20
Severity: grave
Justification: renders package unusable

libmpich1.0c2 has been replaced by libmpich1.0ldbl.

And due to bug 441882, this means that my system is currently unfixable
by apt-get install -f, as libmpich1.0c2 can't be removed.

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

Kernel: Linux 2.6.22-1-686-bigmem (SMP w/2 CPU cores)
Locale: LANG=POSIX, LC_CTYPE=en_US.ISO8859-1 (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages fftw2 depends on:
ii  libc6 2.6.1-3GNU C Library: Shared libraries
ii  libmpich1.0c2 1.2.7-2mpich runtime shared library

fftw2 recommends no packages.

-- no debconf information


---End Message---
---BeginMessage---
Version: 2.1.3-20+b1

Vincent Lefevre [EMAIL PROTECTED] (14/09/2007):
 libmpich1.0c2 has been replaced by libmpich1.0ldbl.

This dependency is correct in the above-mentioned version, thanks to a
binNMU.

Cheers,

-- 
Cyril Brulebois


pgpNGrgFV5WnO.pgp
Description: PGP signature
---End Message---


Bug#443070: hylafax-server: faxaddmodem doesn't release lock file in /var/lock/

2007-09-28 Thread Lukasz Szybalski
On 9/28/07, Giuseppe Sacco [EMAIL PROTECTED] wrote:
 Hi Lukasz,
 I read your logs, but I need one more information (at least): what shell
 are you using? And what version is it?
faxserver:/home/x# sh --version
GNU bash, version 3.1.17(1)-release (i486-pc-linux-gnu)
Copyright (C) 2005 Free Software Foundation, Inc.

Does that help?
Lucas



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444360: ocamlnet_2.2.8.1-3(hppa/experimental): FTBFS: tries to link non-PIC static object into shared object

2007-09-28 Thread Richard Jones
On Fri, Sep 28, 2007 at 02:32:16PM +0200, Stefano Zacchiroli wrote:
 On Fri, Sep 28, 2007 at 01:17:00PM +0100, Richard Jones wrote:
  No I don't actually.  It's strange because I didn't hit this bug at
  all when compiling ocamlnet for Fedora.
 
 Are you building the Apache connector? The bug manifests itself only if
 you're building that, and only on architecture in which PIC code is
 actually different than non-PIC code.

I thought we were but I just checked the specfile and it turns out we
aren't.

  Unfortunately Fedora policy stops me from incorporating this fix:
  http://caml.inria.fr/mantis/view.php?id=3866
  into our OCaml.  It would have to be accepted into upstream (INRIA's)
  OCaml first.
 
 Why?

Because of our policy ...
http://fedoraproject.org/wiki/PackageMaintainers/WhyUpstream

In particular I could do it if INRIA said that they would support the
change in some future release (see the exception Patches Heading
Upstream).  But otherwise this is quite a large ABI change -- if
Fedora users started to build lots of 64 bit shared libraries linked
with -lcamlrun I could end up maintaining it separately forever.

Rich.

-- 
Richard Jones
Red Hat



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444360: ocamlnet_2.2.8.1-3(hppa/experimental): FTBFS: tries to link non-PIC static object into shared object

2007-09-28 Thread skaller
On Fri, 2007-09-28 at 14:26 +0100, Richard Jones wrote:
 On Fri, Sep 28, 2007 at 03:17:27PM +0200, Stefano Zacchiroli wrote:
  On Fri, Sep 28, 2007 at 02:10:45PM +0100, Richard Jones wrote:
   In particular I could do it if INRIA said that they would support the
   change in some future release (see the exception Patches Heading
   Upstream).  But otherwise this is quite a large ABI change -- if
   Fedora users started to build lots of 64 bit shared libraries linked
   with -lcamlrun I could end up maintaining it separately forever.
 
 [I meant to say -lcamlrun_shared here]
 
  I think you misunderstood my proposal. I don't want to apply your
  initial fix which changes libcamlrun.a into libcamlrun.so. I want to add
  a libcamlrun_shared.so, so there would be no ABI change, just the added
  possibility to link against it.
  
  Or maybe you're concerned about having to drop in the future support for
  libcamlrun_shared.so, but I think the user impact of that new library
  would be quite low. In fact I don't think anything else that
  mod_caml-like projects will need it ...
 
 That would also need to go upstream before Fedora could accept it.

Why? I would have thought it is close to *policy* to provide
libraries for both static and dynamic link. 

-- 
John Skaller skaller at users dot sf dot net
Felix, successor to C++: http://felix.sf.net



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444435: [Pkg-openssl-devel] Bug#444435: openssl: [CVE-2007-5135] Off-by-one error in the SSL_get_shared_ciphers()

2007-09-28 Thread Kurt Roeckx
On Fri, Sep 28, 2007 at 07:16:15PM +0200, Kurt Roeckx wrote:
  Off-by-one error in the SSL_get_shared_ciphers function in OpenSSL
  0.9.7l and 0.9.8d might allow remote attackers to execute arbitrary
  code via a crafted packet that triggers a one-byte buffer underflow.

So, it seems to be that CVE-2006-3738 didn't properly fix things.


Kurt




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#443206: (no subject)

2007-09-28 Thread Arthur Loiret
I've contacted upstream author to know if he plan to publish a 0.5
release soon, otherwise I'll put the svn diff in a patch.

Arthur.



signature.asc
Description: Digital signature


Bug#432893: Accepted dpkg 1.14.7~newshlib (source i386 all)

2007-09-28 Thread Ian Jackson
Raphael Hertzog writes (Accepted dpkg 1.14.7~newshlib (source i386
all)):
 [stuff]

I'm very pleased to see all of this work being done on the Perl
scripts - I'm hoping for big compatibility improvements from Raphael's
shared library management changes.

But I did want to comment on this:
* After 'prerm remove' fails and while doing the error unwinding, if
  the 'postinst abort-remove' call succeeds, preserve the old status
  instead of unconditionally setting it to 'Installed'. Closes: #432893
  Thanks to Brian M. Carlson.

I don't think this change is correct.  If the documentation wasn't
clear then it should have been clarified.

If the  postinst abort-remove  is executed and completes
successfully, the package should be regarded as installed.

NB that this can only happen if the package was previously at least
unpacked.  The way that a package is moved from unpacked or
failed-config to installed is by running the postinst.  That the
postinst is informed of the specific circumstances - aborted removal -
doesn't mean that it shouldn't do its job.

Ian.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processed: severity of 444455 is normal

2007-09-28 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.26
 severity 55 normal
Bug#55: linux-image-2.6.18-5-686: After kernel update from security.d.o 
hibernate fails
Severity set to `normal' from `critical'


End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444455: linux-image-2.6.18-5-686: After kernel update from security.d.o hibernate fails

2007-09-28 Thread Alexander Kotelnikov
Package: linux-image-2.6.18-5-686
Version: 2.6.18.dfsg.1-13etch3
Severity: critical
Justification: breaks the whole system

Resuming from hibernate after kernel change fails due to certain
checks/mismatches. I would be nice to get some kind of warning about
such possibilities while upgrading.

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-5-686
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)

Versions of packages linux-image-2.6.18-5-686 depends on:
ii  coreutils 5.97-5.3   The GNU core utilities
ii  debconf [debconf-2.0] 1.5.11 Debian configuration management sy
ii  initramfs-tools [linux-initra 0.85h  tools for generating an initramfs
ii  module-init-tools 3.3-pre4-2 tools for managing Linux kernel mo

Versions of packages linux-image-2.6.18-5-686 recommends:
ii  libc6-i686 2.3.6.ds1-13etch2 GNU C Library: Shared libraries [i

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



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444441: pidgin: Exits immediately on startup

2007-09-28 Thread jlquinn (optonline)

Ari Pollak wrote:

What happens if you rename your ~/.purple directory?
  

I removed it immediately before starting and it still does the same thing.




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444407: libgnome2-wnck-perl - FTBFS: error: too many arguments to function 'wnck_selector_new'

2007-09-28 Thread Bastian Blank
Package: libgnome2-wnck-perl
Version: 0.14-1+b1
Severity: serious

There was an error while trying to autobuild your package:

 Automatic build of libgnome2-wnck-perl_0.14-1+b1 on debian-31.osdl.marist.edu 
 by sbuild/s390 98
[...]
 /usr/bin/perl /usr/share/perl/5.8/ExtUtils/xsubpp -noprototypes -typemap 
 /usr/share/perl/5.8/ExtUtils/typemap -typemap 
 /build/buildd/libgnome2-wnck-perl-0.14/build/wnck2perl.typemap -typemap 
 /usr/lib/perl5/Glib/Install/typemap -typemap 
 /usr/lib/perl5/Gtk2/Install/gtk2perl.typemap -typemap 
 /usr/lib/perl5/Gtk2/Install/gdk.typemap -typemap 
 /usr/lib/perl5/Gtk2/Install/gtk.typemap -typemap 
 /usr/lib/perl5/Gtk2/Install/pango.typemap -typemap 
 /usr/lib/perl5/Cairo/Install/cairo-perl-auto.typemap -typemap 
 /usr/lib/perl5/Cairo/Install/cairo-perl.typemap  xs/WnckSelector.xs  
 xs/WnckSelector.xsc  mv xs/WnckSelector.xsc xs/WnckSelector.c
 cc -c  -I/usr/include/libwnck-1.0 -I/usr/include/gtk-2.0 
 -I/usr/include/startup-notification-1.0 -I/usr/lib/gtk-2.0/include 
 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 
 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 
 -I/usr/include/libpng12 -DWNCK_I_KNOW_THIS_IS_UNSTABLE 
 -I/usr/lib/perl5/Glib/Install -pthread -I. -I/usr/lib/perl5/Gtk2/Install 
 -I./build -I/usr/lib/perl5/Cairo/Install -Ibuild -D_REENTRANT -D_GNU_SOURCE 
 -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include 
 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -Wall -g -O2   -DVERSION=\0.14\ 
 -DXS_VERSION=\0.14\ -o xs/WnckSelector.o -fPIC -I/usr/lib/perl/5.8/CORE   
 xs/WnckSelector.c
 WnckSelector.c: In function 'XS_Gnome2__Wnck__Selector_new':
 WnckSelector.c:47: error: too many arguments to function 'wnck_selector_new'
 make[1]: *** [xs/WnckSelector.o] Error 1
 make[1]: Leaving directory `/build/buildd/libgnome2-wnck-perl-0.14'
 make: *** [build-stamp] Error 2
 **
 Build finished at 20070927-2022
 FAILED [dpkg-buildpackage died]



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444404: libapache2-mod-defensible - FTBFS: make: *** [clean] Error 1

2007-09-28 Thread Bastian Blank
Package: libapache2-mod-defensible
Version: 1.4-1
Severity: serious

There was an error while trying to autobuild your package:

 Automatic build of libapache2-mod-defensible_1.4-1 on lxdebian.bfinv.de by 
 sbuild/s390 98
[...]
  /usr/bin/fakeroot debian/rules clean
 dh_testdir
 dh_testroot
 rm -f build-stamp config.log
 test -f Makefile  /usr/bin/make distclean
 make: *** [clean] Error 1
 **
 Build finished at 20070924-2122
 FAILED [dpkg-buildpackage died]



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444405: gtkrsync - FTBFS: undefined reference to `gtkzm0zi9zi12_GraphicsziUIziGtkziMultilineziTextBuffer_zdwtextBufferMoveMark_entry'

2007-09-28 Thread Bastian Blank
Package: gtkrsync
Version: 1.0.1
Severity: serious

There was an error while trying to autobuild your package:

 Automatic build of gtkrsync_1.0.1 on debian-31.osdl.marist.edu by sbuild/s390 
 98
[...]
 ./setup build
 [1 of 4] Compiling RsyncParser  ( RsyncParser.hs, 
 dist/build/gtkrsync/gtkrsync-tmp/RsyncParser.o )
 [2 of 4] Compiling Paths_gtkrsync   ( dist/build/autogen/Paths_gtkrsync.hs, 
 dist/build/gtkrsync/gtkrsync-tmp/Paths_gtkrsync.o )
 [3 of 4] Compiling RsyncGUI ( RsyncGUI.hs, 
 dist/build/gtkrsync/gtkrsync-tmp/RsyncGUI.o )
 [4 of 4] Compiling Main ( gtkrsync.hs, 
 dist/build/gtkrsync/gtkrsync-tmp/Main.o )
 Linking dist/build/gtkrsync/gtkrsync ...
 dist/build/gtkrsync/gtkrsync-tmp/RsyncGUI.o: In function `sa1w_ret':
 ghc5398_0.hc:(.text+0x480): undefined reference to 
 `gtkzm0zi9zi12_GraphicsziUIziGtkziMultilineziTextBuffer_zdwtextBufferMoveMark_entry'
 dist/build/gtkrsync/gtkrsync-tmp/RsyncGUI.o: In function `sa1v_1_alt':
 ghc5398_0.hc:(.text+0x500): undefined reference to 
 `gtkzm0zi9zi12_GraphicsziUIziGtkziMultilineziTextBuffer_zdwtextBufferGetEndIter_entry'
 dist/build/gtkrsync/gtkrsync-tmp/RsyncGUI.o: In function `sa1n_ret':
 ghc5398_0.hc:(.text+0x698): undefined reference to 
 `glibzm0zi9zi12_SystemziGlibziGTypeConstants_double_closure'
 ghc5398_0.hc:(.text+0x69c): undefined reference to 
 `glibzm0zi9zi12_SystemziGlibziGValueTypes_valueGetDouble_closure'
 ghc5398_0.hc:(.text+0x6a0): undefined reference to 
 `gtkzm0zi9zi12_GraphicsziUIziGtkziMiscziAdjustment_a2_closure'
 ghc5398_0.hc:(.text+0x6a4): undefined reference to 
 `glibzm0zi9zi12_SystemziGlibziProperties_zdwobjectGetPropertyInternal_entry'
 dist/build/gtkrsync/gtkrsync-tmp/RsyncGUI.o: In function `sa1f_ret':
 ghc5398_0.hc:(.text+0x6f4): undefined reference to 
 `gtkzm0zi9zi12_GraphicsziUIziGtkziScrollingziScrolledWindow_zdwscrolledWindowGetVAdjustment_entry'
 dist/build/gtkrsync/gtkrsync-tmp/RsyncGUI.o: In function `sa1B_ret':
 ghc5398_0.hc:(.text+0x7a4): undefined reference to 
 `gtkzm0zi9zi12_GraphicsziUIziGtkziMultilineziTextBuffer_zdwtextBufferDelete_entry'
 dist/build/gtkrsync/gtkrsync-tmp/RsyncGUI.o: In function `sa1A_ret':
 ghc5398_0.hc:(.text+0x7fc): undefined reference to 
 `gtkzm0zi9zi12_GraphicsziUIziGtkziMultilineziTextBuffer_zdwtextBufferGetIterAtLine_entry'
 dist/build/gtkrsync/gtkrsync-tmp/RsyncGUI.o: In function `sa1d_ret':
 ghc5398_0.hc:(.text+0x858): undefined reference to 
 `gtkzm0zi9zi12_GraphicsziUIziGtkziMultilineziTextBuffer_zdwtextBufferGetStartIter_entry'
 dist/build/gtkrsync/gtkrsync-tmp/RsyncGUI.o: In function `sa16_ret':
 ghc5398_0.hc:(.text+0x964): undefined reference to 
 `gtkzm0zi9zi12_GraphicsziUIziGtkziMultilineziTextBuffer_zdwtextBufferInsert_entry'
 dist/build/gtkrsync/gtkrsync-tmp/RsyncGUI.o: In function `sa15_ret':
 ghc5398_0.hc:(.text+0x9d0): undefined reference to 
 `gtkzm0zi9zi12_GraphicsziUIziGtkziMultilineziTextBuffer_zdwtextBufferDelete_entry'
 dist/build/gtkrsync/gtkrsync-tmp/RsyncGUI.o: In function `sa14_ret':
 ghc5398_0.hc:(.text+0xa28): undefined reference to 
 `gtkzm0zi9zi12_GraphicsziUIziGtkziMultilineziTextBuffer_zdwtextBufferGetIterAtMark_entry'
 dist/build/gtkrsync/gtkrsync-tmp/RsyncGUI.o: In function 
 `RsyncGUI_zdwzdsprocmsg_entry':
 ghc5398_0.hc:(.text+0xa88): undefined reference to 
 `gtkzm0zi9zi12_GraphicsziUIziGtkziMultilineziTextBuffer_zdwtextBufferGetEndIter_entry'
 dist/build/gtkrsync/gtkrsync-tmp/RsyncGUI.o: In function `sa3c_ret':
 ghc5398_0.hc:(.text+0xafc): undefined reference to 
 `gtkzm0zi9zi12_GraphicsziUIziGtkziMultilineziTextBuffer_zdwtextBufferMoveMark_entry'
 dist/build/gtkrsync/gtkrsync-tmp/RsyncGUI.o: In function `sa3b_1_alt':
 ghc5398_0.hc:(.text+0xb7c): undefined reference to 
 `gtkzm0zi9zi12_GraphicsziUIziGtkziMultilineziTextBuffer_zdwtextBufferGetEndIter_entry'
 dist/build/gtkrsync/gtkrsync-tmp/RsyncGUI.o: In function `sa33_ret':
 ghc5398_0.hc:(.text+0xca8): undefined reference to 
 `glibzm0zi9zi12_SystemziGlibziGTypeConstants_double_closure'
 ghc5398_0.hc:(.text+0xcac): undefined reference to 
 `glibzm0zi9zi12_SystemziGlibziGValueTypes_valueGetDouble_closure'
 ghc5398_0.hc:(.text+0xcb0): undefined reference to 
 `gtkzm0zi9zi12_GraphicsziUIziGtkziMiscziAdjustment_a2_closure'
 ghc5398_0.hc:(.text+0xcb4): undefined reference to 
 `glibzm0zi9zi12_SystemziGlibziProperties_zdwobjectGetPropertyInternal_entry'
 dist/build/gtkrsync/gtkrsync-tmp/RsyncGUI.o: In function `sa2V_ret':
 ghc5398_0.hc:(.text+0xd04): undefined reference to 
 `gtkzm0zi9zi12_GraphicsziUIziGtkziScrollingziScrolledWindow_zdwscrolledWindowGetVAdjustment_entry'
 dist/build/gtkrsync/gtkrsync-tmp/RsyncGUI.o: In function `sa3h_ret':
 ghc5398_0.hc:(.text+0xdb4): undefined reference to 
 `gtkzm0zi9zi12_GraphicsziUIziGtkziMultilineziTextBuffer_zdwtextBufferDelete_entry'
 dist/build/gtkrsync/gtkrsync-tmp/RsyncGUI.o: In function `sa3g_ret':
 ghc5398_0.hc:(.text+0xe0c): undefined reference to 
 

Processed: Re: [Pkg-openssl-devel] Bug#444435: openssl: [CVE-2007-5135] Off-by-one error in the SSL_get_shared_ciphers()

2007-09-28 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 35 - sarge etch
Bug#35: openssl: [CVE-2007-5135] Off-by-one error in the 
SSL_get_shared_ciphers()
Tags were: etch sarge security
Tags removed: sarge, etch

 clone 35 -1
Bug#35: openssl: [CVE-2007-5135] Off-by-one error in the 
SSL_get_shared_ciphers()
Bug 35 cloned as bug 60.

 reassign -1 openssl097 0.9.7k-3.1
Bug#60: openssl: [CVE-2007-5135] Off-by-one error in the 
SSL_get_shared_ciphers()
Bug reassigned from package `openssl' to `openssl097'.

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processed: downgrading severity

2007-09-28 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 438185 minor
Bug#438185: fails when compiling with --enable-debug
Severity set to `minor' from `serious'

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#443440: please reopen bug for version 2.0.0.4.dfsg1-2

2007-09-28 Thread Jan Christoph Uhde
Icedove crashes due to the recent libgtk2.0-0 upgrade (2.12.0-2). Iceweasel has 
had the same error. Wich is fixed in version 2.0.0.7-2.
-- 
GMX FreeMail: 1 GB Postfach, 5 E-Mail-Adressen, 10 Free SMS.
Alle Infos und kostenlose Anmeldung: http://www.gmx.net/de/go/freemail



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#442857: marked as done (medusa: please update libssh dependency)

2007-09-28 Thread Debian Bug Tracking System
Your message dated Fri, 28 Sep 2007 14:32:04 +
with message-id [EMAIL PROTECTED]
and subject line Bug#442857: fixed in medusa 1.3-3
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: medusa
Severity: serious
Tags: patch
Justification: no longer builds from source

Hi,

Current build depend on libssh2-0-dev makes package to FTBFS in a sid
pbuilder. The following patch solves it.

regards,

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

Kernel: Linux 2.6.22-1-amd64 (SMP w/1 CPU core)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash
diff -urN debian.orig/control medusa-1.3/debian/control
--- debian.orig/control 2007-09-17 15:17:34.0 +0200
+++ medusa-1.3/debian/control   2007-09-17 15:18:00.0 +0200
@@ -2,7 +2,7 @@
 Section: admin
 Priority: optional
 Maintainer: Luciano Bello [EMAIL PROTECTED]
-Build-Depends: debhelper (= 5), autotools-dev, libncp-dev, libssl-dev, 
libsvn-dev, libpq-dev, libssh2-0-dev
+Build-Depends: debhelper (= 5), autotools-dev, libncp-dev, libssl-dev, 
libsvn-dev, libpq-dev, libssh2-1-dev
 Standards-Version: 3.7.2
 
 Package: medusa
---End Message---
---BeginMessage---
Source: medusa
Source-Version: 1.3-3

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

medusa_1.3-3.diff.gz
  to pool/main/m/medusa/medusa_1.3-3.diff.gz
medusa_1.3-3.dsc
  to pool/main/m/medusa/medusa_1.3-3.dsc
medusa_1.3-3_i386.deb
  to pool/main/m/medusa/medusa_1.3-3_i386.deb



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

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Luciano Bello [EMAIL PROTECTED] (supplier of updated medusa package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 26 Sep 2007 12:03:48 -0300
Source: medusa
Binary: medusa
Architecture: source i386
Version: 1.3-3
Distribution: unstable
Urgency: medium
Maintainer: Luciano Bello [EMAIL PROTECTED]
Changed-By: Luciano Bello [EMAIL PROTECTED]
Description: 
 medusa - fast, parallel, modular, login brute-forcer for network services
Closes: 442857
Changes: 
 medusa (1.3-3) unstable; urgency=medium
 .
   * Libssh dependency updated (closes: #442857)
Files: 
 322779c3f06f7905dad6203f6f5389d1 626 admin optional medusa_1.3-3.dsc
 3e2b14eb08a1272f964d57a3c8d0db44 18010 admin optional medusa_1.3-3.diff.gz
 74beb7bfe748532975d48b390bead65e 117144 admin optional medusa_1.3-3_i386.deb

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

iD8DBQFG/Q2rQWTRs4lLtHkRAiwdAKCnskuTYehMKXRR3faClMxH3Fu7JACeIrhz
H8CZ9IJ4iShWFenqzZC0THI=
=/jET
-END PGP SIGNATURE-


---End Message---


Bug#444435: openssl: [CVE-2007-5135] Off-by-one error in the SSL_get_shared_ciphers()

2007-09-28 Thread Axel Beckert
Package: openssl
Version: 0.9.8c-4, 0.9.7e-3sarge4
Severity: critical
Tags: sarge, etch, security

According to http://nvd.nist.gov/nvd.cfm?cvename=CVE-2007-5135
(http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-5135 is not
yet available):

Off-by-one error in the SSL_get_shared_ciphers function in OpenSSL
0.9.7l and 0.9.8d might allow remote attackers to execute arbitrary
code via a crafted packet that triggers a one-byte buffer underflow.

According to the German IT news magazin Heise Online, 0.9.7m and
0.9.8e are also affected:
http://www.heise.de/security/news/meldung/96710

Original source seems to be this Bugtraq posting:
http://www.securityfocus.com/archive/1/archive/1/480855/100/0/threaded

According to this posting, all lower versions are affected, too.

The release dates of 0.9.8e and 0.9.7m and the time line in the above
mentioned Bugtraq posting suggest that not only 0.9.7l and 0.9.8d but
also 0.9.7m and 0.9.8e are affected -- as Heise wrote.

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.22.3-amd64-1
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages openssl depends on:
ii  libc6  2.3.6.ds1-13etch2 GNU C Library: Shared libraries
ii  libssl0.9.80.9.8c-4  SSL shared libraries
ii  zlib1g 1:1.2.3-13compression library - runtime

openssl recommends no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444435: [Pkg-openssl-devel] Bug#444435: openssl: [CVE-2007-5135] Off-by-one error in the SSL_get_shared_ciphers()

2007-09-28 Thread Kurt Roeckx
tags 35 - sarge etch
clone 35 -1 
reassign -1 openssl097 0.9.7k-3.1
thanks

On Fri, Sep 28, 2007 at 04:16:02PM +0200, Axel Beckert wrote:
 Package: openssl
 Version: 0.9.8c-4, 0.9.7e-3sarge4
 Severity: critical
 Tags: sarge, etch, security

Since this applies to sid (and oldstable) too, those tags are
just wrong.

So we have those versions:
openssl:
   Oldstable0.9.7e-3sarge4
   Stable   0.9.8c-4
   Testing  0.9.8e-6
   Unstable 0.9.8e-8

openssl097:
   Stable   0.9.7k-3.1
   Testing  0.9.7k-3.1

openssl096
   Oldstable0.9.6m-1sarge4

All those versions are probably vulnerable.

I'm not sure if the security team wants to have a DSA covering
oldstable's versions.

 According to http://nvd.nist.gov/nvd.cfm?cvename=CVE-2007-5135
 (http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-5135 is not
 yet available):

The patch for it seems to be at:
http://cvs.openssl.org/chngview?cn=16587

I've also attached it.



Kurt

 Off-by-one error in the SSL_get_shared_ciphers function in OpenSSL
 0.9.7l and 0.9.8d might allow remote attackers to execute arbitrary
 code via a crafted packet that triggers a one-byte buffer underflow.
 
 According to the German IT news magazin Heise Online, 0.9.7m and
 0.9.8e are also affected:
 http://www.heise.de/security/news/meldung/96710
 
 Original source seems to be this Bugtraq posting:
 http://www.securityfocus.com/archive/1/archive/1/480855/100/0/threaded
 
 According to this posting, all lower versions are affected, too.
 
 The release dates of 0.9.8e and 0.9.7m and the time line in the above
 mentioned Bugtraq posting suggest that not only 0.9.7l and 0.9.8d but
 also 0.9.7m and 0.9.8e are affected -- as Heise wrote.

Index: ssl_lib.c
===
RCS file: /home/kurt/openssl/cvs/openssl-cvs/openssl/ssl/ssl_lib.c,v
retrieving revision 1.133.2.9
retrieving revision 1.133.2.10
diff -u -r1.133.2.9 -r1.133.2.10
--- ssl_lib.c	12 Aug 2007 18:59:02 -	1.133.2.9
+++ ssl_lib.c	19 Sep 2007 12:16:21 -	1.133.2.10
@@ -1210,7 +1210,6 @@
 char *SSL_get_shared_ciphers(const SSL *s,char *buf,int len)
 	{
 	char *p;
-	const char *cp;
 	STACK_OF(SSL_CIPHER) *sk;
 	SSL_CIPHER *c;
 	int i;
@@ -1223,20 +1222,21 @@
 	sk=s-session-ciphers;
 	for (i=0; isk_SSL_CIPHER_num(sk); i++)
 		{
-		/* Decrement for either the ':' or a '\0' */
-		len--;
+		int n;
+
 		c=sk_SSL_CIPHER_value(sk,i);
-		for (cp=c-name; *cp; )
+		n=strlen(c-name);
+		if (n+1  len)
 			{
-			if (len-- = 0)
-{
-*p='\0';
-return(buf);
-}
-			else
-*(p++)= *(cp++);
+			if (p != buf)
+--p;
+			*p='\0';
+			return buf;
 			}
+		strcpy(p,c-name);
+		p+=n;
 		*(p++)=':';
+		len-=n+1;
 		}
 	p[-1]='\0';
 	return(buf);


Bug#427199: marked as done (gxmms2 - FTBFS: error: too few arguments to function 'xmmsc_playlist_shuffle')

2007-09-28 Thread Debian Bug Tracking System
Your message dated Fri, 28 Sep 2007 17:17:02 +
with message-id [EMAIL PROTECTED]
and subject line Bug#427199: fixed in gxmms2 0.6.4-1.1
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: gxmms2
Version: 0.6.4-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs

hi,

while doing an archive wide package rebuild your package failed to build from
source for the following reason:

  gmedialib/gmlplaylist.c:557: warning: implicit declaration of function 
  'xmmsc_playlist_move'
  gmedialib/gmlplaylist.c:557: warning: assignment makes pointer from integer 
  without a cast
  gmedialib/gmlplaylist.c: In function 'cb_pl_shuffle_button_pressed':
  gmedialib/gmlplaylist.c:587: error: too few arguments to function 
  'xmmsc_playlist_shuffle'
  gmedialib/gmlplaylist.c: In function 'cb_pl_sort_button_pressed':
  gmedialib/gmlplaylist.c:597: error: too few arguments to function 
  'xmmsc_playlist_sort'
  gmedialib/gmlplaylist.c: In function 'n_query_finished':
  gmedialib/gmlplaylist.c:623: warning: passing argument 2 of 
  'xmmsc_playlist_add_id' makes pointer from integer without a cast
  gmedialib/gmlplaylist.c:623: error: too few arguments to function 
  'xmmsc_playlist_add_id'
  gmedialib/gmlplaylist.c: In function 'cb_pl_add_rnd_button_pressed':
  gmedialib/gmlplaylist.c:692: warning: 'xmmsc_medialib_select' is deprecated 
  (declared at /usr/include/xmms2/xmmsclient/xmmsclient.h:173)
  gmedialib/gmlplaylist.c: In function 'cb_pl_button_delete_pressed':
  gmedialib/gmlplaylist.c:745: warning: passing argument 2 of 
  'xmmsc_playlist_remove' makes pointer from integer without a cast
  gmedialib/gmlplaylist.c: In function 'cb_pl_button_track_pressed':
  gmedialib/gmlplaylist.c:871: error: too few arguments to function 
  'xmmsc_playlist_current_pos'
  gmedialib/gmlplaylist.c: In function 'cb_pl_clear_button_pressed':
  gmedialib/gmlplaylist.c:910: error: too few arguments to function 
  'xmmsc_playlist_clear'
  gmedialib/gmlplaylist.c: In function 'cb_pl_save_pl_button_pressed':
  gmedialib/gmlplaylist.c:953: warning: implicit declaration of function 
  'xmmsc_medialib_playlist_save_current'
  gmedialib/gmlplaylist.c:955: warning: assignment makes pointer from integer 
  without a cast
  make[1]: *** [gmlplaylist.o] Error 1
  make[1]: Leaving directory `/build/user/gxmms2-0.6.4'
  make: *** [build-stamp] Error 2

The Full Build log is available and can be viewed at:

 http://people.debian.org/~lucas/logs/2007/06/01/
 
bye,
- michael

---End Message---
---BeginMessage---
Source: gxmms2
Source-Version: 0.6.4-1.1

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

gkrellxmms2_0.6.4-1.1_amd64.deb
  to pool/main/g/gxmms2/gkrellxmms2_0.6.4-1.1_amd64.deb
gxmms2_0.6.4-1.1.diff.gz
  to pool/main/g/gxmms2/gxmms2_0.6.4-1.1.diff.gz
gxmms2_0.6.4-1.1.dsc
  to pool/main/g/gxmms2/gxmms2_0.6.4-1.1.dsc
gxmms2_0.6.4-1.1_amd64.deb
  to pool/main/g/gxmms2/gxmms2_0.6.4-1.1_amd64.deb



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

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Cyril Brulebois [EMAIL PROTECTED] (supplier of updated gxmms2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 28 Sep 2007 18:07:30 +0200
Source: gxmms2
Binary: gkrellxmms2 gxmms2
Architecture: source amd64
Version: 0.6.4-1.1
Distribution: unstable
Urgency: low
Maintainer: Florian Ragwitz [EMAIL PROTECTED]
Changed-By: Cyril Brulebois [EMAIL PROTECTED]
Description: 
 gkrellxmms2 - GKrellM plugin to control xmms2
 gxmms2 - xmms2 client for the GNOME desktop
Closes: 427199 441164
Changes: 
 gxmms2 (0.6.4-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Added a patch by Olivier Tétard to fix the FTBFS due to an xmms2 API
 change (Closes: #427199).
   * That also makes the package installable again, since the dependencies get
 updated (Closes: #441164).
   * No longer ignore “make clean” errors, per lintian.
Files: 
 72c95ad15221cd21b9c134f01624872a 648 sound optional gxmms2_0.6.4-1.1.dsc
 7dc9a7a09a26d126c111a58db2c33565 6758 

Bug#444439: kopete crashes when icq starts up

2007-09-28 Thread Patrick Winnertz
Package: kopete
Version: 4:3.5.7-4
Severity: critical

My kopete crashes since yesterday when i want to login into my icq
account. All other protocols I tried worked (jabber, msn). 

I'll include a backtrace of on of this kopete session into this
bugreport

Greetings
Patrick

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

Kernel: Linux 2.6.22 (SMP w/2 CPU cores)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages kopete depends on:
ii  kdelibs4c2a 4:3.5.7.dfsg.1-7 core libraries and binaries for al
ii  libacl1 2.2.45-1 Access control list shared library
ii  libart-2.0-22.3.19-3 Library of functions for 2D graphi
ii  libattr11:2.4.39-1   Extended attribute shared library
ii  libaudio2   1.9-2+b1 The Network Audio System (NAS). (s
ii  libc6   2.6.1-5  GNU C Library: Shared libraries
ii  libfam0 2.7.0-13 Client library to control the FAM 
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgadu31:1.7~rc2-2  Gadu-Gadu protocol library - runti
ii  libgcc1 1:4.2.1-5GCC support library
ii  libglib2.0-02.14.1-3 The GLib library of C routines
ii  libgsmme1c2a1.10-10  GSM mobile phone access library
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libidn111.1-1GNU libidn library, implementation
ii  libjpeg62   6b-14The Independent JPEG Group's JPEG 
ii  libmeanwhile1   1.0.2-3  open implementation of the Lotus S
ii  libpcre37.3-2Perl 5 Compatible Regular Expressi
ii  libpng12-0  1.2.15~beta5-2   PNG library - runtime
ii  libqt3-mt   3:3.3.7-8Qt GUI Library (Threaded runtime v
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libstdc++6  4.2.1-5  The GNU Standard C++ Library v3
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcursor1 1:1.1.9-1X cursor management library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxft2 2.1.12-2 FreeType-based font drawing librar
ii  libxi6  2:1.1.3-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxml2 2.6.30.dfsg-2GNOME XML library
ii  libxrandr2  2:1.2.2-1X11 RandR extension library
ii  libxrender1 1:0.9.4-1X Rendering Extension client libra
ii  libxslt1.1  1.1.22-1 XSLT processing library - runtime 
ii  libxt6  1:1.0.5-3X11 toolkit intrinsics library
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

Versions of packages kopete recommends:
pn  qca-tls   none (no description available)

-- no debconf information
Using host libthread_db library /lib/i686/cmov/libthread_db.so.1.
[Thread debugging using libthread_db enabled]
[New Thread 0xb60416c0 (LWP 7014)]
0xe410 in ?? ()
#0  0xe410 in ?? ()
#1  0xbff3d9c8 in ?? ()
#2  0xb61b6ff4 in ?? () from /lib/i686/cmov/libc.so.6
#3  0xbff3d9b4 in ?? ()
#4  0xb6105e16 in nanosleep () from /lib/i686/cmov/libc.so.6
#5  0xb6105c27 in sleep () from /lib/i686/cmov/libc.so.6
#6  0xb6f481d7 in KCrash::startDrKonqi (argv=0xbff3fbd0, argc=17)
at /build/buildd/kdelibs-3.5.7.dfsg.1/./kdecore/kcrash.cpp:312
#7  0xb6f5db17 in KCrash::defaultCrashHandler (sig=11)
at /build/buildd/kdelibs-3.5.7.dfsg.1/./kdecore/kcrash.cpp:229
#8  0xe420 in ?? ()
#9  0x000b in ?? ()
#10 0xb5962ca9 in otrl_proto_message_type () from /usr/lib/libotr.so.2
#11 0xb59c7685 in OtrlChatInterface::shouldDiscard ()
   from /usr/lib/libkotr.so.0
#12 0xb5d986ff in OtrMessageHandler::handleMessage ()
   from /usr/lib/kde3/kopete_otr.so
#13 0xb7e9556c in Kopete::MessageHandler::handleMessageInternal (
this=0x829e3e8, event=0x83c32a8)
at 
/tmp/buildd/kdenetwork-3.5.7/./kopete/libkopete/kopetemessagehandler.cpp:60
#14 0xb7e95a91 in Kopete::MessageHandler::messageAccepted (this=0x829e458, 
event=0x83c32a8)
at 
/tmp/buildd/kdenetwork-3.5.7/./kopete/libkopete/kopetemessagehandler.cpp:71
#15 0xb7e95ac4 in Kopete::MessageHandler::handleMessage (this=0x829e458, 
event=0x83c32a8)
at 
/tmp/buildd/kdenetwork-3.5.7/./kopete/libkopete/kopetemessagehandler.cpp:65
#16 0xb7e9e669 in Kopete::SimpleMessageHandler::handleMessage (
this=0x829e458, event=0x83c32a8)
at 

Bug#444363: gnome-core not istallable due to broken libwnck18i package (not available).

2007-09-28 Thread Loïc Minier
severity 444363 serious
stop

On Fri, Sep 28, 2007, Arnfinn Ringvold wrote:
 dependency problem in sid gnome-core.

 This is why it's sid; please run testing if you want the guarantee that
 packages are installable all the time.

-- 
Loïc Minier




Bug#444360: ocamlnet_2.2.8.1-3(hppa/experimental): FTBFS: tries to link non-PIC static object into shared object

2007-09-28 Thread Richard Jones

On Sat, Sep 29, 2007 at 12:58:12AM +1000, skaller wrote:
 On Fri, 2007-09-28 at 14:26 +0100, Richard Jones wrote:
  On Fri, Sep 28, 2007 at 03:17:27PM +0200, Stefano Zacchiroli wrote:
   On Fri, Sep 28, 2007 at 02:10:45PM +0100, Richard Jones wrote:
In particular I could do it if INRIA said that they would support the
change in some future release (see the exception Patches Heading
Upstream).  But otherwise this is quite a large ABI change -- if
Fedora users started to build lots of 64 bit shared libraries linked
with -lcamlrun I could end up maintaining it separately forever.
  
  [I meant to say -lcamlrun_shared here]
  
   I think you misunderstood my proposal. I don't want to apply your
   initial fix which changes libcamlrun.a into libcamlrun.so. I want to add
   a libcamlrun_shared.so, so there would be no ABI change, just the added
   possibility to link against it.
   
   Or maybe you're concerned about having to drop in the future support for
   libcamlrun_shared.so, but I think the user impact of that new library
   would be quite low. In fact I don't think anything else that
   mod_caml-like projects will need it ...
  
  That would also need to go upstream before Fedora could accept it.
 
 Why? I would have thought it is close to *policy* to provide
 libraries for both static and dynamic link. 

Please don't get me wrong here: I want the patch in OCaml, I want
Fedora to follow Debian's packaging decisions where possible, and I
want to have mod_caml  ocamlnet + Apache working.  But this patch is
a big potential change to the API and it can't go in to Fedora unless
INRIA accept it upstream, and that concern overrides other issues.
Hopefully INRIA will indicate that they want to accept this in which
case it can go in to Fedora straightaway.

Rich.

-- 
Richard Jones
Red Hat



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444441: pidgin: Exits immediately on startup

2007-09-28 Thread jlquinn (optonline)

Ari Pollak wrote:

Please install the pidgin-dbg and libgtk2.0-0 packages, and get a
backtrace as described here:
http://developer.pidgin.im/wiki/GetABacktrace
Also, moving your ~/.purple directory out of the way and trying again
might help, as will attaching the output of pidgin -d.
  
I've attached the output of pidgin - d as pidgin.out.  I already had 
libgtk2.0-0 installed.  The debug build doesn't help as pidgin exits 
normally without crashing.  It just doesn't display a window and exits.



(11:53:28) prefs: Reading /home/jlquinn/.purple/prefs.xml
(11:53:28) prefs: Reading /etc/purple/prefs.xml
(11:53:28) dbus: okkk
(11:53:28) plugins: probing /usr/lib/pidgin/gevolution.so
(11:53:28) plugins: probing /usr/lib/pidgin/gestures.so
(11:53:28) plugins: probing /usr/lib/pidgin/musicmessaging.so
(11:53:28) plugins: probing /usr/lib/pidgin/ticker.so
(11:53:28) plugins: probing /usr/lib/pidgin/convcolors.so
(11:53:28) plugins: probing /usr/lib/pidgin/extplacement.so
(11:53:28) plugins: probing /usr/lib/pidgin/gtkbuddynote.so
(11:53:28) plugins: probing /usr/lib/pidgin/history.so
(11:53:28) plugins: probing /usr/lib/pidgin/iconaway.so
(11:53:28) plugins: probing /usr/lib/pidgin/markerline.so
(11:53:28) plugins: probing /usr/lib/pidgin/notify.so
(11:53:28) plugins: probing /usr/lib/pidgin/pidginrc.so
(11:53:28) plugins: probing /usr/lib/pidgin/spellchk.so
(11:53:28) plugins: probing /usr/lib/pidgin/timestamp.so
(11:53:28) plugins: probing /usr/lib/pidgin/timestamp_format.so
(11:53:28) plugins: probing /usr/lib/pidgin/xmppconsole.so
(11:53:28) plugins: probing /usr/lib/pidgin/libbluegroups.so
(11:53:28) plugins: probing /usr/lib/pidgin/libpersona.so
(11:53:28) plugins: probing /usr/lib/purple-2/ssl-gnutls.so
(11:53:28) plugins: probing /usr/lib/purple-2/perl.so
(11:53:28) plugins: probing /usr/lib/purple-2/ssl.so
(11:53:28) plugins: probing /usr/lib/purple-2/autoaccept.so
(11:53:28) plugins: probing /usr/lib/purple-2/ssl-nss.so
(11:53:28) plugins: probing /usr/lib/purple-2/tcl.so
(11:53:28) plugins: probing /usr/lib/purple-2/buddynote.so
(11:53:28) plugins: probing /usr/lib/purple-2/idle.so
(11:53:28) plugins: probing /usr/lib/purple-2/joinpart.so
(11:53:28) plugins: probing /usr/lib/purple-2/log_reader.so
(11:53:28) plugins: probing /usr/lib/purple-2/newline.so
(11:53:28) plugins: probing /usr/lib/purple-2/offlinemsg.so
(11:53:28) plugins: probing /usr/lib/purple-2/psychic.so
(11:53:28) plugins: probing /usr/lib/purple-2/statenotify.so
(11:53:28) plugins: probing /usr/lib/purple-2/dbus-example.so
(11:53:28) plugins: probing /usr/lib/purple-2/libbonjour.so
(11:53:28) plugins: probing /usr/lib/purple-2/libgg.so
(11:53:28) plugins: probing /usr/lib/purple-2/libirc.so
(11:53:28) plugins: probing /usr/lib/purple-2/libmyspace.so
(11:53:28) plugins: probing /usr/lib/purple-2/libxmpp.so
(11:53:28) util: Reading file xmpp-caps.xml from directory /home/jlquinn/.purple
(11:53:28) util: File /home/jlquinn/.purple/xmpp-caps.xml does not exist (this 
is not necessarily an error)
(11:53:28) plugins: probing /usr/lib/purple-2/libmsn.so
(11:53:28) plugins: probing /usr/lib/purple-2/libnovell.so
(11:53:28) plugins: probing /usr/lib/purple-2/libsametime.so
(11:53:28) plugins: /usr/lib/purple-2/libsametime.so has a prefs_info, but is a 
prpl. This is no longer supported.
(11:53:28) plugins: probing /usr/lib/purple-2/libaim.so
(11:53:28) plugins: probing /usr/lib/purple-2/libicq.so
(11:53:28) plugins: probing /usr/lib/purple-2/libqq.so
(11:53:28) plugins: probing /usr/lib/purple-2/pidgin-blinklight.so
(11:53:28) plugins: probing /usr/lib/purple-2/libsilcpurple.so
(11:53:28) plugins: probing /usr/lib/purple-2/libsimple.so
(11:53:28) plugins: probing /usr/lib/purple-2/libyahoo.so
(11:53:28) plugins: probing /usr/lib/purple-2/libzephyr.so
(11:53:28) plugins: probing /usr/lib/purple-2/liboscar.so
(11:53:28) plugins: /usr/lib/purple-2/liboscar.so is not usable because the 
'purple_init_plugin' symbol could not be found.  Does the plugin call the 
PURPLE_INIT_PLUGIN() macro?
(11:53:28) plugins: probing /usr/lib/purple-2/libjabber.so
(11:53:28) plugins: /usr/lib/purple-2/libjabber.so is not usable because the 
'purple_init_plugin' symbol could not be found.  Does the plugin call the 
PURPLE_INIT_PLUGIN() macro?
(11:53:28) util: Reading file accounts.xml from directory /home/jlquinn/.purple
(11:53:28) util: File /home/jlquinn/.purple/accounts.xml does not exist (this 
is not necessarily an error)
(11:53:28) util: Reading file status.xml from directory /home/jlquinn/.purple
(11:53:28) util: File /home/jlquinn/.purple/status.xml does not exist (this is 
not necessarily an error)
(11:53:28) certificate: CertificateVerifier x509, singleuse requested but not 
found.
(11:53:28) certificate: CertificateVerifier singleuse registered
(11:53:28) certificate: CertificatePool x509, ca requested but not found.
(11:53:28) certificate: CertificateScheme x509 requested but not found.
(11:53:28) certificate/x509/ca: Lazy init failed because an X.509 

Bug#443070: hylafax-server: faxaddmodem doesn't release lock file in /var/lock/

2007-09-28 Thread Giuseppe Sacco
Hi Lukasz,
I read your logs, but I need one more information (at least): what shell
are you using? And what version is it?

Bye,
Giuseppe




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444441: pidgin: Exits immediately on startup

2007-09-28 Thread Ari Pollak
What happens if you rename your ~/.purple directory?

On Fri, 2007-09-28 at 11:54 -0400, jlquinn (optonline) wrote:
 Ari Pollak wrote:
  Please install the pidgin-dbg and libgtk2.0-0 packages, and get a
  backtrace as described here:
  http://developer.pidgin.im/wiki/GetABacktrace
  Also, moving your ~/.purple directory out of the way and trying again
  might help, as will attaching the output of pidgin -d.

 I've attached the output of pidgin - d as pidgin.out.  I already had 
 libgtk2.0-0 installed.  The debug build doesn't help as pidgin exits 
 normally without crashing.  It just doesn't display a window and exits.





-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#441164: marked as done (gxmms2: fails to install)

2007-09-28 Thread Debian Bug Tracking System
Your message dated Fri, 28 Sep 2007 17:17:03 +
with message-id [EMAIL PROTECTED]
and subject line Bug#441164: fixed in gxmms2 0.6.4-1.1
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: gxmms2
Version: 0.6.4-1
Severity: grave
Justification: renders package unusable

Hi,

I'm currently switching to xmms2 from mpd just to try a new media 
player. Installing clients for xmms2 proved very difficult as apt says 
the following:

The following packages have unmet dependencies:
  gxmms2: Depends: libxmmsclient-glib0 which is a virtual package.
  Depends: libxmmsclient0 which is a virtual package.
Resolving dependencies...
Unable to resolve dependencies!  Giving up...


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

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

---End Message---
---BeginMessage---
Source: gxmms2
Source-Version: 0.6.4-1.1

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

gkrellxmms2_0.6.4-1.1_amd64.deb
  to pool/main/g/gxmms2/gkrellxmms2_0.6.4-1.1_amd64.deb
gxmms2_0.6.4-1.1.diff.gz
  to pool/main/g/gxmms2/gxmms2_0.6.4-1.1.diff.gz
gxmms2_0.6.4-1.1.dsc
  to pool/main/g/gxmms2/gxmms2_0.6.4-1.1.dsc
gxmms2_0.6.4-1.1_amd64.deb
  to pool/main/g/gxmms2/gxmms2_0.6.4-1.1_amd64.deb



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

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Cyril Brulebois [EMAIL PROTECTED] (supplier of updated gxmms2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 28 Sep 2007 18:07:30 +0200
Source: gxmms2
Binary: gkrellxmms2 gxmms2
Architecture: source amd64
Version: 0.6.4-1.1
Distribution: unstable
Urgency: low
Maintainer: Florian Ragwitz [EMAIL PROTECTED]
Changed-By: Cyril Brulebois [EMAIL PROTECTED]
Description: 
 gkrellxmms2 - GKrellM plugin to control xmms2
 gxmms2 - xmms2 client for the GNOME desktop
Closes: 427199 441164
Changes: 
 gxmms2 (0.6.4-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Added a patch by Olivier Tétard to fix the FTBFS due to an xmms2 API
 change (Closes: #427199).
   * That also makes the package installable again, since the dependencies get
 updated (Closes: #441164).
   * No longer ignore “make clean” errors, per lintian.
Files: 
 72c95ad15221cd21b9c134f01624872a 648 sound optional gxmms2_0.6.4-1.1.dsc
 7dc9a7a09a26d126c111a58db2c33565 6758 sound optional gxmms2_0.6.4-1.1.diff.gz
 4ad03ea4cbd9155d07f10f9042b0c71c 61262 sound optional 
gxmms2_0.6.4-1.1_amd64.deb
 d32358cf530282348360b4fe6db5ed1b 53566 sound optional 
gkrellxmms2_0.6.4-1.1_amd64.deb

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

iD8DBQFG/TR/2PUjs9fQ72URAkCKAKDFUrENVjLE0Bhdg2t/xlB3avOBwgCgsMa5
DyQiRFVDcgyPzJ5Ag/jCt+A=
=IfNH
-END PGP SIGNATURE-


---End Message---


Bug#434954: marked as done (FTBFS (ia64): Exec failed: No such file or directory)

2007-09-28 Thread Debian Bug Tracking System
Your message dated Fri, 28 Sep 2007 20:26:06 +0200
with message-id [EMAIL PROTECTED]
and subject line Version: 4.2.0-4
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Severity: serious
Version: 4.2.0-3
Package: gnuplot

From
http://buildd.debian.org/fetch.cgi?pkg=gnuplotver=4.2.0-3arch=ia64stamp=1179477747file=log:

[snip]
/home/buildd/.texmf-var/fonts/pk/ljfour/jknappen/ec/ecst1000.600pk
/home/buildd/.texmf-var/fonts/pk/ljfour/jknappen/ec/ectc1000.600pk
/usr/share/texmf-texlive/dvips/base/tex.pro
/usr/share/texmf-texlive/dvips/base/texps.pro
/usr/share/texmf-texlive/dvips/base/special.pro. 
/usr/share/texmf-texlive/fonts/type1/bluesky/latex-fonts/lasy10.pfb
/usr/share/texmf-texlive/fonts/type1/bluesky/cm/cmex10.pfb
/usr/share/texmf-texlive/fonts/type1/bluesky/cm/cmff10.pfb
/usr/share/texmf-texlive/fonts/type1/bluesky/cm/cmtex10.pfb
/usr/share/texmf-texlive/fonts/type1/bluesky/cm/cmss10.pfb
/usr/share/texmf-texlive/fonts/type1/bluesky/cm/cmu10.pfb
/usr/share/texmf-texlive/fonts/type1/bluesky/cm/cmmi10.pfb
/usr/share/texmf-texlive/fonts/type1/bluesky/cm/cmtt10.pfb
/usr/share/texmf-texlive/fonts/type1/bluesky/cm/cmti10.pfb
/usr/share/texmf-texlive/fonts/type1/bluesky/cm/cmr10.pfb
/usr/share/texmf-texlive/fonts/type1/bluesky/cm/cmsy10.pfb[1] [2] [3] [4] 
[5] 
make[1]: Leaving directory `/build/buildd/gnuplot-4.2.0/docs/psdoc'
cd /build/buildd/gnuplot-4.2.0/docs/psdoc/  ../../src/gnuplot ps_symbols.gpi 
 cd /build/buildd/gnuplot-4.2.0
Expected X11 driver: /usr/lib/gnuplot/gnuplot_x11
Exec failed: No such file or directory
See 'help x11' for more details
make: *** [build-indep-stamp] Error 141

-- 
dann frazier


---End Message---
---BeginMessage---
newer version 4.2.0.-4 doesn't failed anymore, see :
http://buildd.debian.org/fetch.cgi?pkg=gnuplot;ver=4.2.0-4;arch=ia64;stamp=1185756099

---End Message---


Bug#442349: bongoproject_0.2.0-3(sparc/experimental): FTBFS: undefined reference to `lucene::document::Field::setBoost(double)'

2007-09-28 Thread Cyril Brulebois
Frank Lichtenheld [EMAIL PROTECTED] (15/09/2007):
 | src/agents/store/filters/bongostore-filter.o: In function 
 `FilterAddTextWithBoost(lucene::document::Document*, wchar_t const*, char 
 const*, float, bool)':
 | /build/buildd/bongoproject-0.2.0/src/agents/store/filters/filter.cpp:182: 
 undefined reference to `lucene::document::Field::setBoost(double)'
 | /build/buildd/bongoproject-0.2.0/src/agents/store/filters/filter.cpp:186: 
 undefined reference to `lucene::document::Field::setBoost(double)'
 | collect2: ld returned 1 exit status

Hi,

it builds fine from unstable, in an i386 cowbuilder. Can you still
reproduce it?

Cheers,

-- 
Cyril Brulebois


pgpTnvcEAR0m4.pgp
Description: PGP signature


Processed: Re: Bug#444452: Undeclared build dependency: libboost-dev

2007-09-28 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 52 serious
Bug#52: Undeclared build dependency: libboost-dev
Severity set to `serious' from `minor'

 tag 52 patch pending
Bug#52: Undeclared build dependency: libboost-dev
There were no tags set.
Tags added: patch, pending

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#443718: Bug#444452: Undeclared build dependency: libboost-dev

2007-09-28 Thread Cyril Brulebois
severity 52 serious
tag 52 patch pending
thanks

Trent W. Buck [EMAIL PROTECTED] (29/09/2007):
 Package: rrootage
 Severity: minor
 
 This package fails to build from source unless the package
 `libboost-dev' is installed.

Hi. Bumping severity since it's a serious bug. You might have missed
#443718 because it was reassigned. Anyway, the B-D is added in the svn,
tagging accordingly (versioning the B-D on libbulletml-dev to = the
fixed version would be needed if libboost-dev isn't added finally).

Cheers,

-- 
Cyril Brulebois


pgpbR1ih37v6V.pgp
Description: PGP signature


Bug#431054: aptitude don't react after install somethings

2007-09-28 Thread Torsten Wiebke
Package: aptitude
Followup-For: Bug #431054

O.k. the bug allready exists and is marked as fixed but I do'nt see so. I think 
that aptitude should also work on Kernel 2.6.18-4. So what ist to do now?
Thanks for Your work.
Best regards,
Torsten Wiebke
Beste Grüße.

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

Kernel: Linux 2.6.18-4-686 (SMP w/1 CPU core)
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 aptitude depends on:
ii  apt [libapt-pkg-libc6.6-6 0.7.6  Advanced front-end for dpkg
ii  libc6 2.6.1-1+b1 GNU C Library: Shared libraries
ii  libgcc1   1:4.2.1-4  GCC support library
ii  libncursesw5  5.6+20070908-1 Shared libraries for terminal hand
ii  libsigc++-2.0-0c2a2.0.17-2   type-safe Signal Framework for C++
ii  libstdc++64.2.1-4The GNU Standard C++ Library v3

Versions of packages aptitude recommends:
ii  aptitude-doc-en [aptitude-doc 0.4.6.1-1  English manual for aptitude, a ter
ii  libparse-debianchangelog-perl 1.1.1-1parse Debian changelogs and output

-- no debconf information




Processed: fixed 434954 in 4.2.0-4

2007-09-28 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.8
 fixed 434954 4.2.0-4
Bug#434954: FTBFS (ia64): Exec failed: No such file or directory
Bug marked as fixed in version 4.2.0-4.


End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444435: [Pkg-openssl-devel] Bug#444435: Bug#444435: openssl: [CVE-2007-5135] Off-by-one error in the SSL_get_shared_ciphers()

2007-09-28 Thread Kurt Roeckx
On Fri, Sep 28, 2007 at 07:16:15PM +0200, Kurt Roeckx wrote:
 On Fri, Sep 28, 2007 at 04:16:02PM +0200, Axel Beckert wrote:
  Package: openssl
  Version: 0.9.8c-4, 0.9.7e-3sarge4
  Severity: critical
  Tags: sarge, etch, security
 
 Since this applies to sid (and oldstable) too, those tags are
 just wrong.
 
 So we have those versions:
 openssl:
Oldstable  0.9.7e-3sarge4
Stable 0.9.8c-4
Testing0.9.8e-6
Unstable   0.9.8e-8

I've uploaded 0.9.8e-9 to unstable.

I've also prepared an upload for stable-security at
people.debian.org/~kroeckx/openssl

Note that openssl_0.9.8c-4etch1_source_i386_amd64.changes
is the only .changes file mentioning the .orig.tar.gz


Kurt




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444435: [Pkg-openssl-devel] Bug#444435: Bug#444435: openssl: [CVE-2007-5135] Off-by-one error in the SSL_get_shared_ciphers()

2007-09-28 Thread Kurt Roeckx
On Fri, Sep 28, 2007 at 03:59:46PM -0400, Noah Meyerhans wrote:
 On Fri, Sep 28, 2007 at 09:53:34PM +0200, Kurt Roeckx wrote:
  
  I've also prepared an upload for stable-security at
  people.debian.org/~kroeckx/openssl
 
 Thanks.  Is there any chance of fixing this for oldstable?

The security team wasn't interested in doing updates for
oldstable-security before.  I think the version of the
openssl source package in oldstable still has 4 or 5 security
bugs.  The openssl096 has either the same or even more.

I can prepare a packages fixing all of them if you want.

There is still CVE-2007-3108 / #438142 that's present in oldstable and
stable.  This is probably something nobody cares about.

I'll still do one for openssl097 in stable.


Kurt




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444435: [Pkg-openssl-devel] Bug#444435: Bug#444435: openssl: [CVE-2007-5135] Off-by-one error in the SSL_get_shared_ciphers()

2007-09-28 Thread Noah Meyerhans
On Fri, Sep 28, 2007 at 10:19:11PM +0200, Kurt Roeckx wrote:
  Thanks.  Is there any chance of fixing this for oldstable?
 
 The security team wasn't interested in doing updates for
 oldstable-security before.

Eh?  I must have missed that.  We claim to support oldstable for 1 year,
which means we've still got, what, 7 months left of support for it?

 
 I can prepare a packages fixing all of them if you want.

That would be amazingly helpful and very much appreciated!

noah



signature.asc
Description: Digital signature


Bug#444435: [Pkg-openssl-devel] Bug#444435: Bug#444435: openssl: [CVE-2007-5135] Off-by-one error in the SSL_get_shared_ciphers()

2007-09-28 Thread Noah Meyerhans
On Fri, Sep 28, 2007 at 09:53:34PM +0200, Kurt Roeckx wrote:
 
 I've also prepared an upload for stable-security at
 people.debian.org/~kroeckx/openssl

Thanks.  Is there any chance of fixing this for oldstable?

noah



signature.asc
Description: Digital signature


Bug#444465: S30procps.sh in /etc/rcS.d not executed at boot time

2007-09-28 Thread Marco Davids
Package: procps
Version: 1:3.2.7-3
Severity: serious
Justification: Policy 9.3.1


Debian Policy Manual says:

9.3.1
Also, if the script name ends in .sh, the script will be sourced in runlevel
S rather than being run in a forked subprocess, but will be explicitly run
by sh in all other runlevels.

/etc/rcS.d/S30procps.sh is not being executed properly by /etc/init.d/rcS 
because of
this (or /etc/init.d/rc for that matter).

/etc/sysctl.conf settings, which may contain important parameters, are not
set properly during boottime because of this.

Spotted by: Marco Davids (SIDN) with help from #elders team, in particular
'koopal'.


-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-5-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages procps depends on:
ii  libc6  2.3.6.ds1-13etch2 GNU C Library: Shared libraries
ii  libncurses55.5-5 Shared libraries for terminal hand
ii  lsb-base   3.1-23.2etch1 Linux Standard Base 3.1 init scrip

Versions of packages procps recommends:
ii  psmisc22.3-1 Utilities that use the proc filesy

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444435: marked as done (openssl: [CVE-2007-5135] Off-by-one error in the SSL_get_shared_ciphers())

2007-09-28 Thread Debian Bug Tracking System
Your message dated Fri, 28 Sep 2007 20:47:09 +
with message-id [EMAIL PROTECTED]
and subject line Bug#35: fixed in openssl 0.9.8e-9
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: openssl
Version: 0.9.8c-4, 0.9.7e-3sarge4
Severity: critical
Tags: sarge, etch, security

According to http://nvd.nist.gov/nvd.cfm?cvename=CVE-2007-5135
(http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-5135 is not
yet available):

Off-by-one error in the SSL_get_shared_ciphers function in OpenSSL
0.9.7l and 0.9.8d might allow remote attackers to execute arbitrary
code via a crafted packet that triggers a one-byte buffer underflow.

According to the German IT news magazin Heise Online, 0.9.7m and
0.9.8e are also affected:
http://www.heise.de/security/news/meldung/96710

Original source seems to be this Bugtraq posting:
http://www.securityfocus.com/archive/1/archive/1/480855/100/0/threaded

According to this posting, all lower versions are affected, too.

The release dates of 0.9.8e and 0.9.7m and the time line in the above
mentioned Bugtraq posting suggest that not only 0.9.7l and 0.9.8d but
also 0.9.7m and 0.9.8e are affected -- as Heise wrote.

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.22.3-amd64-1
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages openssl depends on:
ii  libc6  2.3.6.ds1-13etch2 GNU C Library: Shared libraries
ii  libssl0.9.80.9.8c-4  SSL shared libraries
ii  zlib1g 1:1.2.3-13compression library - runtime

openssl recommends no packages.

-- no debconf information


---End Message---
---BeginMessage---
Source: openssl
Source-Version: 0.9.8e-9

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

libcrypto0.9.8-udeb_0.9.8e-9_amd64.udeb
  to pool/main/o/openssl/libcrypto0.9.8-udeb_0.9.8e-9_amd64.udeb
libcrypto0.9.8-udeb_0.9.8e-9_i386.udeb
  to pool/main/o/openssl/libcrypto0.9.8-udeb_0.9.8e-9_i386.udeb
libssl-dev_0.9.8e-9_amd64.deb
  to pool/main/o/openssl/libssl-dev_0.9.8e-9_amd64.deb
libssl-dev_0.9.8e-9_i386.deb
  to pool/main/o/openssl/libssl-dev_0.9.8e-9_i386.deb
libssl0.9.8-dbg_0.9.8e-9_amd64.deb
  to pool/main/o/openssl/libssl0.9.8-dbg_0.9.8e-9_amd64.deb
libssl0.9.8-dbg_0.9.8e-9_i386.deb
  to pool/main/o/openssl/libssl0.9.8-dbg_0.9.8e-9_i386.deb
libssl0.9.8_0.9.8e-9_amd64.deb
  to pool/main/o/openssl/libssl0.9.8_0.9.8e-9_amd64.deb
libssl0.9.8_0.9.8e-9_i386.deb
  to pool/main/o/openssl/libssl0.9.8_0.9.8e-9_i386.deb
openssl_0.9.8e-9.diff.gz
  to pool/main/o/openssl/openssl_0.9.8e-9.diff.gz
openssl_0.9.8e-9.dsc
  to pool/main/o/openssl/openssl_0.9.8e-9.dsc
openssl_0.9.8e-9_amd64.deb
  to pool/main/o/openssl/openssl_0.9.8e-9_amd64.deb
openssl_0.9.8e-9_i386.deb
  to pool/main/o/openssl/openssl_0.9.8e-9_i386.deb



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

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Kurt Roeckx [EMAIL PROTECTED] (supplier of updated openssl package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 28 Sep 2007 19:47:33 +0200
Source: openssl
Binary: libssl-dev openssl libssl0.9.8-dbg libcrypto0.9.8-udeb libssl0.9.8
Architecture: amd64 i386 source 
Version: 0.9.8e-9
Distribution: unstable
Urgency: high
Maintainer: Debian OpenSSL Team [EMAIL PROTECTED]
Changed-By: Kurt Roeckx [EMAIL PROTECTED]
Description: 
 libcrypto0.9.8-udeb - crypto shared library - udeb (udeb)
 libssl-dev - SSL development libraries, header files and documentation
 libssl0.9.8 - SSL shared libraries
 libssl0.9.8-dbg - Symbol tables for libssl and libcrypto
 openssl- Secure Socket Layer (SSL) binary and related cryptographic tools
Closes: 35
Changes: 
 openssl (0.9.8e-9) unstable; urgency=high
 .
   * CVE-2007-5135: Fix off by one error in SSL_get_shared_ciphers().
 (Closes: #35)
   * Add postgresql-8.2 to the list of services to check.
Files: 
 0764261c16a61aa7f272cf99273923dd 2070734 libdevel 

Bug#418320: marked as done (php4: Should not be included in Lenny)

2007-09-28 Thread Debian Bug Tracking System
Your message dated Fri, 28 Sep 2007 23:07:56 +0200
with message-id [EMAIL PROTECTED]
and subject line Closing right bug
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: php4
Severity: serious

PHP 4 should not be included in Lenny, which would require to support it
at least until 2011.

Cheers,
Moritz

-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-686
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)

---End Message---
---BeginMessage---
Version: 2.0.0-1

php4-lasso is no longer built; unfortunately I had an error
copy/pasting the bug number and closed the wrong one.  Fixing this
now.


Regards,

Frederic


---End Message---


Bug#444467: miss-represents GPLv2-only license

2007-09-28 Thread Robert Millan
Package: gs-gpl
Version: 8.54.dfsg.1-5
Severity: serious

debian/copyright refers to /usr/share/common-licenses/GPL text, which can be
GPLv3.  Since the package is GPLv2-only, it should refer to
/usr/share/common-licenses/GPL-2 instead.

-- System Information:
Debian Release: lenny/sid
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-5-amd64
Locale: LANG=ca_AD.UTF-8, LC_CTYPE=ca_AD.UTF-8 (charmap=UTF-8)

Versions of packages gs-gpl depends on:
ii  gs-common  0.3.11Common files for different Ghostsc
ii  libc6  2.3.6.ds1-13etch2 GNU C Library: Shared libraries
ii  libice61:1.0.1-2 X11 Inter-Client Exchange library
ii  libpaper1  1.1.21Library for handling paper charact
ii  libsm6 1:1.0.1-3 X11 Session Management library
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxext6   1:1.0.1-2 X11 miscellaneous extension librar
ii  libxt6 1:1.0.2-2 X11 toolkit intrinsics library

Versions of packages gs-gpl recommends:
ii  gsfonts   1:8.11+urwcyr1.0.7~pre41-1 Fonts for the Ghostscript interpre
pn  psfontmgr none (no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444468: miss-represents license in debian/copyright

2007-09-28 Thread Robert Millan
Package: gs-esp
Version: 8.15.3.dfsg.1-1
Severity: serious

debian/copyright refers to /usr/share/common-licenses/GPL text, which can be
GPLv3.  Since the package is GPLv2-only, it should refer to
/usr/share/common-licenses/GPL-2 instead.

In addition, it also missrepresents the license with the at your option
wording.

-- System Information:
Debian Release: lenny/sid
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-5-amd64
Locale: LANG=ca_AD.UTF-8, LC_CTYPE=ca_AD.UTF-8 (charmap=UTF-8)

Versions of packages gs-esp depends on:
ii  gs-common  0.3.11Common files for different Ghostsc
ii  libc6  2.3.6.ds1-13etch2 GNU C Library: Shared libraries
ii  libcupsimage2  1.2.7-4   Common UNIX Printing System(tm) - 
ii  libcupsys2 1.2.7-4   Common UNIX Printing System(tm) - 
ii  libfontconfig1 2.4.2-1.2 generic font configuration library
ii  libgnutls131.4.4-3   the GNU TLS library - runtime libr
ii  libice61:1.0.1-2 X11 Inter-Client Exchange library
ii  libjpeg62  6b-13 The Independent JPEG Group's JPEG 
ii  libpaper1  1.1.21Library for handling paper charact
ii  libpng12-0 1.2.15~beta5-1PNG library - runtime
ii  libsm6 1:1.0.1-3 X11 Session Management library
ii  libstdc++6 4.1.1-21  The GNU Standard C++ Library v3
ii  libtiff4   3.8.2-7   Tag Image File Format (TIFF) libra
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxext6   1:1.0.1-2 X11 miscellaneous extension librar
ii  libxt6 1:1.0.2-2 X11 toolkit intrinsics library
ii  zlib1g 1:1.2.3-13compression library - runtime

Versions of packages gs-esp recommends:
ii  gsfonts   1:8.11+urwcyr1.0.7~pre41-1 Fonts for the Ghostscript interpre
pn  psfontmgr none (no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444472: does not apply to linux-2.6 2.6.18.dfsg.1-13etch3

2007-09-28 Thread Marcin Owsiany
Package: kernel-patch-openvz
Version: 028.18.1etch4
Severity: grave
Tags: patch

The security updates present in 2.6.18.dfsg.1-13etch3 conflict with two
hunks of the openvz patch.

The attached patch is sufficient to make it apply, athough the line
numbers could use some adjustment..


-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-5-686
Locale: LANG=pl_PL.UTF-8, LC_CTYPE=pl_PL.UTF-8 (charmap=UTF-8)

Versions of packages kernel-patch-openvz depends on:
ii  bash  3.1dfsg-8  The GNU Bourne Again SHell
ii  grep-dctrl2.9.3  Grep Debian package information - 
ii  patch 2.5.9-4Apply a diff file to an original

kernel-patch-openvz recommends no packages.

-- no debconf information
--- diff-ovz-028.18-deb	2007-09-28 22:23:16.0 +0100
+++ ovz-028.18-deb.patch	2007-09-28 22:22:48.0 +0100
@@ -46105,15 +46105,15 @@
 diff -uprN linux-source-2.6.18/fs/jffs2/acl.h linux-source-2.6.18-ovz/fs/jffs2/acl.h
 --- linux-source-2.6.18/fs/jffs2/acl.h	2006-09-20 07:42:06.0 +0400
 +++ linux-source-2.6.18-ovz/fs/jffs2/acl.h	2007-03-09 17:52:50.0 +0300
-@@ -27,7 +27,8 @@ struct jffs2_acl_header {
- 
+@@ -28,7 +28,8 @@
  #define JFFS2_ACL_NOT_CACHED ((void *)-1)
  
+ extern struct posix_acl *jffs2_get_acl(struct inode *inode, int type);
 -extern int jffs2_permission(struct inode *, int, struct nameidata *);
 +extern int jffs2_permission(struct inode *, int, struct nameidata *,
 +		struct exec_perm *perm);
  extern int jffs2_acl_chmod(struct inode *);
- extern int jffs2_init_acl(struct inode *, struct inode *);
+ extern int jffs2_init_acl(struct inode *, struct posix_acl *);
  extern void jffs2_clear_acl(struct jffs2_inode_info *);
 diff -uprN linux-source-2.6.18/fs/jfs/acl.c linux-source-2.6.18-ovz/fs/jfs/acl.c
 --- linux-source-2.6.18/fs/jfs/acl.c	2006-09-20 07:42:06.0 +0400
@@ -114491,9 +114491,9 @@
  	if (charged)
  		vm_unacct_memory(charged);
  	return error;
-@@ -1492,12 +1518,16 @@ static int acct_stack_growth(struct vm_a
- 			return -ENOMEM;
- 	}
+@@ -1525,12 +1525,16 @@
+ 	if (is_hugepage_only_range(vma-vm_mm, new_start, size))
+ 		return -EFAULT;
  
 +	if (ub_memory_charge(mm, grow  PAGE_SHIFT, vma-vm_flags,
 +vma-vm_file, UB_SOFT))
@@ -114505,7 +114505,7 @@
  	 */
  	if (security_vm_enough_memory(grow))
 -		return -ENOMEM;
-+		goto fail_sec;
++		goto fail_charge;
  
  	/* Ok, everything looks good - let it rip */
  	mm-total_vm += grow;


Bug#443036: linux-libertine: FTBFS: Failed to find NameList: LinLibertine-2.6.8

2007-09-28 Thread Jérémy Bobbio
On Tue, Sep 18, 2007 at 10:37:53AM +0200, Lucas Nussbaum wrote:
 Package: linux-libertine
 version: 2.6-1
 Justification: FTBFS on i386
 [...] 
 During a rebuild of all packages in sid, your package failed to build on i386.
 
 Relevant part:
 [...]
 make: *** [build-stamp] Segmentation fault

I was not really able to reproduce the problem on my own machine.  It
just seems to me than it takes an amazing amount of resources (both in
time and space) to build...

Cheers,
-- 
Jérémy Bobbio.''`. 
[EMAIL PROTECTED]: :Ⓐ  :  # apt-get install anarchism
`. `'` 
  `-   


signature.asc
Description: Digital signature


Bug#444435: [Pkg-openssl-devel] Bug#444435: Bug#444435: openssl: [CVE-2007-5135] Off-by-one error in the SSL_get_shared_ciphers()

2007-09-28 Thread Kurt Roeckx
On Fri, Sep 28, 2007 at 04:23:37PM -0400, Noah Meyerhans wrote:
 On Fri, Sep 28, 2007 at 10:19:11PM +0200, Kurt Roeckx wrote:
   Thanks.  Is there any chance of fixing this for oldstable?
  
  The security team wasn't interested in doing updates for
  oldstable-security before.
 
 Eh?  I must have missed that.  We claim to support oldstable for 1 year,
 which means we've still got, what, 7 months left of support for it?

I might have confused oldstable security updates from before the etch
release, so still covering woody.


Kurt




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444315: python-gobject-dev: Missing Depends on libffi4-dev.

2007-09-28 Thread Kurt Roeckx
notfound 444315 2.14.0-2
found 444315 2.14.0-1
close 444315 2.14.0-2
thanks

On Fri, Sep 28, 2007 at 09:46:39AM +0200, Josselin Mouette wrote:
 Le jeudi 27 septembre 2007 à 20:13 +0200, Kurt Roeckx a écrit :
  Package: python-gobject-dev
  Version: 2.14.0-2
  Severity: serious
  
  Hi,
  
  The file /usr/lib/pkgconfig/pygobject-2.0.pc has this in it:
  Libs: -L${libdir} -lffi
  
  However, python-gobject-dev doesn't have a Depends on libffi4-dev
  making other package that Build-Depend on python-gobject-dev fail
  to build.
 
 Depends: python, python-gobject (= 2.14.0-2), python-dev, libglib2.0-dev (= 
 2.8.0), libffi-dev
 
 What is exactly missing?

I was looking at the wrong version.


Kurt





Bug#432755: flashplugin-nonfree: Still old version in repository

2007-09-28 Thread Cyril Brulebois
G.P. Burth [EMAIL PROTECTED] (18/09/2007):
 I still have the old 9.0.31 version of the package shown to me in
 aptitude although there should be an update according to this bug list
 -- so i still get the md5 error.

rmadison (devscripts package) is your friend:
$ rmadison flashplugin-nonfree
flashplugin-nonfree |   7.0.25-5 | oldstable/contrib | source, i386
flashplugin-nonfree | 9.0.31.0.1 | etch-m68k/contrib | source
flashplugin-nonfree | 9.0.31.0.1 | stable/contrib | source, i386
flashplugin-nonfree | 9.0.48.0.1etch1 | proposed-updates/contrib | source, i386
flashplugin-nonfree | 9.0.48.0.2 | testing/contrib | source, amd64, i386
flashplugin-nonfree | 9.0.48.0.2 | unstable/contrib | source, amd64, i386
flashplugin-nonfree |  1:1.1 | experimental/contrib | amd64
flashplugin-nonfree |  1:1.2 | experimental/contrib | source, i386

You're basically lacking proposed-updates. The other way is to wait for
them to be pushed into the release, which will happen when the next
point release is published.

Cheers,

-- 
Cyril Brulebois


pgpwr1nk39SYj.pgp
Description: PGP signature


Processed: tagging 444285

2007-09-28 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.8
 tags 444285 sid
Bug#444285: gimp-data: Generated cache was invalid
There were no tags set.
Tags added: sid


End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#443030: gnat-gps: FTBFS: /build/user/gnat-gps-4.0.1/docs/gps.texi:340: epsf.tex not found

2007-09-28 Thread Cyril Brulebois
tag 443030 patch
thanks

Lucas Nussbaum [EMAIL PROTECTED] (18/09/2007):
 /build/user/gnat-gps-4.0.1/docs/gps.texi:340: epsf.tex not found,

I must confess I stopped the build before the end, but I guess adding
texlive-generic-recommended to B-D-I should help.

Cheers,

-- 
Cyril Brulebois


pgpIqtHNWTjZE.pgp
Description: PGP signature


Processed: Re: Bug#444315: python-gobject-dev: Missing Depends on libffi4-dev.

2007-09-28 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 notfound 444315 2.14.0-2
Bug#444315: python-gobject-dev: Missing Depends on libffi4-dev.
Bug no longer marked as found in version 2.14.0-2.

 found 444315 2.14.0-1
Bug#444315: python-gobject-dev: Missing Depends on libffi4-dev.
Bug marked as found in version 2.14.0-1.

 close 444315 2.14.0-2
Bug#444315: python-gobject-dev: Missing Depends on libffi4-dev.
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug marked as fixed in version 2.14.0-2, send any further explanations to Kurt 
Roeckx [EMAIL PROTECTED]

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#367745: marked as done (battery-stats: must use invoke-rc.d)

2007-09-28 Thread Debian Bug Tracking System
Your message dated Fri, 28 Sep 2007 22:47:02 +
with message-id [EMAIL PROTECTED]
and subject line Bug#367745: fixed in battery-stats 0.3.3-1.1
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: battery-stats
Version: 0.3.3-1

As of Debian Policy Manual version 3.7.2, the use of invoke-rc.d to
run init.d scripts has been made mandatory. Earlier, its use was
strongly recommended.

In most cases the fix should be simple, replace this:

/etc/init.d/package action

with this:

if which invoke-rc.d /dev/null 21; then
invoke-rc.d package action
else
/etc/init.d/package action
fi

On May 13 and 14, I checked all packages in Debian sid, and found
that your package needs to be changed because of this policy change.
This bug is part of a mass-filing to get all such bugs fixed.
(See discussion starting at [1].)

[1] http://lists.debian.org/debian-devel/2006/05/msg00577.html

If my checking was wrong, I apologize.

If I can help in getting the bug fixed, please tell me.

---End Message---
---BeginMessage---
Source: battery-stats
Source-Version: 0.3.3-1.1

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

battery-stats_0.3.3-1.1.diff.gz
  to pool/main/b/battery-stats/battery-stats_0.3.3-1.1.diff.gz
battery-stats_0.3.3-1.1.dsc
  to pool/main/b/battery-stats/battery-stats_0.3.3-1.1.dsc
battery-stats_0.3.3-1.1_amd64.deb
  to pool/main/b/battery-stats/battery-stats_0.3.3-1.1_amd64.deb



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

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Philippe Le Brouster [EMAIL PROTECTED] (supplier of updated battery-stats 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 28 Sep 2007 23:59:00 +0200
Source: battery-stats
Binary: battery-stats
Architecture: source amd64
Version: 0.3.3-1.1
Distribution: unstable
Urgency: low
Maintainer: Karl E. Jorgensen [EMAIL PROTECTED]
Changed-By: Philippe Le Brouster [EMAIL PROTECTED]
Description: 
 battery-stats - Collects statistics about charge of laptop batteries
Closes: 367745
Changes: 
 battery-stats (0.3.3-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * debian/logrotate now use invoke-rc.d (Closes: #367745)
Files: 
 ef63e67b070c6f52bba6a2fa60f30877 607 admin extra battery-stats_0.3.3-1.1.dsc
 4e913d9dd1cdbf271171b9709e917757 4357 admin extra 
battery-stats_0.3.3-1.1.diff.gz
 3118d12a3d814ec57bb76d4ea14ff013 22256 admin extra 
battery-stats_0.3.3-1.1_amd64.deb

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

iD8DBQFG/X0f2PUjs9fQ72URAkhJAKC8KWmIzg6rj0wLtXzzK8+O+ETXjQCguR58
ddzEDuICP7oHOivuG8RDnHA=
=i/uj
-END PGP SIGNATURE-


---End Message---


Processed: Re: Bug#443030: gnat-gps: FTBFS: /build/user/gnat-gps-4.0.1/docs/gps.texi:340: epsf.tex not found

2007-09-28 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 443030 patch
Bug#443030: gnat-gps: FTBFS: /build/user/gnat-gps-4.0.1/docs/gps.texi:340: 
epsf.tex not found
There were no tags set.
Tags added: patch

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processed: merging

2007-09-28 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 444357 serious
Bug#444357: gnome-core not istallable due to broken libwnck18i package (not 
available).
Severity set to `serious' from `critical'

 merge 444363 444357
Bug#444357: gnome-core not istallable due to broken libwnck18i package (not 
available).
Bug#444363: gnome-core not istallable due to broken libwnck18i package (not 
available).
Merged 444357 444363.

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processed: battery-stats: diff for NMU version 0.3.3-1.1

2007-09-28 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 367745 + patch
Bug#367745: battery-stats: must use invoke-rc.d
Tags were: patch
Tags added: patch

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#443021: gnome-main-menu: FTBFS: Package libnm-util was not found in the pkg-config search path.

2007-09-28 Thread Cyril Brulebois
tag 443021 patch
thanks

Lucas Nussbaum [EMAIL PROTECTED] (18/09/2007):
 Package 'libnm-util', required by 'NetworkManager', not found

You're lacking a B-D on libnm-util-dev, probably due to a package split
some time ago. (You could also s/ ,/, / on the B-D line.)

Cheers,

-- 
Cyril Brulebois


pgp5zfUHX5YgZ.pgp
Description: PGP signature


Bug#435164: gimmie: diff for NMU version 0.2.7-1.1

2007-09-28 Thread Frederic Peters
Package: gimmie
Version: 0.2.7-1
Severity: normal
Tags: patch

Hi,

Attached is the diff for my gimmie 0.2.7-1.1 NMU.

The idea is to disable the custom exception hook gimmie sets, so
exceptions are handled the normal way and won't cause the program
to stop.

Regards,

Fredeic
diff -u gimmie-0.2.7/debian/changelog gimmie-0.2.7/debian/changelog
--- gimmie-0.2.7/debian/changelog
+++ gimmie-0.2.7/debian/changelog
@@ -1,3 +1,12 @@
+gimmie (0.2.7-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * gimmie/gimmie.in: disabled custom exception hook so the program is not
+aborted on exceptions that wouldn't cause PyGTK problems otherwise.
+(closes: #435164, #435189, #435196)
+
+ -- Frederic Peters [EMAIL PROTECTED]  Sat, 29 Sep 2007 00:49:14 +0200
+
 gimmie (0.2.7-1) unstable; urgency=low
 
   * Initial release (Closes: #415937)
only in patch2:
unchanged:
--- gimmie-0.2.7.orig/gimmie/gimmie.in
+++ gimmie-0.2.7/gimmie/gimmie.in
@@ -44,7 +44,7 @@
 finally:
 os.unlink(name)
 raise SystemExit
-sys.excepthook = bug_catcher
+#sys.excepthook = bug_catcher
 
 
 pwd, dirname = os.path.split(os.path.dirname(os.path.abspath(__file__)))


Processed: Re: Bug#443021: gnome-main-menu: FTBFS: Package libnm-util was not found in the pkg-config search path.

2007-09-28 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 443021 patch
Bug#443021: gnome-main-menu: FTBFS: Package libnm-util was not found in the 
pkg-config search path.
There were no tags set.
Tags added: patch

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#431201: marked as done (qc-usb-source: Fails to compile on linux 2.6.21.5)

2007-09-28 Thread Debian Bug Tracking System
Your message dated Sat, 29 Sep 2007 01:03:12 +0200
with message-id [EMAIL PROTECTED]
and subject line closing this bug
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: qc-usb-source
Version: 0.6.6-1
Severity: serious
Justification: no longer builds from source


On the latest vanilla (not Debian) linux kernel 2.6.21.5:

make[3]: Entering directory `/usr/src/modules/qc-usb-source'
make -C /usr/src/linux SUBDIRS=/usr/src/modules/qc-usb-source modules V=1 
USER_OPT=-DHAVE_UTSRELEASE_H=1
make[4]: Entering directory `/usr/src/linux-2.6.21.5'
test -e include/linux/autoconf.h -a -e include/config/auto.conf || (
\
echo;   \
echo   ERROR: Kernel configuration is invalid.;   \
echo  include/linux/autoconf.h or include/config/auto.conf are 
missing.;  \
echo  Run 'make oldconfig  make prepare' on kernel src to 
fix it.;  \
echo;   \
/bin/false)
mkdir -p /usr/src/modules/qc-usb-source/.tmp_versions
rm -f /usr/src/modules/qc-usb-source/.tmp_versions/*
make -f scripts/Makefile.build obj=/usr/src/modules/qc-usb-source
  gcc -Wp,-MD,/usr/src/modules/qc-usb-source/.qc-driver.o.d  -nostdinc -isystem 
/usr/lib/gcc/x86_64-linux-gnu/4.1.2/include -D__KERNEL__ -Iinclude  -include 
include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs 
-fno-strict-aliasing -fno-common -Os  -march=k8 -m64 -mno-red-zone 
-mcmodel=kernel -pipe -fno-reorder-blocks -Wno-sign-compare 
-fno-asynchronous-unwind-tables -funit-at-a-time -mno-sse -mno-mmx -mno-sse2 
-mno-3dnow -maccumulate-outgoing-args -DCONFIG_AS_CFI=1 
-DCONFIG_AS_CFI_SIGNAL_FRAME=1 -fomit-frame-pointer  -fno-stack-protector 
-Wdeclaration-after-statement -Wno-pointer-sign -DNOKERNEL 
-DHAVE_UTSRELEASE_H=1  -DMODULE -DKBUILD_STR(s)=#s 
-DKBUILD_BASENAME=KBUILD_STR(qc_driver)  
-DKBUILD_MODNAME=KBUILD_STR(quickcam) -c -o 
/usr/src/modules/qc-usb-source/.tmp_qc-driver.o 
/usr/src/modules/qc-usb-source/qc-driver.c
In file included from /usr/src/modules/qc-usb-source/qc-driver.c:47:
/usr/src/modules/qc-usb-source/quickcam.h:79:26: error: linux/config.h: No such 
file or directory
/usr/src/modules/qc-usb-source/qc-driver.c: In function 'qc_i2c_init':
/usr/src/modules/qc-usb-source/qc-driver.c:825: warning: assignment from 
incompatible pointer type
/usr/src/modules/qc-usb-source/qc-driver.c: In function 'qc_isoc_start':
/usr/src/modules/qc-usb-source/qc-driver.c:1867: warning: assignment from 
incompatible pointer type
/usr/src/modules/qc-usb-source/qc-driver.c: At top level:
/usr/src/modules/qc-usb-source/qc-driver.c:2998: warning: initialization from 
incompatible pointer type
make[5]: *** [/usr/src/modules/qc-usb-source/qc-driver.o] Error 1
make[4]: *** [_module_/usr/src/modules/qc-usb-source] Error 2
make[4]: Leaving directory `/usr/src/linux-2.6.21.5'
make[3]: *** [quickcam.ko] Error 2
make[3]: Leaving directory `/usr/src/modules/qc-usb-source'
make[2]: *** [binary-modules] Error 2
make[2]: Leaving directory `/usr/src/modules/qc-usb-source'
make[1]: *** [kdist_image] Error 2
make[1]: Leaving directory `/usr/src/modules/qc-usb-source'
Module /usr/src/modules/qc-usb-source failed.

I had run oldconfig and prepare, and the files are not missing:

[EMAIL PROTECTED]:/usr/src/linux# l include/linux/autoconf.h
-rw-r--r-- 1 root root 19336 2007-06-30 08:46 include/linux/autoconf.h
[EMAIL PROTECTED]:/usr/src/linux# l include/config/auto.conf
-rw-r--r-- 1 root root 12985 2007-06-30 08:46 include/config/auto.conf

Doesn't look serious, in spite of the tag!

Cheers,
Dave


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

Kernel: Linux 2.6.19.1 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ISO-8859-1) (ignored: LC_ALL set to en_US)
Shell: /bin/sh linked to /bin/bash

Versions of packages qc-usb-source depends on:
ii  debhelper 5.0.48 helper programs for debian/rules

Versions of packages qc-usb-source recommends:
ii  kernel-package10.065 A utility for building Linux kerne

-- no debconf information

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

Hi,

I'm closing this bug as it is not a real bug.

Before trying to compile an external module with a vanilla (or not)
kernel you have to check that your kernel sources are ready for this.

In your case the build log show that you have 

Bug#439448: ttt: diff for NMU version 1.7-3.2

2007-09-28 Thread Jérémy Bobbio
Hi,

Attached is the diff for my ttt 1.7-3.2 NMU.

Cheers,
-- 
Jérémy Bobbio.''`. 
[EMAIL PROTECTED]: :Ⓐ  :  # apt-get install anarchism
`. `'` 
  `-   
diff -u ttt-1.7/debian/changelog ttt-1.7/debian/changelog
--- ttt-1.7/debian/changelog
+++ ttt-1.7/debian/changelog
@@ -1,3 +1,14 @@
+ttt (1.7-3.2) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Apply patch by Kumar Appaiah to fix FTBFS with recent pcap versions.
+(Closes: #439448)
+  * Fix debian-rules-ignores-make-clean-error lintian warning.
+  * Use ${binary:Version} instead of ${Source-Version} in debian/control.
+  * Bump Standards-Version to 3.7.2.2. 
+
+ -- Jérémy Bobbio [EMAIL PROTECTED]  Sat, 29 Sep 2007 00:53:49 +0200
+
 ttt (1.7-3.1) unstable; urgency=low
 
   * Non-maintainer upload.
diff -u ttt-1.7/debian/rules ttt-1.7/debian/rules
--- ttt-1.7/debian/rules
+++ ttt-1.7/debian/rules
@@ -73,7 +73,7 @@
-test -r cf/config.guess.orig  \
  ( mv cf/config.guess.orig cf/config.guess )
 
-   -$(MAKE) distclean
+   [ ! -f Makefile ] || $(MAKE) distclean
 
dh_clean
 
diff -u ttt-1.7/debian/control ttt-1.7/debian/control
--- ttt-1.7/debian/control
+++ ttt-1.7/debian/control
@@ -3,11 +3,11 @@
 Priority: optional
 Maintainer: Thomas Scheffczyk [EMAIL PROTECTED]
 Build-Depends: debhelper ( 3.0.0), autotools-dev, tcl8.4-dev, tk8.4-dev, 
blt-dev, libpcap-dev
-Standards-Version: 3.5.9
+Standards-Version: 3.7.2.2
 
 Package: ttt
 Architecture: any
-Depends: ${shlibs:Depends}, tttview (= ${Source-Version})
+Depends: ${shlibs:Depends}, tttview (= ${binary:Version})
 Description: A standalone program for local traffic-monitoring
  ttt is the standalone traffic monitor program in the ttt 
  program suite. ttt displays trafic-data of a local interface.
only in patch2:
unchanged:
--- ttt-1.7.orig/pcap_inet.c
+++ ttt-1.7/pcap_inet.c
@@ -146,7 +146,8 @@
return (device);
 }
 
-int
+/* Commented out to use libpcap's pcap_lookupnet function. */
+/*int
 pcap_lookupnet(device, netp, maskp, errbuf)
register char *device;
register u_int *netp, *maskp;
@@ -194,3 +195,4 @@
*netp = *maskp;
return (0);
 }
+*/


signature.asc
Description: Digital signature


Bug#439448: marked as done (ttt: FTBFS: error: argument 'device' doesn't match prototype)

2007-09-28 Thread Debian Bug Tracking System
Your message dated Fri, 28 Sep 2007 23:32:02 +
with message-id [EMAIL PROTECTED]
and subject line Bug#439448: fixed in ttt 1.7-3.2
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: ttt
version: 1.7-3.1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070823 qa-ftbfs
Justification: FTBFS on i386

Hi,

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

Relevant part:
make[1]: Entering directory `/build/user/ttt-1.7'
gcc -O2   -DSTDC_HEADERS=1 -DHAVE_SYS_QUEUE_H=1 -DHAVE_GETHOSTENT=1 
-DHAVE_LIBNSL=1 -DHAVE_LIBM=1 -DHAVE_LIBDL=1  -D_BSD_SOURCE -DIPV6  
-DTTT_LIBRARY=\/usr/lib/ttt\ -I.  -I/usr/include/tk8.4 -I/usr/include/tcl8.4 
-I/usr/include -c ttt.c
gcc -O2   -DSTDC_HEADERS=1 -DHAVE_SYS_QUEUE_H=1 -DHAVE_GETHOSTENT=1 
-DHAVE_LIBNSL=1 -DHAVE_LIBM=1 -DHAVE_LIBDL=1  -D_BSD_SOURCE -DIPV6  
-DTTT_LIBRARY=\/usr/lib/ttt\ -I.  -I/usr/include/tk8.4 -I/usr/include/tcl8.4 
-I/usr/include -c tk_ttt.c
tk_ttt.c: In function 'Ttt_Init':
tk_ttt.c:62: warning: passing argument 3 of 'Tcl_CreateCommand' from 
incompatible pointer type
tk_ttt.c:96: warning: assignment discards qualifiers from pointer target type
tk_ttt.c:116: warning: assignment discards qualifiers from pointer target type
tk_ttt.c:117: warning: assignment discards qualifiers from pointer target type
gcc -O2   -DSTDC_HEADERS=1 -DHAVE_SYS_QUEUE_H=1 -DHAVE_GETHOSTENT=1 
-DHAVE_LIBNSL=1 -DHAVE_LIBM=1 -DHAVE_LIBDL=1  -D_BSD_SOURCE -DIPV6  
-DTTT_LIBRARY=\/usr/lib/ttt\ -I.  -I/usr/include/tk8.4 -I/usr/include/tcl8.4 
-I/usr/include -c common.c
common.c: In function 'fatal_error':
common.c:63: warning: incompatible implicit declaration of built-in function 
'exit'
gcc -O2   -DSTDC_HEADERS=1 -DHAVE_SYS_QUEUE_H=1 -DHAVE_GETHOSTENT=1 
-DHAVE_LIBNSL=1 -DHAVE_LIBM=1 -DHAVE_LIBDL=1  -D_BSD_SOURCE -DIPV6  
-DTTT_LIBRARY=\/usr/lib/ttt\ -I.  -I/usr/include/tk8.4 -I/usr/include/tcl8.4 
-I/usr/include -c display.c
gcc -O2   -DSTDC_HEADERS=1 -DHAVE_SYS_QUEUE_H=1 -DHAVE_GETHOSTENT=1 
-DHAVE_LIBNSL=1 -DHAVE_LIBM=1 -DHAVE_LIBDL=1  -D_BSD_SOURCE -DIPV6  
-DTTT_LIBRARY=\/usr/lib/ttt\ -I.  -I/usr/include/tk8.4 -I/usr/include/tcl8.4 
-I/usr/include -c account.c
gcc -O2   -DSTDC_HEADERS=1 -DHAVE_SYS_QUEUE_H=1 -DHAVE_GETHOSTENT=1 
-DHAVE_LIBNSL=1 -DHAVE_LIBM=1 -DHAVE_LIBDL=1  -D_BSD_SOURCE -DIPV6  
-DTTT_LIBRARY=\/usr/lib/ttt\ -I.  -I/usr/include/tk8.4 -I/usr/include/tcl8.4 
-I/usr/include -c net_names.c
net_names.c: In function 'net_getname':
net_names.c:271: warning: passing argument 1 of 'inet6_ntoa' from incompatible 
pointer type
gcc -O2   -DSTDC_HEADERS=1 -DHAVE_SYS_QUEUE_H=1 -DHAVE_GETHOSTENT=1 
-DHAVE_LIBNSL=1 -DHAVE_LIBM=1 -DHAVE_LIBDL=1  -D_BSD_SOURCE -DIPV6  
-DTTT_LIBRARY=\/usr/lib/ttt\ -I.  -I/usr/include/tk8.4 -I/usr/include/tcl8.4 
-I/usr/include -c window.c
window.c: In function 'stat_set_colors':
window.c:136: warning: incompatible implicit declaration of built-in function 
'strlen'
window.c:137: warning: incompatible implicit declaration of built-in function 
'strcpy'
window.c: In function 'wg_create':
window.c:294: warning: incompatible implicit declaration of built-in function 
'bzero'
window.c: In function 'w_alloc_entries':
window.c:519: warning: incompatible implicit declaration of built-in function 
'bzero'
gcc -O2   -DSTDC_HEADERS=1 -DHAVE_SYS_QUEUE_H=1 -DHAVE_GETHOSTENT=1 
-DHAVE_LIBNSL=1 -DHAVE_LIBM=1 -DHAVE_LIBDL=1  -D_BSD_SOURCE -DIPV6  
-DTTT_LIBRARY=\/usr/lib/ttt\ -I.  -I/usr/include/tk8.4 -I/usr/include/tcl8.4 
-I/usr/include -c node.c
node.c: In function 'b_alloc_nodes':
node.c:419: warning: incompatible implicit declaration of built-in function 
'bzero'
gcc -O2   -DSTDC_HEADERS=1 -DHAVE_SYS_QUEUE_H=1 -DHAVE_GETHOSTENT=1 
-DHAVE_LIBNSL=1 -DHAVE_LIBM=1 -DHAVE_LIBDL=1  -D_BSD_SOURCE -DIPV6  
-DTTT_LIBRARY=\/usr/lib/ttt\ -I.  -I/usr/include/tk8.4 -I/usr/include/tcl8.4 
-I/usr/include -c net_read.c
net_read.c: In function 'llc_read':
net_read.c:336: warning: incompatible implicit declaration of built-in function 
'bcopy'
net_read.c: In function 'ipv6_read':
net_read.c:938: warning: incompatible implicit declaration of built-in function 
'bcopy'
net_read.c: In function 'ether_encap_read':
net_read.c:254: warning: comparison is always 1
gcc -o ttt ttt.o tk_ttt.o common.o display.o account.o net_names.o window.o 
node.o net_read.o  -L/usr/lib -ltk8.4 -ltcl8.4 -L/usr/lib -lBLT.2.4.8.4 -L 
-lX11 -lpcap -ldl -lm -lnsl  -ldl
gcc -O2   -DSTDC_HEADERS=1 -DHAVE_SYS_QUEUE_H=1 -DHAVE_GETHOSTENT=1 
-DHAVE_LIBNSL=1 -DHAVE_LIBM=1 -DHAVE_LIBDL=1  

Bug#443990: Should be merged

2007-09-28 Thread Daniel Meyerholt
Hi! 
This one should be merged with bug #443820 since the resolution there
solves the problem.

bye
 Daniel




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#443787: libmpich1.0ldbl: seems bug #441946(#441882, #443502) is still there... because of a typo

2007-09-28 Thread Cyril Brulebois
tag 443787 patch
thanks

Marco Bodrato [EMAIL PROTECTED] (24/09/2007):
 Replaces: libmpich1.0, libmpich1.0c2, libmpich1.0-noslog
^
 A p is missing...

Indeed. Tagging accordingly.

Cheers,

-- 
Cyril Brulebois


pgpU62YG6sciX.pgp
Description: PGP signature


Processed: Re: Bug#443787: libmpich1.0ldbl: seems bug #441946(#441882, #443502) is still there... because of a typo

2007-09-28 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 443787 patch
Bug#443787: trying to overwrite `/usr/lib/mpich/lib/shared/libfmpich.so.1.0', 
which is also in package libmpich1.0c2
There were no tags set.
Tags added: patch

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#429155: zblast: diff for NMU version 1.3-2.3

2007-09-28 Thread Jérémy Bobbio
Hi,

Attached is the diff for my zblast 1.3-2.3 NMU.

Cheers,
-- 
Jérémy Bobbio.''`. 
[EMAIL PROTECTED]: :Ⓐ  :  # apt-get install anarchism
`. `'` 
  `-   
diff -u zblast-1.3/debian/changelog zblast-1.3/debian/changelog
--- zblast-1.3/debian/changelog
+++ zblast-1.3/debian/changelog
@@ -1,3 +1,15 @@
+zblast (1.3-2.3) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Create /var/games/zblast in zblast-data postinst script.
+(Closes: #429155)
+Thanks to Joachim Reichel's for the proposed patch.
+  * Adapt to the new menu policy by moving zblast-x11 to section Games/Action.
+  * Fix lintian debian-rules-ignores-make-clean-error warning.
+  * Bump to Standards-Version 3.7.2.2. 
+
+ -- Jérémy Bobbio [EMAIL PROTECTED]  Sat, 29 Sep 2007 02:09:33 +0200
+
 zblast (1.3-2.2) unstable; urgency=high
 
   * Non-maintainer upload during BSP.
diff -u zblast-1.3/debian/control zblast-1.3/debian/control
--- zblast-1.3/debian/control
+++ zblast-1.3/debian/control
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Oohara Yuuma [EMAIL PROTECTED]
 Build-Depends: debhelper (= 5), libx11-dev, x-dev, svgalibg1-dev [i386]
-Standards-Version: 3.5.7
+Standards-Version: 3.7.2.2
 
 Package: zblast-data
 Architecture: all
diff -u zblast-1.3/debian/rules zblast-1.3/debian/rules
--- zblast-1.3/debian/rules
+++ zblast-1.3/debian/rules
@@ -32,7 +32,7 @@
dh_testroot
rm -f build-stamp
 
-   -$(MAKE) clean
+   $(MAKE) clean
 
dh_clean
 
diff -u zblast-1.3/debian/zblast-data.dirs zblast-1.3/debian/zblast-data.dirs
--- zblast-1.3/debian/zblast-data.dirs
+++ zblast-1.3/debian/zblast-data.dirs
@@ -1 +1 @@
-usr/share/games/zblast 
+usr/share/games/zblast
diff -u zblast-1.3/debian/zblast-x11.menu zblast-1.3/debian/zblast-x11.menu
--- zblast-1.3/debian/zblast-x11.menu
+++ zblast-1.3/debian/zblast-x11.menu
@@ -1,3 +1,3 @@
-?package(zblast-x11): needs=X11 section=Games/Arcade command=xzb \
+?package(zblast-x11): needs=X11 section=Games/Action 
command=/usr/games/xzb \
   icon=/usr/share/pixmaps/xzb.xpm \
   title=ZBlast longtitle=High-speed shoot 'em up game
diff -u zblast-1.3/debian/zblast-data.postinst 
zblast-1.3/debian/zblast-data.postinst
--- zblast-1.3/debian/zblast-data.postinst
+++ zblast-1.3/debian/zblast-data.postinst
@@ -19,6 +19,7 @@
 # create the score file if necessary
 if test $1 = configure
 then
+  mkdir -p /var/games/zblast
   if test ! -e /var/games/zblast/zblast.scores
   then
 touch /var/games/zblast/zblast.scores


signature.asc
Description: Digital signature


Bug#444481: mldonkey-server: mlnet does not start on alpha

2007-09-28 Thread Alexander Kotelnikov
Package: mldonkey-server
Version: 2.9.1-1
Severity: grave
Justification: renders package unusable

It reports file system to be full, while it is not:

4:32 pts/11 [EMAIL PROTECTED]:~/work/mldonkey-2.9.1 41 /usr/bin/mlnet
2007/09/29 04:32:46 [cO] Starting MLDonkey 2.9.1 ... 
2007/09/29 04:32:46 [cO] Language RU, locale UTF-8, ulimit for open files 1024
2007/09/29 04:32:46 [cO] MLDonkey is working in /home/sacha-utf/.mldonkey

2007/09/29 04:32:46 [cO] creating new MLDonkey base directory in 
/home/sacha-utf/.mldonkey

2007/09/29 04:32:46 [Gettext] Loading language resource 
mlnet_strings.ru_RU.UTF-8
2007/09/29 04:32:46 [cO] loaded language resource file
2007/09/29 04:32:46 [DNS] Resolving [vinci] ...
2007/09/29 04:32:47 [DNS] Resolving [www.mldonkey.org] ...
2007/09/29 04:32:47 [cInt] WARNING: Directory /home/sacha-utf/.mldonkey is 
full, MLDonkey shuts down

2007/09/29 04:32:47  WARNING: Directory /home/sacha-utf/.mldonkey is full, 
MLDonkey shuts down
4:38 pts/11 [EMAIL PROTECTED]:~/work/mldonkey-2.9.1 42 df -h
FilesystemSize  Used Avail Use% Mounted on
/dev/md0  3.5G  2.9G  414M  88% /
tmpfs 506M 0  506M   0% /lib/init/rw
udev   10M  152K  9.9M   2% /dev
tmpfs 506M  8.0K  506M   1% /dev/shm
/dev/hdc5 8.5G  3.8G  4.3G  47% /mnt/5
/dev/hdc6  88G   88G  581M 100% /mnt/6
/dev/hdc7  19G   17G  2.0G  90% /mnt/7


-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: alpha
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.22-sacha
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)

Versions of packages mldonkey-server depends on:
ii  adduser3.102 Add and remove users and groups
ii  debconf [debconf-2.0]  1.5.11Debian configuration management sy
ii  dpkg   1.13.25   package maintenance system for Deb
ii  libbz2-1.0 1.0.3-6   high-quality block-sorting file co
ii  libc6.12.3.6.ds1-13etch2 GNU C Library: Shared libraries
ii  libgcc11:4.1.1-21GCC support library
ii  libgd2-noxpm   2.0.33-5.2GD Graphics Library version 2 (wit
ii  libncurses55.5-5 Shared libraries for terminal hand
ii  libpng12-0 1.2.15~beta5-1PNG library - runtime
ii  libstdc++6 4.1.1-21  The GNU Standard C++ Library v3
ii  mime-support   3.39-1MIME files 'mime.types'  'mailcap
ii  ocaml-base-nox [ocaml- 3.09.2-9  Runtime system for ocaml bytecode 
ii  ucf2.0020Update Configuration File: preserv
ii  zlib1g 1:1.2.3-13compression library - runtime

mldonkey-server recommends no packages.

-- debconf information:
* mldonkey-server/max_hard_download_rate: 0
* mldonkey-server/launch_at_startup: true
  mldonkey-server/mldonkey_group: mldonkey
  mldonkey-server/false_password:
* mldonkey-server/max_hard_upload_rate: 0
  mldonkey-server/run_as_user: mldonkey
  mldonkey-server/reown_file: false
  mldonkey-server/mldonkey_niceness: 0
  mldonkey-server/fasttrack_problem:
* mldonkey-server/mldonkey_dir: /var/lib/mldonkey
  mldonkey-server/mldonkey_move: false



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#431577: marked as done (missing dependency on ed)

2007-09-28 Thread Debian Bug Tracking System
Your message dated Sat, 29 Sep 2007 00:47:02 +
with message-id [EMAIL PROTECTED]
and subject line Bug#431577: fixed in gnarwl 3.3-8.3
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: gnarwl
Version: 3.3-8.2
Severity: serious

hi,

while running archive wide piuparts tests your package failed on install
because of a missing dependency on ed:

  Setting up gnarwl (3.3-8.2) ...
  /var/lib/dpkg/info/gnarwl.postinst: line 22: ed: command not found
  dpkg: error processing gnarwl (--configure):
   subprocess post-installation script returned error exit status 127
  Errors were encountered while processing:
   gnarwl
  E: Sub-process /usr/bin/dpkg returned an error code (1) 

the full log can be found here:

 http://people.debian.org/~lucas/logs/2007/07/01/

bye,
- michael

---End Message---
---BeginMessage---
Source: gnarwl
Source-Version: 3.3-8.3

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

gnarwl_3.3-8.3.diff.gz
  to pool/main/g/gnarwl/gnarwl_3.3-8.3.diff.gz
gnarwl_3.3-8.3.dsc
  to pool/main/g/gnarwl/gnarwl_3.3-8.3.dsc
gnarwl_3.3-8.3_i386.deb
  to pool/main/g/gnarwl/gnarwl_3.3-8.3_i386.deb



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

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Philippe Le Brouster [EMAIL PROTECTED] (supplier of updated gnarwl package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 29 Sep 2007 01:44:07 +0200
Source: gnarwl
Binary: gnarwl
Architecture: source i386
Version: 3.3-8.3
Distribution: unstable
Urgency: low
Maintainer: Cajus Pollmeier [EMAIL PROTECTED]
Changed-By: Philippe Le Brouster [EMAIL PROTECTED]
Description: 
 gnarwl - Email autoresponder based on LDAP
Closes: 431577
Changes: 
 gnarwl (3.3-8.3) unstable; urgency=low
 .
   * Non-maintainer upload.
   * debian/rules : distclean target is now called according to the debian
 policy
   * It now depend on ed package (Closes: #431577)
Files: 
 eb49c2d9e9d97b8ed8938e4f9eb06506 596 mail optional gnarwl_3.3-8.3.dsc
 e165fad4c04518e5288af5caadcf5778 15122 mail optional gnarwl_3.3-8.3.diff.gz
 b8f51eb143dd77268de4826d449087f1 44536 mail optional gnarwl_3.3-8.3_i386.deb

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

iD8DBQFG/Z3KoR3LsWeD7V4RAmBIAJ4ooFlJv9/WJNCOA+Hj5+UrSvKy3QCfUras
PkNHSe3N4zuCGvmvYuqO2Nc=
=rNzP
-END PGP SIGNATURE-


---End Message---


  1   2   >