From owner-svn-ports-head@FreeBSD.ORG Thu Oct 31 19:45:57 2013 Return-Path: Delivered-To: svn-ports-head@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 ESMTP id 2F6AF88D; Thu, 31 Oct 2013 19:45:57 +0000 (UTC) (envelope-from vg@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0C45B2CBA; Thu, 31 Oct 2013 19:45:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9VJjuS2031826; Thu, 31 Oct 2013 19:45:56 GMT (envelope-from vg@svn.freebsd.org) Received: (from vg@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9VJjulw031821; Thu, 31 Oct 2013 19:45:56 GMT (envelope-from vg@svn.freebsd.org) Message-Id: <201310311945.r9VJjulw031821@svn.freebsd.org> From: Veniamin Gvozdikov Date: Thu, 31 Oct 2013 19:45:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r332280 - in head/devel: . py-tarantool-queue 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.14 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: Thu, 31 Oct 2013 19:45:57 -0000 Author: vg Date: Thu Oct 31 19:45:55 2013 New Revision: 332280 URL: http://svnweb.freebsd.org/changeset/ports/332280 Log: Python Bindings for Tarantool Queue More details about Tarantool Queue on the page: https://github.com/tarantool/queue WWW: https://github.com/tarantool/tarantool-queue-python WWW: https://pypi.python.org/pypi/tarantool-queue Approved by: eadler, osa, rm (mentors, implicit) Added: head/devel/py-tarantool-queue/ head/devel/py-tarantool-queue/Makefile (contents, props changed) head/devel/py-tarantool-queue/distinfo (contents, props changed) head/devel/py-tarantool-queue/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Oct 31 19:38:31 2013 (r332279) +++ head/devel/Makefile Thu Oct 31 19:45:55 2013 (r332280) @@ -3744,6 +3744,7 @@ SUBDIR += py-sysctl SUBDIR += py-sysv_ipc SUBDIR += py-tables + SUBDIR += py-tarantool-queue SUBDIR += py-tconfpy SUBDIR += py-tempstorage SUBDIR += py-termcolor Added: head/devel/py-tarantool-queue/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-tarantool-queue/Makefile Thu Oct 31 19:45:55 2013 (r332280) @@ -0,0 +1,26 @@ +# Created by: Veniamin Gvozdikov +# $FreeBSD$ + +PORTNAME= tarantool-queue +PORTVERSION= 0.1.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= vg@FreeBSD.org +COMMENT= Python bindings for Tarantool queue + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tarantool>=0:${PORTSDIR}/databases/py-tarantool \ + ${PYTHON_PKGNAMEPREFIX}msgpack>=0:${PORTSDIR}/devel/py-msgpack + +USE_PYTHON= yes +USE_PYDISTUTILS=yes +INSTALLS_EGGINFO=yes +PYDISTUTILS_AUTOPLIST=yes + +do-configure: + ${REINPLACE_CMD} -i -e "1d" ${WRKSRC}/setup.py + +.include Added: head/devel/py-tarantool-queue/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-tarantool-queue/distinfo Thu Oct 31 19:45:55 2013 (r332280) @@ -0,0 +1,2 @@ +SHA256 (tarantool-queue-0.1.0.tar.gz) = 8e99b429aaa1465fe7e818534e5f3baccca021e61bb48486e3faece83f6d5e07 +SIZE (tarantool-queue-0.1.0.tar.gz) = 6383 Added: head/devel/py-tarantool-queue/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-tarantool-queue/pkg-descr Thu Oct 31 19:45:55 2013 (r332280) @@ -0,0 +1,7 @@ +Python Bindings for Tarantool Queue + +More details about Tarantool Queue on the page: +https://github.com/tarantool/queue + +WWW: https://github.com/tarantool/tarantool-queue-python +WWW: https://pypi.python.org/pypi/tarantool-queue