summaryrefslogtreecommitdiff
path: root/games-arcade/blobby
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2017-12-23 20:48:53 +0000
committerV3n3RiX <venerix@redcorelinux.org>2017-12-23 20:48:53 +0000
commit51536d2fe4697ba9114d611178bb9e20d3d5b729 (patch)
tree30b91d98e65985a575940ed49e756697c1f049c2 /games-arcade/blobby
parent4ab6db5717ef23f29320d4c6fb9ebdb8dec1f193 (diff)
gentoo resync : 23.12.2017
Diffstat (limited to 'games-arcade/blobby')
-rw-r--r--games-arcade/blobby/Manifest1
-rw-r--r--games-arcade/blobby/files/blobby-0.9c-gcc47.patch66
2 files changed, 0 insertions, 67 deletions
diff --git a/games-arcade/blobby/Manifest b/games-arcade/blobby/Manifest
index ba0dafe98150..4bbfdb15c498 100644
--- a/games-arcade/blobby/Manifest
+++ b/games-arcade/blobby/Manifest
@@ -1,4 +1,3 @@
-AUX blobby-0.9c-gcc47.patch 1615 BLAKE2B 3315bb113c2947d7859a0f30d09581300ba29fac6d06bccbe93018a71ce408f37e991361f27e15cc37b0bcfe472a2be9f9c7e883d92a8acdd03ea9079679a822 SHA512 bda92520c66bcba774dd40738f33842b60a33166affc20b9de83e7025270b9aab8a6aac9e854263e08826e11c585af91571ac354efdb1f2a0b9a6458180ec69d
AUX blobby-1.0-compile.patch 953 BLAKE2B c946783dd30b7f10c5f8cd4db932ef1c913fc10dbb8d83d23c0985d07cd2e96a4dda242914a96a2925ed7d8510035c0014641077278fb5600acab54b574d7bc7 SHA512 da389d12f388cfd48a4259be72e076bfff65258e6ff27c9d8ea815e9c04ce99520fc321b17cfcc95241e1ec7b5f70dee7d6a5dd05c36e351648c67ee5226d078
AUX blobby-1.0-install.patch 669 BLAKE2B c23270394ce98e271713da8af60d8b8f510d1a6f69950485af060eacae977942b2490eb9450faaea25c6adb29a5e216356f68cfd48cb13aca97e9b4eb582d294 SHA512 ed31fd4a8f6e5c0f30bfbaf331c5b4dc51250c72481d38b556bceed673de5ee8c1fe89c5002e15125202551023e3d836937eeb1de1121e78f60c15132b5850c9
AUX blobby-1.0-paths.patch 1237 BLAKE2B 77199702e08216ce741698b7435288f4536e6304a3fec09f2ef57bd73004d3306d9430230a2d8fdb1fc3a8018765c3a7d7662501eb6eb1caa6b29a858a96a798 SHA512 63c0ea107197ec2bed46b34d6cebbd0df1cc09477d6253ee8f325a554608456b0a34b301201e4d774c985df0512ba330105a5ec2be29ba34250a3a7311437793
diff --git a/games-arcade/blobby/files/blobby-0.9c-gcc47.patch b/games-arcade/blobby/files/blobby-0.9c-gcc47.patch
deleted file mode 100644
index be873b7af0d1..000000000000
--- a/games-arcade/blobby/files/blobby-0.9c-gcc47.patch
+++ /dev/null
@@ -1,66 +0,0 @@
---- src/raknet/BinarySearchTree.h.old 2012-06-21 09:09:08.389412319 +0200
-+++ src/raknet/BinarySearchTree.h 2012-06-21 09:10:39.830991876 +0200
-@@ -338,12 +338,12 @@
- if ( current->left == 0 )
- left_height = 0;
- else
-- left_height = height( current->left );
-+ left_height = this->height( current->left );
-
- if ( current->right == 0 )
- right_height = 0;
- else
-- right_height = height( current->right );
-+ right_height = this->height( current->right );
-
- if ( right_height - left_height == 2 )
- {
-@@ -371,7 +371,7 @@
- if ( current == this->root )
- break;
-
-- current = find_parent( *( current->item ) );
-+ current = this->find_parent( *( current->item ) );
-
- }
- }
-@@ -400,7 +400,7 @@
- if ( A == 0 )
- return false;
-
-- return height( A->right ) > height( A->left );
-+ return this->height( A->right ) > this->height( A->left );
- }
-
- template <class BinarySearchTreeType>
-@@ -409,7 +409,7 @@
- if ( A == 0 )
- return false;
-
-- return height( A->left ) > height( A->right );
-+ return this->height( A->left ) > this->height( A->right );
- }
-
- template <class BinarySearchTreeType>
-@@ -446,8 +446,8 @@
-
- */
-
-- B = find_parent( *( C->item ) );
-- A = find_parent( *( B->item ) );
-+ B = this->find_parent( *( C->item ) );
-+ A = this->find_parent( *( B->item ) );
- D = C->right;
-
- if ( A )
-@@ -510,8 +510,8 @@
-
- */
-
-- B = find_parent( *( C->item ) );
-- A = find_parent( *( B->item ) );
-+ B = this->find_parent( *( C->item ) );
-+ A = this->find_parent( *( B->item ) );
- D = C->left;
-
- if ( A )