Skip to content

Commit

Permalink
devel/py-pep517: Update to 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sunpoet committed Aug 27, 2022
1 parent 31496f9 commit 7a9b907
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 7 deletions.
10 changes: 6 additions & 4 deletions devel/py-pep517/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PORTNAME= pep517
PORTVERSION= 0.12.0
PORTVERSION= 0.13.0
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
Expand All @@ -10,9 +10,7 @@ COMMENT= Wrappers to build Python packages using PEP 517 hooks
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE

RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tomli>=1.1.0:textproc/py-tomli@${PY_FLAVOR}

USES= python:3.6+
USES= python:3.7+
USE_PYTHON= autoplist concurrent distutils

NO_ARCH= yes
Expand All @@ -24,4 +22,8 @@ RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}importlib-metadata>=0:devel/py-importlib-me
${PYTHON_PKGNAMEPREFIX}zipp>=0:devel/py-zipp@${PY_FLAVOR}
.endif

.if ${PYTHON_REL} < 31100
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}tomli>=1.1.0:textproc/py-tomli@${PY_FLAVOR}
.endif

.include <bsd.port.post.mk>
6 changes: 3 additions & 3 deletions devel/py-pep517/distinfo
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
TIMESTAMP = 1635181071
SHA256 (pep517-0.12.0.tar.gz) = 931378d93d11b298cf511dd634cf5ea4cb249a28ef84160b3247ee9afb4e8ab0
SIZE (pep517-0.12.0.tar.gz) = 26853
TIMESTAMP = 1660576802
SHA256 (pep517-0.13.0.tar.gz) = ae69927c5c172be1add9203726d4b84cf3ebad1edcd5f71fcdc746e66e829f59
SIZE (pep517-0.13.0.tar.gz) = 25798
26 changes: 26 additions & 0 deletions devel/py-pep517/files/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#!/usr/bin/env python
# setup.py generated by flit for tools that don't yet use PEP 517

from distutils.core import setup

packages = \
['pep517', 'pep517.in_process']

package_data = \
{'': ['*']}

extras_require = \
{":python_version<'3.11'": ['tomli >=1.1.0'],
":python_version<'3.8'": ['importlib_metadata', 'zipp']}

setup(name='pep517',
version='%%PORTVERSION%%',
description='Wrappers to build Python packages using PEP 517 hooks',
author='Thomas Kluyver',
author_email='thomas@kluyver.me.uk',
url='https://github.com/pypa/pep517',
packages=packages,
package_data=package_data,
extras_require=extras_require,
python_requires='>=3.6',
)

0 comments on commit 7a9b907

Please sign in to comment.