From owner-svn-ports-head@freebsd.org Wed Dec 9 14:28:49 2015 Return-Path: Delivered-To: svn-ports-head@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 428F09D4C70; Wed, 9 Dec 2015 14:28:49 +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 E71501D9C; Wed, 9 Dec 2015 14:28:48 +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 tB9ESlF6003574; Wed, 9 Dec 2015 14:28:47 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB9ESlMU003572; Wed, 9 Dec 2015 14:28:47 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201512091428.tB9ESlMU003572@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 9 Dec 2015 14:28:47 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Dec 2015 14:28:49 -0000 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 # $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 - -EXTRACT_AFTER_ARGS+= --exclude doc/source