pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/smake



Module Name:    pkgsrc
Committed By:   micha
Date:           Fri Aug  6 09:50:48 UTC 2021

Modified Files:
        pkgsrc/devel/smake: Makefile distinfo

Log Message:
devel/smake: Update to 1.5nb1

Changelog from AN-2021-07-29:
- smake: changed open(..., 0) -> open(..., O_RDONLY) for z/OS

  Thanks to a report from Matthew R. Wilson

- smake: z/OS is using EBCDIC and for this reason, smake cannot continue
  to #define NWARN 0x4000, as this bit would be in conflict with bits
  needed by the "short int" computed from characters used by macro
  assignment operator characters. e.g. "'=' | '+' << 8"

  smake now uses #define NWARN 0x8000 as this bit is only in use by
  EBCDIC digits that do not appear in the 16 bit values used as macro
  assignment operators inside smake.

  Thanks to a report from Matthew R. Wilson

- smake: A .POSIX: line in the Makefile is now correctly detected
  immediately and switches immediately into POSIX mode. This is
  important in case that the parser needs to behave different already,
  depending on whether it is in POSIX mode or not.

- smake: Since the GNU assignment operator := that has been adopted
  by POSIX as ::= causes unpredictable behavior, in case that += is
  used, it is now only supported when smake is in "POSIX mode", e.g.
  by putting .POSIX: into the Makefile. As this results in modifying
  the parser based on the current POSIX state, this needs the extension
  mentioned above.


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 pkgsrc/devel/smake/Makefile
cvs rdiff -u -r1.15 -r1.16 pkgsrc/devel/smake/distinfo

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

Modified files:

Index: pkgsrc/devel/smake/Makefile
diff -u pkgsrc/devel/smake/Makefile:1.16 pkgsrc/devel/smake/Makefile:1.17
--- pkgsrc/devel/smake/Makefile:1.16    Fri Jun 25 10:43:03 2021
+++ pkgsrc/devel/smake/Makefile Fri Aug  6 09:50:48 2021
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.16 2021/06/25 10:43:03 micha Exp $
+# $NetBSD: Makefile,v 1.17 2021/08/06 09:50:48 micha Exp $
 
-DISTNAME=      schily-2021-06-07
+DISTNAME=      schily-2021-07-29
 PKGNAME=       smake-1.5
+PKGREVISION=   1
 CATEGORIES=    devel
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=schilytools/}
 EXTRACT_SUFX=  .tar.bz2

Index: pkgsrc/devel/smake/distinfo
diff -u pkgsrc/devel/smake/distinfo:1.15 pkgsrc/devel/smake/distinfo:1.16
--- pkgsrc/devel/smake/distinfo:1.15    Fri Jun 25 10:43:03 2021
+++ pkgsrc/devel/smake/distinfo Fri Aug  6 09:50:48 2021
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.15 2021/06/25 10:43:03 micha Exp $
+$NetBSD: distinfo,v 1.16 2021/08/06 09:50:48 micha Exp $
 
-SHA1 (schily-2021-06-07.tar.bz2) = 355c162afdffb730e632902620397cc7851c3595
-RMD160 (schily-2021-06-07.tar.bz2) = 8239c965ad9da0d7ce21c39ed28f3f367f929cbf
-SHA512 (schily-2021-06-07.tar.bz2) = f71fb7b521e1b39e87ec9e44b29576eb2e67f0783e24760590f4323243ee1df7e7bdc214aa95d9e3cde6d090c14cab85ddfeaa8ea93b3942997c72c257b53a60
-Size (schily-2021-06-07.tar.bz2) = 4905609 bytes
+SHA1 (schily-2021-07-29.tar.bz2) = 6de3773faf2aa0418ac761c011736ea05c4a66a8
+RMD160 (schily-2021-07-29.tar.bz2) = cde4b154b66cbb590faa32aae3448c62979e6c18
+SHA512 (schily-2021-07-29.tar.bz2) = 095740bf1190440d386145653763d74ad93abf996e6a1e56279b5441990898515356eda0f7b5d07386d2aac1ba1adf0e9dac423ce49ced4fdc13914857b6afc1
+Size (schily-2021-07-29.tar.bz2) = 4927143 bytes



Home | Main Index | Thread Index | Old Index