summaryrefslogtreecommitdiff
path: root/databases/py-python-binary-memcached
diff options
context:
space:
mode:
authorPo-Chuan Hsieh <sunpoet@FreeBSD.org>2022-02-28 17:34:35 +0800
committerPo-Chuan Hsieh <sunpoet@FreeBSD.org>2022-02-28 20:46:09 +0800
commit0799859022c0af319f43401d3fe4b8715ae785bd (patch)
tree566cad1ee5f60a5fd621f9db9a638da78bdb90e0 /databases/py-python-binary-memcached
parentdatabases/py-apsw: Update to 3.37.0 (diff)
databases/py-python-binary-memcached: Update to 0.31.1
Changes: https://github.com/jaysonsantos/python-binary-memcached/releases https://github.com/jaysonsantos/python-binary-memcached/blob/master/CHANGELOG.md
Diffstat (limited to '')
-rw-r--r--databases/py-python-binary-memcached/Makefile2
-rw-r--r--databases/py-python-binary-memcached/distinfo6
-rw-r--r--databases/py-python-binary-memcached/files/patch-setup.py21
3 files changed, 25 insertions, 4 deletions
diff --git a/databases/py-python-binary-memcached/Makefile b/databases/py-python-binary-memcached/Makefile
index 8a57bfeeeff2..897b8977c2b7 100644
--- a/databases/py-python-binary-memcached/Makefile
+++ b/databases/py-python-binary-memcached/Makefile
@@ -1,7 +1,7 @@
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
PORTNAME= python-binary-memcached
-PORTVERSION= 0.30.1
+PORTVERSION= 0.31.1
CATEGORIES= databases python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
diff --git a/databases/py-python-binary-memcached/distinfo b/databases/py-python-binary-memcached/distinfo
index cb8eaced9033..1cd76bf843b6 100644
--- a/databases/py-python-binary-memcached/distinfo
+++ b/databases/py-python-binary-memcached/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1602524155
-SHA256 (python-binary-memcached-0.30.1.tar.gz) = f91c3d79d022121c22ef733e9beee86e0598e29ffec67401c68cece1ba7f036a
-SIZE (python-binary-memcached-0.30.1.tar.gz) = 95123
+TIMESTAMP = 1643971032
+SHA256 (python-binary-memcached-0.31.1.tar.gz) = de4056f00a15d054dcf1af87d6cc9564876699e52da954c3ef44e8c5753d4050
+SIZE (python-binary-memcached-0.31.1.tar.gz) = 95924
diff --git a/databases/py-python-binary-memcached/files/patch-setup.py b/databases/py-python-binary-memcached/files/patch-setup.py
new file mode 100644
index 000000000000..0d9609838160
--- /dev/null
+++ b/databases/py-python-binary-memcached/files/patch-setup.py
@@ -0,0 +1,21 @@
+--- setup.py.orig 2021-12-29 08:31:32 UTC
++++ setup.py
+@@ -2,7 +2,6 @@ import os
+ import sys
+
+ from setuptools import setup
+-from m2r import convert
+
+
+ def read(filename):
+@@ -19,8 +18,8 @@ setup(
+ author="Jayson Reis",
+ author_email="santosdosreis@gmail.com",
+ description="A pure python module to access memcached via its binary protocol with SASL auth support",
+- long_description="{0}\n{1}".format(
+- read("README.rst"), convert(read("CHANGELOG.md"))
++ long_description="{0}".format(
++ read("README.rst")
+ ),
+ url="https://github.com/jaysonsantos/python-binary-memcached",
+ packages=["bmemcached", "bmemcached.client"],