svn commit: r546973 - in head/databases: . py-python-binary-memcached

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sun Aug 30 07:12:39 UTC 2020


Author: sunpoet
Date: Sun Aug 30 07:12:37 2020
New Revision: 546973
URL: https://svnweb.freebsd.org/changeset/ports/546973

Log:
  Add py-python-binary-memcached 0.30.0
  
  bmemcached is a pure python module (thread safe) to access memcached via it's
  binary with SASL auth support.
  
  The main purpose of this module it to be able to communicate with memcached
  using binary protocol and support authentication, so it can work with Heroku for
  example.
  
  WWW: https://github.com/jaysonsantos/python-binary-memcached

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

Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile	Sun Aug 30 07:07:43 2020	(r546972)
+++ head/databases/Makefile	Sun Aug 30 07:12:37 2020	(r546973)
@@ -786,6 +786,7 @@
     SUBDIR += py-pyodbc
     SUBDIR += py-pypuppetdb
     SUBDIR += py-python-arango
+    SUBDIR += py-python-binary-memcached
     SUBDIR += py-python-memcached
     SUBDIR += py-python-rrdtool
     SUBDIR += py-python-sql

Added: head/databases/py-python-binary-memcached/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/py-python-binary-memcached/Makefile	Sun Aug 30 07:12:37 2020	(r546973)
@@ -0,0 +1,27 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	python-binary-memcached
+PORTVERSION=	0.30.0
+CATEGORIES=	databases python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet at FreeBSD.org
+COMMENT=	Pure python module to access memcached via its binary protocol
+
+LICENSE=	MIT
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}uhashring>=0:security/py-uhashring@${PY_FLAVOR}
+TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+do-test:
+	cd ${WRKSRC} && ${SETENV} ${PYTHON_CMD} -m pytest
+
+.include <bsd.port.mk>

Added: head/databases/py-python-binary-memcached/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/py-python-binary-memcached/distinfo	Sun Aug 30 07:12:37 2020	(r546973)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1598605156
+SHA256 (python-binary-memcached-0.30.0.tar.gz) = 93669e5620b9fa9ab55d475191a2c3853132b693c5de719ed10eda2c8829391c
+SIZE (python-binary-memcached-0.30.0.tar.gz) = 93280

Added: head/databases/py-python-binary-memcached/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/py-python-binary-memcached/pkg-descr	Sun Aug 30 07:12:37 2020	(r546973)
@@ -0,0 +1,8 @@
+bmemcached is a pure python module (thread safe) to access memcached via it's
+binary with SASL auth support.
+
+The main purpose of this module it to be able to communicate with memcached
+using binary protocol and support authentication, so it can work with Heroku for
+example.
+
+WWW: https://github.com/jaysonsantos/python-binary-memcached


More information about the svn-ports-head mailing list