summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Heaven <tristan@gentoo.org>2007-02-14 02:24:19 +0000
committerTristan Heaven <tristan@gentoo.org>2007-02-14 02:24:19 +0000
commit26650e5cb446fcca51de18780adc9de00493b7cd (patch)
tree84dfe318b6d66b268c77efe7d5b8b562440590f5 /games-strategy
parentStable on alpha wrt bug #153726. (diff)
downloadhistorical-26650e5cb446fcca51de18780adc9de00493b7cd.tar.gz
historical-26650e5cb446fcca51de18780adc9de00493b7cd.tar.bz2
historical-26650e5cb446fcca51de18780adc9de00493b7cd.zip
rm old file
Package-Manager: portage-2.1.2-r9
Diffstat (limited to 'games-strategy')
-rw-r--r--games-strategy/freeciv/Manifest14
-rw-r--r--games-strategy/freeciv/files/freeciv-2.0.8-DoS.patch26
2 files changed, 10 insertions, 30 deletions
diff --git a/games-strategy/freeciv/Manifest b/games-strategy/freeciv/Manifest
index 9f39855e9de7..98297a8a15bd 100644
--- a/games-strategy/freeciv/Manifest
+++ b/games-strategy/freeciv/Manifest
@@ -1,7 +1,6 @@
-AUX freeciv-2.0.8-DoS.patch 1065 RMD160 f4a383a17a6508f7e95966d63bc03785156398e8 SHA1 9106687bf60cc1d321d57277e8a465402d85b99b SHA256 c3e3f83440b581aea1d2d9f46f10f4daeded8fa0f822f974439c6a7d783b190a
-MD5 6f66d4ce889a078a7a154b6e5c9842c9 files/freeciv-2.0.8-DoS.patch 1065
-RMD160 f4a383a17a6508f7e95966d63bc03785156398e8 files/freeciv-2.0.8-DoS.patch 1065
-SHA256 c3e3f83440b581aea1d2d9f46f10f4daeded8fa0f822f974439c6a7d783b190a files/freeciv-2.0.8-DoS.patch 1065
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
DIST freeciv-2.0.9.tar.bz2 8875323 RMD160 e79cfc1d00f4f1b7ff28e84aca42dd2ef1e158d5 SHA1 9e1b64a96f38821abadc636621d276f70dedd686 SHA256 e7f1eb6a240db4c48396d8920d103b8cf275b510e304dbbd2af6bb8ab5db4a98
DIST freeciv.png 3657 RMD160 6f283d6031b7b4ae3da21ddd5145084f147a7acd SHA1 929520ea26f3e3093f8ab1984ffd61c99c154511 SHA256 50af34df5f43fb90844561ea5f91bbf1fbb762d15ea56811e39c7ad3f2cc0160
DIST stdsounds3.tar.gz 118278 RMD160 46bb5fef4b2d3acf9959b3228c962bdf6591ea09 SHA1 103d02a0702687fb038f5187a321f8074b4ebfb5 SHA256 a3cc2be93c006c3a9492349aa4552bf059e45efc94135f09241877c221ae1bfa
@@ -20,3 +19,10 @@ SHA256 1423a4fdd4a79b1728a2056d9e300f7e1074253095d82726218d9e9b953888a3 metadata
MD5 8458999ea562257af9aaa4082f78199f files/digest-freeciv-2.0.9 687
RMD160 4cc68e40a018673d6e6ca32771d962c10dbb6a73 files/digest-freeciv-2.0.9 687
SHA256 85a62e60b82bb9f0a6444e5cfaf1bc5f87a29f640860a70d1935115de8ee3a5c files/digest-freeciv-2.0.9 687
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2.0.2 (GNU/Linux)
+
+iD8DBQFF0nLbdz7hIScOURERAnNIAKCVQ8hjvHTIaI7yvwsL0Wao6//n3ACdGElK
+rJHGYbXI5LLWZQpnlC45+88=
+=tggq
+-----END PGP SIGNATURE-----
diff --git a/games-strategy/freeciv/files/freeciv-2.0.8-DoS.patch b/games-strategy/freeciv/files/freeciv-2.0.8-DoS.patch
deleted file mode 100644
index 83a61dd1dc97..000000000000
--- a/games-strategy/freeciv/files/freeciv-2.0.8-DoS.patch
+++ /dev/null
@@ -1,26 +0,0 @@
---- trunk/server/unithand.c 2006/07/12 17:18:43 12065
-+++ trunk/server/unithand.c 2006/07/16 12:15:25 12106
-@@ -1622,7 +1622,8 @@
- struct tile *src_tile = map_pos_to_tile(packet->src_x, packet->src_y);
- int i;
-
-- if (!punit || packet->length < 0 || punit->activity != ACTIVITY_IDLE) {
-+ if (!punit || packet->length < 0 || punit->activity != ACTIVITY_IDLE
-+ || packet->length > MAX_LEN_ROUTE) {
- return;
- }
-
---- trunk/common/packets.c 2006/03/04 02:42:00 11710
-+++ trunk/common/packets.c 2006/07/24 08:37:08 12146
-@@ -562,8 +562,11 @@
- chunk->total_length, chunk->chunk_length);
-
- if (chunk->total_length < 0
-+ || chunk->chunk_length < 0
- || chunk->total_length >= MAX_ATTRIBUTE_BLOCK
- || chunk->offset < 0
-+ || chunk->offset > chunk->total_length /* necessary check on 32 bit systems */
-+ || chunk->chunk_length > chunk->total_length
- || chunk->offset + chunk->chunk_length > chunk->total_length
- || (chunk->offset != 0
- && chunk->total_length != pplayer->attribute_block_buffer.length)) {