diff options
| author | Charlie Li <vishwin@FreeBSD.org> | 2023-03-09 03:57:27 +0000 |
|---|---|---|
| committer | Charlie Li <vishwin@FreeBSD.org> | 2023-03-09 03:58:34 +0000 |
| commit | b0a6205495e0acaa011911b2555f8d67749b713b (patch) | |
| tree | b3121e30c099d1f5da89704a29702d03ef2bbe75 | |
| parent | 6ab8398875fba68be034a9a0ab12047c9ea929c6 (diff) | |
python.mk: move PEP-517 docs above distutils
| -rw-r--r-- | Mk/Uses/python.mk | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/Mk/Uses/python.mk b/Mk/Uses/python.mk index 6e25d0427cb2..a8145a661810 100644 --- a/Mk/Uses/python.mk +++ b/Mk/Uses/python.mk @@ -138,6 +138,18 @@ # version number (used for dependencies). # default: ${PYTHONBASE}/bin/${PYTHON_VERSION} # +# PEP517_BUILD_CMD - Command sequence for a PEP-517 build frontend that builds a wheel. +# default: ${PYTHON_CMD} -m build -n -w +# +# PEP517_BUILD_DEPEND - Port needed to execute ${PEP517_BUILD_CMD}. +# default: ${PYTHON_PKGNAMEPREFIX}build>0:devel/py-build@${PY_FLAVOR} +# +# PEP517_INSTALL_CMD - Command sequence for a PEP-517 install frontend that installs a wheel. +# default: ${PYTHON_CMD} -m installer -d ${STAGEDIR} -p ${PREFIX} --no-compile-bytecode ${BUILD_WRKSRC}/dist/${PORTNAME:C/[-_]+/_/g}-${PORTVERSION}-*.whl +# +# PEP517_INSTALL_DEPEND - Port needed to execute ${PEP517_INSTALL_CMD}. +# default: ${PYTHON_PKGNAMEPREFIX}installer>0:devel/py-installer@${PY_FLAVOR} +# # PYSETUP - Name of the setup script used by the distutils # package. # default: setup.py @@ -178,18 +190,6 @@ # - Canonical name for egg-info. # default: ${PYDISTUTILS_PKGNAME:C/[^A-Za-z0-9.]+/_/g}-${PYDISTUTILS_PKGVERSION:C/[^A-Za-z0-9.]+/_/g}-py${PYTHON_VER}.egg-info # -# PEP517_BUILD_CMD - Command sequence for a PEP-517 build frontend that builds a wheel. -# default: ${PYTHON_CMD} -m build -n -w -# -# PEP517_BUILD_DEPEND - Port needed to execute ${PEP517_BUILD_CMD}. -# default: ${PYTHON_PKGNAMEPREFIX}build>0:devel/py-build@${PY_FLAVOR} -# -# PEP517_INSTALL_CMD - Command sequence for a PEP-517 install frontend that installs a wheel. -# default: ${PYTHON_CMD} -m installer -d ${STAGEDIR} -p ${PREFIX} --no-compile-bytecode ${BUILD_WRKSRC}/dist/${PORTNAME:C/[-_]+/_/g}-${PORTVERSION}-*.whl -# -# PEP517_INSTALL_DEPEND - Port needed to execute ${PEP517_INSTALL_CMD}. -# default: ${PYTHON_PKGNAMEPREFIX}installer>0:devel/py-installer@${PY_FLAVOR} -# # PYTEST_BROKEN_TESTS - Lists of 'pytest -k' patterns to skip tests which # require fixing. # default: <empty> |
