From owner-svn-ports-head@freebsd.org Sat Aug 15 11:05:07 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9F75A9BAAAC; Sat, 15 Aug 2015 11:05:07 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9061C181F; Sat, 15 Aug 2015 11:05:07 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FB57N0016387; Sat, 15 Aug 2015 11:05:07 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FB570D016386; Sat, 15 Aug 2015 11:05:07 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201508151105.t7FB570D016386@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sat, 15 Aug 2015 11:05:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394294 - 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.20 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: Sat, 15 Aug 2015 11:05:07 -0000 Author: rene Date: Sat Aug 15 11:05:06 2015 New Revision: 394294 URL: https://svnweb.freebsd.org/changeset/ports/394294 Log: multimedia/spotify-websocket-api: as discussed with the author, mark this port as IGNORE because login fails and set expiration date to 2016-01-01. While here pet portlint. Modified: head/multimedia/spotify-websocket-api/Makefile Modified: head/multimedia/spotify-websocket-api/Makefile ============================================================================== --- head/multimedia/spotify-websocket-api/Makefile Sat Aug 15 10:36:04 2015 (r394293) +++ head/multimedia/spotify-websocket-api/Makefile Sat Aug 15 11:05:06 2015 (r394294) @@ -10,6 +10,10 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= rene@FreeBSD.org COMMENT= Websocket API and client for Spotify +IGNORE= login fails due to protocol changes +DEPRECATED= ${IGNORE} +EXPIRATION_DATE=2016-01-01 + NO_ARCH= yes USE_GITHUB= yes @@ -17,7 +21,7 @@ GH_ACCOUNT= Hexxeh GH_PROJECT= spotify-websocket-api GH_TAGNAME= d397ed2 -USES= shebangfix python +USES= python shebangfix SHEBANG_FILES= spotify_web/spotify.py ${CLIENTFILES} USE_PYTHON= autoplist concurrent distutils @@ -51,13 +55,13 @@ post-patch: post-install: .for f in ${CLIENTFILES} - @${INSTALL_SCRIPT} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin .endfor - @${LN} -s ${PREFIX}/bin/respotify.py ${STAGEDIR}${PREFIX}/bin/respotify + ${LN} -s ${PREFIX}/bin/respotify.py ${STAGEDIR}${PREFIX}/bin/respotify - @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} .for f in ${PORTEXAMPLES} - @${INSTALL_SCRIPT} ${WRKSRC}/examples/${f} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_SCRIPT} ${WRKSRC}/examples/${f} ${STAGEDIR}${EXAMPLESDIR} .endfor .include