Your message dated Wed, 24 May 2006 23:02:07 -0700 with message-id <[EMAIL PROTECTED]> and subject line Bug#201196: fixed in psys 1.56-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)
--- Begin Message ---Package: psys Version: 1.56-3 I've made an NMU of psys, 1.56-3.1, in the DELAYED/4-day queue. The patch follows. -- Matt Kraai [EMAIL PROTECTED] Debian GNU/Linux diff -ur psys-1.56.orig/debian/changelog psys-1.56/debian/changelog --- psys-1.56.orig/debian/changelog 2003-07-14 11:34:33.000000000 +0200 +++ psys-1.56/debian/changelog 2003-07-14 11:02:18.000000000 +0200 @@ -1,3 +1,12 @@ +psys (1.56-3.1) unstable; urgency=low + + * Non-maintainer upload + * Avoid headers with the same name as system headers + (Closes: Bug#188913) + * Use stdarg.h instead of varargs.h (Closes: Bug#196275) + + -- Matt Kraai <[EMAIL PROTECTED]> Mon, 14 Jul 2003 11:02:18 +0200 + psys (1.56-3) unstable; urgency=low * Changed all '-O3' to '-O2', to avoid hppa problems diff -ur psys-1.56.orig/include/p2c/p2c.h psys-1.56/include/p2c/p2c.h --- psys-1.56.orig/include/p2c/p2c.h 2002-03-01 22:39:14.000000000 +0100 +++ psys-1.56/include/p2c/p2c.h 2003-07-14 11:07:16.000000000 +0200 @@ -70,15 +70,6 @@ #endif -#ifdef BSD -#include <strings.h> -#ifdef __MACHTEN__ -extern char *strdup(const char *); -#endif -#else -# include <string.h> -#endif - #ifdef linux #include <string.h> #include <stdlib.h> @@ -95,7 +86,6 @@ #endif #include <ctype.h> -#include <math.h> #include <setjmp.h> #include <assert.h> diff -ur psys-1.56.orig/src/newcrt.c psys-1.56/src/newcrt.c --- psys-1.56.orig/src/newcrt.c 2002-03-01 22:39:14.000000000 +0100 +++ psys-1.56/src/newcrt.c 2003-07-14 11:29:39.000000000 +0200 @@ -2,7 +2,7 @@ #define HIRES #include <stdio.h> -#ifdef OS2 +#if defined(OS2) || defined(linux) #include <stdarg.h> #else #include <varargs.h> @@ -307,7 +307,7 @@ } -extern void nc_fprintf(); +extern void nc_fprintf(FILE *outfile, Char *fmt, ...); static void show_string(str) @@ -839,7 +839,7 @@ *cp2 = '\0'; } -#ifndef OS2 +#if !defined(OS2) && !defined(linux) void nc_printf(va_alist) va_dcl @@ -872,8 +872,7 @@ #else -void nc_printf(fmt) -Char *fmt; +void nc_printf(Char *fmt, ...) { va_list args; @@ -902,10 +901,10 @@ } -#endif /* OS2 */ +#endif /* OS2 || linux */ -#ifndef OS2 +#if !defined(OS2) && !defined(linux) void zfprintf(va_alist) va_dcl @@ -926,9 +925,7 @@ #else -void zfprintf(outfile, fmt) -FILE *outfile; -Char *fmt; +void zfprintf(FILE *outfile, Char *fmt, ...) { va_list args; @@ -937,12 +934,13 @@ Char *p1, *p2; va_start(args, fmt); -/* This leaves OS2 a no-op */ + vfprintf(outfile, fmt, args); + va_end(args); } #endif -#ifndef OS2 +#if !defined(OS2) && !defined(linux) void nc_fprintf(va_alist) va_dcl @@ -977,9 +975,7 @@ #else -void nc_fprintf(outfile, fmt) -FILE *outfile; -Char *fmt; +void nc_fprintf(FILE *outfile, Char *fmt, ...) { va_list args;
--- End Message ---
--- Begin Message ---Source: psys Source-Version: 1.56-4 We believe that the bug you reported is fixed in the latest version of psys, which is due to be installed in the Debian FTP archive: libpsys-dev_1.56-4_i386.deb to pool/main/p/psys/libpsys-dev_1.56-4_i386.deb libpsys1_1.56-4_i386.deb to pool/main/p/psys/libpsys1_1.56-4_i386.deb psys_1.56-4.diff.gz to pool/main/p/psys/psys_1.56-4.diff.gz psys_1.56-4.dsc to pool/main/p/psys/psys_1.56-4.dsc A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [EMAIL PROTECTED], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Andrew Pollock <[EMAIL PROTECTED]> (supplier of updated psys 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, 15 Apr 2006 22:10:10 -0700 Source: psys Binary: libpsys1 libpsys-dev Architecture: source i386 Version: 1.56-4 Distribution: unstable Urgency: low Maintainer: Debian QA Group <[EMAIL PROTECTED]> Changed-By: Andrew Pollock <[EMAIL PROTECTED]> Description: libpsys-dev - p-system emulation libraries for Chipmunk tools [development] libpsys1 - p-system emulation runtime libraries for Chipmunk tools Closes: 188913 196275 201196 347106 Changes: psys (1.56-4) unstable; urgency=low . * QA Group upload orphaning this package * debian/rules: bumped debhelper compatibility version to 4 * debian/control: rephrased package description synopsis * debian/control: changed Section: to libdevel * Incorporates previous NMUs (closes: #201196) . psys (1.56-3.2) unstable; urgency=low . * Help xlibs-dev transition * Splitted xlibs-dev build-dep. (Closes: #347106) . psys (1.56-3.1) unstable; urgency=low . * Non-maintainer upload * Avoid headers with the same name as system headers (Closes: Bug#188913) * Use stdarg.h instead of varargs.h (Closes: Bug#196275) Files: 88f408b3b5727d1ae1574c5c5a68d2be 580 libdevel optional psys_1.56-4.dsc d12141690f46cc8bba75ea82d3b7e787 6540 libdevel optional psys_1.56-4.diff.gz 8855878f871a8548a1a3d2fdb5fd6e55 178448 libs optional libpsys1_1.56-4_i386.deb b9f8eeaacbb57ca14cdbc41951693b51 180266 libdevel optional libpsys-dev_1.56-4_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (GNU/Linux) iD8DBQFEdUKrIblXXKfZFgIRAlJmAJ9FjZBpU6jrJXEl7D8HVBzhd0FoXwCgl+jJ gkKsslbM3k7wUZDuXCRXa0A= =5mt/ -----END PGP SIGNATURE-----
--- End Message ---

