pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/games/eureka



Module Name:    pkgsrc
Committed By:   micha
Date:           Fri Jul 12 11:13:13 UTC 2024

Modified Files:
        pkgsrc/games/eureka: Makefile distinfo
        pkgsrc/games/eureka/patches: patch-src_CMakeLists.txt

Log Message:
games/eureka: Update to 2.0.2

Disable downloads for Apple platforms.

# CHANGES IN Eureka 2.0.2

(Since version 2.0.1)

## Bug fixes

* Fixed a crash happening when deleting all things from the map.
* Fixed a crash happening when deleting a group of linedefs.
* Fixed a bug where the linedef splitting hint wouldn't show up when
  in FREE grid mode (introduced by 2.0.0).


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 pkgsrc/games/eureka/Makefile
cvs rdiff -u -r1.8 -r1.9 pkgsrc/games/eureka/distinfo
cvs rdiff -u -r1.1 -r1.2 pkgsrc/games/eureka/patches/patch-src_CMakeLists.txt

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/games/eureka/Makefile
diff -u pkgsrc/games/eureka/Makefile:1.9 pkgsrc/games/eureka/Makefile:1.10
--- pkgsrc/games/eureka/Makefile:1.9    Mon Jul  8 14:04:42 2024
+++ pkgsrc/games/eureka/Makefile        Fri Jul 12 11:13:13 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.9 2024/07/08 14:04:42 micha Exp $
+# $NetBSD: Makefile,v 1.10 2024/07/12 11:13:13 micha Exp $
 
-DISTNAME=      eureka-2.0.1
+DISTNAME=      eureka-2.0.2
 CATEGORIES=    games
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=ioan-chera/}
 GITHUB_PROJECT=        eureka-editor

Index: pkgsrc/games/eureka/distinfo
diff -u pkgsrc/games/eureka/distinfo:1.8 pkgsrc/games/eureka/distinfo:1.9
--- pkgsrc/games/eureka/distinfo:1.8    Mon Jul  8 14:04:42 2024
+++ pkgsrc/games/eureka/distinfo        Fri Jul 12 11:13:13 2024
@@ -1,10 +1,10 @@
-$NetBSD: distinfo,v 1.8 2024/07/08 14:04:42 micha Exp $
+$NetBSD: distinfo,v 1.9 2024/07/12 11:13:13 micha Exp $
 
-BLAKE2s (eureka-2.0.1.tar.gz) = 7c566115453056d3efe853d88269d95dbdeac57248ee48b111d02b3ae9bd309c
-SHA512 (eureka-2.0.1.tar.gz) = 18f6ffd9e28a9679265670f1677564eb5319c2011a038cc9516f1768456028e58e50c4d5c70b15f0d0f25fdafed8762efde4b589a095418ae1ca3103f869d486
-Size (eureka-2.0.1.tar.gz) = 2387560 bytes
+BLAKE2s (eureka-2.0.2.tar.gz) = b29ad046135dc58ef7d874448373832e9f8d738b1ef2ac5dc1e8327cfaa79033
+SHA512 (eureka-2.0.2.tar.gz) = dc45d5a94bca0bc6c892ea90473d6c66e67326cf49797493b41ce5524a38196a31639db3579d1b4138b8dfd1570057a237817c668e47007a72a5b1f2f8991257
+Size (eureka-2.0.2.tar.gz) = 2388549 bytes
 SHA1 (patch-CMakeLists.txt) = 0eda67e8a101d9299bc933f2f403b4e8b940a689
-SHA1 (patch-src_CMakeLists.txt) = 7291065f665f00e6d9eda2cbdf56769360b40691
+SHA1 (patch-src_CMakeLists.txt) = ba927270b9d63035b84134c683c74f89d5362124
 SHA1 (patch-src_m__files.cc) = a547b17d578ada79e20d006f786b1a594ef34700
 SHA1 (patch-src_m__strings.h) = e8b793e0a8943f3371792e07ac552e8e22e2c248
 SHA1 (patch-src_main.cc) = fe5d1f35637010de7e56e7384a29045f64e9667a

Index: pkgsrc/games/eureka/patches/patch-src_CMakeLists.txt
diff -u pkgsrc/games/eureka/patches/patch-src_CMakeLists.txt:1.1 pkgsrc/games/eureka/patches/patch-src_CMakeLists.txt:1.2
--- pkgsrc/games/eureka/patches/patch-src_CMakeLists.txt:1.1    Mon Jul  8 14:04:42 2024
+++ pkgsrc/games/eureka/patches/patch-src_CMakeLists.txt        Fri Jul 12 11:13:13 2024
@@ -1,11 +1,21 @@
-$NetBSD: patch-src_CMakeLists.txt,v 1.1 2024/07/08 14:04:42 micha Exp $
+$NetBSD: patch-src_CMakeLists.txt,v 1.2 2024/07/12 11:13:13 micha Exp $
 
+Disable downloads for Apple platforms.
 Remove" -Werror".
 Add "-Wno-cast-function-type".
 Remove duplicated flags (GCC fails because they are inserted with quotes).
 
---- src/CMakeLists.txt.orig    2024-07-04 06:00:57.000000000 +0000
+--- src/CMakeLists.txt.orig    2024-07-09 18:15:50.000000000 +0000
 +++ src/CMakeLists.txt
+@@ -237,7 +237,7 @@ else()
+     target_compile_definitions(eurekasrc PUBLIC NO_OPENGL)
+ endif()
+ 
+-if(APPLE OR WIN32)
++if(WIN32)
+     message(STATUS "Using local FLTK for portability.")
+ 
+       set(LOCAL_FLTK_VERSION "1.3.8")
 @@ -359,7 +359,7 @@ if(MSVC)
  endif()
  



Home | Main Index | Thread Index | Old Index