[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#30736: marked as done (NMU diffs)



Your message dated Tue, 10 Apr 2001 23:13:49 -0700
with message-id <20010410231349.C30672@kitenet.net>
and subject line no need for nmu diffs
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.)

Darren Benham
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 15 Dec 1998 12:39:15 +0000
Received: (qmail 4574 invoked from network); 15 Dec 1998 12:39:08 -0000
Received: from ahwau.xs4all.nl (HELO janux.wau.mis.ah.nl) (mail@194.109.102.29)
  by master.debian.org with SMTP; 15 Dec 1998 12:39:08 -0000
Received: from paul by janux.wau.mis.ah.nl with local (Exim 2.02 #1 (Debian))
	id 0zptkZ-0003AO-00; Tue, 15 Dec 1998 13:38:51 +0100
Date: Tue, 15 Dec 1998 13:38:50 +0100
From: Paul Slootman <paul@debian.org>
To: submit@bugs.debian.org
Subject: NMU diffs
Message-ID: <19981215133850.A12167@janux>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Mutt 0.94.15i
Sender: Paul Slootman <paul@wau.mis.ah.nl>

Package: mgt
Version: 2.31-1.1

Non-maintainer release, with source, after waiting for the maintainer
to react to bug #22886.

Paul Slootman

diff -ru old/mgt-2.31/debian/changelog mgt-2.31/debian/changelog
--- old/mgt-2.31/debian/changelog	Tue Dec 15 13:28:26 1998
+++ mgt-2.31/debian/changelog	Tue Dec 15 13:31:46 1998
@@ -1,3 +1,13 @@
+mgt (2.31-1.2) unstable; urgency=low
+
+  * Non-maintainer release with source after waiting 8 months for the
+    maintainer to do something; fixes: #22886
+  * sprinkled a couple of stdlib.h includes for malloc prototypes
+  * ditto string.h includes for strcpy/strlen prototypes
+  * remove debian/files and debian/substvars in clean target
+
+ -- Paul Slootman <paul@debian.org>  Tue, 15 Dec 1998 13:24:28 +0100
+
 mgt (2.31-1.1) unstable; urgency=low
 
   * Non-maintainer release.
diff -ru old/mgt-2.31/ascii.c mgt-2.31/ascii.c
--- old/mgt-2.31/ascii.c	Sun Jul 28 20:36:22 1996
+++ mgt-2.31/ascii.c	Tue Dec 15 13:26:09 1998
@@ -1,6 +1,8 @@
 /* ascii.c test version 9/2/92 wclrtoeol */
 /* "mgt" Copyright (c) 1991 Shodan  */
 
+#include <stdlib.h>
+#include <string.h>
 #include <ctype.h>
 #include "mgt.h"
 
diff -ru old/mgt-2.31/comment.c mgt-2.31/comment.c
--- old/mgt-2.31/comment.c	Sun Jul 28 20:36:23 1996
+++ mgt-2.31/comment.c	Tue Dec 15 13:26:24 1998
@@ -1,6 +1,7 @@
 /* "mgt" Copyright (c) 1991 Shodan  */
 
 #include "mgt.h"
+#include <stdlib.h>
 #include <string.h>
 #include <ctype.h>
 
diff -ru old/mgt-2.31/debian/rules mgt-2.31/debian/rules
--- old/mgt-2.31/debian/rules	Tue Dec 15 13:28:26 1998
+++ mgt-2.31/debian/rules	Tue Dec 15 13:30:19 1998
@@ -23,6 +23,7 @@
 	-rm -f wrapmgt build
 	-$(MAKE) -i clean
 	-rm -rf debian/tmp *~
+	-rm -f debian/files debian/substvars
 
 binary-indep:	checkroot build
 
diff -ru old/mgt-2.31/doit.c mgt-2.31/doit.c
--- old/mgt-2.31/doit.c	Sun Jul 28 20:36:25 1996
+++ mgt-2.31/doit.c	Tue Dec 15 13:26:45 1998
@@ -1,6 +1,7 @@
 /* "mgt" Copyright (c) 1991 Shodan  */
 
 #include "mgt.h"
+#include <string.h>
 
 int xcur, ycur;
 Token curPlayer;
diff -ru old/mgt-2.31/edit.c mgt-2.31/edit.c
--- old/mgt-2.31/edit.c	Sun Jul 28 20:36:26 1996
+++ mgt-2.31/edit.c	Tue Dec 15 13:26:52 1998
@@ -1,6 +1,8 @@
 /* "mgt" Copyright (c) 1991 Shodan  */
 
 #include "mgt.h"
+#include <stdlib.h>
+#include <string.h>
 
 int first;
 nodep buffer = 0;
diff -ru old/mgt-2.31/mgt.c mgt-2.31/mgt.c
--- old/mgt-2.31/mgt.c	Sun Jul 28 20:36:27 1996
+++ mgt-2.31/mgt.c	Tue Dec 15 13:27:09 1998
@@ -1,6 +1,7 @@
 /* "mgt" Copyright (c) 1991 Shodan  */
 
 
+#include <string.h>
 #include <signal.h>
 #include "mgt.h"
 
diff -ru old/mgt-2.31/parse.c mgt-2.31/parse.c
--- old/mgt-2.31/parse.c	Sun Jul 28 20:36:27 1996
+++ mgt-2.31/parse.c	Tue Dec 15 13:27:16 1998
@@ -1,5 +1,6 @@
 /* "mgt" Copyright (c) 1991 Shodan  */
 
+#include <stdlib.h>
 #include <string.h>
 #include "mgt.h"
 
diff -ru old/mgt-2.31/tree.c mgt-2.31/tree.c
--- old/mgt-2.31/tree.c	Sun Jul 28 20:36:28 1996
+++ mgt-2.31/tree.c	Tue Dec 15 13:27:23 1998
@@ -1,5 +1,7 @@
 /* "mgt" Copyright (c) 1991 Shodan  */
 
+#include <stdlib.h>
+#include <string.h>
 #include "mgt.h"
 
 
Binary files old/mgt-2.31/wrapmgt and mgt-2.31/wrapmgt differ
diff -ru old/mgt-2.31/wrapmgt.c mgt-2.31/wrapmgt.c
--- old/mgt-2.31/wrapmgt.c	Sun Jul 28 20:36:42 1996
+++ mgt-2.31/wrapmgt.c	Tue Dec 15 13:27:44 1998
@@ -1,4 +1,5 @@
-#include<stdio.h>
+#include <string.h>
+#include <stdio.h>
 
 main(argc, argv)
 int argc;
---------------------------------------
Received: (at 30736-done) by bugs.debian.org; 11 Apr 2001 06:13:51 +0000
>From joey@kitenet.net Wed Apr 11 01:13:51 2001
Return-path: <joey@kitenet.net>
Received: from kitenet.net [198.144.200.155] (postfix)
	by master.debian.org with esmtp (Exim 3.12 1 (Debian))
	id 14nDt0-0008Cl-00; Wed, 11 Apr 2001 01:13:50 -0500
Received: by kitenet.net (Postfix, from userid 500)
	id D21F0BC020; Tue, 10 Apr 2001 23:13:49 -0700 (PDT)
Date: Tue, 10 Apr 2001 23:13:49 -0700
From: Joey Hess <joeyh@debian.org>
To: 30736-done@bugs.debian.org, 89945-done@bugs.debian.org
Subject: no need for nmu diffs
Message-ID: <20010410231349.C30672@kitenet.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.3.17i
Delivered-To: 30736-done@bugs.debian.org

mgt is maintained by debian-qa, so you ARE the maintainers, so no NMU
diffs need be sent.

-- 
see shy jo



Reply to: