From owner-svn-ports-all@FreeBSD.ORG Tue Jun 3 08:18:57 2014 Return-Path: Delivered-To: svn-ports-all@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 97FC0AA8; Tue, 3 Jun 2014 08:18:57 +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 844DB2B96; Tue, 3 Jun 2014 08:18:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s538Ivjt032006; Tue, 3 Jun 2014 08:18:57 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s538IucA032001; Tue, 3 Jun 2014 08:18:56 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201406030818.s538IucA032001@svn.freebsd.org> From: Martin Wilke Date: Tue, 3 Jun 2014 08:18:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r356305 - in head/comms: . py-libconcord 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.18 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, 03 Jun 2014 08:18:57 -0000 Author: miwi Date: Tue Jun 3 08:18:56 2014 New Revision: 356305 URL: http://svnweb.freebsd.org/changeset/ports/356305 QAT: https://qat.redports.org/buildarchive/r356305/ Log: The concordance software suite allows you to program your Logitech Harmony remote using a configuration object retreived from the harmony website. The Logitech Harmony is a highly configuration universal remote than can control most multimedia devices. This port contains the Python bindings for the concordance framework. PR: ports/190547 Submitted by: Stephen Hurd Added: head/comms/py-libconcord/ head/comms/py-libconcord/Makefile (contents, props changed) head/comms/py-libconcord/distinfo (contents, props changed) head/comms/py-libconcord/pkg-descr (contents, props changed) head/comms/py-libconcord/pkg-plist (contents, props changed) Modified: head/comms/Makefile Modified: head/comms/Makefile ============================================================================== --- head/comms/Makefile Tue Jun 3 08:17:39 2014 (r356304) +++ head/comms/Makefile Tue Jun 3 08:18:56 2014 (r356305) @@ -120,6 +120,7 @@ SUBDIR += pr SUBDIR += predict SUBDIR += py-bulksms + SUBDIR += py-libconcord SUBDIR += py-libimobiledevice SUBDIR += py-lirc SUBDIR += py-serial Added: head/comms/py-libconcord/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/py-libconcord/Makefile Tue Jun 3 08:18:56 2014 (r356305) @@ -0,0 +1,24 @@ +# Created by: Stephen Hurd +# $FreeBSD$ + +PORTNAME= libconcord +PORTVERSION= 1.1 +CATEGORIES= comms +MASTER_SITES= SF/concordance/concordance/${PORTVERSION} +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= concordance-${PORTVERSION} + +MAINTAINER= shurd@sasktel.net +COMMENT= Python bindings for Logitech Harmony library + +LICENSE= GPLv2 + +LIB_DEPENDS= libconcord.so:${PORTSDIR}/comms/libconcord + +USE_LDCONFIG= yes +USES= tar:bzip2 +WRKSRC_SUBDIR= libconcord/bindings/python +USE_PYTHON= 2.7+ +USE_PYDISTUTILS=yes + +.include Added: head/comms/py-libconcord/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/py-libconcord/distinfo Tue Jun 3 08:18:56 2014 (r356305) @@ -0,0 +1,2 @@ +SHA256 (concordance-1.1.tar.bz2) = ca5ffbd8c0fd06d41192c1d5e3c8b964c2393ea6d3d9c5e495c1da4b2c778a05 +SIZE (concordance-1.1.tar.bz2) = 1142393 Added: head/comms/py-libconcord/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/py-libconcord/pkg-descr Tue Jun 3 08:18:56 2014 (r356305) @@ -0,0 +1,6 @@ +The concordance software suite allows you to program your Logitech Harmony +remote using a configuration object retreived from the harmony website. The +Logitech Harmony is a highly configuration universal remote than can control +most multimedia devices. + +This port contains the Python bindings for the concordance framework. Added: head/comms/py-libconcord/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/py-libconcord/pkg-plist Tue Jun 3 08:18:56 2014 (r356305) @@ -0,0 +1,3 @@ +%%PYTHON_SITELIBDIR%%/libconcord.py +%%PYTHON_SITELIBDIR%%/libconcord.pyc +%%PYTHON_SITELIBDIR%%/libconcord.pyo