pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/geography/py-obspy



Module Name:    pkgsrc
Committed By:   richard
Date:           Wed Sep  7 13:36:35 UTC 2016

Modified Files:
        pkgsrc/geography/py-obspy: Makefile

Log Message:
Apparently python3 insists that print arguments are inside parens
should fix PLIST issues on py34 & py35


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 pkgsrc/geography/py-obspy/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/geography/py-obspy/Makefile
diff -u pkgsrc/geography/py-obspy/Makefile:1.8 pkgsrc/geography/py-obspy/Makefile:1.9
--- pkgsrc/geography/py-obspy/Makefile:1.8      Mon Sep  5 16:09:11 2016
+++ pkgsrc/geography/py-obspy/Makefile  Wed Sep  7 13:36:35 2016
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.8 2016/09/05 16:09:11 richard Exp $
+# $NetBSD: Makefile,v 1.9 2016/09/07 13:36:35 richard Exp $
 
 DISTNAME=      obspy-1.0.2
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
@@ -30,7 +30,7 @@ pre-configure:
 .include "../../lang/python/pyversion.mk"
 
 .if exists(${PYTHONBIN:Q})
-PYPLATFORM!=   ${PYTHONBIN} -c 'import platform; print platform.system() + "_" + platform.architecture()[0]'
+PYPLATFORM!=   ${PYTHONBIN} -c 'import platform; print (platform.system() + "_" + platform.architecture()[0])'
 
 PLIST_SUBST+=          PYPLATFORM=${PYPLATFORM} PYPKGPREFIX=${PYPKGPREFIX}
 PRINT_PLIST_AWK+=       /^${PYPLATFORM:S|/|\\/|g}/ \



Home | Main Index | Thread Index | Old Index