Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 May 2019 21:15:04 +0000 (UTC)
From:      Kai Knoblich <kai@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r502171 - in head/databases: . py-minidb
Message-ID:  <201905202115.x4KLF4mQ077471@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kai
Date: Mon May 20 21:15:04 2019
New Revision: 502171
URL: https://svnweb.freebsd.org/changeset/ports/502171

Log:
  New port: databases/py-minidb
  
  Provides easy storaging of Python objects in a SQLite 3 database and working
  with the data in an easy way with concise syntax.
  
  WWW: https://github.com/thp/minidb

Added:
  head/databases/py-minidb/
  head/databases/py-minidb/Makefile   (contents, props changed)
  head/databases/py-minidb/distinfo   (contents, props changed)
  head/databases/py-minidb/pkg-descr   (contents, props changed)
Modified:
  head/databases/Makefile

Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile	Mon May 20 21:04:01 2019	(r502170)
+++ head/databases/Makefile	Mon May 20 21:15:04 2019	(r502171)
@@ -780,6 +780,7 @@
     SUBDIR += py-leveldb
     SUBDIR += py-lmdb
     SUBDIR += py-marshmallow-sqlalchemy
+    SUBDIR += py-minidb
     SUBDIR += py-mongoengine
     SUBDIR += py-motor
     SUBDIR += py-mycli

Added: head/databases/py-minidb/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/py-minidb/Makefile	Mon May 20 21:15:04 2019	(r502171)
@@ -0,0 +1,26 @@
+# $FreeBSD$
+
+PORTNAME=	minidb
+DISTVERSION=	2.0.2
+CATEGORIES=	databases python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	kai@FreeBSD.org
+COMMENT=	Simple SQLite3-based store for Python objects
+
+LICENSE=	ISCL
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR}
+TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}nose>0:devel/py-nose@${PY_FLAVOR}
+
+USES=		python:3.3+
+USE_PYTHON=	distutils autoplist
+
+NO_ARCH=	yes
+
+do-test:
+	@cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -v
+
+.include <bsd.port.mk>

Added: head/databases/py-minidb/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/py-minidb/distinfo	Mon May 20 21:15:04 2019	(r502171)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1558316699
+SHA256 (minidb-2.0.2.tar.gz) = 43d59231556e9ed43d88c8c1ffcca30886b4db6436625599eeeb22bb9f74ab2b
+SIZE (minidb-2.0.2.tar.gz) = 13928

Added: head/databases/py-minidb/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/py-minidb/pkg-descr	Mon May 20 21:15:04 2019	(r502171)
@@ -0,0 +1,4 @@
+Provides easy storaging of Python objects in a SQLite 3 database and working
+with the data in an easy way with concise syntax.
+
+WWW: https://github.com/thp/minidb



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905202115.x4KLF4mQ077471>