pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/py-urwid



Module Name:    pkgsrc
Committed By:   wiz
Date:           Mon Dec 11 10:07:09 UTC 2023

Modified Files:
        pkgsrc/devel/py-urwid: Makefile PLIST distinfo

Log Message:
py-urwid: update to 2.3.4.

Convert to wheel.mk, add test dependencies.

2.3.4

New features 🗹

    Replace deprecated use of MultiError with exceptiongroup by @DRMacIver in #679
    Declare extension use Py_LIMITED_API explicit also in setup.py by @penguinolog in #686

Bug fixes 🕷

    use Hashable for signal identifier types by @ju1ius in #669
    Fix #674 : old versions of setuptools_scm support by @penguinolog in #675
    Fix WSL support: filter-out SI/SO in case of WSL by @penguinolog in #656

Documentation 🕮

    fixed typo by @vindolin in #676

Refactoring 🛠

    Maintenance: apply refurb fixes and tighten ruff by @penguinolog in #671
    Fix exception re-raise in trio event loop by @penguinolog in #683

Other Changes

    Maintenance: Tests: Use explicit encoding for tests by @penguinolog in #685


To generate a diff of this commit:
cvs rdiff -u -r1.33 -r1.34 pkgsrc/devel/py-urwid/Makefile
cvs rdiff -u -r1.13 -r1.14 pkgsrc/devel/py-urwid/PLIST
cvs rdiff -u -r1.23 -r1.24 pkgsrc/devel/py-urwid/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-urwid/Makefile
diff -u pkgsrc/devel/py-urwid/Makefile:1.33 pkgsrc/devel/py-urwid/Makefile:1.34
--- pkgsrc/devel/py-urwid/Makefile:1.33 Mon Oct 23 06:37:43 2023
+++ pkgsrc/devel/py-urwid/Makefile      Mon Dec 11 10:07:09 2023
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.33 2023/10/23 06:37:43 wiz Exp $
+# $NetBSD: Makefile,v 1.34 2023/12/11 10:07:09 wiz Exp $
 
-DISTNAME=      urwid-2.2.3
+DISTNAME=      urwid-2.3.4
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-PKGREVISION=   1
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=u/urwid/}
 
@@ -12,9 +11,17 @@ COMMENT=     Curses-based Python user interf
 LICENSE=       gnu-lgpl-v2.1
 
 TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm-[0-9]*:../../devel/py-setuptools_scm
+TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel
+TEST_DEPENDS+= ${PYPKGPREFIX}-exceptiongroup-[0-9]*:../../devel/py-exceptiongroup
+TEST_DEPENDS+= ${PYPKGPREFIX}-gobject3-[0-9]*:../../devel/py-gobject3
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov
+TEST_DEPENDS+= ${PYPKGPREFIX}-tornado>=5:../../www/py-tornado
+TEST_DEPENDS+= ${PYPKGPREFIX}-trio-[0-9]*:../../devel/py-trio
+TEST_DEPENDS+= ${PYPKGPREFIX}-twisted-[0-9]*:../../net/py-twisted
+TEST_DEPENDS+= ${PYPKGPREFIX}-zmq-[0-9]*:../../net/py-zmq
 
 PYTHON_VERSIONS_INCOMPATIBLE=  27
 
 .include "../../lang/python/batteries-included.mk"
-.include "../../lang/python/egg.mk"
+.include "../../lang/python/wheel.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/devel/py-urwid/PLIST
diff -u pkgsrc/devel/py-urwid/PLIST:1.13 pkgsrc/devel/py-urwid/PLIST:1.14
--- pkgsrc/devel/py-urwid/PLIST:1.13    Fri Oct 20 11:33:03 2023
+++ pkgsrc/devel/py-urwid/PLIST Mon Dec 11 10:07:09 2023
@@ -1,10 +1,9 @@
-@comment $NetBSD: PLIST,v 1.13 2023/10/20 11:33:03 adam 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}/requires.txt
-${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+@comment $NetBSD: PLIST,v 1.14 2023/12/11 10:07:09 wiz Exp $
+${PYSITELIB}/${WHEEL_INFODIR}/COPYING
+${PYSITELIB}/${WHEEL_INFODIR}/METADATA
+${PYSITELIB}/${WHEEL_INFODIR}/RECORD
+${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
+${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt
 ${PYSITELIB}/urwid/__init__.py
 ${PYSITELIB}/urwid/__init__.pyc
 ${PYSITELIB}/urwid/__init__.pyo
@@ -93,7 +92,7 @@ ${PYSITELIB}/urwid/signals.pyo
 ${PYSITELIB}/urwid/split_repr.py
 ${PYSITELIB}/urwid/split_repr.pyc
 ${PYSITELIB}/urwid/split_repr.pyo
-${PYSITELIB}/urwid/str_util.so
+${PYSITELIB}/urwid/str_util.abi3.so
 ${PYSITELIB}/urwid/text_layout.py
 ${PYSITELIB}/urwid/text_layout.pyc
 ${PYSITELIB}/urwid/text_layout.pyo

Index: pkgsrc/devel/py-urwid/distinfo
diff -u pkgsrc/devel/py-urwid/distinfo:1.23 pkgsrc/devel/py-urwid/distinfo:1.24
--- pkgsrc/devel/py-urwid/distinfo:1.23 Fri Oct 20 11:33:03 2023
+++ pkgsrc/devel/py-urwid/distinfo      Mon Dec 11 10:07:09 2023
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.23 2023/10/20 11:33:03 adam Exp $
+$NetBSD: distinfo,v 1.24 2023/12/11 10:07:09 wiz Exp $
 
-BLAKE2s (urwid-2.2.3.tar.gz) = de39c776e503e430d58c78063d1f90e00dec76cf3680fc3aa8772924a7d1ba7d
-SHA512 (urwid-2.2.3.tar.gz) = 48588d0c819b229bdaaa70bec3a279c3bf232b8520d95e1f45a83bea927244634e91fd47cc161647c2d8155e523543549bc5ed2ccb5eac29843e12515e5dfd22
-Size (urwid-2.2.3.tar.gz) = 677723 bytes
+BLAKE2s (urwid-2.3.4.tar.gz) = ae2681817937322e82dedd6c980e33f23d6e90fe6a34840bba6a6f8113ee4eca
+SHA512 (urwid-2.3.4.tar.gz) = e1ed9357b738975c909f847a2f12292cfad1cf824be9d3818ca0de3d1ca5c992ba89d5cea25888db3a8bb6c73a64b94ecb1df0a19d5af7f7b060bd113f93a8dd
+Size (urwid-2.3.4.tar.gz) = 678305 bytes



Home | Main Index | Thread Index | Old Index