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:
parent
a5d7f6b9cf
commit
fc36df0882
@ -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>
|
||||
|
@ -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
|
||||
|
32
devel/py-jeepney/files/setup.py
Normal file
32
devel/py-jeepney/files/setup.py
Normal 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',
|
||||
)
|
Loading…
Reference in New Issue
Block a user