pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/xa65



Module Name:    pkgsrc
Committed By:   fcambus
Date:           Sun Apr 10 13:55:32 UTC 2022

Modified Files:
        pkgsrc/devel/xa65: Makefile distinfo
        pkgsrc/devel/xa65/patches: patch-Makefile

Log Message:
xa65: update to 2.3.13.

ChangeLog:

  * Fix // and /* */ in quoted strings. Incredible no one ever hit this
    before (thanks ZornsLemma).
  * Segfault fixes for file65, reloc65 and xa. Remember, kids, if you ever
    run xa as root all kittens will die. Please save the kittens (thanks
    Stephen Kitt).
  * Just compare to null in the preprocessor (thanks Bas Wassink).
  * Testsuite expanded.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/xa65/Makefile
cvs rdiff -u -r1.9 -r1.10 pkgsrc/devel/xa65/distinfo
cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/xa65/patches/patch-Makefile

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

Modified files:

Index: pkgsrc/devel/xa65/Makefile
diff -u pkgsrc/devel/xa65/Makefile:1.6 pkgsrc/devel/xa65/Makefile:1.7
--- pkgsrc/devel/xa65/Makefile:1.6      Wed Dec  1 22:43:25 2021
+++ pkgsrc/devel/xa65/Makefile  Sun Apr 10 13:55:32 2022
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.6 2021/12/01 22:43:25 fcambus Exp $
+# $NetBSD: Makefile,v 1.7 2022/04/10 13:55:32 fcambus Exp $
 
-DISTNAME=              xa-2.3.12
+DISTNAME=              xa-2.3.13
 PKGNAME=               ${DISTNAME:S/xa/xa65/}
 CATEGORIES=            devel
 MASTER_SITES=          https://www.floodgap.com/retrotech/xa/dists/

Index: pkgsrc/devel/xa65/distinfo
diff -u pkgsrc/devel/xa65/distinfo:1.9 pkgsrc/devel/xa65/distinfo:1.10
--- pkgsrc/devel/xa65/distinfo:1.9      Wed Dec  1 22:43:25 2021
+++ pkgsrc/devel/xa65/distinfo  Sun Apr 10 13:55:32 2022
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.9 2021/12/01 22:43:25 fcambus Exp $
+$NetBSD: distinfo,v 1.10 2022/04/10 13:55:32 fcambus Exp $
 
-BLAKE2s (xa-2.3.12.tar.gz) = 1f79c9226022012eb7ffb6c5ed1ba80ffb2cdead98ace5dc92f69aba3591fd33
-SHA512 (xa-2.3.12.tar.gz) = 62702093b6c5c5c3fe0b09063ef98178d22ec5eea884e3ff4bad220b1f9f797d95bb36de31b49b30ca0e65a73c98fb7b8cad8cd939d5f6e7a3412d6198ee7f37
-Size (xa-2.3.12.tar.gz) = 154511 bytes
-SHA1 (patch-Makefile) = c0ce06364d3b5962efb8327b7800fb98896e5255
+BLAKE2s (xa-2.3.13.tar.gz) = ae17b9307e3081d80fa6c42f0de2969facfbc7d57fa317b827d83d1eafc5a67d
+SHA512 (xa-2.3.13.tar.gz) = b8a4c1856e51bbe212b98be06895987d6fb926a229511a67ea90a934da1fcc84daf29bd289c3c4c2254d2bce345333bb92747947f3286376761613b2e181e99b
+Size (xa-2.3.13.tar.gz) = 155606 bytes
+SHA1 (patch-Makefile) = 05303bf6ec7d52f4b49001a653e680a46b16f1e7
 SHA1 (patch-misc_Makefile) = 488705f516aec448fb51db6ab788b788bfbd31bc

Index: pkgsrc/devel/xa65/patches/patch-Makefile
diff -u pkgsrc/devel/xa65/patches/patch-Makefile:1.6 pkgsrc/devel/xa65/patches/patch-Makefile:1.7
--- pkgsrc/devel/xa65/patches/patch-Makefile:1.6        Wed Dec  1 22:43:25 2021
+++ pkgsrc/devel/xa65/patches/patch-Makefile    Sun Apr 10 13:55:32 2022
@@ -1,10 +1,10 @@
-$NetBSD: patch-Makefile,v 1.6 2021/12/01 22:43:25 fcambus Exp $
+$NetBSD: patch-Makefile,v 1.7 2022/04/10 13:55:32 fcambus Exp $
 
 Install documentation, fix Makefile variables
 
 Honor LDFLAGS and CFLAGS.
 
---- Makefile.orig      2020-05-02 22:00:31.000000000 +0000
+--- Makefile.orig      2022-03-13 01:46:55.000000000 +0000
 +++ Makefile
 @@ -4,8 +4,8 @@ CC = gcc
  LD = gcc
@@ -34,7 +34,7 @@ Honor LDFLAGS and CFLAGS.
  MKDIR = mkdir -p
  INSTALL = install
 @@ -56,11 +56,29 @@ clean:
-       rm -f xa *.exe *.o65
+       rm -f xa *.exe *.o65 *.s
  
  install: xa uncpk
 -      $(MKDIR) $(BINDIR)
@@ -48,7 +48,7 @@ Honor LDFLAGS and CFLAGS.
 +.for prg in xa reloc65 ldo65 file65 printcbm uncpk
 +      $(BSD_INSTALL_PROGRAM) $(prg) $(DESTDIR)$(BINDIR)
 +      $(BSD_INSTALL_DATA) man/$(prg).1 $(DESTDIR)$(MANDIR)
-+.endfor       
++.endfor
 +.for doc in   examples/c64def.def   \
 +              examples/pack.doc     \
 +              examples/pack_eng.a65 \
@@ -56,7 +56,7 @@ Honor LDFLAGS and CFLAGS.
 +              examples/peng.l       \
 +              doc/fileformat.txt    \
 +              doc/README            \
-+              doc/xaannounce        \
++              doc/xaannounce        \
 +              doc/xa-de.log         \
 +              doc/xa-de.txt         \
 +              doc/xa.html           \
@@ -67,4 +67,4 @@ Honor LDFLAGS and CFLAGS.
 +.endfor
  
  dist: clean
-       cd .. ; tar cvf xa-2.3.12.tar xa-2.3.12 ; gzip xa-2.3.12.tar
+       cd .. ; tar cvf xa-2.3.13.tar xa-2.3.13 ; gzip xa-2.3.13.tar



Home | Main Index | Thread Index | Old Index