pkgsrc/sysutils/py-jeepney/Makefile
adam 53d6b0256d 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.
2022-01-23 09:09:51 +00:00

25 lines
729 B
Makefile

# $NetBSD: Makefile,v 1.4 2022/01/23 09:09:51 adam Exp $
DISTNAME= jeepney-0.7.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= sysutils python
MASTER_SITES= ${MASTER_SITE_PYPI:=j/jeepney/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://gitlab.com/takluyver/jeepney
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
USE_LANGUAGES= # none
PYTHON_VERSIONS_INCOMPATIBLE= 27
do-test:
cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX}
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"