diff options
author | gblach <gblach@FreeBSD.org> | 2015-08-24 19:10:17 +0800 |
---|---|---|
committer | gblach <gblach@FreeBSD.org> | 2015-08-24 19:10:17 +0800 |
commit | 2c158fb267f6657bf7b20783a1c509c057a1a6cb (patch) | |
tree | fdff4af5842c3f263311609797017646a2e0606e /devel/ninja | |
parent | a71d5a18ad98a022a1a11af8beb5bdc3cabe5a25 (diff) | |
download | freebsd-ports-gnome-2c158fb267f6657bf7b20783a1c509c057a1a6cb.tar.gz freebsd-ports-gnome-2c158fb267f6657bf7b20783a1c509c057a1a6cb.tar.zst freebsd-ports-gnome-2c158fb267f6657bf7b20783a1c509c057a1a6cb.zip |
- Copy devel/ninja to devel/ninja16
- Downgrade devel/ninja to 1.5.3 to fix building of the graphics/darktable
Diffstat (limited to 'devel/ninja')
-rw-r--r-- | devel/ninja/Makefile | 4 | ||||
-rw-r--r-- | devel/ninja/distinfo | 4 | ||||
-rw-r--r-- | devel/ninja/files/patch-configure.py | 11 |
3 files changed, 14 insertions, 5 deletions
diff --git a/devel/ninja/Makefile b/devel/ninja/Makefile index e290c8ca35f0..1c092572c418 100644 --- a/devel/ninja/Makefile +++ b/devel/ninja/Makefile @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= ninja -PORTVERSION= 1.6.0 +PORTVERSION= 1.5.3 DISTVERSIONPREFIX= v -PORTEPOCH= 1 +PORTEPOCH= 2 CATEGORIES= devel MAINTAINER= gblach@FreeBSD.org diff --git a/devel/ninja/distinfo b/devel/ninja/distinfo index d9186971542d..af3048810c06 100644 --- a/devel/ninja/distinfo +++ b/devel/ninja/distinfo @@ -1,2 +1,2 @@ -SHA256 (martine-ninja-v1.6.0_GH0.tar.gz) = b43e88fb068fe4d92a3dfd9eb4d19755dae5c33415db2e9b7b61b4659009cde7 -SIZE (martine-ninja-v1.6.0_GH0.tar.gz) = 174501 +SHA256 (martine-ninja-v1.5.3_GH0.tar.gz) = 7c953b5a7c26cfcd082882e3f3e2cd08fee8848ad228bb47223b18ea18777ec0 +SIZE (martine-ninja-v1.5.3_GH0.tar.gz) = 168829 diff --git a/devel/ninja/files/patch-configure.py b/devel/ninja/files/patch-configure.py index f6ade809ce3b..61f0af7cc6eb 100644 --- a/devel/ninja/files/patch-configure.py +++ b/devel/ninja/files/patch-configure.py @@ -1,5 +1,14 @@ --- configure.py.orig 2014-11-24 18:37:47.000000000 +0100 -+++ configure.py 2015-01-18 21:26:42.000000000 +0100 ++++ configure.py 2015-01-18 21:26:42.000000000 +0100 +@@ -164,7 +164,7 @@ + """Run a subcommand, quietly. Prints the full command on error.""" + try: + subprocess.check_call(cmdline, shell=True) +- except subprocess.CalledProcessError, e: ++ except subprocess.CalledProcessError: + print('when running: ', cmdline) + raise + @@ -297,7 +297,7 @@ cflags += ['/Ox', '/DNDEBUG', '/GL'] ldflags += ['/LTCG', '/OPT:REF', '/OPT:ICF'] |