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

View File

@@ -0,0 +1,21 @@
PORTNAME= installer
PORTVERSION= 0.6.0
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Library for installing Python wheels
WWW= https://github.com/pypa/installer
USES= python
USE_PYTHON= allflavors autoplist concurrent pep517
MAKE_ENV= PYTHONPATH=${WRKSRC}/src
NO_ARCH= yes
PEP517_BUILD_CMD= ${PYTHON_CMD} -m flit_core.wheel
PEP517_BUILD_DEPEND= ${PYTHON_PKGNAMEPREFIX}flit-core>=3.2.0<4:python/py-flit-core@${PY_FLAVOR}
PEP517_INSTALL_DEPEND= # empty
.include <bsd.port.mk>

View File

@@ -0,0 +1,3 @@
TIMESTAMP = 1674589800
SHA256 (installer-0.6.0.tar.gz) = f3bd36cd261b440a88a1190b1becca0578fee90b4b62decc796932fdd5ae8839
SIZE (installer-0.6.0.tar.gz) = 471077

View File

@@ -0,0 +1,8 @@
This is a low-level library for installing a Python package from a wheel
distribution. It provides basic functionality and abstractions for handling
wheels and installing packages from wheels.
- Logic for "unpacking" a wheel (i.e. installation).
- Abstractions for various parts of the unpacking process.
- Extensible simple implementations of the abstractions.
- Platform-independent Python script wrapper generation.