Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 2 Jun 2020 19:13:48 +0000 (UTC)
From:      Bernhard Froehlich <decke@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r537569 - in head/databases: . py-txredisapi
Message-ID:  <202006021913.052JDmXj095428@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: decke
Date: Tue Jun  2 19:13:48 2020
New Revision: 537569
URL: https://svnweb.freebsd.org/changeset/ports/537569

Log:
  txredisapi is a non-blocking client driver for the redis database, written in
  python. It uses twisted for the asynchronous communication with redis.
  
  WWW: https://github.com/IlyaSkriblovsky/txredisapi
  
  PR:		246813
  Submitted by:	Sascha Biberhofer <ports@skyforge.at>

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

Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile	Tue Jun  2 18:41:59 2020	(r537568)
+++ head/databases/Makefile	Tue Jun  2 19:13:48 2020	(r537569)
@@ -826,6 +826,7 @@
     SUBDIR += py-tableschema
     SUBDIR += py-tarantool
     SUBDIR += py-tiledb
+    SUBDIR += py-txredisapi
     SUBDIR += py-umemcache
     SUBDIR += py-unqlite
     SUBDIR += py-varstack

Added: head/databases/py-txredisapi/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/py-txredisapi/Makefile	Tue Jun  2 19:13:48 2020	(r537569)
@@ -0,0 +1,31 @@
+# $FreeBSD$
+
+PORTNAME=	txredisapi
+DISTVERSION=	1.4.7
+CATEGORIES=	databases python
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	ports@skyforge.at
+COMMENT=	Non-blocking redis client for python
+
+LICENSE=	APACHE20
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+# Keep the RUN_DEPENDS layout similar to the master/synapse/python_dependencies.py file
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}twisted>=0:devel/py-twisted@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR}
+TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}mock>=2.0:devel/py-mock@${PY_FLAVOR} \
+		redis-server:databases/redis
+
+USES=		python
+USE_GITHUB=	yes
+USE_PYTHON=	autoplist distutils
+
+GH_ACCOUNT=	IlyaSkriblovsky
+
+NO_ARCH=	yes
+
+do-test:
+	cd ${WRKSRC} && PYTHONPATH="." trial-${PYTHON_VER} tests
+
+.include <bsd.port.mk>

Added: head/databases/py-txredisapi/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/py-txredisapi/distinfo	Tue Jun  2 19:13:48 2020	(r537569)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1590665977
+SHA256 (IlyaSkriblovsky-txredisapi-1.4.7_GH0.tar.gz) = dfaf204ab547eeddfcf54c81734a8a06dadbbf079fd01d9c27a788c7d770376e
+SIZE (IlyaSkriblovsky-txredisapi-1.4.7_GH0.tar.gz) = 53969

Added: head/databases/py-txredisapi/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/py-txredisapi/pkg-descr	Tue Jun  2 19:13:48 2020	(r537569)
@@ -0,0 +1,4 @@
+txredisapi is a non-blocking client driver for the redis database, written in
+python. It uses twisted for the asynchronous communication with redis.
+
+WWW: https://github.com/IlyaSkriblovsky/txredisapi



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