pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/databases PkgSrc:
details: https://anonhg.NetBSD.org/pkgsrc/rev/0e2e3ecd5b1c
branches: trunk
changeset: 365351:0e2e3ecd5b1c
user: adam <adam%pkgsrc.org@localhost>
date: Fri Jul 14 11:36:27 2017 +0000
description:
PkgSrc:
renamed py-redis-py to py-redis
2.10.5
* Allow URL encoded parameters in Redis URLs. Characters like a "/" can
now be URL encoded and redis-py will correctly decode them.
* Added support for the WAIT command.
* Better shutdown support for the PubSub Worker Thread. It now properly
cleans up the connection, unsubscribes from any channels and patterns
previously subscribed to and consumes any waiting messages on the socket.
* Added the ability to sleep for a brief period in the event of a
WatchError occuring.
* Fixed a bug with pipeline error reporting when dealing with characters
in error messages that could not be encoded to the connection's
character set.
* Fixed a bug in Sentinel connections that would inadvertantly connect
to the master when the connection pool resets.
* Better timeout support in Pubsub get_message.
* Fixed a bug with the HiredisParser that would cause the parser to
get stuck in an endless loop if a specific number of bytes were
delivered from the socket. This fix also increases performance of
parsing large responses from the Redis server.
* Added support for ZREVRANGEBYLEX.
* ConnectionErrors are now raised if Redis refuses a connection due to
the maxclients limit being exceeded.
* max_connections can now be set when instantiating client instances.
diffstat:
databases/Makefile | 4 ++--
databases/py-redis-py/DESCR | 1 -
databases/py-redis-py/Makefile | 16 ----------------
databases/py-redis-py/PLIST | 29 -----------------------------
databases/py-redis-py/distinfo | 6 ------
databases/py-redis/DESCR | 1 +
databases/py-redis/Makefile | 19 +++++++++++++++++++
databases/py-redis/PLIST | 29 +++++++++++++++++++++++++++++
databases/py-redis/distinfo | 6 ++++++
9 files changed, 57 insertions(+), 54 deletions(-)
diffs (157 lines):
diff -r ec7d35fc9413 -r 0e2e3ecd5b1c databases/Makefile
--- a/databases/Makefile Fri Jul 14 11:02:41 2017 +0000
+++ b/databases/Makefile Fri Jul 14 11:36:27 2017 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.527 2017/05/24 19:51:12 adam Exp $
+# $NetBSD: Makefile,v 1.528 2017/07/14 11:36:27 adam Exp $
COMMENT= Databases
@@ -356,7 +356,7 @@
SUBDIR+= py-pymysql
SUBDIR+= py-python-rrdtool
SUBDIR+= py-python-sql
-SUBDIR+= py-redis-py
+SUBDIR+= py-redis
SUBDIR+= py-sqlalchemy
SUBDIR+= py-sqlalchemy-i18n
SUBDIR+= py-sqlalchemy-migrate
diff -r ec7d35fc9413 -r 0e2e3ecd5b1c databases/py-redis-py/DESCR
--- a/databases/py-redis-py/DESCR Fri Jul 14 11:02:41 2017 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-The Python interface to the Redis key-value store.
diff -r ec7d35fc9413 -r 0e2e3ecd5b1c databases/py-redis-py/Makefile
--- a/databases/py-redis-py/Makefile Fri Jul 14 11:02:41 2017 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,16 +0,0 @@
-# $NetBSD: Makefile,v 1.5 2016/06/08 17:43:22 wiz Exp $
-
-DISTNAME= redis-2.10.3
-PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/-/-py-/1}
-CATEGORIES= databases python
-MASTER_SITES= ${MASTER_SITE_PYPI:=r/redis/}
-
-MAINTAINER= rodent%NetBSD.org@localhost
-HOMEPAGE= http://github.com/andymccurdy/redis-py/
-COMMENT= Redis Python client
-LICENSE= mit
-
-DEPENDS+= redis-[0-9]*:../../databases/redis
-
-.include "../../lang/python/egg.mk"
-.include "../../mk/bsd.pkg.mk"
diff -r ec7d35fc9413 -r 0e2e3ecd5b1c databases/py-redis-py/PLIST
--- a/databases/py-redis-py/PLIST Fri Jul 14 11:02:41 2017 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,29 +0,0 @@
-@comment $NetBSD: PLIST,v 1.2 2014/06/08 15:56:39 rodent Exp $
-${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
-${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
-${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
-${PYSITELIB}/${EGG_INFODIR}/top_level.txt
-${PYSITELIB}/redis/__init__.py
-${PYSITELIB}/redis/__init__.pyc
-${PYSITELIB}/redis/__init__.pyo
-${PYSITELIB}/redis/_compat.py
-${PYSITELIB}/redis/_compat.pyc
-${PYSITELIB}/redis/_compat.pyo
-${PYSITELIB}/redis/client.py
-${PYSITELIB}/redis/client.pyc
-${PYSITELIB}/redis/client.pyo
-${PYSITELIB}/redis/connection.py
-${PYSITELIB}/redis/connection.pyc
-${PYSITELIB}/redis/connection.pyo
-${PYSITELIB}/redis/exceptions.py
-${PYSITELIB}/redis/exceptions.pyc
-${PYSITELIB}/redis/exceptions.pyo
-${PYSITELIB}/redis/lock.py
-${PYSITELIB}/redis/lock.pyc
-${PYSITELIB}/redis/lock.pyo
-${PYSITELIB}/redis/sentinel.py
-${PYSITELIB}/redis/sentinel.pyc
-${PYSITELIB}/redis/sentinel.pyo
-${PYSITELIB}/redis/utils.py
-${PYSITELIB}/redis/utils.pyc
-${PYSITELIB}/redis/utils.pyo
diff -r ec7d35fc9413 -r 0e2e3ecd5b1c databases/py-redis-py/distinfo
--- a/databases/py-redis-py/distinfo Fri Jul 14 11:02:41 2017 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-$NetBSD: distinfo,v 1.4 2015/11/03 01:56:28 agc Exp $
-
-SHA1 (redis-2.10.3.tar.gz) = ac04557477e4eeefcb0a5ddeb32138bd08826b0f
-RMD160 (redis-2.10.3.tar.gz) = 7864eaac18bdaeb9f3814cf5305ff685a1ced9aa
-SHA512 (redis-2.10.3.tar.gz) = a6dcb1160f91c444a6fd107761b2701e7d8ab2eed7b9fcc00e8f0bdcefe46c2a626611f36fe6bf520fe3cceeb509562609e6dba263e1508abe285a6eab73963c
-Size (redis-2.10.3.tar.gz) = 86532 bytes
diff -r ec7d35fc9413 -r 0e2e3ecd5b1c databases/py-redis/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/databases/py-redis/DESCR Fri Jul 14 11:36:27 2017 +0000
@@ -0,0 +1,1 @@
+The Python interface to the Redis key-value store.
diff -r ec7d35fc9413 -r 0e2e3ecd5b1c databases/py-redis/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/databases/py-redis/Makefile Fri Jul 14 11:36:27 2017 +0000
@@ -0,0 +1,19 @@
+# $NetBSD: Makefile,v 1.1 2017/07/14 11:36:27 adam Exp $
+
+DISTNAME= redis-2.10.5
+PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
+CATEGORIES= databases python
+MASTER_SITES= ${MASTER_SITE_PYPI:=r/redis/}
+
+MAINTAINER= rodent%NetBSD.org@localhost
+HOMEPAGE= https://github.com/andymccurdy/redis-py/
+COMMENT= Redis Python client
+LICENSE= mit
+
+DEPENDS+= redis-[0-9]*:../../databases/redis
+BUILD_DEPENDS+= ${PYPKGPREFIX}-test>=2.5.0:../../devel/py-test
+
+USE_LANGUAGES= # none
+
+.include "../../lang/python/egg.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r ec7d35fc9413 -r 0e2e3ecd5b1c databases/py-redis/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/databases/py-redis/PLIST Fri Jul 14 11:36:27 2017 +0000
@@ -0,0 +1,29 @@
+@comment $NetBSD: PLIST,v 1.1 2017/07/14 11:36:27 adam Exp $
+${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
+${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
+${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/redis/__init__.py
+${PYSITELIB}/redis/__init__.pyc
+${PYSITELIB}/redis/__init__.pyo
+${PYSITELIB}/redis/_compat.py
+${PYSITELIB}/redis/_compat.pyc
+${PYSITELIB}/redis/_compat.pyo
+${PYSITELIB}/redis/client.py
+${PYSITELIB}/redis/client.pyc
+${PYSITELIB}/redis/client.pyo
+${PYSITELIB}/redis/connection.py
+${PYSITELIB}/redis/connection.pyc
+${PYSITELIB}/redis/connection.pyo
+${PYSITELIB}/redis/exceptions.py
+${PYSITELIB}/redis/exceptions.pyc
+${PYSITELIB}/redis/exceptions.pyo
+${PYSITELIB}/redis/lock.py
+${PYSITELIB}/redis/lock.pyc
+${PYSITELIB}/redis/lock.pyo
+${PYSITELIB}/redis/sentinel.py
+${PYSITELIB}/redis/sentinel.pyc
+${PYSITELIB}/redis/sentinel.pyo
+${PYSITELIB}/redis/utils.py
+${PYSITELIB}/redis/utils.pyc
+${PYSITELIB}/redis/utils.pyo
diff -r ec7d35fc9413 -r 0e2e3ecd5b1c databases/py-redis/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/databases/py-redis/distinfo Fri Jul 14 11:36:27 2017 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2017/07/14 11:36:27 adam Exp $
+
+SHA1 (redis-2.10.5.tar.gz) = 6235ad91f06e6aef82cfe137e6c89673e79eedcd
+RMD160 (redis-2.10.5.tar.gz) = 3694e866b669cdfc5e08a64d0cd3f24673fc870f
+SHA512 (redis-2.10.5.tar.gz) = b2e6cb85c274c8f1c63e27256bbab816d016a68c324bf7092cf53feae819a34fa94f45565b0f209ee981919d793b2963462eb1a6f841e9dde9885802e0ebbe8f
+Size (redis-2.10.5.tar.gz) = 88610 bytes
Home |
Main Index |
Thread Index |
Old Index