pkgsrc-Changes archive

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

CVS commit: pkgsrc/emulators/x16-emulator



Module Name:    pkgsrc
Committed By:   joerg
Date:           Sat Apr 18 22:04:18 UTC 2020

Modified Files:
        pkgsrc/emulators/x16-emulator: Makefile distinfo
Added Files:
        pkgsrc/emulators/x16-emulator/patches: patch-rendertext.c

Log Message:
Fix ctype use. Bump revision


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/emulators/x16-emulator/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/emulators/x16-emulator/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/emulators/x16-emulator/patches/patch-rendertext.c

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

Modified files:

Index: pkgsrc/emulators/x16-emulator/Makefile
diff -u pkgsrc/emulators/x16-emulator/Makefile:1.2 pkgsrc/emulators/x16-emulator/Makefile:1.3
--- pkgsrc/emulators/x16-emulator/Makefile:1.2  Sun Mar  8 16:49:29 2020
+++ pkgsrc/emulators/x16-emulator/Makefile      Sat Apr 18 22:04:18 2020
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.2 2020/03/08 16:49:29 wiz Exp $
+# $NetBSD: Makefile,v 1.3 2020/04/18 22:04:18 joerg Exp $
 
 DISTNAME=      x16-emulator-35
-PKGREVISION=   1
+PKGREVISION=   2
 CATEGORIES=    emulators
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=commanderx16/}
 GITHUB_PROJECT=        x16-emulator

Index: pkgsrc/emulators/x16-emulator/distinfo
diff -u pkgsrc/emulators/x16-emulator/distinfo:1.1 pkgsrc/emulators/x16-emulator/distinfo:1.2
--- pkgsrc/emulators/x16-emulator/distinfo:1.1  Sat Dec 28 19:32:18 2019
+++ pkgsrc/emulators/x16-emulator/distinfo      Sat Apr 18 22:04:18 2020
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.1 2019/12/28 19:32:18 thorpej Exp $
+$NetBSD: distinfo,v 1.2 2020/04/18 22:04:18 joerg Exp $
 
 SHA1 (x16-emulator-35.tar.gz) = 831e1acb2eecc5edb36f86925f00fabd6abb8321
 RMD160 (x16-emulator-35.tar.gz) = 1b5945db7ba879978bf77e7ad5362a93c9a464c0
@@ -6,3 +6,4 @@ SHA512 (x16-emulator-35.tar.gz) = ec014b
 Size (x16-emulator-35.tar.gz) = 123338 bytes
 SHA1 (patch-Makefile) = 450a069978bbd940d680437368dd880756879bd1
 SHA1 (patch-main.c) = db0721d145546dd60ed40b8e9151cd26493e07ad
+SHA1 (patch-rendertext.c) = 81a7e50e7598827addf9aca1f05a22869f2ddeeb

Added files:

Index: pkgsrc/emulators/x16-emulator/patches/patch-rendertext.c
diff -u /dev/null pkgsrc/emulators/x16-emulator/patches/patch-rendertext.c:1.1
--- /dev/null   Sat Apr 18 22:04:18 2020
+++ pkgsrc/emulators/x16-emulator/patches/patch-rendertext.c    Sat Apr 18 22:04:18 2020
@@ -0,0 +1,13 @@
+$NetBSD: patch-rendertext.c,v 1.1 2020/04/18 22:04:18 joerg Exp $
+
+--- rendertext.c.orig  2020-04-17 21:39:18.771500194 +0000
++++ rendertext.c
+@@ -22,7 +22,7 @@ int textureInitialized = 0;
+ //
+ char *ltrim(char *s)
+ {
+-      while(isspace(*s)) s++;
++      while(isspace((unsigned char)*s)) s++;
+       return s;
+ }
+ 



Home | Main Index | Thread Index | Old Index