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:           Wed Aug 26 13:28:09 UTC 2020

Modified Files:
        pkgsrc/devel/smake: Makefile distinfo

Log Message:
devel/smake: Update to 1.3nb13

New features with AN-2020-07-18:
- Makefile system: changed several "echo MAKING... && sh ./MKLINKS"
  into "echo MAKING... ; sh ./MKLINKS"

  This allows an optimization in smake to avoid a call to sh -c "cmd".
  if the command is a simple command or a simple command prefixed by
  "echo something ;". Since 2012, we implement an inline echo command
  in smake to speed up makefile execution.

- smake: The -a option is now no longer missing in the smake -help
  output. This has been forgotten when the option has been added in March.

New features with AN-2020-08-12:
- autoconf: added a new test for the existence of <sys/auxv.h>

- autoconf: added new tests for Linux getauxval() and FreeBSD elf_aux_info()

- libschily: getexecpath.c now uses getauxval() on Linux and elf_aux_info()
  on FreeBSD. This was needed since readlink("/proc/curproc/file") on
  FreeBSD returns random values for hardlinked files, making it impossible
  to use the result in order to find out which behavior variant of a
  fat binary is requested.

- smake: Added some code to allow better debugging of MAKEFLAGS related
  problems.

- smake: we now use strdup() to remember the content of the MAKEFLAGS
  environment as the content of a pointer into the environment array
  did change unexpectedly on DJGPP.

  Thanks to a hint from Albert Wik.


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 pkgsrc/devel/smake/Makefile
cvs rdiff -u -r1.10 -r1.11 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.11 pkgsrc/devel/smake/Makefile:1.12
--- pkgsrc/devel/smake/Makefile:1.11    Wed Jul 22 10:19:45 2020
+++ pkgsrc/devel/smake/Makefile Wed Aug 26 13:28:09 2020
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.11 2020/07/22 10:19:45 micha Exp $
+# $NetBSD: Makefile,v 1.12 2020/08/26 13:28:09 micha Exp $
 
-DISTNAME=      schily-2020-07-01
+DISTNAME=      schily-2020-08-12
 PKGNAME=       smake-1.3
-PKGREVISION=   12
+PKGREVISION=   13
 CATEGORIES=    devel
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=schilytools/}
 EXTRACT_SUFX=  .tar.bz2

Index: pkgsrc/devel/smake/distinfo
diff -u pkgsrc/devel/smake/distinfo:1.10 pkgsrc/devel/smake/distinfo:1.11
--- pkgsrc/devel/smake/distinfo:1.10    Fri Jul 17 10:33:52 2020
+++ pkgsrc/devel/smake/distinfo Wed Aug 26 13:28:09 2020
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.10 2020/07/17 10:33:52 micha Exp $
+$NetBSD: distinfo,v 1.11 2020/08/26 13:28:09 micha Exp $
 
-SHA1 (schily-2020-07-01.tar.bz2) = 7653c8b99d1aebe85337df681aae8ec1352c1ac1
-RMD160 (schily-2020-07-01.tar.bz2) = 4c7989eb95cff9a4bdd5f521b95135902912ab8d
-SHA512 (schily-2020-07-01.tar.bz2) = 512f0c3488bde5812d2011b2c1b1f308b9c139331a16c40fc0b61983fd8ff26d60845ddc8adc4d5bf651405cde786e63de61a473a1c658d08e5a8fdf949312d6
-Size (schily-2020-07-01.tar.bz2) = 4828878 bytes
+SHA1 (schily-2020-08-12.tar.bz2) = dbfff482d6c3f0cfbfaf3a43989cbf91f3e0402b
+RMD160 (schily-2020-08-12.tar.bz2) = 5e5f5e6ba8ba271c9b54e9eaf4eebf3e89b44dcf
+SHA512 (schily-2020-08-12.tar.bz2) = 2b86408107bcc0d928e9b3596be9da98f5e711df42b0d329f2bc91d35e191675ad3d297d8314ba2000ef6687f796b3115fd4de196da56314e7b5e452445ad3d3
+Size (schily-2020-08-12.tar.bz2) = 4850267 bytes



Home | Main Index | Thread Index | Old Index