pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/games
Module Name: pkgsrc
Committed By: nia
Date: Tue Aug 31 08:23:15 UTC 2021
Modified Files:
pkgsrc/games/angband: Makefile.common distinfo
pkgsrc/games/angband-sdl: Makefile
Added Files:
pkgsrc/games/angband/patches: patch-configure.ac
Log Message:
angband: update to 4.2.3
Summary of Changes
* updates to necromancer and ranger spells
* improvements to quiver inscriptions
* many improvements to dungeon generation, especially robustness
* many improvements to testing and building the game, especially with
SDL2
* make the duration of multiple timed effects exactly the same
* allow selection for effects that used to give a random choice of
effects
* fix a bug that made radius of artifact lights too small by one
* improvements to handling in-game information on effects
* better documentation in datafiles
* debugging commands now use the Angband 4 command system
* upgrade of the NDS port to the 3DS with many improvements
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/games/angband/Makefile.common \
pkgsrc/games/angband/distinfo
cvs rdiff -u -r1.1 -r1.2 pkgsrc/games/angband-sdl/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/games/angband/patches/patch-configure.ac
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/games/angband/Makefile.common
diff -u pkgsrc/games/angband/Makefile.common:1.2 pkgsrc/games/angband/Makefile.common:1.3
--- pkgsrc/games/angband/Makefile.common:1.2 Tue Jul 7 13:17:46 2020
+++ pkgsrc/games/angband/Makefile.common Tue Aug 31 08:23:14 2021
@@ -1,10 +1,12 @@
-# $NetBSD: Makefile.common,v 1.2 2020/07/07 13:17:46 nia Exp $
+# $NetBSD: Makefile.common,v 1.3 2021/08/31 08:23:14 nia Exp $
# used by games/angband-sdl/Makefile
# used by games/angband/Makefile
-DISTNAME= angband-4.2.1
+DISTNAME= angband-4.2.3
CATEGORIES= games
-MASTER_SITES= https://rephial.org/downloads/4.2/
+MASTER_SITES= ${MASTER_SITE_GITHUB:=angband/}
+GITHUB_PROJECT= angband
+GITHUB_TAG= ${PKGVERSION_NOREV}
HOMEPAGE= https://rephial.org/
LICENSE= gnu-gpl-v2
Index: pkgsrc/games/angband/distinfo
diff -u pkgsrc/games/angband/distinfo:1.2 pkgsrc/games/angband/distinfo:1.3
--- pkgsrc/games/angband/distinfo:1.2 Tue Jul 7 13:17:46 2020
+++ pkgsrc/games/angband/distinfo Tue Aug 31 08:23:14 2021
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.2 2020/07/07 13:17:46 nia Exp $
+$NetBSD: distinfo,v 1.3 2021/08/31 08:23:14 nia Exp $
-SHA1 (angband-4.2.1.tar.gz) = 3167f6e9a6cc5a61d48c6f3c604a2a6e7b5bfed4
-RMD160 (angband-4.2.1.tar.gz) = ee9563a318770a3f81d71839ddcbb201a7588826
-SHA512 (angband-4.2.1.tar.gz) = e13681bcd74fa56fe5c606d62f1e9761c9fc5367194e0e46894a5ebf108e1553a1f96191e139f1574238b72c635436c3108c80bc656aba8e328fe4e5b301c6bc
-Size (angband-4.2.1.tar.gz) = 24938593 bytes
+SHA1 (angband-4.2.3.tar.gz) = cd1dfab196a61413d673a10a9693ab2dda9e8df1
+RMD160 (angband-4.2.3.tar.gz) = de8a273ee34a779009fe5b836336597df5c997f0
+SHA512 (angband-4.2.3.tar.gz) = f80a16c40d877c50194be370795acb437778ca88a658a8c95bef637625ab8a88ceb98f45d742e698709b6c81e8b5de6f563f88e957cd71eca208673bb4179e88
+Size (angband-4.2.3.tar.gz) = 25175745 bytes
+SHA1 (patch-configure.ac) = 328bd6a1bd0fa3481f2fd4081e34ec7d025802d8
SHA1 (patch-lib_icons_angband-sdl.desktop) = d1dffae7e39adc447eb1542434dca08ce0a7c6b0
Index: pkgsrc/games/angband-sdl/Makefile
diff -u pkgsrc/games/angband-sdl/Makefile:1.1 pkgsrc/games/angband-sdl/Makefile:1.2
--- pkgsrc/games/angband-sdl/Makefile:1.1 Fri Sep 20 14:56:00 2019
+++ pkgsrc/games/angband-sdl/Makefile Tue Aug 31 08:23:15 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1 2019/09/20 14:56:00 nia Exp $
+# $NetBSD: Makefile,v 1.2 2021/08/31 08:23:15 nia Exp $
.include "../../games/angband/Makefile.common"
@@ -15,7 +15,7 @@ SUPERSEDES= angband-x11-[0-9]*
ICON_SIZES= 16 32 128 256 512
# XXX the SDL2 frontend doesn't seem particularly ready yet
-# e.g. selecting fonts, a tilset, or windowed mode doesn't seem to work
+# e.g. selecting fonts, a tileset, or windowed mode doesn't seem to work
# please switch this when it's ready.
#CONFIGURE_ARGS+= --enable-sdl2
CONFIGURE_ARGS+= --enable-sdl
Added files:
Index: pkgsrc/games/angband/patches/patch-configure.ac
diff -u /dev/null pkgsrc/games/angband/patches/patch-configure.ac:1.1
--- /dev/null Tue Aug 31 08:23:15 2021
+++ pkgsrc/games/angband/patches/patch-configure.ac Tue Aug 31 08:23:15 2021
@@ -0,0 +1,15 @@
+$NetBSD: patch-configure.ac,v 1.1 2021/08/31 08:23:15 nia Exp $
+
+Shell portability.
+
+--- configure.ac.orig 2021-07-31 22:28:01.000000000 +0000
++++ configure.ac
+@@ -217,7 +217,7 @@ AC_DEFINE_UNQUOTED([DEFAULT_DATA_PATH],
+
+ NOINSTALL="$with_noinstall"; AC_SUBST(NOINSTALL)
+ SETEGID="$with_setgid"; AC_SUBST(SETEGID)
+-if test "x$wsetgid" == "xyes"; then
++if test "x$wsetgid" = "xyes"; then
+ AC_DEFINE(SETGID, 1, [Define if running as a central install on a multiuser system that has setresgid or setegid support.])
+ fi
+
Home |
Main Index |
Thread Index |
Old Index