Date: Sun, 26 May 2019 13:10:29 +0000 (UTC) From: Kai Knoblich <kai@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r502714 - head/finance/bitcoinnodestats Message-ID: <201905261310.x4QDATc6099891@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905261310.x4QDATc6099891>