Bug#297862: xlogmaster: FTBFS (amd64/gcc-4.0): cast from 'void**' to 'int' loses precision

2005-03-03 Thread Andreas Jochens
Package: xlogmaster
Severity: normal
Tags: patch

When building 'xlogmaster' on amd64 with gcc-4.0,
I get the following error:

c++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/gtk-1.2 
-I/usr/include/glib-1.2 -I/usr/lib/glib/include -DXLM_HOME=\"/etc/xlogmaster\" 
-DXLM_DB=\"/etc/xlogmaster/database\" -DXLM_USER_DB=\".xlm-db\" 
-DXLM_LIB=\"/etc/xlogmaster\"  -I../import  -c xlogmaster.cc
In file included from 
/usr/lib/gcc/x86_64-linux/4.0.0/../../../../include/c++/4.0.0/backward/fstream.h:31,
 from sysinc.H:23,
 from xlogmaster.cc:36:
/usr/lib/gcc/x86_64-linux/4.0.0/../../../../include/c++/4.0.0/backward/backward_warning.h:32:2:
 warning: #warning This file includes at least one deprecated or antiquated 
header. Please consider using one of the 32 headers found in section 17.4.1.2 
of the C++ standard. Examples include substituting the  header for the  
header for C++ includes, or  instead of the deprecated header 
. To disable this warning use -Wno-deprecated.
xlogmaster.cc: In function 'void button_pressed(GtkWidget*, void**)':
xlogmaster.cc:439: error: cast from 'void**' to 'int' loses precision
make[3]: *** [xlogmaster.o] Error 1
make[3]: Leaving directory `/xlogmaster-1.6.0/src'

With the attached patch 'xlogmaster' can be compiled
on amd64 using gcc-4.0.

Regards
Andreas Jochens

diff -urN ../tmp-orig/xlogmaster-1.6.0/src/alert.cc ./src/alert.cc
--- ../tmp-orig/xlogmaster-1.6.0/src/alert.cc   1999-03-31 18:00:29.0 
+0200
+++ ./src/alert.cc  2005-03-03 11:28:10.0 +0100
@@ -103,7 +103,7 @@
 int 
 alert_interrupt(gpointer data)
 { 
-  int nr = (int) data;
+  long nr = (long) data;
   entry[nr]->fade += entry[nr]->fadestep;
   if ( entry[nr]->fade > fade_base )
 {
diff -urN ../tmp-orig/xlogmaster-1.6.0/src/customize.cc ./src/customize.cc
--- ../tmp-orig/xlogmaster-1.6.0/src/customize.cc   1999-03-31 
18:00:29.0 +0200
+++ ./src/customize.cc  2005-03-03 11:29:19.0 +0100
@@ -1849,7 +1849,7 @@
 
   gint default_class0_filter = NO_FILTER;
   if ( data != NULL )
-default_class0_filter = (gint) data;
+default_class0_filter = (long) data;
 
   /* block handlers */
   block_filter_handlers = TRUE;  
diff -urN ../tmp-orig/xlogmaster-1.6.0/src/output.cc ./src/output.cc
--- ../tmp-orig/xlogmaster-1.6.0/src/output.cc  2005-03-03 11:33:14.551469576 
+0100
+++ ./src/output.cc 2005-03-03 11:32:48.780443860 +0100
@@ -189,7 +189,7 @@
 gint 
 pipe_magic_interrupt(gpointer data)
 {
-  gint i = (gint) data;
+  long i = (long) data;
   
   /* are we locked out ? */
   if ( entry[i]->pipe_lock == TRUE )
diff -urN ../tmp-orig/xlogmaster-1.6.0/src/watchdog.cc ./src/watchdog.cc
--- ../tmp-orig/xlogmaster-1.6.0/src/watchdog.cc2005-03-03 
11:33:14.552469383 +0100
+++ ./src/watchdog.cc   2005-03-03 11:32:23.995227864 +0100
@@ -755,7 +755,7 @@
 gint 
 watchdog_tail_interrupt(gpointer data)
 {
-  gint i = (gint) data;
+  long i = (long) data;
   if ( entry[i]->active == FALSE ) return TRUE;
   
   if ( entry[i]->fd == -1 )
@@ -895,7 +895,7 @@
 gint 
 watchdog_run_interrupt(gpointer data)
 {
-  int i = (int) data;
+  long i = (long) data;
   if ( entry[i]->active == FALSE ) return TRUE;
 
   if ( entry[i]->fd == -1 )
@@ -1006,7 +1006,7 @@
 gint
 watchdog_run_restart_interrupt(gpointer data)
 { 
-  gint i = (gint) data;
+  long i = (long) data;
   
   /* first remove this interrupt */
   gtk_timeout_remove(entry[i]->tag);
@@ -1038,7 +1038,7 @@
 gint 
 watchdog_cat_interrupt(gpointer data)
 {
-  int i = (int) data;
+  long i = (long) data;
   if ( entry[i]->active == FALSE ) return TRUE;
   
   /* we need to open it every time anew for CAT */
@@ -1584,7 +1584,7 @@
 gint 
 tail_interrupt(gpointer data)
 { 
-  gint i = (gint) data;
+  long i = (long) data;
   if ( entry[i]->active == FALSE ) return TRUE;
   
   /*
@@ -1696,7 +1696,7 @@
 gint 
 cat_interrupt(gpointer data)
 {
-  gint i = (gint) data;
+  long i = (long) data;
   if ( entry[i]->active == FALSE ) return TRUE;
   
   entry[i]->fd = open(entry[i]->filename, O_RDONLY);
@@ -1725,7 +1725,7 @@
 gint 
 run_interrupt(gpointer data)
 { 
-  gint i = (gint) data;
+  long i = (long) data;
   if ( entry[i]->active == FALSE ) return TRUE;
 
   long got = read_from_filedescriptor(i);
@@ -1787,7 +1787,7 @@
 gint 
 run_restart_interrupt(gpointer data)
 { 
-  gint i = (gint) data;
+  long i = (long) data;
  
   /* first remove this interrupt */
   gtk_timeout_remove(entry[i]->tag);
diff -urN ../tmp-orig/xlogmaster-1.6.0/src/xlogmaster.cc ./src/xlogmaster.cc
--- ../tmp-orig/xlogmaster-1.6.0/src/xlogmaster.cc  2005-03-03 
11:33:14.553469190 +0100
+++ ./src/xlogmaster.cc 2005-03-03 11:27:40.0 +0100
@@ -436,7 +436,7 @@
 button_pressed(GtkWidget *, gpointer *data)
 {
   if ( display_logs == DISABLED ) return;
-  int pressed = (int) data;   // Which button has been pressed ?
+  long pressed = (long) data;   // Which button has been pressed ?
   deactivate();

Bug#297825: twin: FTBFS (amd64/gcc-4.0): static declaration of 'DeleteAllListeners' follows non-static declaration

2005-03-03 Thread Christoph Berg
Re: Andreas Jochens in <[EMAIL PROTECTED]>
> libTw_u.c: At top level:
> libTw_u.c:1595: warning: conflicting types for 'DeleteAllListeners'
> libTw_u.c:1595: error: static declaration of 'DeleteAllListeners' follows 
> non-static declaration
> libTw_u.c:1224: error: previous implicit declaration of 'DeleteAllListeners' 
> was here

> +++ ./libs/libTw/libTw.c  2005-03-02 18:28:06.0 +0100
> @@ -1182,6 +1182,8 @@
>  return (tw_d)0;
>  }
>  
> +static void DeleteAllListeners(tlistener);

> @@ -1193,7 +1195,6 @@
>   * closes a server connection
>   */
>  void Tw_Close(tw_d TwD) {
> -static void DeleteAllListeners(tlistener);

Hi,

I haven't looked at the source, but this fix seems like a workaround
for me. Either there is already a global definition of
DeleteAllListeners, in which case it should be fixed, or not, in which
case moving a local static to global doesn't feel right. (Same for the
other file.)

Christoph
-- 
[EMAIL PROTECTED] | http://www.df7cb.de/


signature.asc
Description: Digital signature


Processed: Re: Bug#297825: twin: FTBFS (amd64/gcc-4.0): invalid storage class for function 'DeleteAllListeners'

2005-03-03 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> retitle 297825 twin: FTBFS (amd64/gcc-4.0): invalid storage class for 
> function 'DeleteAllListeners'
Bug#297825: twin: FTBFS (amd64/gcc-4.0): static declaration of 
'DeleteAllListeners' follows non-static declaration
Changed Bug title.

> 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#297825: twin: FTBFS (amd64/gcc-4.0): invalid storage class for function 'DeleteAllListeners'

2005-03-03 Thread Andreas Jochens
retitle 297825 twin: FTBFS (amd64/gcc-4.0): invalid storage class for function 
'DeleteAllListeners'
thanks

Hello Christoph,

thank you for your fast reply to my bug report!

On 05-Mar-03 11:40, Christoph Berg wrote:
> Re: Andreas Jochens in <[EMAIL PROTECTED]>
> > libTw_u.c: At top level:
> > libTw_u.c:1595: warning: conflicting types for 'DeleteAllListeners'
> > libTw_u.c:1595: error: static declaration of 'DeleteAllListeners' follows 
> > non-static declaration
> > libTw_u.c:1224: error: previous implicit declaration of 
> > 'DeleteAllListeners' was here

> I haven't looked at the source, but this fix seems like a workaround
> for me. Either there is already a global definition of
> DeleteAllListeners, in which case it should be fixed, or not, in which
> case moving a local static to global doesn't feel right. (Same for the
> other file.)

It is a violation of the C standard to declare a 'static' function 
inside another function and gcc-4.0 enforces this with the following
error message:

libTw_u.c: In function 'Tw_Close':
libTw_u.c:1196: error: invalid storage class for function 'DeleteAllListeners'
libTw_u.c:1224: warning: implicit declaration of function 'DeleteAllListeners'

I should have copied that part of the build log into my bug report.
I apologise for having ommited this.

Regards
Andreas Jochens


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



Processing of pyzor_0.4.0-1_i386.changes

2005-03-03 Thread Archive Administrator
pyzor_0.4.0-1_i386.changes uploaded successfully to localhost
along with the files:
  pyzor_0.4.0-1.dsc
  pyzor_0.4.0.orig.tar.gz
  pyzor_0.4.0-1.diff.gz
  pyzor_0.4.0-1_all.deb

Greetings,

Your Debian queue daemon


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



pyzor_0.4.0-1_i386.changes ACCEPTED

2005-03-03 Thread Debian Installer

Accepted:
pyzor_0.4.0-1.diff.gz
  to pool/main/p/pyzor/pyzor_0.4.0-1.diff.gz
pyzor_0.4.0-1.dsc
  to pool/main/p/pyzor/pyzor_0.4.0-1.dsc
pyzor_0.4.0-1_all.deb
  to pool/main/p/pyzor/pyzor_0.4.0-1_all.deb
pyzor_0.4.0.orig.tar.gz
  to pool/main/p/pyzor/pyzor_0.4.0.orig.tar.gz
Announcing to debian-devel-changes@lists.debian.org


Thank you for your contribution to Debian.


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



Bug#297950: ttfprint: FTBFS (amd64/gcc-4.0): invalid lvalue in assignment

2005-03-03 Thread Andreas Jochens
Package: ttfprint
Severity: normal
Tags: patch

When building 'ttfprint' on amd64 with gcc-4.0,
I get the following error:

gcc -O6 -s -Wall -o prescan.o -c prescan.c
In file included from prescan.c:1:
ttfprint.h:143:2: warning: no newline at end of file
prescan.c:274:8: warning: extra tokens at end of #endif directive
prescan.c: In function 'prescan':
prescan.c:444: error: invalid lvalue in assignment
prescan.c:445: error: invalid lvalue in assignment
prescan.c:477: error: invalid lvalue in assignment
prescan.c:478: error: invalid lvalue in assignment
prescan.c: In function 'tpl_command':
prescan.c:579: warning: format '%d' expects type 'int', but argument 2 has type 
'long unsigned int'
make[1]: *** [prescan.o] Error 1
make[1]: Leaving directory `/ttfprint-0.9'
make: *** [build-stamp] Error 2

