Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 24 Dec 2016 13:03:31 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r429343 - in head/devel/nuitka: . files
Message-ID:  <201612241303.uBOD3V6u029179@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sat Dec 24 13:03:30 2016
New Revision: 429343
URL: https://svnweb.freebsd.org/changeset/ports/429343

Log:
  - Update to 0.5.24.4
  
  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 Dec 24 13:03:25 2016	(r429342)
+++ head/devel/nuitka/Makefile	Sat Dec 24 13:03:30 2016	(r429343)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	nuitka
-PORTVERSION=	0.5.22
+PORTVERSION=	0.5.24.4
 CATEGORIES=	devel python
 MASTER_SITES=	http://nuitka.net/releases/
 DISTNAME=	Nuitka-${PORTVERSION}

Modified: head/devel/nuitka/distinfo
==============================================================================
--- head/devel/nuitka/distinfo	Sat Dec 24 13:03:25 2016	(r429342)
+++ head/devel/nuitka/distinfo	Sat Dec 24 13:03:30 2016	(r429343)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1471339534
-SHA256 (Nuitka-0.5.22.tar.bz2) = 9d4bce77c15e7aefba9ce934dc99ccdfd3106ef7cda09fba3769713a8ae086bd
-SIZE (Nuitka-0.5.22.tar.bz2) = 1203830
+TIMESTAMP = 1482515433
+SHA256 (Nuitka-0.5.24.4.tar.bz2) = ebeda4fe6efab02ac330222caaad7cfdd56b596e850c8e6dcaec292256c2c277
+SIZE (Nuitka-0.5.24.4.tar.bz2) = 1224571

Modified: head/devel/nuitka/files/patch-nuitka_build_SingleExe.scons
==============================================================================
--- head/devel/nuitka/files/patch-nuitka_build_SingleExe.scons	Sat Dec 24 13:03:25 2016	(r429342)
+++ head/devel/nuitka/files/patch-nuitka_build_SingleExe.scons	Sat Dec 24 13:03:30 2016	(r429343)
@@ -1,6 +1,6 @@
---- nuitka/build/SingleExe.scons.orig	2016-04-24 12:07:33 UTC
+--- nuitka/build/SingleExe.scons.orig	2016-12-10 11:05:24 UTC
 +++ nuitka/build/SingleExe.scons
-@@ -110,9 +110,11 @@ uninstalled_python = getBoolOption("unin
+@@ -108,9 +108,11 @@ uninstalled_python = getBoolOption("unin
  # Unstriped mode: Do not remove debug symbols.
  unstripped_mode = getBoolOption("unstripped_mode", False)
  
@@ -14,21 +14,17 @@
      clang_mode = True
  
  # MinGW compiler mode, optional and interesting to Windows only.
-@@ -448,7 +450,7 @@ orig_cxx_version = env.get("CXXVERSION",
- if "g++" in (env["CXX"] or "") and "clang" not in (env["CXX"] or ""):
-     gpp_version, compiler_arch = getGccVersion()
- 
--    if gpp_version is None or int(gpp_version.replace('.', "")) < 440:
-+    if gpp_version is None or int(gpp_version.replace('.', "")) < 421:
-         env["CXX"] = None
-     elif win_target and compiler_arch != target_arch:
-         env["CXX"] = None
-@@ -594,7 +596,7 @@ if "g++" in env["CXX"] and "clang" not i
+@@ -618,11 +620,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.
--    if gpp_version < 440:
-+    if gpp_version < 421:
+-    if gcc_version < "4.4":
++    if gcc_version < "4.2.1":
          sys.exit(
              """\
- The g++ compiler %s (version %s) doesn't have the sufficient \
+ The gcc compiler %s (version %s) doesn't have the sufficient \
+-version (>= 4.4).""" % (env["CXX"], gcc_version)
++version (>= 4.2.1).""" % (env["CXX"], gcc_version)
+         )
+ 
+     # Older g++ complains about aliasing with Py_True and Py_False, but we don't



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612241303.uBOD3V6u029179>