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:           Thu Jan 25 11:16:11 UTC 2024

Modified Files:
        pkgsrc/parallel/py-billiard: Makefile PLIST distinfo

Log Message:
py-billiard: updated to 4.2.0

4.2.0 - 2023-11-06
--------------------
- Update process.py to close during join only if process has completed.
- Adjust the __repr__ in ApplyResult.
- Remove python 3.7 from CI.
- Added Python 3.12 support.
- Fixed (co_positions): resolve issue caused by absence co_positions
- Fixed: Replaced mktemp usage for Python 3 from python 2.
- Changed nose test to pytest
- Changed nose dependency for unit test

4.1.0 - 2022-12-14
--------------------
- Fixed a python 2 to 3 compat issue which was missed earlier
- Adde Python 3.11 primary support

4.0.2 - 2022-08-03
--------------------
- ExceptionWithTraceback should be an exception.

4.0.1 - 2022-08-01
--------------------
- Add support for Python 3.11 _posixsubprocess.fork_exec() arguments.
- Keep exception traceback somehow

4.0.0 - 2022-04-24
--------------------
- Support Sphinx 4.x.
- Remove dependency to case.
- Drop support of Python < 3.7.
- Update to psutil 5.9.0.
- Add python_requires to enforce Python version.
- Replace deprecated threading Event.isSet with Event.is_set.
- Prevent segmentation fault in get_pdeathsig while using ctypes
- Migrated CI to Github actions.
- Python 3.10 support added.


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 pkgsrc/parallel/py-billiard/Makefile
cvs rdiff -u -r1.7 -r1.8 pkgsrc/parallel/py-billiard/PLIST
cvs rdiff -u -r1.16 -r1.17 pkgsrc/parallel/py-billiard/distinfo

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.22 pkgsrc/parallel/py-billiard/Makefile:1.23
--- pkgsrc/parallel/py-billiard/Makefile:1.22   Sun May  1 09:17:48 2022
+++ pkgsrc/parallel/py-billiard/Makefile        Thu Jan 25 11:16:11 2024
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.22 2022/05/01 09:17:48 wiz Exp $
+# $NetBSD: Makefile,v 1.23 2024/01/25 11:16:11 adam Exp $
 
-DISTNAME=      billiard-3.6.4.0
+DISTNAME=      billiard-4.2.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-PKGREVISION=   1
 CATEGORIES=    parallel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=b/billiard/}
 
@@ -11,14 +10,12 @@ HOMEPAGE=   https://github.com/celery/bill
 COMMENT=       Python multiprocessing fork with improvements and bugfixes
 LICENSE=       modified-bsd
 
-TEST_DEPENDS+= ${PYPKGPREFIX}-case>=1.3.1:../../devel/py-case
-TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner
-
-PYTHON_VERSIONS_INCOMPATIBLE=  27
+TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
+TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel
 
 USE_LANGUAGES=         # none
 
-PYSETUPTESTTARGET=     pytest
+PYTHON_VERSIONS_INCOMPATIBLE=  27
 
-.include "../../lang/python/egg.mk"
+.include "../../lang/python/wheel.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/parallel/py-billiard/PLIST
diff -u pkgsrc/parallel/py-billiard/PLIST:1.7 pkgsrc/parallel/py-billiard/PLIST:1.8
--- pkgsrc/parallel/py-billiard/PLIST:1.7       Sun May  1 09:17:48 2022
+++ pkgsrc/parallel/py-billiard/PLIST   Thu Jan 25 11:16:11 2024
@@ -1,9 +1,9 @@
-@comment $NetBSD: PLIST,v 1.7 2022/05/01 09:17:48 wiz Exp $
-${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
-${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
-${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
-${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
-${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+@comment $NetBSD: PLIST,v 1.8 2024/01/25 11:16:11 adam Exp $
+${PYSITELIB}/${WHEEL_INFODIR}/LICENSE.txt
+${PYSITELIB}/${WHEEL_INFODIR}/METADATA
+${PYSITELIB}/${WHEEL_INFODIR}/RECORD
+${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
+${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt
 ${PYSITELIB}/billiard/__init__.py
 ${PYSITELIB}/billiard/__init__.pyc
 ${PYSITELIB}/billiard/__init__.pyo
@@ -37,9 +37,6 @@ ${PYSITELIB}/billiard/einfo.pyo
 ${PYSITELIB}/billiard/exceptions.py
 ${PYSITELIB}/billiard/exceptions.pyc
 ${PYSITELIB}/billiard/exceptions.pyo
-${PYSITELIB}/billiard/five.py
-${PYSITELIB}/billiard/five.pyc
-${PYSITELIB}/billiard/five.pyo
 ${PYSITELIB}/billiard/forkserver.py
 ${PYSITELIB}/billiard/forkserver.pyc
 ${PYSITELIB}/billiard/forkserver.pyo

Index: pkgsrc/parallel/py-billiard/distinfo
diff -u pkgsrc/parallel/py-billiard/distinfo:1.16 pkgsrc/parallel/py-billiard/distinfo:1.17
--- pkgsrc/parallel/py-billiard/distinfo:1.16   Tue Oct 26 11:10:38 2021
+++ pkgsrc/parallel/py-billiard/distinfo        Thu Jan 25 11:16:11 2024
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.16 2021/10/26 11:10:38 nia Exp $
+$NetBSD: distinfo,v 1.17 2024/01/25 11:16:11 adam Exp $
 
-BLAKE2s (billiard-3.6.4.0.tar.gz) = 68ede642c8056d38b0c4ef8c46a49ecaeb318293d16a711b61c3bc27de2fb0ef
-SHA512 (billiard-3.6.4.0.tar.gz) = 9f2a44024e45c4e7667472a0a3ade7caae755ec7c163929433f818e4b87165218b9cc9545bdee2254e7159c206e525306e383d38906b00fd5428bd1616c39b8f
-Size (billiard-3.6.4.0.tar.gz) = 155303 bytes
+BLAKE2s (billiard-4.2.0.tar.gz) = 4d0e80bf5860132f622d26db3204f6bcc7a51eb2487fa27f54d132184e38928e
+SHA512 (billiard-4.2.0.tar.gz) = 8f25cd44416cb5b89a4e511189d8381f7bd0b0bc15597d2adb4b4e3fe3542a651acd7803dea43dcf0a94e2be6347d509393dac7dcabf2902a5f81b3cad8b0685
+Size (billiard-4.2.0.tar.gz) = 154665 bytes
 SHA1 (patch-Modules___billiard_multiprocessing.h) = 6453debfd2ada7e1c0c3c207d941bffa3cb35334



Home | Main Index | Thread Index | Old Index