With the attached patch 'ttfprint' can be compiled
on amd64 using gcc-4.0.

Regards
Andreas Jochens

diff -urN ../tmp-orig/ttfprint-0.9/prescan.c ./prescan.c
--- ../tmp-orig/ttfprint-0.9/prescan.c  1998-03-24 11:26:35.0 +0100
+++ ./prescan.c 2005-03-03 19:18:57.333997001 +0100
@@ -441,8 +441,8 @@
fl_current->seq = 0;
fl_current->dict = FALSE;
fl_current->outline = NULL;
-   (unsigned char)fl_current->code[0]=(unsigned char)hbyte;
-   (unsigned char)fl_current->code[1]=(unsigned char)lbyte;
+   fl_current->code[0]=(unsigned char)hbyte;
+   fl_current->code[1]=(unsigned char)lbyte;
  
fprintf (tempfile,"\\g%03x",font_count);
font_count ++;
@@ -474,8 +474,8 @@
  fl_current->next = NULL;
  fl_tail->next = fl_current;
  fl_tail = fl_current;
- (unsigned char)fl_current->code[0]=(unsigned char)hbyte;
- (unsigned char)fl_current->code[1]=(unsigned char)lbyte;
+ fl_current->code[0]=(unsigned char)hbyte;
+ fl_current->code[1]=(unsigned char)lbyte;

  fprintf (tempfile,"\\g%03x",font_count);
  if ((++font_count) == FONTNUM)


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



