summaryrefslogtreecommitdiff
path: root/net/py-rpyc
AgeCommit message (Collapse)AuthorFilesLines
2022-05-01*: mark as not for python 2.xwiz1-1/+3
a dependency does not support python 2.x any longer
2022-01-04py-rpyc: convert to egg.mkwiz2-9/+10
Bump PKGREVISION to be on the safe side
2021-10-26net: Replace RMD160 checksums with BLAKE2s checksumsnia1-2/+2
All checksums have been double-checked against existing RMD160 and SHA512 hashes Not committed (merge conflicts...): net/radsecproxy/distinfo The following distfiles could not be fetched (fetched conditionally?): ./net/citrix_ica/distinfo citrix_ica-10.6.115659/en.linuxx86.tar.gz ./net/djbdns/distinfo dnscache-1.05-multiple-ip.patch ./net/djbdns/distinfo djbdns-1.05-test28.diff.xz ./net/djbdns/distinfo djbdns-1.05-ignoreip2.patch ./net/djbdns/distinfo djbdns-1.05-multiip.diff ./net/djbdns/distinfo djbdns-cachestats.patch
2021-10-07net: Remove SHA1 hashes for distfilesnia1-2/+1
2020-09-30py-rpyc: update to version 4.1.2khorben2-7/+7
Release RPyC 4.1.2: * Fixed CVE-2019-16328 which was caused by a missing protocol security check. * Fixed RPyC over RPyC for mutable parameters and extended unit testing for #346 Release RPyC 4.1.1: * Fixed netref.class_factory id_pack usage per #339 and added test cases * Name pack casted in _unbox to fix IronPython bug. Fixed #337 * Increased chunk size to improve multi-client response time and throughput of large data #329 * Added warning to _remote_tb when the major version of local and remote mismatch (#332) * OneShotServer termination was fixed by WilliamBruneau (#343) Release RPyC 4.1.0: * Added connection back-off and attempts for congested workloads * Fixed minor resource leak for ForkingServer * Cross-connection instance check for cached netref classes Note: * Requests/replies are not compatible between >=4.1.0 and earlier versions
2020-09-29py-rpyc: update to version 4.0.2khorben3-17/+19
Release rpyc 4.0.2 - fix default hostname for ipv6 in rpyc_classic.py (#277) - fix ThreadPoolServer not working Release rpyc 4.0.1 - fix ValueError during install due to absolute PATH in SOURCES.txt (`#276`_) Release rpyc 4.0.0 This release brings a few minor backward incompatibilities, so be sure to read on before upgrading. However, fear not: the ones that are most likely relevant to you have a relatively simple migration path.
2020-09-29py-rpyc: update to version 3.4.4khorben3-8/+8
Release rpyc 3.4.4 - Fix refcount leakage when unboxing from cache (#196) - Fix TypeError when dispatching exceptions on py2 (unicode) - Respect ``rpyc_protocol_config`` for default Service getattr (#202) - Support unix domain sockets (#100,#208) - Use first accessible server in ``connect_by_service`` (#220) - Fix deadlock problem with logging (#207,#212) Release rpyc 3.4.3 - Add missing endpoints config in ThreadPoolServer (#222) - Fix jython support (#156,#171) - Improve documentation (#158,#185,#189,#198 and more)
2020-09-29py-rpyc: remove TODO file with reference to CVE-2019-16328khorben1-2/+0
After verification, the version shipped in this package does not seem to be vulnerable to the CVE entry referenced there (or to have been in any version packaged in pkgsrc). Thanks leot@ for the heads up!
2020-09-29py-rpyc: update to version 3.4.2khorben3-8/+8
Release RPyC 3.4.2: * Fix ``export_function`` on python 3.6 Release rpyc 3.4.1: * Fix issue high-cpu polling (#191,#218) * Fix filename argument in logging (#197) * Improved log messages (#191,#204) * Drop support for python 3.2 and py 2.5
2020-09-29py-rpyc: import version 3.3.0khorben5-0/+116
RPyC (pronounced like are-pie-see), or Remote Python Call, is a transparent library for symmetrical remote procedure calls, clustering and distributed-computing. RPyC makes use of object-proxying, a technique that employs python's dynamic nature, to overcome the physical boundaries between processes and computers, so that remote objects can be manipulated as if they were local.