From owner-svn-ports-all@freebsd.org Sat Jan 28 20:52:52 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 25CB3CC5F18; Sat, 28 Jan 2017 20:52:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ED64334A; Sat, 28 Jan 2017 20:52:51 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0SKqpge079112; Sat, 28 Jan 2017 20:52:51 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0SKqoqK079109; Sat, 28 Jan 2017 20:52:50 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201701282052.v0SKqoqK079109@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 28 Jan 2017 20:52:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r432664 - in head/devel/nuitka: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Jan 2017 20:52:52 -0000 Author: sunpoet Date: Sat Jan 28 20:52:50 2017 New Revision: 432664 URL: https://svnweb.freebsd.org/changeset/ports/432664 Log: Update to 0.5.25 - Allow concurrent installation (USE_PYTHON=concurrent) Changes: https://github.com/kayhayen/Nuitka/blob/develop/Changelog.rst Modified: head/devel/nuitka/Makefile head/devel/nuitka/distinfo head/devel/nuitka/files/patch-nuitka_build_SingleExe.scons Modified: head/devel/nuitka/Makefile ============================================================================== --- head/devel/nuitka/Makefile Sat Jan 28 20:52:45 2017 (r432663) +++ head/devel/nuitka/Makefile Sat Jan 28 20:52:50 2017 (r432664) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nuitka -PORTVERSION= 0.5.24.4 +PORTVERSION= 0.5.25 CATEGORIES= devel python MASTER_SITES= http://nuitka.net/releases/ DISTNAME= Nuitka-${PORTVERSION} @@ -14,6 +14,6 @@ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= python tar:bzip2 -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist concurrent distutils .include Modified: head/devel/nuitka/distinfo ============================================================================== --- head/devel/nuitka/distinfo Sat Jan 28 20:52:45 2017 (r432663) +++ head/devel/nuitka/distinfo Sat Jan 28 20:52:50 2017 (r432664) @@ -1,3 +1,3 @@ -TIMESTAMP = 1482515433 -SHA256 (Nuitka-0.5.24.4.tar.bz2) = ebeda4fe6efab02ac330222caaad7cfdd56b596e850c8e6dcaec292256c2c277 -SIZE (Nuitka-0.5.24.4.tar.bz2) = 1224571 +TIMESTAMP = 1485609147 +SHA256 (Nuitka-0.5.25.tar.bz2) = e1c0944e9941aa43804441f9b024bf2a308be399d6c7882577a8ce966f31ffb9 +SIZE (Nuitka-0.5.25.tar.bz2) = 1234400 Modified: head/devel/nuitka/files/patch-nuitka_build_SingleExe.scons ============================================================================== --- head/devel/nuitka/files/patch-nuitka_build_SingleExe.scons Sat Jan 28 20:52:45 2017 (r432663) +++ head/devel/nuitka/files/patch-nuitka_build_SingleExe.scons Sat Jan 28 20:52:50 2017 (r432664) @@ -1,20 +1,18 @@ ---- nuitka/build/SingleExe.scons.orig 2016-12-10 11:05:24 UTC +--- nuitka/build/SingleExe.scons.orig 2017-01-24 05:15:25 UTC +++ nuitka/build/SingleExe.scons -@@ -108,9 +108,11 @@ uninstalled_python = getBoolOption("unin +@@ -109,9 +109,9 @@ uninstalled_python = getBoolOption("unin # Unstriped mode: Do not remove debug symbols. unstripped_mode = getBoolOption("unstripped_mode", False) --# Clang compiler mode, default on MacOS X and FreeBSD, optional on Linux. -+# Clang compiler mode, default on MacOS X and FreeBSD (unless PowerPC), -+# optional on Linux. +-# Clang compiler mode, forced on MacOS X and FreeBSD, optional on Linux. ++# Clang compiler mode, forced on MacOS X and FreeBSD (unless PowerPC), optional on Linux. clang_mode = getBoolOption("clang_mode", False) -if sys.platform == "darwin" or "freebsd" in sys.platform: -+if sys.platform == "darwin" or ("freebsd" in sys.platform and -+ platform.machine() != "powerpc"): ++if sys.platform == "darwin" or ("freebsd" in sys.platform and platform.machine() != "powerpc"): clang_mode = True # MinGW compiler mode, optional and interesting to Windows only. -@@ -618,11 +620,11 @@ if gcc_mode and "clang" not in the_compi +@@ -624,11 +624,11 @@ if gcc_mode and "clang" not in the_compi # binary if it's not high enough. This is esp. useful under Debian which # allows all compiler to exist next to each other and where g++ might not be # good enough, but g++-4.5 would be.