Processing of doomlegacy_1.41release-2_i386.changes

2005-03-03 Thread Archive Administrator
doomlegacy_1.41release-2_i386.changes uploaded successfully to localhost
along with the files:
  doomlegacy_1.41release-2.dsc
  doomlegacy_1.41release-2.diff.gz
  doomlegacy-x11_1.41release-2_i386.deb
  doomlegacy-sdl_1.41release-2_i386.deb

Greetings,

Your Debian queue daemon


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



doomlegacy_1.41release-2_i386.changes ACCEPTED

2005-03-03 Thread Debian Installer

Accepted:
doomlegacy-sdl_1.41release-2_i386.deb
  to pool/contrib/d/doomlegacy/doomlegacy-sdl_1.41release-2_i386.deb
doomlegacy-x11_1.41release-2_i386.deb
  to pool/contrib/d/doomlegacy/doomlegacy-x11_1.41release-2_i386.deb
doomlegacy_1.41release-2.diff.gz
  to pool/contrib/d/doomlegacy/doomlegacy_1.41release-2.diff.gz
doomlegacy_1.41release-2.dsc
  to pool/contrib/d/doomlegacy/doomlegacy_1.41release-2.dsc
Announcing to debian-devel-changes@lists.debian.org
Closing bugs: 263539 


