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: wiz
Date: Mon Nov 14 14:38:32 UTC 2016
Modified Files:
pkgsrc/devel/ninja-build: Makefile distinfo
pkgsrc/devel/ninja-build/patches: patch-configure.py
Log Message:
Updated ninja-build to 1.7.2.
This is a minor release after v1.7.1, mostly bugfixes.
== Release notes.
* %e and %r work again in dumb terminals (#1146, #1148)
* `-t browse` now HTML-escapes rule names (#1157)
* an edge may now have 0 explicit outputs if it has implicit outputs (#1159)
* make misc/measure.py python 3-compatible
* misc/write_fake_manifest.py now optionally writes source files, use it to
quickly produce large, buildable projects for testing (#1109, #1198)
* on newer FreeBSDs, use ppoll()
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/ninja-build/Makefile
cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/ninja-build/distinfo
cvs rdiff -u -r1.2 -r1.3 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.6 pkgsrc/devel/ninja-build/Makefile:1.7
--- pkgsrc/devel/ninja-build/Makefile:1.6 Mon May 16 11:56:11 2016
+++ pkgsrc/devel/ninja-build/Makefile Mon Nov 14 14:38:32 2016
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.6 2016/05/16 11:56:11 ryoon Exp $
+# $NetBSD: Makefile,v 1.7 2016/11/14 14:38:32 wiz Exp $
-DISTNAME= ninja-1.7.1
+DISTNAME= ninja-1.7.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.7 pkgsrc/devel/ninja-build/distinfo:1.8
--- pkgsrc/devel/ninja-build/distinfo:1.7 Mon May 16 11:56:11 2016
+++ pkgsrc/devel/ninja-build/distinfo Mon Nov 14 14:38:32 2016
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.7 2016/05/16 11:56:11 ryoon Exp $
+$NetBSD: distinfo,v 1.8 2016/11/14 14:38:32 wiz Exp $
-SHA1 (ninja-1.7.1.tar.gz) = 556ed5f8ee49753af1cf4b0ab2315d39d1954d58
-RMD160 (ninja-1.7.1.tar.gz) = 19b6418c25c605c83105129395502eb46b7d0464
-SHA512 (ninja-1.7.1.tar.gz) = 6c7bea92942c48d2a810b1edb0187a3b0230eee3a1ce0013e9dcc8dd41d99215f18f0f85be789173e590ee24f517969fd159099541cacd7eb0ba69e50d296f40
-Size (ninja-1.7.1.tar.gz) = 179717 bytes
-SHA1 (patch-configure.py) = b5565255dad6e3280c82c861fea8f5769f937e97
+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
Index: pkgsrc/devel/ninja-build/patches/patch-configure.py
diff -u pkgsrc/devel/ninja-build/patches/patch-configure.py:1.2 pkgsrc/devel/ninja-build/patches/patch-configure.py:1.3
--- pkgsrc/devel/ninja-build/patches/patch-configure.py:1.2 Mon May 16 11:56:11 2016
+++ pkgsrc/devel/ninja-build/patches/patch-configure.py Mon Nov 14 14:38:32 2016
@@ -1,8 +1,8 @@
-$NetBSD: patch-configure.py,v 1.2 2016/05/16 11:56:11 ryoon Exp $
+$NetBSD: patch-configure.py,v 1.3 2016/11/14 14:38:32 wiz Exp $
* Add NetBSD support
---- configure.py.orig 2016-04-28 14:56:44.000000000 +0000
+--- configure.py.orig 2016-11-07 18:34:46.000000000 +0000
+++ configure.py
@@ -95,7 +95,7 @@ class Platform(object):
return self._platform == 'aix'
@@ -12,7 +12,7 @@ $NetBSD: patch-configure.py,v 1.2 2016/0
+ return self._platform in ('freebsd', 'openbsd', 'bitrig', 'netbsd')
def supports_ppoll(self):
- return self._platform in ('linux', 'openbsd', 'bitrig')
+ return self._platform in ('freebsd', 'linux', 'openbsd', 'bitrig')
@@ -350,8 +350,8 @@ else:
cflags += ['-D_WIN32_WINNT=0x0501']
ldflags = ['-L$builddir']
Home |
Main Index |
Thread Index |
Old Index