pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/sysutils/py-jeepney py-jeepney: updated to 0.7.1
details: https://anonhg.NetBSD.org/pkgsrc/rev/4ae610d6e1fb
branches: trunk
changeset: 372307:4ae610d6e1fb
user: adam <adam%pkgsrc.org@localhost>
date: Sun Jan 23 09:09:51 2022 +0000
description:
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.
diffstat:
sysutils/py-jeepney/Makefile | 11 +++++------
sysutils/py-jeepney/PLIST | 11 ++++++++++-
sysutils/py-jeepney/distinfo | 8 ++++----
3 files changed, 19 insertions(+), 11 deletions(-)
diffs (86 lines):
diff -r 482ba6859554 -r 4ae610d6e1fb sysutils/py-jeepney/Makefile
--- a/sysutils/py-jeepney/Makefile Sun Jan 23 09:01:11 2022 +0000
+++ b/sysutils/py-jeepney/Makefile Sun Jan 23 09:09:51 2022 +0000
@@ -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 @@
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"
diff -r 482ba6859554 -r 4ae610d6e1fb sysutils/py-jeepney/PLIST
--- a/sysutils/py-jeepney/PLIST Sun Jan 23 09:01:11 2022 +0000
+++ b/sysutils/py-jeepney/PLIST Sun Jan 23 09:09:51 2022 +0000
@@ -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_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/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_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
diff -r 482ba6859554 -r 4ae610d6e1fb sysutils/py-jeepney/distinfo
--- a/sysutils/py-jeepney/distinfo Sun Jan 23 09:01:11 2022 +0000
+++ b/sysutils/py-jeepney/distinfo Sun Jan 23 09:09:51 2022 +0000
@@ -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