svn commit: r403420 - in head/devel: . py-pyinstaller pyinstaller

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Wed Dec 9 14:28:49 UTC 2015


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 at 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 at 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


More information about the svn-ports-all mailing list