devel/py-installer: Update to 0.6.0

Changes:	https://github.com/pypa/installer/blob/main/docs/changelog.md
This commit is contained in:
Po-Chuan Hsieh 2023-01-30 20:31:24 +08:00
parent bdf3351402
commit e817414f4d
No known key found for this signature in database
GPG Key ID: 9A4BD10F002DD04B
3 changed files with 32 additions and 4 deletions

View File

@ -1,5 +1,5 @@
PORTNAME= installer
PORTVERSION= 0.5.1
PORTVERSION= 0.6.0
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -16,4 +16,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 = 1647264540
SHA256 (installer-0.5.1.tar.gz) = f970995ec2bb815e2fdaf7977b26b2091e1e386f0f42eafd5ac811953dc5d445
SIZE (installer-0.5.1.tar.gz) = 469793
TIMESTAMP = 1674589800
SHA256 (installer-0.6.0.tar.gz) = f3bd36cd261b440a88a1190b1becca0578fee90b4b62decc796932fdd5ae8839
SIZE (installer-0.6.0.tar.gz) = 471077

View File

@ -0,0 +1,25 @@
#!/usr/bin/env python
# setup.py generated by flit for tools that don't yet use PEP 517
from distutils.core import setup
packages = \
['installer', 'installer._scripts']
package_data = \
{'': ['*']}
package_dir = \
{'': 'src'}
setup(name='installer',
version='%%PORTVERSION%%',
description='A library for installing Python wheels.',
author=None,
author_email='Pradyun Gedam <pradyunsg@gmail.com>',
url=None,
packages=packages,
package_data=package_data,
package_dir=package_dir,
python_requires='>=3.7',
)