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:           Wed Feb  8 21:16:31 UTC 2023

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

Log Message:
xa: update to 2.3.14.

  * Fix a segfault when a recursive macro has a smaller arity than the
    macro it references (thanks Emil Johansson for the report).
  * Fix for recursive comments, which was a regression from 2.3.13 (note:
    this may be reexamined for 2.4), and some improvements to the comment
    parser to fix more edge cases. (Andre)
  * Now you can just do 'make test TESTS=test,test,test' instead of running
    ./tests/harness with specific options. ('make test' by itself of course
    still works fine to run the whole suite.)
  * Testsuite expanded.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/xa65/Makefile
cvs rdiff -u -r1.10 -r1.11 pkgsrc/devel/xa65/distinfo
cvs rdiff -u -r1.7 -r1.8 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.7 pkgsrc/devel/xa65/Makefile:1.8
--- pkgsrc/devel/xa65/Makefile:1.7      Sun Apr 10 13:55:32 2022
+++ pkgsrc/devel/xa65/Makefile  Wed Feb  8 21:16:30 2023
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.7 2022/04/10 13:55:32 fcambus Exp $
+# $NetBSD: Makefile,v 1.8 2023/02/08 21:16:30 fcambus Exp $
 
-DISTNAME=              xa-2.3.13
+DISTNAME=              xa-2.3.14
 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.10 pkgsrc/devel/xa65/distinfo:1.11
--- pkgsrc/devel/xa65/distinfo:1.10     Sun Apr 10 13:55:32 2022
+++ pkgsrc/devel/xa65/distinfo  Wed Feb  8 21:16:30 2023
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.10 2022/04/10 13:55:32 fcambus Exp $
+$NetBSD: distinfo,v 1.11 2023/02/08 21:16:30 fcambus Exp $
 
-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
+BLAKE2s (xa-2.3.14.tar.gz) = c60aa25502075b5aad43d716df4631fa2d83e4ce30dc992b1bbaa7fc9023ccf2
+SHA512 (xa-2.3.14.tar.gz) = 71d4631cb3e698b6522ca76c4b34078ded0632533bdaaa8b8d584eb27f0958ed288a6765136ff0ad03cd861a2dccbb76c6d8db0abf277a61ae864ad23212653d
+Size (xa-2.3.14.tar.gz) = 156876 bytes
+SHA1 (patch-Makefile) = 573a62f60824429176b1da47b89803899a674bfb
 SHA1 (patch-misc_Makefile) = 488705f516aec448fb51db6ab788b788bfbd31bc

Index: pkgsrc/devel/xa65/patches/patch-Makefile
diff -u pkgsrc/devel/xa65/patches/patch-Makefile:1.7 pkgsrc/devel/xa65/patches/patch-Makefile:1.8
--- pkgsrc/devel/xa65/patches/patch-Makefile:1.7        Sun Apr 10 13:55:32 2022
+++ pkgsrc/devel/xa65/patches/patch-Makefile    Wed Feb  8 21:16:31 2023
@@ -1,23 +1,23 @@
-$NetBSD: patch-Makefile,v 1.7 2022/04/10 13:55:32 fcambus Exp $
+$NetBSD: patch-Makefile,v 1.8 2023/02/08 21:16:31 fcambus Exp $
 
 Install documentation, fix Makefile variables
 
 Honor LDFLAGS and CFLAGS.
 
---- Makefile.orig      2022-03-13 01:46:55.000000000 +0000
+--- Makefile.orig      2023-02-07 21:42:40.000000000 +0000
 +++ Makefile
-@@ -4,8 +4,8 @@ CC = gcc
- LD = gcc
+@@ -5,8 +5,8 @@ LD = gcc
  # for testing. not to be used; build failures in misc/.
  #CFLAGS = -O2 -W -Wall -pedantic -ansi
--CFLAGS = -O2
+ #CFLAGS = -O2 -g
+-CFLAGS = -O2 
 -LDFLAGS = -lc
-+CFLAGS += -O2
++CFLAGS += -O2 
 +LDFLAGS += -lc
  
  # for DOS?
  # CC = gcc-go32
-@@ -17,11 +17,11 @@ LDFLAGS = -lc
+@@ -18,11 +18,11 @@ LDFLAGS = -lc
  #CFLAGS =
  #LD = ld
  
@@ -33,8 +33,8 @@ Honor LDFLAGS and CFLAGS.
  
  MKDIR = mkdir -p
  INSTALL = install
-@@ -56,11 +56,29 @@ clean:
-       rm -f xa *.exe *.o65 *.s
+@@ -59,11 +59,29 @@ clean:
+       rm -f xa *.exe *.o65 *.s core
  
  install: xa uncpk
 -      $(MKDIR) $(BINDIR)
@@ -67,4 +67,4 @@ Honor LDFLAGS and CFLAGS.
 +.endfor
  
  dist: clean
-       cd .. ; tar cvf xa-2.3.13.tar xa-2.3.13 ; gzip xa-2.3.13.tar
+       cd .. ; tar cvf xa-2.3.14.tar xa-2.3.14 ; gzip xa-2.3.14.tar



Home | Main Index | Thread Index | Old Index