From owner-svn-ports-head@freebsd.org Tue Feb 7 17:44:00 2017 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 E2F90CD5DAB; Tue, 7 Feb 2017 17:44:00 +0000 (UTC) (envelope-from krion@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 A3D81302; Tue, 7 Feb 2017 17:44:00 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v17Hhxwv088475; Tue, 7 Feb 2017 17:43:59 GMT (envelope-from krion@FreeBSD.org) Received: (from krion@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v17HhxOC088471; Tue, 7 Feb 2017 17:43:59 GMT (envelope-from krion@FreeBSD.org) Message-Id: <201702071743.v17HhxOC088471@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: krion set sender to krion@FreeBSD.org using -f From: Kirill Ponomarew Date: Tue, 7 Feb 2017 17:43:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r433573 - in head/net-im: . py-toxcore-c 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.23 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: Tue, 07 Feb 2017 17:44:01 -0000 Author: krion Date: Tue Feb 7 17:43:59 2017 New Revision: 433573 URL: https://svnweb.freebsd.org/changeset/ports/433573 Log: New port: net-im/py-toxcore-c PyTox provides a Pythonic binding, i.e Object-oriented instead of C style, raise exception instead of returning error code. WWW: https://github.com/TokTok/py-toxcore-c PR: 216869 Submitted by: yuri@rawbw.com Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D9476 Added: head/net-im/py-toxcore-c/ head/net-im/py-toxcore-c/Makefile (contents, props changed) head/net-im/py-toxcore-c/distinfo (contents, props changed) head/net-im/py-toxcore-c/pkg-descr (contents, props changed) Modified: head/net-im/Makefile Modified: head/net-im/Makefile ============================================================================== --- head/net-im/Makefile Tue Feb 7 17:29:52 2017 (r433572) +++ head/net-im/Makefile Tue Feb 7 17:43:59 2017 (r433573) @@ -140,6 +140,7 @@ SUBDIR += py-slackclient SUBDIR += py-sleekxmpp SUBDIR += py-telepot + SUBDIR += py-toxcore-c SUBDIR += py-twistedWords SUBDIR += py-xmpppy SUBDIR += py-xmpppy-irc Added: head/net-im/py-toxcore-c/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/py-toxcore-c/Makefile Tue Feb 7 17:43:59 2017 (r433573) @@ -0,0 +1,30 @@ +# Created by: Yuri Victorovich +# $FreeBSD$ + +PORTNAME= toxcore-c +PORTVERSION= 0.170206 +CATEGORIES= net-im net-p2p python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@rawbw.com +COMMENT= Python binding for Project-Tox + +LICENSE= LGPL3 +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +LIB_DEPENDS= libtoxcore.so:net-im/tox \ + libsodium.so:security/libsodium \ + libvpx.so:multimedia/libvpx \ + libopus.so:audio/opus + +USE_GITHUB= yes +GH_ACCOUNT= TokTok +GH_PROJECT= py-toxcore-c +GH_TAGNAME= ebced1f + +USES= python +USE_PYTHON= distutils autoplist + +CFLAGS+= -I${LOCALBASE}/include + +.include Added: head/net-im/py-toxcore-c/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/py-toxcore-c/distinfo Tue Feb 7 17:43:59 2017 (r433573) @@ -0,0 +1,3 @@ +TIMESTAMP = 1486430415 +SHA256 (TokTok-py-toxcore-c-0.170206-ebced1f_GH0.tar.gz) = 9d5edf0991ee59835be4b6961792bd33b6f0d7703fb16827d9bf09b6f94610fc +SIZE (TokTok-py-toxcore-c-0.170206-ebced1f_GH0.tar.gz) = 45529 Added: head/net-im/py-toxcore-c/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/py-toxcore-c/pkg-descr Tue Feb 7 17:43:59 2017 (r433573) @@ -0,0 +1,4 @@ +PyTox provides a Pythonic binding, i.e Object-oriented instead of C style, +raise exception instead of returning error code. + +WWW: https://github.com/TokTok/py-toxcore-c