pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/sysutils/py-jeepney
Module Name: pkgsrc
Committed By: adam
Date: Sun Jan 23 09:09:52 UTC 2022
Modified Files:
pkgsrc/sysutils/py-jeepney: Makefile PLIST distinfo
Log Message:
py-jeepney: updated to 0.7.1
0.7.1
-----
* Add ``async with`` support to :class:`~.asyncio.DBusConnection` in the
asyncio integration.
* Fix calling :meth:`~.asyncio.DBusConnection.receive` immediately after opening
a connection in the asyncio integration.
0.7
---
* Support for :ref:`sending and receiving file descriptors <send_recv_fds>`.
This is available with the blocking, threading and trio integration layers.
* Deprecated older integration APIs, in favour of new APIs introduced in 0.5.
* Fixed passing a deque in to :meth:`~.blocking.DBusConnection.filter` in the
blocking integration API.
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 pkgsrc/sysutils/py-jeepney/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/sysutils/py-jeepney/PLIST
cvs rdiff -u -r1.1 -r1.2 pkgsrc/sysutils/py-jeepney/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/sysutils/py-jeepney/Makefile
diff -u pkgsrc/sysutils/py-jeepney/Makefile:1.3 pkgsrc/sysutils/py-jeepney/Makefile:1.4
--- pkgsrc/sysutils/py-jeepney/Makefile:1.3 Sun Jan 23 00:46:27 2022
+++ pkgsrc/sysutils/py-jeepney/Makefile Sun Jan 23 09:09:51 2022
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.3 2022/01/23 00:46:27 wiz Exp $
+# $NetBSD: Makefile,v 1.4 2022/01/23 09:09:51 adam Exp $
-DISTNAME= jeepney-0.6.0
+DISTNAME= jeepney-0.7.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
-PKGREVISION= 1
CATEGORIES= sysutils python
MASTER_SITES= ${MASTER_SITE_PYPI:=j/jeepney/}
@@ -11,16 +10,16 @@ HOMEPAGE= https://gitlab.com/takluyver/j
COMMENT= Low-level pure Python DBus protocol wrapper
LICENSE= mit
+DEPENDS+= ${PYPKGPREFIX}-trio-[0-9]*:../../devel/py-trio
TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
TEST_DEPENDS+= ${PYPKGPREFIX}-testpath-[0-9]*:../../devel/py-testpath
-DEPENDS+= ${PYPKGPREFIX}-trio-[0-9]*:../../devel/py-trio
USE_LANGUAGES= # none
-PYTHON_VERSIONS_INCOMPATIBLE= 27 37 # py-trio
+PYTHON_VERSIONS_INCOMPATIBLE= 27
do-test:
- cd ${WRKSRC} && ${SETENV} ${TEST_ENV} py.test-${PYVERSSUFFIX}
+ cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX}
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/sysutils/py-jeepney/PLIST
diff -u pkgsrc/sysutils/py-jeepney/PLIST:1.2 pkgsrc/sysutils/py-jeepney/PLIST:1.3
--- pkgsrc/sysutils/py-jeepney/PLIST:1.2 Sat Jan 22 14:10:10 2022
+++ pkgsrc/sysutils/py-jeepney/PLIST Sun Jan 23 09:09:51 2022
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2022/01/22 14:10:10 wiz Exp $
+@comment $NetBSD: PLIST,v 1.3 2022/01/23 09:09:51 adam Exp $
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -19,6 +19,9 @@ ${PYSITELIB}/jeepney/bus.pyo
${PYSITELIB}/jeepney/bus_messages.py
${PYSITELIB}/jeepney/bus_messages.pyc
${PYSITELIB}/jeepney/bus_messages.pyo
+${PYSITELIB}/jeepney/fds.py
+${PYSITELIB}/jeepney/fds.pyc
+${PYSITELIB}/jeepney/fds.pyo
${PYSITELIB}/jeepney/integrate/__init__.py
${PYSITELIB}/jeepney/integrate/__init__.pyc
${PYSITELIB}/jeepney/integrate/__init__.pyo
@@ -52,6 +55,9 @@ ${PYSITELIB}/jeepney/io/common.pyo
${PYSITELIB}/jeepney/io/tests/__init__.py
${PYSITELIB}/jeepney/io/tests/__init__.pyc
${PYSITELIB}/jeepney/io/tests/__init__.pyo
+${PYSITELIB}/jeepney/io/tests/conftest.py
+${PYSITELIB}/jeepney/io/tests/conftest.pyc
+${PYSITELIB}/jeepney/io/tests/conftest.pyo
${PYSITELIB}/jeepney/io/tests/test_asyncio.py
${PYSITELIB}/jeepney/io/tests/test_asyncio.pyc
${PYSITELIB}/jeepney/io/tests/test_asyncio.pyo
@@ -98,6 +104,9 @@ ${PYSITELIB}/jeepney/tests/test_bus.pyo
${PYSITELIB}/jeepney/tests/test_bus_messages.py
${PYSITELIB}/jeepney/tests/test_bus_messages.pyc
${PYSITELIB}/jeepney/tests/test_bus_messages.pyo
+${PYSITELIB}/jeepney/tests/test_fds.py
+${PYSITELIB}/jeepney/tests/test_fds.pyc
+${PYSITELIB}/jeepney/tests/test_fds.pyo
${PYSITELIB}/jeepney/tests/test_low_level.py
${PYSITELIB}/jeepney/tests/test_low_level.pyc
${PYSITELIB}/jeepney/tests/test_low_level.pyo
Index: pkgsrc/sysutils/py-jeepney/distinfo
diff -u pkgsrc/sysutils/py-jeepney/distinfo:1.1 pkgsrc/sysutils/py-jeepney/distinfo:1.2
--- pkgsrc/sysutils/py-jeepney/distinfo:1.1 Wed Jan 19 20:43:20 2022
+++ pkgsrc/sysutils/py-jeepney/distinfo Sun Jan 23 09:09:51 2022
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1 2022/01/19 20:43:20 rhialto Exp $
+$NetBSD: distinfo,v 1.2 2022/01/23 09:09:51 adam Exp $
-BLAKE2s (jeepney-0.6.0.tar.gz) = 832b9f94ddccf892bd2d0484efb7e7d23542e25a5f5162ddcd607128e3529652
-SHA512 (jeepney-0.6.0.tar.gz) = 140be9dd28ed853d2d41b6a8bbeb2f22c0270ce7bf33b943ec2ac010db17d4f06e253fa8637fbbb3044fe9ffdbfa1e15f0c663eb44bdd538f8c47c2e7dab3ca5
-Size (jeepney-0.6.0.tar.gz) = 49513 bytes
+BLAKE2s (jeepney-0.7.1.tar.gz) = fd41f1c3d2df2643b158d5bbe147c353eb2b5251b3d214a04c037db9f5427b23
+SHA512 (jeepney-0.7.1.tar.gz) = f0af5a18a669f1a6322925201cad83ee01bc5a1b91577565042fd8a18b506a3650ff67b0ba333c8fb3b179f43ef243d16b07a9a1f7a7e5baec825dda0e6b0571
+Size (jeepney-0.7.1.tar.gz) = 61833 bytes
Home |
Main Index |
Thread Index |
Old Index