[Midnightbsd-cvs] mports [23307] trunk/devel/cmake-gui: update version

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Tue May 1 19:30:20 EDT 2018


Revision: 23307
          http://svnweb.midnightbsd.org/mports/?rev=23307
Author:   laffer1
Date:     2018-05-01 19:30:19 -0400 (Tue, 01 May 2018)
Log Message:
-----------
update version

Modified Paths:
--------------
    trunk/devel/cmake-gui/Makefile

Removed Paths:
-------------
    trunk/devel/cmake-gui/files/patch-git_5ec17e61

Modified: trunk/devel/cmake-gui/Makefile
===================================================================
--- trunk/devel/cmake-gui/Makefile	2018-05-01 23:29:34 UTC (rev 23306)
+++ trunk/devel/cmake-gui/Makefile	2018-05-01 23:30:19 UTC (rev 23307)
@@ -1,7 +1,7 @@
 # $MidnightBSD$
 
 PORTNAME=	cmake
-PORTVERSION=	3.6.3
+PORTVERSION=	3.7.1
 CATEGORIES=	devel
 MASTER_SITES=	https://www.cmake.org/files/v${PORTVERSION:R}/
 PKGNAMESUFFIX=	-gui

Deleted: trunk/devel/cmake-gui/files/patch-git_5ec17e61
===================================================================
--- trunk/devel/cmake-gui/files/patch-git_5ec17e61	2018-05-01 23:29:34 UTC (rev 23306)
+++ trunk/devel/cmake-gui/files/patch-git_5ec17e61	2018-05-01 23:30:19 UTC (rev 23307)
@@ -1,26 +0,0 @@
-While not strictly necessary because of patch-git_86dd2427, this patch helps
-CMake determine the maximum size of the command line and determine whether
-ninja generator needs to use .rsp files.
-
-commit 5ec17e610609b8ca80cf8ce4f33f8c03ea48a090
-Author: Raphael Kubo da Costa <rakuco at FreeBSD.org>
-Date:   Fri Jul 15 12:46:53 2016 +0200
-
-    Ninja: Generalize check for sysconf(3) call
-
-    Use `sysconf(_SC_ARG_MAX)` wherever `_SC_ARG_MAX` is available instead
-    of hard-coding an incomplete list of operating systems that implement
-    it.  In particular, it is available on BSD platforms that were not
-    previously listed.
-
---- Source/cmNinjaNormalTargetGenerator.cxx
-+++ Source/cmNinjaNormalTargetGenerator.cxx
-@@ -374,7 +374,7 @@ static int calculateCommandLineLengthLimit(int linkRuleLength)
- #ifdef _WIN32
-     8000,
- #endif
--#if defined(__APPLE__) || defined(__HAIKU__) || defined(__linux)
-+#if defined(_SC_ARG_MAX)
-     // for instance ARG_MAX is 2096152 on Ubuntu or 262144 on Mac
-     ((int)sysconf(_SC_ARG_MAX)) - 1000,
- #endif



More information about the Midnightbsd-cvs mailing list