aboutsummaryrefslogtreecommitdiff
path: root/games/armagetronad
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2020-02-20 09:49:33 +0000
committerYuri Victorovich <yuri@FreeBSD.org>2020-02-20 09:49:33 +0000
commitdba808e66e43e47220d448c3c8cce43bda6b74d7 (patch)
treed471f6877a98aa9d9f99f5f30a3eb66f1d12a1d5 /games/armagetronad
parent089a592dc88332fa37c5724200fb1306f1cfa7ea (diff)
downloadports-dba808e66e43e47220d448c3c8cce43bda6b74d7.tar.gz
ports-dba808e66e43e47220d448c3c8cce43bda6b74d7.zip
games/armagetronad: Update 0.2.8.3.4 -> 0.2.8.3.5
Reported by: portscout
Notes
Notes: svn path=/head/; revision=526560
Diffstat (limited to 'games/armagetronad')
-rw-r--r--games/armagetronad/Makefile3
-rw-r--r--games/armagetronad/distinfo6
-rw-r--r--games/armagetronad/files/patch-src_tron_gCycle.cpp16
3 files changed, 4 insertions, 21 deletions
diff --git a/games/armagetronad/Makefile b/games/armagetronad/Makefile
index 321f8dd7a413..ced0a2d764d4 100644
--- a/games/armagetronad/Makefile
+++ b/games/armagetronad/Makefile
@@ -1,9 +1,8 @@
# $FreeBSD$
PORTNAME= armagetronad
-DISTVERSION= 0.2.8.3.4
+DISTVERSION= 0.2.8.3.5
DISTVERSIONSUFFIX= .src
-PORTREVISION= 1
CATEGORIES= games
MASTER_SITES= SF/${PORTNAME}/stable/${DISTVERSION}/
diff --git a/games/armagetronad/distinfo b/games/armagetronad/distinfo
index b31717242538..199035aba976 100644
--- a/games/armagetronad/distinfo
+++ b/games/armagetronad/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1563837617
-SHA256 (armagetronad-0.2.8.3.4.src.tar.gz) = 446af57c614ed28b4aa1d5a0d818c9d67a621bf7832b9276c3029c0f5006fedd
-SIZE (armagetronad-0.2.8.3.4.src.tar.gz) = 2217387
+TIMESTAMP = 1582191189
+SHA256 (armagetronad-0.2.8.3.5.src.tar.gz) = b4c993558c08806c40e3c7095437451ffe9bc3d3f8c0310e58c50a81153446fc
+SIZE (armagetronad-0.2.8.3.5.src.tar.gz) = 2096771
diff --git a/games/armagetronad/files/patch-src_tron_gCycle.cpp b/games/armagetronad/files/patch-src_tron_gCycle.cpp
deleted file mode 100644
index 58705446a300..000000000000
--- a/games/armagetronad/files/patch-src_tron_gCycle.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
-This is a fix for a bug in how std::autoptr is handled.
-clang complains:
-gCycle.cpp:*:*: warning: reference cannot be bound to dereferenced null pointer in well-defined C++ code; pointer may be assumed to always convert to true
- [-Wundefined-bool-conversion]
-
---- src/tron/gCycle.cpp.orig 2011-09-11 10:41:47 UTC
-+++ src/tron/gCycle.cpp
-@@ -2712,7 +2712,7 @@ bool gCycle::Timestep(REAL currentTime){
- gCycleChatBot & bot = gCycleChatBot::Get( this );
- bot.Activate( currentTime );
- }
-- else if ( &(*chatBot_) )
-+ else if ( chatBot_.get() )
- {
- chatBot_->nextChatAI_ = 0;
- }