devel/py-jeepney: Update to 0.8.0

Changes:	https://gitlab.com/takluyver/jeepney/-/blob/master/docs/release-notes.rst
This commit is contained in:
Po-Chuan Hsieh 2022-04-16 11:57:22 +08:00
parent a5d7f6b9cf
commit fc36df0882
No known key found for this signature in database
GPG Key ID: 9A4BD10F002DD04B
3 changed files with 40 additions and 5 deletions

View File

@ -1,7 +1,7 @@
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
PORTNAME= jeepney
PORTVERSION= 0.7.1
PORTVERSION= 0.8.0
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -12,9 +12,12 @@ COMMENT= Low-level, pure Python DBus protocol wrapper
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= python:3.6+
USES= python:3.7+
USE_PYTHON= autoplist concurrent distutils
NO_ARCH= yes
post-patch:
@${SED} -e 's|%%PORTVERSION%%|${PORTVERSION}|' ${FILESDIR}/setup.py > ${WRKSRC}/setup.py
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1628103120
SHA256 (jeepney-0.7.1.tar.gz) = fa9e232dfa0c498bd0b8a3a73b8d8a31978304dcef0515adc859d4e096f96f4f
SIZE (jeepney-0.7.1.tar.gz) = 61833
TIMESTAMP = 1649423788
SHA256 (jeepney-0.8.0.tar.gz) = 5efe48d255973902f6badc3ce55e2aa6c5c3b3bc642059ef3a91247bcfcc5806
SIZE (jeepney-0.8.0.tar.gz) = 106005

View File

@ -0,0 +1,32 @@
#!/usr/bin/env python
# setup.py generated by flit for tools that don't yet use PEP 517
from distutils.core import setup
packages = \
['jeepney', 'jeepney.io', 'jeepney.io.tests', 'jeepney.tests']
package_data = \
{'': ['*']}
extras_require = \
{'test': ['pytest',
'pytest-trio',
'pytest-asyncio >=0.17',
'testpath',
'trio',
'async-timeout'],
'trio': ['trio'],
"trio:python_version == '3.6'": ['async_generator']}
setup(name='jeepney',
version='%%PORTVERSION%%',
description='Low-level, pure Python DBus protocol wrapper.',
author='Thomas Kluyver',
author_email='thomas@kluyver.me.uk',
url='https://gitlab.com/takluyver/jeepney',
packages=packages,
package_data=package_data,
extras_require=extras_require,
python_requires='>=3.7',
)