pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/py-lazy-object-proxy



Module Name:    pkgsrc
Committed By:   adam
Date:           Thu Jan  5 10:35:25 UTC 2023

Modified Files:
        pkgsrc/devel/py-lazy-object-proxy: Makefile distinfo

Log Message:
py-lazy-object-proxy: updated to 1.9.0

1.9.0 (2023-01-04)
------------------
* Added support for matrix multiplication operator (``@``).
* Should have all the wheels now (including the manylinux ones).
* Bumped minimum version requirements for setuptools and setuptools-scm.
* Switched the default pure python fallback implementation to the "simple" one (when you ``from lazy_object_proxy import Proxy``
  and the C extension is not available).
  Previously the "slots" implementation was used but as it turns out it is slower on Python 3.


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 pkgsrc/devel/py-lazy-object-proxy/Makefile
cvs rdiff -u -r1.13 -r1.14 pkgsrc/devel/py-lazy-object-proxy/distinfo

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

Modified files:

Index: pkgsrc/devel/py-lazy-object-proxy/Makefile
diff -u pkgsrc/devel/py-lazy-object-proxy/Makefile:1.14 pkgsrc/devel/py-lazy-object-proxy/Makefile:1.15
--- pkgsrc/devel/py-lazy-object-proxy/Makefile:1.14     Sun Nov 20 23:24:57 2022
+++ pkgsrc/devel/py-lazy-object-proxy/Makefile  Thu Jan  5 10:35:25 2023
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.14 2022/11/20 23:24:57 adam Exp $
+# $NetBSD: Makefile,v 1.15 2023/01/05 10:35:25 adam Exp $
 
-DISTNAME=      lazy-object-proxy-1.8.0
+DISTNAME=      lazy-object-proxy-1.9.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=l/lazy-object-proxy/}
@@ -10,13 +10,14 @@ HOMEPAGE=   https://github.com/ionelmc/pyt
 COMMENT=       Fast and thorough lazy object proxy
 LICENSE=       modified-bsd
 
-BUILD_DEPENDS+=        ${PYPKGPREFIX}-setuptools_scm>=3.3.1:../../devel/py-setuptools_scm
+TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm>=6.2:../../devel/py-setuptools_scm
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-benchmark-[0-9]*:../../devel/py-test-benchmark
-TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner
-
-PYSETUPTESTTARGET=     pytest
 
 PYTHON_VERSIONS_INCOMPATIBLE=  27
 
+do-test:
+       cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests
+
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/devel/py-lazy-object-proxy/distinfo
diff -u pkgsrc/devel/py-lazy-object-proxy/distinfo:1.13 pkgsrc/devel/py-lazy-object-proxy/distinfo:1.14
--- pkgsrc/devel/py-lazy-object-proxy/distinfo:1.13     Sun Nov 20 23:24:57 2022
+++ pkgsrc/devel/py-lazy-object-proxy/distinfo  Thu Jan  5 10:35:25 2023
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.13 2022/11/20 23:24:57 adam Exp $
+$NetBSD: distinfo,v 1.14 2023/01/05 10:35:25 adam Exp $
 
-BLAKE2s (lazy-object-proxy-1.8.0.tar.gz) = abbafd3f255ed30a111db97c4d3444556847070527d5401aa24709ca3c4133ed
-SHA512 (lazy-object-proxy-1.8.0.tar.gz) = a682e7d1ef405939f5f75f598618d6c7de482decf8027abcf4c7c2b684b3442ca3b1a666d1913e9c7f63c086753e0d79b8c1b03c0cafe8cbea3d7c70893be57f
-Size (lazy-object-proxy-1.8.0.tar.gz) = 41884 bytes
+BLAKE2s (lazy-object-proxy-1.9.0.tar.gz) = 21097fe2ee59b2477c47527d9770be6d92a8cf9e27e37ca0d4c8848a5ae2f7c9
+SHA512 (lazy-object-proxy-1.9.0.tar.gz) = 2168254a71cf52ef406e5edf4653b9c8ae05392d4ad3c2e5e8e9f8db56152d968a77d14226acdf7d962f66d460c40add335615442f6f176d697c071f9cb137f5
+Size (lazy-object-proxy-1.9.0.tar.gz) = 42830 bytes



Home | Main Index | Thread Index | Old Index