Date: Mon, 30 May 2016 16:28:20 +0000 (UTC) From: William Grzybowski <wg@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r416161 - in head/databases: . py-unqlite Message-ID: <201605301628.u4UGSK45059685@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605301628.u4UGSK45059685>