pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/parallel/py-billiard
Module Name: pkgsrc
Committed By: adam
Date: Sun May 17 19:16:39 UTC 2020
Modified Files:
pkgsrc/parallel/py-billiard: Makefile distinfo
pkgsrc/parallel/py-billiard/patches:
patch-Modules___billiard_multiprocessing.h
Log Message:
py-billiard: updated to 3.6.3.0
3.6.1:
- Logging max memory reached at INFO rather than WARNING
- Pass arguments when wrapping sys.exit
- Remove win32/py2k special
- Ensure READY messages sent out by exiting worker are consumed prior to it actually existing.
- Pass max_memory_per_child to child worker process
- Fix compatibility with Python 2.7 on Windows
To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 pkgsrc/parallel/py-billiard/Makefile
cvs rdiff -u -r1.12 -r1.13 pkgsrc/parallel/py-billiard/distinfo
cvs rdiff -u -r1.1 -r1.2 \
pkgsrc/parallel/py-billiard/patches/patch-Modules___billiard_multiprocessing.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/parallel/py-billiard/Makefile
diff -u pkgsrc/parallel/py-billiard/Makefile:1.18 pkgsrc/parallel/py-billiard/Makefile:1.19
--- pkgsrc/parallel/py-billiard/Makefile:1.18 Fri Apr 5 13:03:11 2019
+++ pkgsrc/parallel/py-billiard/Makefile Sun May 17 19:16:38 2020
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.18 2019/04/05 13:03:11 adam Exp $
+# $NetBSD: Makefile,v 1.19 2020/05/17 19:16:38 adam Exp $
-DISTNAME= billiard-3.6.0.0
+DISTNAME= billiard-3.6.3.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= parallel python
MASTER_SITES= ${MASTER_SITE_PYPI:=b/billiard/}
@@ -11,15 +11,15 @@ COMMENT= Python multiprocessing fork wit
LICENSE= modified-bsd
TEST_DEPENDS+= ${PYPKGPREFIX}-case>=1.3.1:../../devel/py-case
-TEST_DEPENDS+= ${PYPKGPREFIX}-test>=3.0:../../devel/py-test
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner
.include "../../lang/python/pyversion.mk"
# builds _billiard.so
-.if ${_PYTHON_VERSION} == 27
-USE_LANGUAGES= c
-.else
+.if ${_PYTHON_VERSION} != 27
USE_LANGUAGES= # none
.endif
+PYSETUPTESTTARGET= pytest
+
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/parallel/py-billiard/distinfo
diff -u pkgsrc/parallel/py-billiard/distinfo:1.12 pkgsrc/parallel/py-billiard/distinfo:1.13
--- pkgsrc/parallel/py-billiard/distinfo:1.12 Fri Apr 5 13:03:11 2019
+++ pkgsrc/parallel/py-billiard/distinfo Sun May 17 19:16:38 2020
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.12 2019/04/05 13:03:11 adam Exp $
+$NetBSD: distinfo,v 1.13 2020/05/17 19:16:38 adam Exp $
-SHA1 (billiard-3.6.0.0.tar.gz) = a1e5e6739de7516939cb911366dfe603c959c0f7
-RMD160 (billiard-3.6.0.0.tar.gz) = 96c953d45d11e334524b32e4fe24f85fbc3fafa2
-SHA512 (billiard-3.6.0.0.tar.gz) = 0a71de026d2a781b83fe2c549ecbfe9b6fbd574d8067fc46ba7eca6b76633a123620853d22696df3563d050043cfe75b14b4b69bf5217e0af964aaa0bcbe08ff
-Size (billiard-3.6.0.0.tar.gz) = 151342 bytes
-SHA1 (patch-Modules___billiard_multiprocessing.h) = 6538040cb84ee67bfd8825f5102152a5a50acbec
+SHA1 (billiard-3.6.3.0.tar.gz) = d060a72bb9e089a43e0e548da606dbcc13527e3e
+RMD160 (billiard-3.6.3.0.tar.gz) = 4e69b7fe166e882659bb51210e5decfcd9f38ec6
+SHA512 (billiard-3.6.3.0.tar.gz) = 8fde933c7f605aa4958a6f9da7aa876f42ef7250845b113fc175f8e8af1760063ac6b2a7a222d2c0bac4715f18986a2ee1a5528cc14925b2060dca8a5bd2333c
+Size (billiard-3.6.3.0.tar.gz) = 155090 bytes
+SHA1 (patch-Modules___billiard_multiprocessing.h) = 6453debfd2ada7e1c0c3c207d941bffa3cb35334
Index: pkgsrc/parallel/py-billiard/patches/patch-Modules___billiard_multiprocessing.h
diff -u pkgsrc/parallel/py-billiard/patches/patch-Modules___billiard_multiprocessing.h:1.1 pkgsrc/parallel/py-billiard/patches/patch-Modules___billiard_multiprocessing.h:1.2
--- pkgsrc/parallel/py-billiard/patches/patch-Modules___billiard_multiprocessing.h:1.1 Fri Feb 2 17:16:36 2018
+++ pkgsrc/parallel/py-billiard/patches/patch-Modules___billiard_multiprocessing.h Sun May 17 19:16:38 2020
@@ -1,8 +1,8 @@
-$NetBSD: patch-Modules___billiard_multiprocessing.h,v 1.1 2018/02/02 17:16:36 jperkin Exp $
+$NetBSD: patch-Modules___billiard_multiprocessing.h,v 1.2 2020/05/17 19:16:38 adam Exp $
Set _XOPEN_SOURCE correctly.
---- Modules/_billiard/multiprocessing.h.orig 2017-07-16 20:03:49.000000000 +0000
+--- Modules/_billiard/multiprocessing.h.orig 2020-02-02 00:14:06.000000000 +0000
+++ Modules/_billiard/multiprocessing.h
@@ -3,10 +3,14 @@
@@ -10,7 +10,7 @@ Set _XOPEN_SOURCE correctly.
-#ifdef __sun
+#if defined(__sun) && !defined(_XOPEN_SOURCE)
- /* The control message API is only available on Solaris
+ /* The control message API is only available on Solaris
if XPG 4.2 or later is requested. */
+# if (__STDC_VERSION__-0 < 199901L)
#define _XOPEN_SOURCE 500
Home |
Main Index |
Thread Index |
Old Index