From owner-svn-ports-all@freebsd.org Mon May 30 16:28:21 2016 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 B00A8B5416B; Mon, 30 May 2016 16:28:21 +0000 (UTC) (envelope-from wg@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 676521E41; Mon, 30 May 2016 16:28:21 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4UGSK8B059689; Mon, 30 May 2016 16:28:20 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4UGSK45059685; Mon, 30 May 2016 16:28:20 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201605301628.u4UGSK45059685@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Mon, 30 May 2016 16:28:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r416161 - in head/databases: . py-unqlite 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.22 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, 30 May 2016 16:28:21 -0000 Author: wg Date: Mon May 30 16:28:20 2016 New Revision: 416161 URL: https://svnweb.freebsd.org/changeset/ports/416161 Log: databases/py-unqlite: Fast Python bindings for the UnQLite embedded NoSQL database WWW: https://github.com/coleifer/unqlite-python Added: head/databases/py-unqlite/ head/databases/py-unqlite/Makefile (contents, props changed) head/databases/py-unqlite/distinfo (contents, props changed) head/databases/py-unqlite/pkg-descr (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Mon May 30 16:21:30 2016 (r416160) +++ head/databases/Makefile Mon May 30 16:28:20 2016 (r416161) @@ -794,6 +794,7 @@ SUBDIR += py-sybase SUBDIR += py-tarantool SUBDIR += py-umemcache + SUBDIR += py-unqlite SUBDIR += py-whisper SUBDIR += py3-bsddb3 SUBDIR += py33-gdbm Added: head/databases/py-unqlite/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-unqlite/Makefile Mon May 30 16:28:20 2016 (r416161) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= unqlite +PORTVERSION= 0.5.3 +CATEGORIES= databases python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wg@FreeBSD.org +COMMENT= Fast Python bindings for the UnQLite embedded NoSQL database + +LICENSE= MIT + +BUILD_DEPENDS= cython>0:lang/cython + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/databases/py-unqlite/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-unqlite/distinfo Mon May 30 16:28:20 2016 (r416161) @@ -0,0 +1,3 @@ +TIMESTAMP = 1464625232 +SHA256 (unqlite-0.5.3.tar.gz) = 510244124782764f225dd17d0e2aba2ba60d89ba56fc10ae34943c9175fbd4d1 +SIZE (unqlite-0.5.3.tar.gz) = 535060 Added: head/databases/py-unqlite/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-unqlite/pkg-descr Mon May 30 16:28:20 2016 (r416161) @@ -0,0 +1,4 @@ +Fast Python bindings for UnQLite, a lightweight, embedded NoSQL database and +JSON document store. + +WWW: https://github.com/coleifer/unqlite-python