pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/databases/py-redis py-redis: updated to 3.2.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/84f2f9bb8730
branches:  trunk
changeset: 319690:84f2f9bb8730
user:      adam <adam%pkgsrc.org@localhost>
date:      Mon Feb 18 11:29:34 2019 +0000

description:
py-redis: updated to 3.2.0

3.2.0
* Added support for select.poll to test whether data can be read
  on a socket. This should allow for significantly more connections to
  be used with pubsub.
* Attempt to guarentee that the ConnectionPool hands out healthy
  connections. Healthy connections are those that have an established
  socket connection to the Redis server, are ready to accept a command
  and have no data available to read.
* Use the socket.IPPROTO_TCP constant instead of socket.SOL_TCP.
  IPPROTO_TCP is available on more interpreters (Jython for instance).
* Fixed a regression introduced in 3.0 that mishandles exceptions not
  derived from the base Exception class. KeyboardInterrupt and
  gevent.timeout notable.
* Significant improvements to handing connections with forked processes.
  Parent and child processes no longer trample on each others' connections.
* PythonParser no longer closes the associated connection's socket. The
  connection itself will close the socket.

diffstat:

 databases/py-redis/Makefile |   5 +++--
 databases/py-redis/PLIST    |   5 ++++-
 databases/py-redis/distinfo |  10 +++++-----
 3 files changed, 12 insertions(+), 8 deletions(-)

diffs (54 lines):

diff -r bdf6ef2ad827 -r 84f2f9bb8730 databases/py-redis/Makefile
--- a/databases/py-redis/Makefile       Mon Feb 18 09:42:07 2019 +0000
+++ b/databases/py-redis/Makefile       Mon Feb 18 11:29:34 2019 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.6 2019/01/29 10:17:47 adam Exp $
+# $NetBSD: Makefile,v 1.7 2019/02/18 11:29:34 adam Exp $
 
-DISTNAME=      redis-3.1.0
+DISTNAME=      redis-3.2.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    databases python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=r/redis/}
@@ -10,6 +10,7 @@
 COMMENT=       Redis Python client
 LICENSE=       mit
 
+# testing requires a running redis-server
 TEST_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
 TEST_DEPENDS+= ${PYPKGPREFIX}-test>=2.5.0:../../devel/py-test
 
diff -r bdf6ef2ad827 -r 84f2f9bb8730 databases/py-redis/PLIST
--- a/databases/py-redis/PLIST  Mon Feb 18 09:42:07 2019 +0000
+++ b/databases/py-redis/PLIST  Mon Feb 18 11:29:34 2019 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2018/12/13 19:37:48 adam Exp $
+@comment $NetBSD: PLIST,v 1.3 2019/02/18 11:29:34 adam Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -22,6 +22,9 @@
 ${PYSITELIB}/redis/lock.py
 ${PYSITELIB}/redis/lock.pyc
 ${PYSITELIB}/redis/lock.pyo
+${PYSITELIB}/redis/selector.py
+${PYSITELIB}/redis/selector.pyc
+${PYSITELIB}/redis/selector.pyo
 ${PYSITELIB}/redis/sentinel.py
 ${PYSITELIB}/redis/sentinel.pyc
 ${PYSITELIB}/redis/sentinel.pyo
diff -r bdf6ef2ad827 -r 84f2f9bb8730 databases/py-redis/distinfo
--- a/databases/py-redis/distinfo       Mon Feb 18 09:42:07 2019 +0000
+++ b/databases/py-redis/distinfo       Mon Feb 18 11:29:34 2019 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.4 2019/01/29 10:17:47 adam Exp $
+$NetBSD: distinfo,v 1.5 2019/02/18 11:29:34 adam Exp $
 
-SHA1 (redis-3.1.0.tar.gz) = 4ea1b32b85bb12f2537b62201b9dd6faf35b6bcd
-RMD160 (redis-3.1.0.tar.gz) = 8b5a11b09e0bbcd1684ad0eaa6451c3d1af692ee
-SHA512 (redis-3.1.0.tar.gz) = d915dafb853a41e4cb26811d8c08a828ec55f69b75206c62e96a6c7156ca171391e2a7915d523f337de8fee532bf66890d14a645ebaf490f21f13b7798bea1b5
-Size (redis-3.1.0.tar.gz) = 120318 bytes
+SHA1 (redis-3.2.0.tar.gz) = a3e6218e8f406d65d0759ba04622185bcc5be511
+RMD160 (redis-3.2.0.tar.gz) = 57d55ff2a6fe0cc5383203c6fbc985c5c76a01b2
+SHA512 (redis-3.2.0.tar.gz) = 9620a85ab642e1b0096429873ee38a7b3adc84d3ba1dc5abd549b05ee70b081590e3c4a82e090cc2c366c8eafd122c2b075cb69eccfcc1d5f5a0bea070893b32
+Size (redis-3.2.0.tar.gz) = 124744 bytes



Home | Main Index | Thread Index | Old Index