pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/games/hengband
Module Name: pkgsrc
Committed By: pho
Date: Fri Nov 24 01:59:33 UTC 2023
Modified Files:
pkgsrc/games/hengband: Makefile distinfo
Added Files:
pkgsrc/games/hengband/patches: patch-src_files.c
Log Message:
games/hengband: Fix an alignment issue in the player info screen
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 pkgsrc/games/hengband/Makefile
cvs rdiff -u -r1.6 -r1.7 pkgsrc/games/hengband/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/games/hengband/patches/patch-src_files.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/games/hengband/Makefile
diff -u pkgsrc/games/hengband/Makefile:1.5 pkgsrc/games/hengband/Makefile:1.6
--- pkgsrc/games/hengband/Makefile:1.5 Mon Jan 16 05:14:26 2023
+++ pkgsrc/games/hengband/Makefile Fri Nov 24 01:59:32 2023
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.5 2023/01/16 05:14:26 dholland Exp $
+# $NetBSD: Makefile,v 1.6 2023/11/24 01:59:32 pho Exp $
DISTNAME= hengband-2.2.1r
-PKGREVISION= 1
+PKGREVISION= 2
CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_OSDN:=hengband/72520/}
Index: pkgsrc/games/hengband/distinfo
diff -u pkgsrc/games/hengband/distinfo:1.6 pkgsrc/games/hengband/distinfo:1.7
--- pkgsrc/games/hengband/distinfo:1.6 Tue Oct 26 10:44:03 2021
+++ pkgsrc/games/hengband/distinfo Fri Nov 24 01:59:32 2023
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.6 2021/10/26 10:44:03 nia Exp $
+$NetBSD: distinfo,v 1.7 2023/11/24 01:59:32 pho Exp $
BLAKE2s (heng-graf-16x16.tar.gz) = 1e2910487e334c4f5d930d58f6aa4a7cffa6498da895347957ad9dee3085d7c9
SHA512 (heng-graf-16x16.tar.gz) = 4641e12122b13015d03f8a7f3dcba72797495451f15c04eab2d6ea1fd57d082e11eea3115056c2a2203032db973bea01476ecb2389a7a730e98e972c41756dfa
@@ -11,4 +11,5 @@ SHA1 (patch-lib_edit_Makefile.am) = 9fd3
SHA1 (patch-lib_xtra_graf_Makefile.am) = 71d8e17bfc39a689ab30f3a02b5f052687bcf1db
SHA1 (patch-src_Makefile.am) = b71e0e4cc828c98d5bd4d89e3b263a406c0c8620
SHA1 (patch-src_cmd3.c) = d2e4e61524b125069a5709462add001a7e7388ff
+SHA1 (patch-src_files.c) = 5d3d91072b828e10e0d09fb134308aa550cc5f82
SHA1 (patch-src_init2.c) = fe7064f23bce494ced5a524f2a60117ac0ef56ff
Added files:
Index: pkgsrc/games/hengband/patches/patch-src_files.c
diff -u /dev/null pkgsrc/games/hengband/patches/patch-src_files.c:1.1
--- /dev/null Fri Nov 24 01:59:33 2023
+++ pkgsrc/games/hengband/patches/patch-src_files.c Fri Nov 24 01:59:33 2023
@@ -0,0 +1,15 @@
+$NetBSD: patch-src_files.c,v 1.1 2023/11/24 01:59:33 pho Exp $
+
+Fix an alignment issue in the player info screen. TODO: Upstream this.
+
+--- src/files.c.orig 2023-11-23 20:34:32.289742087 +0000
++++ src/files.c
+@@ -3202,7 +3202,7 @@ display_flag_aux(row+9, col, "呪い
+ display_flag_aux(row+0, col, "Speed :", TR_SPEED, &f, 0);
+ display_flag_aux(row+1, col, "FreeAction:", TR_FREE_ACT, &f, 0);
+ display_flag_aux(row+2, col, "SeeInvisi.:", TR_SEE_INVIS, &f, 0);
+- display_flag_aux(row+3, col, "Hold Exp :", TR_HOLD_EXP, &f, 0);
++ display_flag_aux(row+3, col, "Hold Exp :", TR_HOLD_EXP, &f, 0);
+ display_flag_aux(row+4, col, "Warning :", TR_WARNING, &f, 0);
+ display_flag_aux(row+5, col, "SlowDigest:", TR_SLOW_DIGEST, &f, 0);
+ display_flag_aux(row+6, col, "Regene. :", TR_REGEN, &f, 0);
Home |
Main Index |
Thread Index |
Old Index