Thank you for your contribution to Debian.


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



Processing of htp_1.13-2_i386.changes

2005-03-03 Thread Archive Administrator
htp_1.13-2_i386.changes uploaded successfully to localhost
along with the files:
  htp_1.13-2.dsc
  htp_1.13-2.diff.gz
  htp_1.13-2_i386.deb

Greetings,

Your Debian queue daemon


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



htp_1.13-2_i386.changes ACCEPTED

2005-03-03 Thread Debian Installer

Accepted:
htp_1.13-2.diff.gz
  to pool/main/h/htp/htp_1.13-2.diff.gz
htp_1.13-2.dsc
  to pool/main/h/htp/htp_1.13-2.dsc
htp_1.13-2_i386.deb
  to pool/main/h/htp/htp_1.13-2_i386.deb
Announcing to debian-devel-changes@lists.debian.org


Thank you for your contribution to Debian.


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



Processing of mmx-emu_0.6-4_i386.changes

2005-03-03 Thread Archive Administrator
mmx-emu_0.6-4_i386.changes uploaded successfully to localhost
along with the files:
  mmx-emu_0.6-4.dsc
  mmx-emu_0.6-4.diff.gz
  mmx-emu_0.6-4_i386.deb

Greetings,

Your Debian queue daemon


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



mmx-emu_0.6-4_i386.changes ACCEPTED

2005-03-03 Thread Debian Installer

Accepted:
mmx-emu_0.6-4.diff.gz
  to pool/main/m/mmx-emu/mmx-emu_0.6-4.diff.gz
mmx-emu_0.6-4.dsc
  to pool/main/m/mmx-emu/mmx-emu_0.6-4.dsc
mmx-emu_0.6-4_i386.deb
  to pool/main/m/mmx-emu/mmx-emu_0.6-4_i386.deb
Announcing to debian-devel-changes@lists.debian.org
Closing bugs: 297460 


Thank you for your contribution to Debian.


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



Processing of zsi_1.5.0-3_i386.changes

2005-03-03 Thread Archive Administrator
zsi_1.5.0-3_i386.changes uploaded successfully to localhost
along with the files:
  zsi_1.5.0-3.dsc
  zsi_1.5.0-3.diff.gz
  python-zsi_1.5.0-3_all.deb
  python2.3-zsi_1.5.0-3_all.deb

