Skip to content

Commit

Permalink
devel/py-jeepney: Update to 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sunpoet committed Apr 16, 2022
1 parent a5d7f6b commit fc36df0
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 5 deletions.
7 changes: 5 additions & 2 deletions devel/py-jeepney/Makefile
@@ -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}
Expand All @@ -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>
6 changes: 3 additions & 3 deletions devel/py-jeepney/distinfo
@@ -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 changes: 32 additions & 0 deletions devel/py-jeepney/files/setup.py
@@ -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',
)

0 comments on commit fc36df0

Please sign in to comment.