Date: Wed, 9 Dec 2015 14:28:47 +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: r403420 - in head/devel: . py-pyinstaller pyinstaller Message-ID: <201512091428.tB9ESlMU003572@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Wed Dec 9 14:28:47 2015 New Revision: 403420 URL: https://svnweb.freebsd.org/changeset/ports/403420 Log: - Move devel/pyinstaller to devel/py-pyinstaller - Use lowercase PORTNAME - Move EXTRACT_AFTER_ARGS upward - Convert to new options target helper - Bump PORTREVISION for package change Added: head/devel/py-pyinstaller/ - copied from r403419, head/devel/pyinstaller/ Deleted: head/devel/pyinstaller/ Modified: head/devel/Makefile head/devel/py-pyinstaller/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Dec 9 14:28:43 2015 (r403419) +++ head/devel/Makefile Wed Dec 9 14:28:47 2015 (r403420) @@ -4210,6 +4210,7 @@ SUBDIR += py-pygit2 SUBDIR += py-pygithub SUBDIR += py-pygpx + SUBDIR += py-pyinstaller SUBDIR += py-pykde4 SUBDIR += py-pykdeuic4 SUBDIR += py-pyke @@ -4496,7 +4497,6 @@ SUBDIR += pycount SUBDIR += pydbus-common SUBDIR += pygobject3-common - SUBDIR += pyinstaller SUBDIR += pylint SUBDIR += pymacs SUBDIR += pyobfuscate Modified: head/devel/py-pyinstaller/Makefile ============================================================================== --- head/devel/pyinstaller/Makefile Wed Dec 9 14:28:43 2015 (r403419) +++ head/devel/py-pyinstaller/Makefile Wed Dec 9 14:28:47 2015 (r403420) @@ -1,18 +1,20 @@ # Created by: Alexey Dokuchaev <danfe@FreeBSD.org> # $FreeBSD$ -PORTNAME= PyInstaller +PORTNAME= pyinstaller PORTVERSION= 2.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= PyInstaller-${PORTVERSION} MAINTAINER= python@FreeBSD.org COMMENT= Program to create standalone executables from Python scripts LICENSE= GPLv2 +EXTRACT_AFTER_ARGS= --exclude doc/source --no-same-owner --no-same-permissions USES= python USE_PYTHON= autoplist distutils @@ -31,10 +33,8 @@ post-patch: pre-build: cd ${WRKSRC}/bootloader && ${PYTHON_CMD} waf configure build install -post-install: +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} .include <bsd.port.mk> - -EXTRACT_AFTER_ARGS+= --exclude doc/source
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512091428.tB9ESlMU003572>