From owner-svn-ports-head@FreeBSD.ORG Sun Jan 12 23:24:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 630CD381; Sun, 12 Jan 2014 23:24:31 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4E3D01A6F; Sun, 12 Jan 2014 23:24:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0CNOVlJ066651; Sun, 12 Jan 2014 23:24:31 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0CNOVEA066650; Sun, 12 Jan 2014 23:24:31 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201401122324.s0CNOVEA066650@svn.freebsd.org> From: Rene Ladan Date: Sun, 12 Jan 2014 23:24:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r339561 - head/multimedia/spotify-websocket-api 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.17 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: Sun, 12 Jan 2014 23:24:31 -0000 Author: rene Date: Sun Jan 12 23:24:30 2014 New Revision: 339561 URL: http://svnweb.freebsd.org/changeset/ports/339561 Log: - Also apply shebangfix to files installed in PREFIX/bin - Bump PORTREVISION Submitted by: antoine Modified: head/multimedia/spotify-websocket-api/Makefile Modified: head/multimedia/spotify-websocket-api/Makefile ============================================================================== --- head/multimedia/spotify-websocket-api/Makefile Sun Jan 12 22:59:06 2014 (r339560) +++ head/multimedia/spotify-websocket-api/Makefile Sun Jan 12 23:24:30 2014 (r339561) @@ -3,7 +3,7 @@ PORTNAME= SpotifyWebsocketAPI PORTVERSION= 0.2 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= multimedia python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -19,7 +19,7 @@ GH_PROJECT= spotify-websocket-api GH_TAGNAME= ${GH_COMMIT} USES= shebangfix -SHEBANG_FILES= spotify_web/spotify.py +SHEBANG_FILES= spotify_web/spotify.py ${CLIENTFILES} USE_PYTHON= yes # tested with 2.7 USE_PYDISTUTILS= yes PYDISTUTILS_AUTOPLIST= yes @@ -30,7 +30,8 @@ OPTIONS_DEFINE= EXAMPLES PORTEXAMPLES= blocking.py nonblocking.py decode_mercury.py play.py \ serve.py ctype.py gstreamer.py -CLIENTFILES= respotify.py respotify-helper.py +CLIENTFILES= clients/respotify/respotify.py \ + clients/respotify/respotify-helper.py RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=1.1.0:${PORTSDIR}/www/py-requests \ ${PYTHON_PKGNAMEPREFIX}ws4py>=0.2.4:${PORTSDIR}/www/py-ws4py \ @@ -51,7 +52,7 @@ post-patch: post-install: .for f in ${CLIENTFILES} - @${INSTALL_SCRIPT} ${WRKSRC}/clients/respotify/${f} ${STAGEDIR}${PREFIX}/bin + @${INSTALL_SCRIPT} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin .endfor @${LN} -s ${PREFIX}/bin/respotify.py ${STAGEDIR}${PREFIX}/bin/respotify