Your message dated Fri, 17 Jan 2014 22:05:04 +0000
with message-id <[email protected]>
and subject line Bug#651309: fixed in warzone2100 3.1~beta11-2.1
has caused the Debian Bug report #651309,
regarding warzone2100: Porting patch for miniupnpc 1.6
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
651309: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=651309
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: warzone2100
Version: 2.3.8-1
Severity: normal
Tags: patch
User: [email protected]
Usertags: origin-ubuntu precise ubuntu-patch

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Dear Maintainer,

In Ubuntu, the attached patch was applied to achieve the following:

  * d/patches/0002_miniupnpc8-compat.patch: Port usage of miniupnpc API 
    to version 1.6.

miniupnpc was recently upgraded to version 1.6 in Debian experimental and 
Ubuntu precise; this patch provides a minimal port to the new version of 
the API which supports ipv6 and UPNP lease times.

Thanks for considering the patch.


- -- System Information:
Debian Release: wheezy/sid
  APT prefers precise-updates
  APT policy: (500, 'precise-updates'), (500, 'precise-security'), (500, 
'precise')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-3-generic (SMP w/8 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

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

iQIcBAEBCAAGBQJO36BXAAoJEL/srsug59jDkloP/jcJmpU5dfjJ7ykVqs4T8JSD
KTHj0GCF24LzItAwPadFH4BMbzDR3nr0UspxGZU+P+Bi1He/9u/vnqM5hYEdNYx8
qhYfOFhpnce1BdjDwNRueovRdIt1Yc0PeZBoSiRKNIToC8cJinP5rBJGZyOLInpQ
nqwJQmU4TuICs5lAJI2teZlZhyogo9hjuyCLqCcmmq0l6lPkePW3+v0VQ4dwWJTC
g5nw0zrrvjtQtbQYBsUZxi51nbvKaH3jXtmO8PeM6KrFvIWx23Z+tukZlTTnct4d
Oyi83s/jFfmiFn0RRr3S/TfOyRTvs9AU6Kd3nSKHVfyzSgK38Qeb6AMNRgyBMJlj
y3LQmSAhCFHkJiX0jFnLJ7FHTMGLjillesrrGkOK6Kd8/r39bmK+iOd2hlkjL84F
7bq/VREAx2BjqBhWH5cQcdIJ+HEFwIDH4mFCbuTo1eL78y3hhnHS+VdJ8TvlBdrD
Uxr2hYBr3sgPi6bVE+J4PKNMDDggo849GQ7RcTq4GIWci5sm3JxOkENrmZm1fvUL
oU7A2n2svVRXGYhIg2QMU2aVUgc8Z5UndYmfbsRIxuo4VrmKOxwmi6Bv+9Q/yS0g
3H6izo1rLOmYGuqURMpDuaNheo1xPnARrgX2zQnKh6lw3Z0/P+CG7ZDkv+oo4jpI
zvM2KFXwRThC8ip0BAUa
=Dqrg
-----END PGP SIGNATURE-----
diff -Nru warzone2100-2.3.8/debian/patches/0002_miniupnpc8-compat.patch warzone2100-2.3.8/debian/patches/0002_miniupnpc8-compat.patch
--- warzone2100-2.3.8/debian/patches/0002_miniupnpc8-compat.patch	1970-01-01 01:00:00.000000000 +0100
+++ warzone2100-2.3.8/debian/patches/0002_miniupnpc8-compat.patch	2011-12-07 16:28:19.000000000 +0000
@@ -0,0 +1,26 @@
+Description: Compatibility patch for miniupnpc 1.6
+Author: James Page <[email protected]>
+Forwarded: no
+
+Index: warzone2100-2.3.8/lib/netplay/netplay.c
+===================================================================
+--- warzone2100-2.3.8.orig/lib/netplay/netplay.c	2011-12-07 12:40:35.000000000 +0000
++++ warzone2100-2.3.8/lib/netplay/netplay.c	2011-12-07 16:21:41.281012660 +0000
+@@ -2067,7 +2067,7 @@
+ 	if (NetPlay.isUPNP)
+ 	{
+ 		debug(LOG_NET, "Searching for UPnP devices for automatic port forwarding...");
+-		devlist = upnpDiscover(2000, NULL, NULL, 0);
++		devlist = upnpDiscover(2000, NULL, NULL, 0, 0, NULL);
+ 		debug(LOG_NET, "UPnP device search finished.");
+ 		if (devlist)
+ 		{
+@@ -2129,7 +2129,7 @@
+ 	UPNP_GetExternalIPAddress(urls.controlURL, data.first.servicetype, externalIP);
+ 	sprintf(port_str, "%d", port);
+ 	r = UPNP_AddPortMapping(urls.controlURL, data.first.servicetype,
+-			port_str, port_str, lanaddr, "Warzone 2100", "TCP", 0);
++			port_str, port_str, lanaddr, "Warzone 2100", "TCP", 0, 0);
+ 	if (r != UPNPCOMMAND_SUCCESS)
+ 	{
+ 		debug(LOG_NET, "AddPortMapping(%s, %s, %s) failed\n", port_str, port_str, lanaddr);
diff -Nru warzone2100-2.3.8/debian/patches/series warzone2100-2.3.8/debian/patches/series
--- warzone2100-2.3.8/debian/patches/series	2011-03-11 09:21:36.000000000 +0000
+++ warzone2100-2.3.8/debian/patches/series	2011-12-07 16:16:59.000000000 +0000
@@ -1 +1,2 @@
 0001-Switch-to-using-external-miniupnpc.patch
+0002_miniupnpc8-compat.patch

--- End Message ---
--- Begin Message ---
Source: warzone2100
Source-Version: 3.1~beta11-2.1

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

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.
Sebastian Ramacher <[email protected]> (supplier of updated warzone2100 
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: SHA256

Format: 1.8
Date: Wed, 15 Jan 2014 22:18:01 +0100
Source: warzone2100
Binary: warzone2100 warzone2100-data warzone2100-dbg warzone2100-music
Architecture: source amd64 all
Version: 3.1~beta11-2.1
Distribution: unstable
Urgency: medium
Maintainer: Debian Games Team <[email protected]>
Changed-By: Sebastian Ramacher <[email protected]>
Description: 
 warzone2100 - 3D real time strategy game
 warzone2100-data - data files for warzone2100
 warzone2100-dbg - debug files for warzone2100
 warzone2100-music - official music for warzone2100
Closes: 651309
Changes: 
 warzone2100 (3.1~beta11-2.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * debian/patches/miniupnpc8-compat.patch: Apply patch from James Page
     to fix compilation against miniupnpc 1.6. (Closes: #651309)
   * debian/control: Bump B-D on libminiupnpc-dev to >= 1.6 since the patch
     makes it incompatible with older versions.
Checksums-Sha1: 
 111a1d8300262900be02551f99068ac560f937d2 2644 warzone2100_3.1~beta11-2.1.dsc
 653ccf6b5f070bbc30e674bc9bc0c44caa8d0676 27496 
warzone2100_3.1~beta11-2.1.debian.tar.gz
 5555b0b486d404d3aefe241ae1b1894f76da1097 1343564 
warzone2100_3.1~beta11-2.1_amd64.deb
 79f137fcd6281b900490ee464e6b49b9f47540a5 46063462 
warzone2100-data_3.1~beta11-2.1_all.deb
 8a405eb72bf0f4a06eb3f374c3f5bdce986ab5a5 7558482 
warzone2100-dbg_3.1~beta11-2.1_amd64.deb
 78ef054db588a1f261d00c7eedfa81bd9b45eb2d 18277306 
warzone2100-music_3.1~beta11-2.1_all.deb
Checksums-Sha256: 
 57fd763edb0d581355d756173dbb732354840dd1002084d0a3ed146871a35209 2644 
warzone2100_3.1~beta11-2.1.dsc
 6cecfcc173011cdb0b3ab6cd1977eb791431acdfd5770831f1c56e20f81a4cbf 27496 
warzone2100_3.1~beta11-2.1.debian.tar.gz
 f847e7e0fc2533978b8c19b628d71922e04366334b04f50dfe57d1e754a77855 1343564 
warzone2100_3.1~beta11-2.1_amd64.deb
 394bfaaac83689ad6738dfca3d1c521a1f903b51edbb378b64a1551cdb07b8dd 46063462 
warzone2100-data_3.1~beta11-2.1_all.deb
 1a38a257003f8930a1147c70185992fe9ddc5d677fa04b07e4b27ae12c44fa78 7558482 
warzone2100-dbg_3.1~beta11-2.1_amd64.deb
 24eec884e85270e78ab666f57dbfbee46ab82ec007cdd07f8a6bc9b32b18f097 18277306 
warzone2100-music_3.1~beta11-2.1_all.deb
Files: 
 3af62dd40e94f4b595ee027673360107 2644 games optional 
warzone2100_3.1~beta11-2.1.dsc
 233310cb2df5099c117fca6909f79e70 27496 games optional 
warzone2100_3.1~beta11-2.1.debian.tar.gz
 48835766a5252ae046508173b6eb3989 1343564 games optional 
warzone2100_3.1~beta11-2.1_amd64.deb
 3c3d80e20f20e1bc18cfdee506c9c11a 46063462 games optional 
warzone2100-data_3.1~beta11-2.1_all.deb
 e64805d8493d6a2eeb655d8671ded2b7 7558482 debug extra 
warzone2100-dbg_3.1~beta11-2.1_amd64.deb
 7e07bd235db4dffb75feb88f6f478b57 18277306 games optional 
warzone2100-music_3.1~beta11-2.1_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBCAAGBQJS1vxZAAoJEGny/FFupxmT0vcP/3SCfEE1H8ArB6cmPnD6H3BE
nVlrsKC25qEhzVInSimioDvBqip8c3X/pdJZ3qCw9A7PDGzTbJiJvo8bo+Y6eli+
Y31om5WFIyZOx29tDGp9lsK4EZuWAVeVE2M911IHZJR5lBmjUHi7OPIxZ6Tju9t4
ACCnuJFNhwX/w3GdRcwqHUDo+gSqUlSO+GHq7lTwPxDNRKegWkF5xgaii3OL3ZYm
dJaRhOcedjv/l7WPlccTIOhehGcPJ8oFIhoJNLBX/74H9HLkv9j0BuJObzOHFPda
EKR0JekXoNsDz5kUE8iFSio1MUoyh/2DcS5CuyKmk1gu4dhjshWmERkkIo8+5dWV
oQhSUDRDb6YuxTKbQnpzC2DCqd3MmL22x+6gnPEWBguGUhnKkSD9wYiFZl/Q2AoR
J/GOC1iHDw9vQEXHJVxn/tvHryu7qGCT/bM6nz2IlHUrJTU4JLvjVudM9ctSbp5T
AQACoqyw9GdwIn1GeZzVS2L1Tqmsl4mOz8Xml8eQzmm64qdHcPrPmTucvyrXygp6
0LSoFUHL2Dy8+EccntD09QiBELfvQ7R99hJFIjcq/DcOSPdSnpwphvu8gIYpmvdu
jyK10J5sbenUwzf7M+5pAiSHaqgVBsdwCCDuVLOt5ah16QbPrah4rs+hJWlMER2w
nmS6hC46vnF2w0l4Ao36
=AG3R
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to