diff --git a/devel/py-flit/Makefile b/devel/py-flit/Makefile index 93918c1efc30..a19581c4e29a 100644 --- a/devel/py-flit/Makefile +++ b/devel/py-flit/Makefile @@ -1,28 +1,28 @@ PORTNAME= flit -PORTVERSION= 3.7.1 +PORTVERSION= 3.8.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple packaging tool for simple packages WWW= https://github.com/pypa/flit LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}docutils>=0,1:textproc/py-docutils@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}flit-core>=${PORTVERSION}:devel/py-flit-core@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}tomli>=0:textproc/py-tomli@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}tomli-w>=0:textproc/py-tomli-w@${PY_FLAVOR} 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 diff --git a/devel/py-flit/distinfo b/devel/py-flit/distinfo index b319dbb53d3a..f9f30eeb665e 100644 --- a/devel/py-flit/distinfo +++ b/devel/py-flit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1646057940 -SHA256 (flit-3.7.1.tar.gz) = 3c9bd9c140515bfe62dd938c6610d10d6efb9e35cc647fc614fe5fb3a5036682 -SIZE (flit-3.7.1.tar.gz) = 136642 +TIMESTAMP = 1669057733 +SHA256 (flit-3.8.0.tar.gz) = d0f2a8f4bd45dc794befbf5839ecc0fd3830d65a57bd52b5997542fac5d5e937 +SIZE (flit-3.8.0.tar.gz) = 139496 diff --git a/devel/py-flit/files/setup.py b/devel/py-flit/files/setup.py index b30bcfb53e43..a9b2761d8aeb 100644 --- a/devel/py-flit/files/setup.py +++ b/devel/py-flit/files/setup.py @@ -1,34 +1,34 @@ #!/usr/bin/env python # setup.py generated by flit for tools that don't yet use PEP 517 from distutils.core import setup packages = \ ['flit', 'flit.vcs', 'flit.vendorized', 'flit.vendorized.readme'] package_data = \ {'': ['*'], 'flit': ['license_templates/*']} install_requires = \ -['flit_core >= %%PORTVERSION%%', 'requests', 'docutils', 'tomli', 'tomli-w'] +['flit_core >= %%PORTVERSION%%', 'requests', 'docutils', 'tomli-w'] extras_require = \ {'doc': ['sphinx', 'sphinxcontrib_github_alt', 'pygments-github-lexers'], - 'test': ['testpath', 'responses', 'pytest>=2.7.3', 'pytest-cov']} + 'test': ['testpath', 'responses', 'pytest>=2.7.3', 'pytest-cov', 'tomli']} entry_points = \ {'console_scripts': ['flit = flit:main']} setup(name='flit', version='%%PORTVERSION%%', description='A simple packaging tool for simple packages.', author=None, author_email='Thomas Kluyver ', url=None, packages=packages, package_data=package_data, install_requires=install_requires, extras_require=extras_require, entry_points=entry_points, python_requires='>=3.6', )