Date: Tue, 12 Dec 2017 13:35:38 +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: r456165 - head/sysutils/py-salt Message-ID: <201712121335.vBCDZcZK077972@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Tue Dec 12 13:35:38 2017 New Revision: 456165 URL: https://svnweb.freebsd.org/changeset/ports/456165 Log: Fix packaging on Python 3+ and unbreak this port PR: 224029 Reported by: Henrik Hudson <ports@thelanman.net> Approved by: portmgr (blanket) Modified: head/sysutils/py-salt/Makefile head/sysutils/py-salt/pkg-plist Modified: head/sysutils/py-salt/Makefile ============================================================================== --- head/sysutils/py-salt/Makefile Tue Dec 12 13:35:33 2017 (r456164) +++ head/sysutils/py-salt/Makefile Tue Dec 12 13:35:38 2017 (r456165) @@ -13,10 +13,6 @@ COMMENT= Distributed remote execution and configuratio LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -py34_BROKEN= fails to package -py35_BROKEN= fails to package -py36_BROKEN= fails to package - RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Jinja2>0:devel/py-Jinja2@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}MarkupSafe>0:textproc/py-MarkupSafe@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}boto3>0:www/py-boto3@${FLAVOR} \ Modified: head/sysutils/py-salt/pkg-plist ============================================================================== --- head/sysutils/py-salt/pkg-plist Tue Dec 12 13:35:33 2017 (r456164) +++ head/sysutils/py-salt/pkg-plist Tue Dec 12 13:35:38 2017 (r456165) @@ -1,5 +1,7 @@ @sample %%ETCDIR%%/master.sample @sample %%ETCDIR%%/minion.sample %%PYTHON_SITELIBDIR%%/salt/_syspaths.py -%%PYTHON_SITELIBDIR%%/salt/_syspaths.pyc -%%PYTHON_SITELIBDIR%%/salt/_syspaths.pyo +%%PYTHON2%%%%PYTHON_SITELIBDIR%%/salt/_syspaths.pyc +%%PYTHON2%%%%PYTHON_SITELIBDIR%%/salt/_syspaths.pyo +%%PYTHON3%%%%PYTHON_SITELIBDIR%%/salt/__pycache__/_syspaths.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON3%%%%PYTHON_SITELIBDIR%%/salt/__pycache__/_syspaths.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%%
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201712121335.vBCDZcZK077972>