svn commit: r438789 - in head: devel/omniORB devel/py-mwlib devel/py-pycallgraph games/pycadia games/pysolfc games/pysycache graphics/py-freeimagepy graphics/py-gphoto2 graphics/tilecache irc/py-ir...

Martin Wilke miwi at FreeBSD.org
Tue Apr 18 18:26:21 UTC 2017


Author: miwi
Date: Tue Apr 18 18:26:19 2017
New Revision: 438789
URL: https://svnweb.freebsd.org/changeset/ports/438789

Log:
  - Fix Shebangs

Modified:
  head/devel/omniORB/Makefile
  head/devel/py-mwlib/Makefile
  head/devel/py-pycallgraph/Makefile
  head/games/pycadia/Makefile
  head/games/pysolfc/Makefile
  head/games/pysycache/Makefile
  head/graphics/py-freeimagepy/Makefile
  head/graphics/py-gphoto2/Makefile
  head/graphics/tilecache/Makefile
  head/irc/py-irc/Makefile
  head/net-im/emesene/Makefile
  head/www/py-django-devel/Makefile
  head/www/py-django110/Makefile
  head/www/py-django19/Makefile

Modified: head/devel/omniORB/Makefile
==============================================================================
--- head/devel/omniORB/Makefile	Tue Apr 18 18:16:39 2017	(r438788)
+++ head/devel/omniORB/Makefile	Tue Apr 18 18:26:19 2017	(r438789)
@@ -3,6 +3,7 @@
 
 PORTNAME=	omniORB
 DISTVERSION=	4.2.1-2
+PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	SF/${PORTNAME:tl}/${PORTNAME}/${PORTNAME}-${DISTVERSION:S/-2//}
 
@@ -14,7 +15,7 @@ LICENSE=	GPLv2
 CONFLICTS=	omniORB41-4.1.*
 PLIST_SUB+=	SONUM=1
 GNU_CONFIGURE=	yes
-USES=		gmake pkgconfig python tar:bzip2 ssl
+USES=		gmake pkgconfig python tar:bzip2 shebangfix ssl
 USE_LDCONFIG=	yes
 MAKEFILE=	GNUmakefile
 CONFIGURE_ENV+=	PYTHON=${PYTHON_CMD}
@@ -26,6 +27,7 @@ OPTIONS_DEFAULT=	STATIC
 OPTIONS_SUB=	yes
 STATIC_CONFIGURE_OFF=	--disable-static
 WRKSRC=		${WRKDIR}/${PORTNAME}-${DISTVERSION:S/-2//}
+SHEBANG_FILES=	src/tool/omniidl/python/scripts/omniidlrun.py
 
 post-patch:
 	@${REINPLACE_CMD} -e 's#-O2#${CFLAGS}#g' ${WRKSRC}/mk/beforeauto.mk.in

Modified: head/devel/py-mwlib/Makefile
==============================================================================
--- head/devel/py-mwlib/Makefile	Tue Apr 18 18:16:39 2017	(r438788)
+++ head/devel/py-mwlib/Makefile	Tue Apr 18 18:26:19 2017	(r438789)
@@ -3,7 +3,7 @@
 
 PORTNAME=	mwlib
 PORTVERSION=	0.15.14
-PORTREVISION=	6
+PORTREVISION=	7
 CATEGORIES=	devel python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -34,7 +34,9 @@ RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}apip
 		${PYTHON_PKGNAMEPREFIX}webob>=0.9.6.1:www/py-webob
 
 USES=		python:2 shebangfix zip
-SHEBANG_FILES=	mwlib/EasyTimeline.pl
+SHEBANG_FILES=	mwlib/EasyTimeline.pl mwlib/writer/*.py \
+		mwlib/refine/*.py mwlib/parser/*.py \
+		mwlib/net/*.py mwlib/siteinfo/*.py
 USE_PYTHON=	autoplist distutils
 USE_RC_SUBR=	mwqserve nserve nslave postman
 

Modified: head/devel/py-pycallgraph/Makefile
==============================================================================
--- head/devel/py-pycallgraph/Makefile	Tue Apr 18 18:16:39 2017	(r438788)
+++ head/devel/py-pycallgraph/Makefile	Tue Apr 18 18:26:19 2017	(r438789)
@@ -3,7 +3,7 @@
 
 PORTNAME=	pycallgraph
 PORTVERSION=	0.5.1
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	devel python
 MASTER_SITES=	http://pycallgraph.slowchop.com/files/download/ \
 		http://www.cs.nctu.edu.tw/~lwhsu/ports/distfiles/
@@ -16,14 +16,14 @@ LICENSE=	GPLv2
 
 RUN_DEPENDS+=	dot:graphics/graphviz
 
-USES=		python
+USES=		python shebangfix
 USE_PYTHON=	distutils
+SHEBANG_FILES=	examples/*.py
 
 EXAMPLESDIR=	${PREFIX}/share/examples/py-${PORTNAME}
 
 OPTIONS_DEFINE=	EXAMPLES
 
-
 post-install:
 	${INSTALL_MAN} ${WRKSRC}/man/pycallgraph.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
 

Modified: head/games/pycadia/Makefile
==============================================================================
--- head/games/pycadia/Makefile	Tue Apr 18 18:16:39 2017	(r438788)
+++ head/games/pycadia/Makefile	Tue Apr 18 18:26:19 2017	(r438789)
@@ -3,7 +3,7 @@
 
 PORTNAME=	pycadia
 PORTVERSION=	0.5.1
-PORTREVISION=	6
+PORTREVISION=	7
 CATEGORIES=	games python
 MASTER_SITES=	GENTOO \
 		SF/nemysisfreebsdp/games/
@@ -19,8 +19,9 @@ RUN_DEPENDS=	${PYGAME}
 
 WRKSRC=		${WRKDIR}/${PORTNAME}
 
-USES=		python:2
+USES=		python:2 shebangfix
 USE_GNOME=	pygtk2 libgnomeui
+SHEBANG_FILES=	*.py
 
 PORTDOCS=	CHANGELOG README gravity.txt
 OPTIONS_DEFINE=	DOCS

Modified: head/games/pysolfc/Makefile
==============================================================================
--- head/games/pysolfc/Makefile	Tue Apr 18 18:16:39 2017	(r438788)
+++ head/games/pysolfc/Makefile	Tue Apr 18 18:26:19 2017	(r438789)
@@ -2,7 +2,7 @@
 
 PORTNAME=	pysolfc
 PORTVERSION=	2.0
-PORTREVISION=	6
+PORTREVISION=	7
 CATEGORIES=	games python
 MASTER_SITES=	SF/${PORTNAME}/PySolFC/PySolFC-${PORTVERSION} \
 		SF/${PORTNAME}/PySolFC-Cardsets/PySolFC-Cardsets-${PORTVERSION}:cardsets
@@ -17,9 +17,10 @@ LICENSE=	GPLv3
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}tkinter>0:x11-toolkits/py-tkinter \
 		${PYTHON_PKGNAMEPREFIX}pillow>0:graphics/py-pillow
 
-USES=		python tar:bzip2
+USES=		python shebangfix tar:bzip2
 USE_PYTHON=	autoplist distutils
 NO_ARCH=	yes
+SHEBANG_FILES=	data/themes/clearlooks/create_imgs.py
 
 PLIST_FILES=	share/pixmaps/pysolfc.png
 DATADIR=	${PREFIX}/share/PySolFC

Modified: head/games/pysycache/Makefile
==============================================================================
--- head/games/pysycache/Makefile	Tue Apr 18 18:16:39 2017	(r438788)
+++ head/games/pysycache/Makefile	Tue Apr 18 18:26:19 2017	(r438789)
@@ -3,7 +3,7 @@
 
 PORTNAME=	pysycache
 PORTVERSION=	2.0
-PORTREVISION=	8
+PORTREVISION=	9
 CATEGORIES=	games python
 MASTER_SITES=	http://download.gna.org/py4childs/${PORTNAME}/v${PORTVERSION}/
 DIST_SUBDIR=	${PORTNAME}
@@ -16,10 +16,11 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 
 RUN_DEPENDS=	${PYTHON_SITELIBDIR}/pygame/__init__.py:devel/py-game
 
-USES=		python zip
+USES=		python shebangfix zip
 NO_BUILD=	yes
 WRKSRC=		${WRKDIR}/${PORTNAME}
 SUB_FILES=	pkg-message
+SHEBANG_FILES=	*.py
 
 OPTIONS_DEFINE=	DOCS
 

Modified: head/graphics/py-freeimagepy/Makefile
==============================================================================
--- head/graphics/py-freeimagepy/Makefile	Tue Apr 18 18:16:39 2017	(r438788)
+++ head/graphics/py-freeimagepy/Makefile	Tue Apr 18 18:26:19 2017	(r438789)
@@ -3,6 +3,7 @@
 
 PORTNAME=	freeimagepy
 PORTVERSION=	2.0.1
+PORTREVISION=	1
 CATEGORIES=	graphics python
 MASTER_SITES=	SF/${PORTNAME}/FreeImagePy/V${PORTVERSION}
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -14,7 +15,9 @@ COMMENT=	FreeImage library python wrappe
 LIB_DEPENDS=	libfreeimage.so:graphics/freeimage
 
 WRKSRC=		${WRKDIR}/FreeImagePy-${PORTVERSION}
-USES=		python tar:bzip2
+USES=		python shebangfix tar:bzip2
 USE_PYTHON=	distutils autoplist
+NO_ARCH=	yes
+SHEBANG_FILES=	FreeImagePy/*.py
 
 .include <bsd.port.mk>

Modified: head/graphics/py-gphoto2/Makefile
==============================================================================
--- head/graphics/py-gphoto2/Makefile	Tue Apr 18 18:16:39 2017	(r438788)
+++ head/graphics/py-gphoto2/Makefile	Tue Apr 18 18:26:19 2017	(r438789)
@@ -2,6 +2,7 @@
 
 PORTNAME=	gphoto2
 PORTVERSION=	1.5.1
+PORTREVISION=	1
 CATEGORIES=	graphics python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -15,8 +16,9 @@ LICENSE_FILE=	${WRKSRC}/LICENSE.txt
 
 LIB_DEPENDS=	libgphoto2.so:graphics/libgphoto2
 
-USES=		pkgconfig python
+USES=		pkgconfig python shebangfix
 USE_PYTHON=	autoplist concurrent distutils
+SHEBANG_FILES=	examples/*.py
 
 OPTIONS_DEFINE=	DOCS EXAMPLES
 

Modified: head/graphics/tilecache/Makefile
==============================================================================
--- head/graphics/tilecache/Makefile	Tue Apr 18 18:16:39 2017	(r438788)
+++ head/graphics/tilecache/Makefile	Tue Apr 18 18:26:19 2017	(r438789)
@@ -3,7 +3,7 @@
 
 PORTNAME=	tilecache
 PORTVERSION=	2.11
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	graphics python geography www
 MASTER_SITES=	http://tilecache.org/
 
@@ -16,8 +16,9 @@ RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}flup
 LICENSE=	BSD3CLAUSE MIT
 LICENSE_COMB=	multi
 
-USES=		python
+USES=		python shebangfix
 USE_PYTHON=	distutils autoplist
+SHEBANG_FILES=	tilecache.cgi tilecache.fcgi
 
 FILES_ETC=	TileCache/Service.py setup.py tilecache_install_config.py
 

Modified: head/irc/py-irc/Makefile
==============================================================================
--- head/irc/py-irc/Makefile	Tue Apr 18 18:16:39 2017	(r438788)
+++ head/irc/py-irc/Makefile	Tue Apr 18 18:26:19 2017	(r438789)
@@ -3,6 +3,7 @@
 
 PORTNAME=	irc
 PORTVERSION=	13.1
+PORTREVISION=	1
 CATEGORIES=	irc python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -19,9 +20,10 @@ RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}six>
 		${PYTHON_PKGNAMEPREFIX}jaraco.util>0:devel/py-jaraco.util \
 		${PYTHON_PKGNAMEPREFIX}setuptools_scm>0:devel/py-setuptools_scm
 
-USES=		python
+USES=		python shebangfix
 USE_PYTHON=	distutils autoplist
 NO_ARCH=	yes
+SHEBANG_FILES=	irc/*.py scripts/*.py
 
 PORTEXAMPLES=	irccat.py irccat2.py servermap.py testbot.py \
 		dccreceive.py dccsend.py ssl-cat.py

Modified: head/net-im/emesene/Makefile
==============================================================================
--- head/net-im/emesene/Makefile	Tue Apr 18 18:16:39 2017	(r438788)
+++ head/net-im/emesene/Makefile	Tue Apr 18 18:26:19 2017	(r438789)
@@ -3,6 +3,7 @@
 
 PORTNAME=	emesene
 PORTVERSION=	2.12.9
+PORTREVISION=	1
 DISTVERSIONPREFIX=	v
 CATEGORIES=	net-im python
 
@@ -25,10 +26,11 @@ NO_BUILD=	yes
 
 USE_GITHUB=	yes
 
-USES=		desktop-file-utils gettext-runtime python
+USES=		desktop-file-utils gettext-runtime python shebangfix
 USE_GNOME=	pygtk2:run
 USE_GSTREAMER=	python
 INSTALLS_ICONS=	yes
+SHEBANG_FILES=	emesene/emesene
 
 do-install:
 	@${MKDIR} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/emesene

Modified: head/www/py-django-devel/Makefile
==============================================================================
--- head/www/py-django-devel/Makefile	Tue Apr 18 18:16:39 2017	(r438788)
+++ head/www/py-django-devel/Makefile	Tue Apr 18 18:26:19 2017	(r438789)
@@ -2,6 +2,7 @@
 
 PORTNAME=	django
 PORTVERSION=	${SNAPSHOTDATE}
+PORTREVISION=	1
 PORTEPOCH=	1
 CATEGORIES=	www python
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -15,9 +16,11 @@ LICENSE=	BSD3CLAUSE
 
 SNAPSHOTDATE=	20150709
 
-USES=		cpe gettext python
+USES=		cpe gettext python shebangfix
 USE_GITHUB=	yes
 USE_PYTHON=	autoplist distutils
+SHEBANG_FILES=	django/conf/project_template/manage.py \
+		django/bin/django-admin.py
 
 GH_TAGNAME=	c954931
 

Modified: head/www/py-django110/Makefile
==============================================================================
--- head/www/py-django110/Makefile	Tue Apr 18 18:16:39 2017	(r438788)
+++ head/www/py-django110/Makefile	Tue Apr 18 18:26:19 2017	(r438789)
@@ -3,6 +3,7 @@
 
 PORTNAME=	django
 PORTVERSION=	1.10.7
+PORTREVISION=	1
 CATEGORIES=	www python
 MASTER_SITES=	CHEESESHOP \
 		https://www.djangoproject.com/m/releases/${PORTVERSION}/
@@ -18,8 +19,10 @@ LICENSE=	BSD3CLAUSE
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
 NO_ARCH=	yes
-USES=		cpe python
+USES=		cpe python shebangfix
 USE_PYTHON=	autoplist distutils
+SHEBANG_FILES=	django/bin/django-admin.py \
+		django/conf/project_template/manage.py-tpl
 
 CONFLICTS_INSTALL=	py??-django-devel-* py??-django1[689]-* py??-django111-*
 CPE_VENDOR=		djangoproject

Modified: head/www/py-django19/Makefile
==============================================================================
--- head/www/py-django19/Makefile	Tue Apr 18 18:16:39 2017	(r438788)
+++ head/www/py-django19/Makefile	Tue Apr 18 18:26:19 2017	(r438789)
@@ -3,6 +3,7 @@
 
 PORTNAME=	django
 PORTVERSION=	1.9.13
+PORTREVISION=	1
 CATEGORIES=	www python
 MASTER_SITES=	CHEESESHOP \
 		https://www.djangoproject.com/m/releases/${PORTVERSION:R}/
@@ -18,8 +19,10 @@ LICENSE=	BSD3CLAUSE
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
 NO_ARCH=	yes
-USES=		cpe python
+USES=		cpe python shebangfix
 USE_PYTHON=	autoplist distutils
+SHEBANG_FILES=	django/conf/project_template/manage.py-tpl \
+		django/bin/django-admin.py
 
 CONFLICTS_INSTALL=	py??-django-devel-* py??-django1[68]-* py??-django11[01]-*
 CPE_VENDOR=		djangoproject


More information about the svn-ports-head mailing list