1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-11 02:50:24 +00:00
Po-Chuan Hsieh 2022-02-28 17:34:35 +08:00
parent 142778b442
commit 0799859022
No known key found for this signature in database
GPG Key ID: 9A4BD10F002DD04B
3 changed files with 25 additions and 4 deletions

View File

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

View File

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

View File

@ -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"],