1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-21 04:06:46 +00:00

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
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2020-08-30 07:12:37 +00:00
parent afe72edb94
commit 359ea5d1be
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=546973
4 changed files with 39 additions and 0 deletions

View File

@ -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

View File

@ -0,0 +1,27 @@
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
# $FreeBSD$
PORTNAME= python-binary-memcached
PORTVERSION= 0.30.0
CATEGORIES= databases python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= sunpoet@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>

View File

@ -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

View File

@ -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