pkgsrc/sysutils/py-jeepney/Makefile
adam 518fb6eb16 py-jeepney: updated to 0.8.0
0.8

Removed jeepney.integrate APIs, which were deprecated in 0.7. Use
jeepney.io instead (see :doc:`integrate`).
Removed deprecated jeepney.io.tornado API. Tornado now uses the asyncio
event loop, so you can use it along with jeepney.io.asyncio.
Deprecated conn.router attribute in the :doc:`api/blocking` integration.
Use :ref:`proxies <msggen_proxies>` or :meth:`~.blocking.DBusConnection.send_and_get_reply`
to find   replies to method calls, and :meth:`~.blocking.DBusConnection.filter`
for other routing.
Added docs page with background on D-Bus (:doc:`dbus-background`).
2022-04-18 10:57:54 +00:00

28 lines
957 B
Makefile

# $NetBSD: Makefile,v 1.5 2022/04/18 10:57:54 adam Exp $
DISTNAME= jeepney-0.8.0
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
BUILD_DEPENDS+= ${PYPKGPREFIX}-flit_core>=2:../../devel/py-flit_core
DEPENDS+= ${PYPKGPREFIX}-trio-[0-9]*:../../devel/py-trio
TEST_DEPENDS+= ${PYPKGPREFIX}-async-timeout-[0-9]*:../../devel/py-async-timeout
TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
TEST_DEPENDS+= ${PYPKGPREFIX}-test-asyncio>=0.17:../../devel/py-test-asyncio
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/wheel.mk"
.include "../../mk/bsd.pkg.mk"