pkgsrc-Changes archive

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

CVS commit: pkgsrc/databases/py-redis



Module Name:    pkgsrc
Committed By:   adam
Date:           Mon Feb 18 11:29:34 UTC 2019

Modified Files:
        pkgsrc/databases/py-redis: Makefile PLIST distinfo

Log Message:
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.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/databases/py-redis/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/databases/py-redis/PLIST
cvs rdiff -u -r1.4 -r1.5 pkgsrc/databases/py-redis/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/databases/py-redis/Makefile
diff -u pkgsrc/databases/py-redis/Makefile:1.6 pkgsrc/databases/py-redis/Makefile:1.7
--- pkgsrc/databases/py-redis/Makefile:1.6      Tue Jan 29 10:17:47 2019
+++ pkgsrc/databases/py-redis/Makefile  Mon Feb 18 11:29:34 2019
@@ -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 @@ HOMEPAGE=     https://github.com/andymccurdy
 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
 

Index: pkgsrc/databases/py-redis/PLIST
diff -u pkgsrc/databases/py-redis/PLIST:1.2 pkgsrc/databases/py-redis/PLIST:1.3
--- pkgsrc/databases/py-redis/PLIST:1.2 Thu Dec 13 19:37:48 2018
+++ pkgsrc/databases/py-redis/PLIST     Mon Feb 18 11:29:34 2019
@@ -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/exceptions.pyo
 ${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

Index: pkgsrc/databases/py-redis/distinfo
diff -u pkgsrc/databases/py-redis/distinfo:1.4 pkgsrc/databases/py-redis/distinfo:1.5
--- pkgsrc/databases/py-redis/distinfo:1.4      Tue Jan 29 10:17:47 2019
+++ pkgsrc/databases/py-redis/distinfo  Mon Feb 18 11:29:34 2019
@@ -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