From owner-svn-ports-all@FreeBSD.ORG Tue Apr 22 13:54:44 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4A546712; Tue, 22 Apr 2014 13:54:44 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1CA6A18D0; Tue, 22 Apr 2014 13:54:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3MDshLc052722; Tue, 22 Apr 2014 13:54:43 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3MDsho2052718; Tue, 22 Apr 2014 13:54:43 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201404221354.s3MDsho2052718@svn.freebsd.org> From: Kubilay Kocak Date: Tue, 22 Apr 2014 13:54:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r351835 - in head/multimedia: . py-soco 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.17 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: Tue, 22 Apr 2014 13:54:44 -0000 Author: koobs Date: Tue Apr 22 13:54:42 2014 New Revision: 351835 URL: http://svnweb.freebsd.org/changeset/ports/351835 QAT: https://qat.redports.org/buildarchive/r351835/ Log: [NEW PORT] multimedia/py-soco: Python interface to Sonos speakers SoCo (Sonos Controller) is a simple Python class that allows you to programmatically control Sonos speakers. WWW: https://github.com/SoCo/SoCo PR: ports/186993 Submitted by: Conall O'Brien Added: head/multimedia/py-soco/ head/multimedia/py-soco/Makefile (contents, props changed) head/multimedia/py-soco/distinfo (contents, props changed) head/multimedia/py-soco/pkg-descr (contents, props changed) Modified: head/multimedia/Makefile Modified: head/multimedia/Makefile ============================================================================== --- head/multimedia/Makefile Tue Apr 22 13:41:53 2014 (r351834) +++ head/multimedia/Makefile Tue Apr 22 13:54:42 2014 (r351835) @@ -294,6 +294,7 @@ SUBDIR += py-periscope SUBDIR += py-qt4-multimedia SUBDIR += py-qt4-phonon + SUBDIR += py-soco SUBDIR += py-subliminal SUBDIR += py-tvnamer SUBDIR += pyjama Added: head/multimedia/py-soco/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/py-soco/Makefile Tue Apr 22 13:54:42 2014 (r351835) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= soco +PORTVERSION= 0.6 +CATEGORIES= multimedia python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= conall@conall.net +COMMENT= Python library to control Sonos speakers + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>0:${PORTSDIR}/www/py-requests + +USE_GITHUB= yes +GH_ACCOUNT= SoCo +GH_PROJECT= SoCo +GH_TAGNAME= v${PORTVERSION} +GH_COMMIT= 6640f85 + +USE_PYTHON= 2 +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +.include Added: head/multimedia/py-soco/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/py-soco/distinfo Tue Apr 22 13:54:42 2014 (r351835) @@ -0,0 +1,2 @@ +SHA256 (soco-0.6.tar.gz) = bf70457610ce7483539d1d4a26949c9ba125c4b0a08e7195559b88369f5be21f +SIZE (soco-0.6.tar.gz) = 429086 Added: head/multimedia/py-soco/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/py-soco/pkg-descr Tue Apr 22 13:54:42 2014 (r351835) @@ -0,0 +1,4 @@ +SoCo (Sonos Controller) is a simple Python class that allows you to +programmatically control Sonos speakers. + +WWW: https://github.com/SoCo/SoCo