Greetings,

Your Debian queue daemon


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



Processing of libtlen_20040530-2_i386.changes

2005-03-03 Thread Archive Administrator
libtlen_20040530-2_i386.changes uploaded successfully to localhost
along with the files:
  libtlen_20040530-2.dsc
  libtlen_20040530-2.diff.gz
  libtlen1-dev_20040530-2_i386.deb
  libtlen1_20040530-2_i386.deb

Greetings,

Your Debian queue daemon


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



zsi_1.5.0-3_i386.changes ACCEPTED

2005-03-03 Thread Debian Installer

Accepted:
python-zsi_1.5.0-3_all.deb
  to pool/main/z/zsi/python-zsi_1.5.0-3_all.deb
python2.3-zsi_1.5.0-3_all.deb
  to pool/main/z/zsi/python2.3-zsi_1.5.0-3_all.deb
zsi_1.5.0-3.diff.gz
  to pool/main/z/zsi/zsi_1.5.0-3.diff.gz
zsi_1.5.0-3.dsc
  to pool/main/z/zsi/zsi_1.5.0-3.dsc
Announcing to debian-devel-changes@lists.debian.org
Closing bugs: 256185 


Thank you for your contribution to Debian.


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



libtlen_20040530-2_i386.changes ACCEPTED

2005-03-03 Thread Debian Installer

Accepted:
libtlen1-dev_20040530-2_i386.deb
  to pool/main/libt/libtlen/libtlen1-dev_20040530-2_i386.deb
libtlen1_20040530-2_i386.deb
  to pool/main/libt/libtlen/libtlen1_20040530-2_i386.deb
libtlen_20040530-2.diff.gz
  to pool/main/libt/libtlen/libtlen_20040530-2.diff.gz
libtlen_20040530-2.dsc
  to pool/main/libt/libtlen/libtlen_20040530-2.dsc
Announcing to debian-devel-changes@lists.debian.org


Thank you for your contribution to Debian.


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



Processing of tleenx2_20040530-3_i386.changes

2005-03-03 Thread Archive Administrator
tleenx2_20040530-3_i386.changes uploaded successfully to localhost
along with the files:
  tleenx2_20040530-3.dsc
  tleenx2_20040530-3.diff.gz
  tleenx2_20040530-3_i386.deb

Greetings,

Your Debian queue daemon


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



Re: eleventh-hour transition for mysql-using packages related to apache

2005-03-03 Thread Steve Langasek
On Thu, Mar 03, 2005 at 06:38:33AM +1100, Adam Conrad wrote:
> Theodore Ts'o said:

> > My system (currently running unstable, but it from the your description
> > it sounds like it may be happening on sarge as well) has an
> > apache2/mysql/php4 combination which blows up the moment you try to open
> > a connection to a mysql database.

> Are you sure you're note experiencing the bugs listed in #295998 and
> #296694, which are fixed in 4.3.10-8 in unstable?... If not, then I guess
> the transition has started with some packages and not others, and we need
> to resolve that ASAP.  It was stalled for a bit pending some license
> issues, but Steve and I got that resolved upstream recently.

> Steve, should we be going ahead with the push to make this transition
> occur as soon as we can, now that the license mess is sorted?

Yes, now that the license issue has been sorted out and we've finally gotten
the PHP4 ABI change/security fixes into testing, I think it's time at last
to get moving on the libmysqlclient transition.

The timing is rotten for me to do anything here until probably the middle of
next week; but if maintainers can use the weekend for uploading packages
built against libmysqlclient12, I'll follow through with the rest of the
original bug filing/NMUing plan on Wednesday.  (My own maintainer uploads
will most likely have to wait until then as well.)

Please refer to 
if you need a reminder of what needs to happen.  The adjusted timeline will
be as follows:

- Maintainer uploads to transition to libmysqlclient12 will begin this
  weekend.  This will most likely not include myodbc, but may include php4
  if I rope Adam into it.
- On Wednesday, Mar 9 I will file grave bus on any remaining packages from
  the original list that have not been relinked against libmysqlclient12.
- On Saturday, Mar 12 I will begin NMUing any packages from that list which
  have not been fixed.

Thanks,
-- 
Steve Langasek
postmodern programmer


signature.asc
Description: Digital signature


tleenx2_20040530-3_i386.changes ACCEPTED

