pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/games/quakespasm quakespasm: update to 0.95.1



details:   https://anonhg.NetBSD.org/pkgsrc/rev/36f20dea3ddf
branches:  trunk
changeset: 387932:36f20dea3ddf
user:      snj <snj%pkgsrc.org@localhost>
date:      Thu Nov 10 17:35:54 2022 +0000

description:
quakespasm: update to 0.95.1

Changes in 0.95.1

  * Allow mixing lit and unlit textures in the same map.
  * Water texture mipmapping support - fixes glistening effect on distant
    water.
  * Fix screen flashes in some maps with AMD's new drivers.
  * Defend against zero-sized textures, e.g. __TB_empty in qbj_grue.bsp
  * Fix possible file pointer leak in game load code.
  * Minor code cleanups. Updated third party code, e.g. SDL, music codecs, etc.
  * Thanks to 'temx' for his patches.

Changes in 0.95.0

  * Add support for lit water (patch contributed by Josiah Jack, with fixes
    from Eric Wasylishen.)
  * Add model scale support -- requires protocol 999. (Original patch
    contributed by Josiah Jack with fixes from temx and Andrei Drexler. Thanks
    to Eric Wasylishen, MH and Spike for useful discussions.)
  * Add sv_cheats cvar for 2021 rerelease (patch from Andrei Drexler).
  * Clear the startdemo list on game change (patch by Andrei Drexler).
  * Try light trace from entity origin first (patch by Andrei Drexler).
  * Backport a few fixes to the bundled SDL2-2.0.22 version.

Changes in 0.94.7

  * Fix console history buffer wrapping.
  * Fix wrong external texture use after vid_restart.
  * Update lodepng from mainstream git.
  * Miscellaneous source code cleanups.

Changes in 0.94.6

  * Server protocol size check fixes for sounds and particles.
  * An invalid memory access fix in the jpg screenshot writer.
  * Basic dependency tracking in Makefiles.
  * Backported a few fixes to the bundled SDL2-2.0.22 version.
  * Minor build fix for C++ compilers.
  * Other small improvements elsewhere in the code.

Changes in 0.94.5

  * Compatibility with new SDL2 versioning scheme.
  * Revised min/max/clamp macros' usage.
  * Fixed a potential undefined behavior in R_DrawAliasModel.
  * Fixed parsing of the time argument of svc_fog server message. (it has been
    broken for more than 20 years and has never seem to have been used.)
  * Other small improvements elsewhere in the code.
  * Backported a few fixes to the bundled SDL2-2.0.22 version.

diffstat:

 games/quakespasm/Makefile               |   5 ++---
 games/quakespasm/distinfo               |  10 +++++-----
 games/quakespasm/patches/patch-Makefile |  12 ++++++------
 3 files changed, 13 insertions(+), 14 deletions(-)

diffs (52 lines):

diff -r 263abf7117ab -r 36f20dea3ddf games/quakespasm/Makefile
--- a/games/quakespasm/Makefile Thu Nov 10 14:59:02 2022 +0000
+++ b/games/quakespasm/Makefile Thu Nov 10 17:35:54 2022 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.18 2022/09/11 12:51:47 wiz Exp $
+# $NetBSD: Makefile,v 1.19 2022/11/10 17:35:54 snj Exp $
 
-DISTNAME=      quakespasm-0.94.4
-PKGREVISION=   2
+DISTNAME=      quakespasm-0.95.1
 CATEGORIES=    games
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=quakespasm/}
 
diff -r 263abf7117ab -r 36f20dea3ddf games/quakespasm/distinfo
--- a/games/quakespasm/distinfo Thu Nov 10 14:59:02 2022 +0000
+++ b/games/quakespasm/distinfo Thu Nov 10 17:35:54 2022 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.11 2022/05/15 17:01:47 nia Exp $
+$NetBSD: distinfo,v 1.12 2022/11/10 17:35:54 snj Exp $
 
-BLAKE2s (quakespasm-0.94.4.tar.gz) = 1731e6eb963bbf5395741cfcec256252ed581a9baed661bb0279990d05f1aea6
-SHA512 (quakespasm-0.94.4.tar.gz) = 6d3bddec3153978fad44faef1c81ecb662e36e148c33cf67dea273848238af499bf3327ce8a023d44802d4f3e27ede50ccb3831102db317d6ace53155404348b
-Size (quakespasm-0.94.4.tar.gz) = 11174546 bytes
-SHA1 (patch-Makefile) = 45a7a31e3bb1865c287f3c6669a4eba120ab2b50
+BLAKE2s (quakespasm-0.95.1.tar.gz) = 187f96a45d18354b74477717a085e2b2e96d0a04eab229066d1f9a7c3790bd8f
+SHA512 (quakespasm-0.95.1.tar.gz) = 7e5da905532d88ccf794160e929727f9fdb1c9f2d214789d29e96fd807e8f66ab8f2a62101481c07874acba31ccaa6efb8defb0e25b9f031e4cf50fb5794b4d2
+Size (quakespasm-0.95.1.tar.gz) = 10826985 bytes
+SHA1 (patch-Makefile) = 3f9ab71014192bf1d956015c280ddaac9b01306e
diff -r 263abf7117ab -r 36f20dea3ddf games/quakespasm/patches/patch-Makefile
--- a/games/quakespasm/patches/patch-Makefile   Thu Nov 10 14:59:02 2022 +0000
+++ b/games/quakespasm/patches/patch-Makefile   Thu Nov 10 17:35:54 2022 +0000
@@ -1,14 +1,14 @@
-$NetBSD: patch-Makefile,v 1.1 2022/01/17 13:48:27 nia Exp $
+$NetBSD: patch-Makefile,v 1.2 2022/11/10 17:35:54 snj Exp $
 
 Don't clobber LDFLAGS.
 
---- Makefile.orig      2021-09-04 20:56:50.000000000 +0000
-+++ Makefile
-@@ -49,7 +49,6 @@ STRIP ?= strip
+--- Makefile.orig      2022-06-27 17:02:56.000000000 -0700
++++ Makefile   2022-11-10 09:19:26.034475869 -0800
+@@ -50,7 +50,6 @@ STRIP ?= strip
  PKG_CONFIG ?= pkg-config
  
  CPUFLAGS=
 -LDFLAGS =
  DFLAGS ?=
- CFLAGS ?= -Wall -Wno-trigraphs
- CFLAGS += $(CPUFLAGS)
+ CFLAGS ?= -Wall -Wno-trigraphs -MMD
+ CFLAGS += $(call check_gcc,-std=gnu11,)



Home | Main Index | Thread Index | Old Index