pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/py-ordered-set



Module Name:    pkgsrc
Committed By:   adam
Date:           Thu Jan 27 08:34:19 UTC 2022

Modified Files:
        pkgsrc/devel/py-ordered-set: Makefile PLIST distinfo

Log Message:
py-ordered-set: updated to 4.1.0

Version 4.1 (January 2022)

Packaged using flit. Wheels now exist, and setuptools is no longer required.
This package now has a typical package structure, instead of being a single module. The code is in ordered_set/__init__.py instead of ordered_set.py.
There is an ordered_set/py.typed so that type checkers know about the types.
Use the type aliases SetLike[T] and OrderedSetInitializer[T] to simplify some types.
Updated the way overloaded type signatures are written to what MyPy currently expects.
Minimum Python version is 3.7.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 pkgsrc/devel/py-ordered-set/Makefile \
    pkgsrc/devel/py-ordered-set/distinfo
cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-ordered-set/PLIST

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-ordered-set/Makefile
diff -u pkgsrc/devel/py-ordered-set/Makefile:1.9 pkgsrc/devel/py-ordered-set/Makefile:1.10
--- pkgsrc/devel/py-ordered-set/Makefile:1.9    Tue Jan  4 20:53:19 2022
+++ pkgsrc/devel/py-ordered-set/Makefile        Thu Jan 27 08:34:19 2022
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.9 2022/01/04 20:53:19 wiz Exp $
+# $NetBSD: Makefile,v 1.10 2022/01/27 08:34:19 adam Exp $
 
-DISTNAME=      ordered-set-4.0.2
+DISTNAME=      ordered-set-4.1.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-PKGREVISION=   1
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=o/ordered-set/}
 
@@ -18,7 +17,7 @@ USE_LANGUAGES=        # none
 PYTHON_VERSIONS_INCOMPATIBLE=  27
 
 do-test:
-       cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} test.py
+       cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} test
 
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"
Index: pkgsrc/devel/py-ordered-set/distinfo
diff -u pkgsrc/devel/py-ordered-set/distinfo:1.9 pkgsrc/devel/py-ordered-set/distinfo:1.10
--- pkgsrc/devel/py-ordered-set/distinfo:1.9    Tue Oct 26 10:18:43 2021
+++ pkgsrc/devel/py-ordered-set/distinfo        Thu Jan 27 08:34:19 2022
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.9 2021/10/26 10:18:43 nia Exp $
+$NetBSD: distinfo,v 1.10 2022/01/27 08:34:19 adam Exp $
 
-BLAKE2s (ordered-set-4.0.2.tar.gz) = 9f666daa41dc7bc4de82582135f9ad5571dce0b97ecd59e3baa0849f73d406c7
-SHA512 (ordered-set-4.0.2.tar.gz) = d7031ae90fdaf116c27415170a7197be34ff4b977a03684a6fb53dc453845a97cd32b9666ed3ae58fb7bc722ff3b2b4f2e156578841033759b490b359a5619b4
-Size (ordered-set-4.0.2.tar.gz) = 10658 bytes
+BLAKE2s (ordered-set-4.1.0.tar.gz) = 04dde55bec27e3aa05b50f4a03e28d033a49b588596cef07974cd4af385ea02f
+SHA512 (ordered-set-4.1.0.tar.gz) = f12d19f7d9cf0ebcc414d97798f0959ff69a77146839cc6a9067c864f9e0be795795c4d648f736fd7448ddf89666ce37f23e7380d1c9b1678a4787961e4e1e79
+Size (ordered-set-4.1.0.tar.gz) = 12826 bytes

Index: pkgsrc/devel/py-ordered-set/PLIST
diff -u pkgsrc/devel/py-ordered-set/PLIST:1.1 pkgsrc/devel/py-ordered-set/PLIST:1.2
--- pkgsrc/devel/py-ordered-set/PLIST:1.1       Tue Oct 10 07:27:10 2017
+++ pkgsrc/devel/py-ordered-set/PLIST   Thu Jan 27 08:34:19 2022
@@ -1,8 +1,8 @@
-@comment $NetBSD: PLIST,v 1.1 2017/10/10 07:27:10 adam Exp $
+@comment $NetBSD: PLIST,v 1.2 2022/01/27 08:34:19 adam Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
 ${PYSITELIB}/${EGG_INFODIR}/top_level.txt
-${PYSITELIB}/ordered_set.py
-${PYSITELIB}/ordered_set.pyc
-${PYSITELIB}/ordered_set.pyo
+${PYSITELIB}/ordered_set/__init__.py
+${PYSITELIB}/ordered_set/__init__.pyc
+${PYSITELIB}/ordered_set/__init__.pyo



Home | Main Index | Thread Index | Old Index