git: 6e8c728f2a7b - main - games/tetzle: update 3.0.1 → 3.0.2
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 07 Mar 2025 23:55:48 UTC
The branch main has been updated by amdmi3: URL: https://cgit.FreeBSD.org/ports/commit/?id=6e8c728f2a7be413dc8554ccabd05a9b6435170b commit 6e8c728f2a7be413dc8554ccabd05a9b6435170b Author: Dmitry Marakasov <amdmi3@FreeBSD.org> AuthorDate: 2025-03-05 17:27:05 +0000 Commit: Dmitry Marakasov <amdmi3@FreeBSD.org> CommitDate: 2025-03-07 22:55:46 +0000 games/tetzle: update 3.0.1 → 3.0.2 --- games/tetzle/Makefile | 4 ++-- games/tetzle/distinfo | 6 +++--- games/tetzle/files/patch-src_piece.cpp | 14 -------------- 3 files changed, 5 insertions(+), 19 deletions(-) diff --git a/games/tetzle/Makefile b/games/tetzle/Makefile index dd22f31bfd82..612deb4bd0b5 100644 --- a/games/tetzle/Makefile +++ b/games/tetzle/Makefile @@ -1,5 +1,5 @@ PORTNAME= tetzle -PORTVERSION= 3.0.1 +PORTVERSION= 3.0.2 CATEGORIES= games MASTER_SITES= https://gottcode.org/${PORTNAME}/ @@ -10,7 +10,7 @@ WWW= https://gottcode.org/tetzle/ LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake compiler:c++17-lang desktop-file-utils qt:6 tar:bzip2 +USES= cmake compiler:c++17-lang desktop-file-utils gettext-tools qt:6 tar:bzip2 USE_QT= base tools:build OPTIONS_DEFINE= NLS diff --git a/games/tetzle/distinfo b/games/tetzle/distinfo index ec355addff10..b3e58f7d23c1 100644 --- a/games/tetzle/distinfo +++ b/games/tetzle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1736973761 -SHA256 (tetzle-3.0.1.tar.bz2) = 1961327cad9c3a551c8f71f8fb3d071df97310ec69f1fec179663c798da10856 -SIZE (tetzle-3.0.1.tar.bz2) = 1038819 +TIMESTAMP = 1741186134 +SHA256 (tetzle-3.0.2.tar.bz2) = bb56588ba27e15014c3798989e0b78556efa618dac5d09ae4463196e35b0c47c +SIZE (tetzle-3.0.2.tar.bz2) = 1036659 diff --git a/games/tetzle/files/patch-src_piece.cpp b/games/tetzle/files/patch-src_piece.cpp deleted file mode 100644 index 696c1316340d..000000000000 --- a/games/tetzle/files/patch-src_piece.cpp +++ /dev/null @@ -1,14 +0,0 @@ -Fixes crash caused by invalidating m_neighbours iterator by -removing the very element we're currently itarating over in -attach(). Reported upstream. - ---- src/piece.cpp.orig 2025-01-06 15:00:16 UTC -+++ src/piece.cpp -@@ -94,6 +94,7 @@ void Piece::attachSolutionNeighbors() - if (delta.manhattanLength() <= m_attach_margin) { - piece->moveBy(delta); - attach(piece); -+ return; - } - } - }