This commit is contained in:
2023-03-12 21:19:08 +02:00
parent 03557b463a
commit 56b18d31aa
339 changed files with 16782 additions and 918 deletions

30
python/py-wheel/Makefile Normal file
View File

@@ -0,0 +1,30 @@
PORTNAME= wheel
PORTVERSION= 0.38.4
CATEGORIES= devel
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= nivit@FreeBSD.org
COMMENT= Built-package format for Python
WWW= https://github.com/pypa/wheel
USES= python:3.6+
USE_PYTHON= autoplist concurrent distutils
# see https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=268500
EXTRACT_CMD= ${SETENV} LC_ALL=en_US.UTF-8 /usr/bin/bsdtar
NO_ARCH= yes
#OPTIONS_DEFINE= PIP SIGNATURE
#
#PIP_DESC= Use pip to install wheels
#SIGNATURE_DESC= Enable digital signature of wheels
#
#PIP_RUN_DEPENDS= pip-${PYTHON_VER}:python/py-pip@${PY_FLAVOR}
#SIGNATURE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dirspec>=13.05:python/py-dirspec@${PY_FLAVOR} \
# ${PYTHON_PKGNAMEPREFIX}ed25519ll>=0.6_1:python/py-ed25519ll@${PY_FLAVOR} \
# ${PYTHON_PKGNAMEPREFIX}keyring>=1.3:python/py-keyring@${PY_FLAVOR} \
# ${PYTHON_PKGNAMEPREFIX}xdg>=0.25:python/py-xdg@${PY_FLAVOR}
.include <bsd.port.mk>

3
python/py-wheel/distinfo Normal file
View File

@@ -0,0 +1,3 @@
TIMESTAMP = 1668765655
SHA256 (wheel-0.38.4.tar.gz) = 965f5259b566725405b05e7cf774052044b1ed30119b5d586b2703aafe8719ac
SIZE (wheel-0.38.4.tar.gz) = 67193

13
python/py-wheel/pkg-descr Normal file
View File

@@ -0,0 +1,13 @@
A built-package format for Python.
A wheel is a ZIP-format archive with a specially formatted filename and the
.whl extension. It is designed to contain all the files for a PEP 376
compatible install in a way that is very close to the on-disk format.
Many packages will be properly installed with only the "Unpack" step (simply
extracting the file onto sys.path), and the unpacked archive preserves enough
information to "Spread" (copy data and scripts to their final locations)
at any later time.
The wheel project provides a bdist_wheel command for setuptools (requires
setuptools >= 0.8.0). Wheel files can be installed with a newer pip from
https://github.com/pypa/pip or with wheel's own command line utility.