2005-03-03 Thread Debian Installer

Accepted:
tleenx2_20040530-3.diff.gz
  to pool/main/t/tleenx2/tleenx2_20040530-3.diff.gz
tleenx2_20040530-3.dsc
  to pool/main/t/tleenx2/tleenx2_20040530-3.dsc
tleenx2_20040530-3_i386.deb
  to pool/main/t/tleenx2/tleenx2_20040530-3_i386.deb
Announcing to debian-devel-changes@lists.debian.org
Closing bugs: 253369 


Thank you for your contribution to Debian.


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



Processing of wpp_2.13.1.33b-4_i386.changes

2005-03-03 Thread Archive Administrator
wpp_2.13.1.33b-4_i386.changes uploaded successfully to localhost
along with the files:
  wpp_2.13.1.33b-4.dsc
  wpp_2.13.1.33b-4.diff.gz
  wpp_2.13.1.33b-4_all.deb

Greetings,

Your Debian queue daemon


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



wpp_2.13.1.33b-4_i386.changes ACCEPTED

2005-03-03 Thread Debian Installer

Accepted:
wpp_2.13.1.33b-4.diff.gz
  to pool/main/w/wpp/wpp_2.13.1.33b-4.diff.gz
wpp_2.13.1.33b-4.dsc
  to pool/main/w/wpp/wpp_2.13.1.33b-4.dsc
wpp_2.13.1.33b-4_all.deb
  to pool/main/w/wpp/wpp_2.13.1.33b-4_all.deb
Announcing to debian-devel-changes@lists.debian.org


Thank you for your contribution to Debian.


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



Processing of ic35link_1.18-2_i386.changes

2005-03-03 Thread Archive Administrator
ic35link_1.18-2_i386.changes uploaded successfully to localhost
along with the files:
  ic35link_1.18-2.dsc
  ic35link_1.18-2.diff.gz
  ic35link_1.18-2_i386.deb

Greetings,

Your Debian queue daemon


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



ic35link override disparity

2005-03-03 Thread Debian Installer
There are disparities between your recently accepted upload and the
override file for the following file(s):

ic35link_1.18-2_i386.deb: package says priority is optional, override says 
extra.

Either the package or the override file is incorrect.  If you think
the override is correct and the package wrong please fix the package
so that this disparity is fixed in the next upload.  If you feel the
override is incorrect then please reply to this mail and explain why.

[NB: this is an automatically generated mail; if you replied to one
like it before and have not received a response yet, please ignore
this mail.  Your reply needs to be processed by a human and will be in
due course, but until then the installer will send these automated
mails; sorry.]

--
Debian distribution maintenance software

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


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



ic35link_1.18-2_i386.changes ACCEPTED

2005-03-03 Thread Debian Installer

Accepted:
ic35link_1.18-2.diff.gz
  to pool/main/i/ic35link/ic35link_1.18-2.diff.gz
ic35link_1.18-2.dsc
  to pool/main/i/ic35link/ic35link_1.18-2.dsc
ic35link_1.18-2_i386.deb
  to pool/main/i/ic35link/ic35link_1.18-2_i386.deb
Announcing to debian-devel-changes@lists.debian.org
Closing bugs: 156363 


Thank you for your contribution to Debian.


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



Processing of doomlegacy-data_1.41release-2_i386.changes

2005-03-03 Thread Archive Administrator
doomlegacy-data_1.41release-2_i386.changes uploaded successfully to localhost
along with the files:
  doomlegacy-data_1.41release-2.dsc
  doomlegacy-data_1.41release-2.tar.gz
  doomlegacy-data_1.41release-2_all.deb

Greetings,

Your Debian queue daemon


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



doomlegacy-data_1.41release-2_i386.changes ACCEPTED

2005-03-03 Thread Debian Installer

Accepted:
doomlegacy-data_1.41release-2.dsc
  to pool/contrib/d/doomlegacy-data/doomlegacy-data_1.41release-2.dsc
doomlegacy-data_1.41release-2.tar.gz
  to pool/contrib/d/doomlegacy-data/doomlegacy-data_1.41release-2.tar.gz
doomlegacy-data_1.41release-2_all.deb
  to pool/contrib/d/doomlegacy-data/doomlegacy-data_1.41release-2_all.deb
Announcing to debian-devel-changes@lists.debian.org


Thank you for your contribution to Debian.


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