From owner-svn-ports-all@freebsd.org Mon Jun 5 13:00:22 2017 Return-Path: Delivered-To: svn-ports-all@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 79837AF8ABC; Mon, 5 Jun 2017 13:00:22 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 5580F7D6B9; Mon, 5 Jun 2017 13:00:22 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v55D0Lku001137; Mon, 5 Jun 2017 13:00:21 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v55D0LAC001133; Mon, 5 Jun 2017 13:00:21 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201706051300.v55D0LAC001133@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Mon, 5 Jun 2017 13:00:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r442616 - in head/audio: . py-soundscrape X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2017 13:00:22 -0000 Author: cpm Date: Mon Jun 5 13:00:21 2017 New Revision: 442616 URL: https://svnweb.freebsd.org/changeset/ports/442616 Log: Add new port audio/py-soundscrape SoundScrape makes it super easy to download artists from SoundCloud, Bandcamp and MixCloud. It automatically creates ID3 tags as well (including album art), which is handy. WWW: https://github.com/Miserlou/SoundScrape Reviewed by: koobs Differential Revision: https://reviews.freebsd.org/D11049 Added: head/audio/py-soundscrape/ head/audio/py-soundscrape/Makefile (contents, props changed) head/audio/py-soundscrape/distinfo (contents, props changed) head/audio/py-soundscrape/pkg-descr (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Mon Jun 5 12:59:09 2017 (r442615) +++ head/audio/Makefile Mon Jun 5 13:00:21 2017 (r442616) @@ -647,6 +647,7 @@ SUBDIR += py-pyliblo SUBDIR += py-shout SUBDIR += py-soundcloud + SUBDIR += py-soundscrape SUBDIR += py-speechrecognition SUBDIR += py-speex SUBDIR += py-tagpy Added: head/audio/py-soundscrape/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/py-soundscrape/Makefile Mon Jun 5 13:00:21 2017 (r442616) @@ -0,0 +1,32 @@ +# Created by: Carlos J. Puga Medina +# $FreeBSD$ + +PORTNAME= soundscrape +PORTVERSION= 0.30.0 +CATEGORIES= audio python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= cpm@FreeBSD.org +COMMENT= SoundCloud downloader in python + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mutagen>=1.31.0:audio/py-mutagen \ + ${PYTHON_PKGNAMEPREFIX}soundcloud>=0.4.1:audio/py-soundcloud \ + ${PYTHON_PKGNAMEPREFIX}args>=0.1.0:devel/py-args \ + ${PYTHON_PKGNAMEPREFIX}clint>=0.3.2:devel/py-clint \ + ${PYTHON_PKGNAMEPREFIX}demjson>=2.2.2:devel/py-demjson \ + ${PYTHON_PKGNAMEPREFIX}fudge>=1.0.3:devel/py-fudge \ + ${PYTHON_PKGNAMEPREFIX}nose>=1.3.7:devel/py-nose \ + ${PYTHON_PKGNAMEPREFIX}simplejson>=3.3.1:devel/py-simplejson \ + ${PYTHON_PKGNAMEPREFIX}wheel>=0.24.0:devel/py-wheel \ + ${PYTHON_PKGNAMEPREFIX}requests>=2.9.0:www/py-requests + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include Added: head/audio/py-soundscrape/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/py-soundscrape/distinfo Mon Jun 5 13:00:21 2017 (r442616) @@ -0,0 +1,3 @@ +TIMESTAMP = 1496600986 +SHA256 (soundscrape-0.30.0.tar.gz) = 684ce7052ae09de1a25ca05276de220803f5b83fbac068a4fcf23de1ac52061a +SIZE (soundscrape-0.30.0.tar.gz) = 18260 Added: head/audio/py-soundscrape/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/py-soundscrape/pkg-descr Mon Jun 5 13:00:21 2017 (r442616) @@ -0,0 +1,5 @@ +SoundScrape makes it super easy to download artists from SoundCloud, Bandcamp +and MixCloud. It automatically creates ID3 tags as well (including album art), +which is handy. + +WWW: https://github.com/Miserlou/SoundScrape