svn commit: r502714 - head/finance/bitcoinnodestats

Kai Knoblich kai at FreeBSD.org
Sun May 26 13:10:30 UTC 2019


Author: kai
Date: Sun May 26 13:10:29 2019
New Revision: 502714
URL: https://svnweb.freebsd.org/changeset/ports/502714

Log:
  finance/bitcoinnodestats: Fix wrong use of USES=shebangfix
  
  * Spell SHEBANG_FILES correctly
  * Install the scripts with INSTALL_SCRIPT instead of INSTALL_DATA to get
    proper QA results.
  
  PR:		238139
  Reported by:	tobik
  MFH:		2019Q2

Modified:
  head/finance/bitcoinnodestats/Makefile

Modified: head/finance/bitcoinnodestats/Makefile
==============================================================================
--- head/finance/bitcoinnodestats/Makefile	Sun May 26 12:53:21 2019	(r502713)
+++ head/finance/bitcoinnodestats/Makefile	Sun May 26 13:10:29 2019	(r502714)
@@ -2,6 +2,7 @@
 
 PORTNAME=	bitcoinnodestats
 DISTVERSION=	g20171121
+PORTREVISION=	1
 CATEGORIES=	finance python
 
 MAINTAINER=	kai at FreeBSD.org
@@ -25,15 +26,15 @@ GH_TAGNAME=	5e8772d
 
 NO_ARCH=	yes
 NO_BUILD=	yes
-SHEBANGFILES=	create_local_settings.py manage.py
+SHEBANG_FILES=	create_local_settings.py manage.py
 
 SUB_FILES=	pkg-message
 SUB_LIST=	DATADIR=${DATADIR} PYTHON_VER=${PYTHON_VER}
 
 do-install:
 	@${MKDIR} ${STAGEDIR}${DATADIR}
-.for _file in ${SHEBANGFILES}
-	${INSTALL_DATA} ${WRKSRC}/${_file} ${STAGEDIR}${DATADIR}
+.for _file in ${SHEBANG_FILES}
+	${INSTALL_SCRIPT} ${WRKSRC}/${_file} ${STAGEDIR}${DATADIR}
 .endfor
 
 .for _dir in bitcoinnodestats nodedata


More information about the svn-ports-all mailing list