pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/ninja-build



Module Name:    pkgsrc
Committed By:   adam
Date:           Thu Sep 14 08:23:53 UTC 2017

Modified Files:
        pkgsrc/devel/ninja-build: Makefile distinfo
        pkgsrc/devel/ninja-build/patches: patch-configure.py

Log Message:
ninja-build: update to 1.8.2

Release 1.8.2:

Behavior changes related to build edges
* Detect build graph cycles as early as possible. Cycles containing single phony edges are now detected and warned about. The new flag `-w phonycycle=err` upgrades the warning to an error, while `-w 
phonycycle=warn` explicitly makes this a warning. Future versions of ninja will default to phonycycle=err. In a few years, we hope to make this an error unconditionally. CMake 2.8-3.0 produces ninja 
files that trigger this warning.,
* Always re-run edges that exit with non-zero exit code, even if they successfully write their output
* Support restat when rebuilding manifest
* Support mtime of 0 on input files
* Allow more path components

Windows-specific changes
* replace deprecated GetVersionEx with recommended replacement
* Add clparser_perftest
* Faster clparser, speeds up full builds by up to 20%
* Write subprocess output to stdout in binary mode
* Remove path component limit from input of CanonicalizePath in windows

POSIX-specific changes
* Use POSIX_SPAWN_USEVFORK with glibc, makes some full builds twice as fast
* Close original pipe fd in subprocesses

Changes to building ninja itself
* Fix build with uclibc
* Suppress warning 4244 to bootstrap on vs2017
* Add support for DragonFly BSD.

Changes to scripts
* Make zsh completion use explicitly specified ninja files

Bugfixes and minor changes
* Improve error message when a depfile contains a bad path
* fix a clang-cl -Wformat warning
* browse: Bind to localhost by default
* teach -t commands to optionally print only the final command


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/ninja-build/Makefile
cvs rdiff -u -r1.9 -r1.10 pkgsrc/devel/ninja-build/distinfo
cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/ninja-build/patches/patch-configure.py

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

Modified files:

Index: pkgsrc/devel/ninja-build/Makefile
diff -u pkgsrc/devel/ninja-build/Makefile:1.7 pkgsrc/devel/ninja-build/Makefile:1.8
--- pkgsrc/devel/ninja-build/Makefile:1.7       Mon Nov 14 14:38:32 2016
+++ pkgsrc/devel/ninja-build/Makefile   Thu Sep 14 08:23:53 2017
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.7 2016/11/14 14:38:32 wiz Exp $
+# $NetBSD: Makefile,v 1.8 2017/09/14 08:23:53 adam Exp $
 
-DISTNAME=      ninja-1.7.2
+DISTNAME=      ninja-1.8.2
 PKGNAME=       ${DISTNAME:S/ninja/ninja-build/}
 CATEGORIES=    devel
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=ninja-build/}

Index: pkgsrc/devel/ninja-build/distinfo
diff -u pkgsrc/devel/ninja-build/distinfo:1.9 pkgsrc/devel/ninja-build/distinfo:1.10
--- pkgsrc/devel/ninja-build/distinfo:1.9       Thu Feb  9 00:24:23 2017
+++ pkgsrc/devel/ninja-build/distinfo   Thu Sep 14 08:23:53 2017
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.9 2017/02/09 00:24:23 joerg Exp $
+$NetBSD: distinfo,v 1.10 2017/09/14 08:23:53 adam Exp $
 
-SHA1 (ninja-1.7.2.tar.gz) = a50e9008e90339d052f741e9c52a3475aa108fbb
-RMD160 (ninja-1.7.2.tar.gz) = a0f02eaae9db64241784de4ebb53ac5ae6e767eb
-SHA512 (ninja-1.7.2.tar.gz) = 29900d07364d87ad8b9614b82bc1b0afda5ca6522563ab73fb228f206ed6b29b70cf034a3caf5a9b2c0b105d1e076c6b425d93b5d14aa3ca3730d75611212a64
-Size (ninja-1.7.2.tar.gz) = 180611 bytes
-SHA1 (patch-configure.py) = 830ffd19fcf7f0664293b362c930695674e4b8f5
+SHA1 (ninja-1.8.2.tar.gz) = 17219deb34dd816363e37470f77ff7231509143a
+RMD160 (ninja-1.8.2.tar.gz) = 6623824c7d55a9e0b121d6614831a865da3eff0a
+SHA512 (ninja-1.8.2.tar.gz) = 1650bf9e3eddeb0b0fbb415c2b8e0a7c094421e991fa8139fd77fae0f6ee7ee980b7cf5e98d883c3a884f99abcb06fa26e3980af3a3a5bb6dd655124755782c2
+Size (ninja-1.8.2.tar.gz) = 185226 bytes
+SHA1 (patch-configure.py) = e89a04d9359d08a7e59bb5573a6887380c0b553b
 SHA1 (patch-src_subprocess-posix.cc) = 32b123fafbec24660813b2cdbc59ca6a2f2365f1

Index: pkgsrc/devel/ninja-build/patches/patch-configure.py
diff -u pkgsrc/devel/ninja-build/patches/patch-configure.py:1.3 pkgsrc/devel/ninja-build/patches/patch-configure.py:1.4
--- pkgsrc/devel/ninja-build/patches/patch-configure.py:1.3     Mon Nov 14 14:38:32 2016
+++ pkgsrc/devel/ninja-build/patches/patch-configure.py Thu Sep 14 08:23:53 2017
@@ -1,19 +1,19 @@
-$NetBSD: patch-configure.py,v 1.3 2016/11/14 14:38:32 wiz Exp $
+$NetBSD: patch-configure.py,v 1.4 2017/09/14 08:23:53 adam Exp $
 
-* Add NetBSD support
+Add NetBSD support.
 
---- configure.py.orig  2016-11-07 18:34:46.000000000 +0000
+--- configure.py.orig  2017-09-11 01:20:10.000000000 +0000
 +++ configure.py
-@@ -95,7 +95,7 @@ class Platform(object):
+@@ -98,7 +98,7 @@ class Platform(object):
          return self._platform == 'aix'
  
      def uses_usr_local(self):
--        return self._platform in ('freebsd', 'openbsd', 'bitrig')
-+        return self._platform in ('freebsd', 'openbsd', 'bitrig', 'netbsd')
+-        return self._platform in ('freebsd', 'openbsd', 'bitrig', 'dragonfly')
++        return self._platform in ('freebsd', 'openbsd', 'bitrig', 'dragonfly', 'netbsd')
  
      def supports_ppoll(self):
-         return self._platform in ('freebsd', 'linux', 'openbsd', 'bitrig')
-@@ -350,8 +350,8 @@ else:
+         return self._platform in ('freebsd', 'linux', 'openbsd', 'bitrig',
+@@ -354,8 +354,8 @@ else:
          cflags += ['-D_WIN32_WINNT=0x0501']
      ldflags = ['-L$builddir']
      if platform.uses_usr_local():



Home | Main Index | Thread Index | Old Index