From 144dd0f66512822f5d315b413b4ac842b972da48 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Mon, 2 Dec 2024 09:41:46 -0500 Subject: [PATCH] New package: python3-installer-bootstrap-0.7.0 dependency of python3-packaging-bootstrap --- srcpkgs/python3-installer-bootstrap/template | 41 ++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 srcpkgs/python3-installer-bootstrap/template diff --git a/srcpkgs/python3-installer-bootstrap/template b/srcpkgs/python3-installer-bootstrap/template new file mode 100644 index 00000000000..111be0e431c --- /dev/null +++ b/srcpkgs/python3-installer-bootstrap/template @@ -0,0 +1,41 @@ +# Template file for 'python3-installer-bootstrap' +pkgname=python3-installer-bootstrap +version=0.7.0 +revision=1 +# This package is used by the python3-pep517 build style; using that style here +# would create a build cycle +build_style=python3-module +hostmakedepends="python3-flit_core-bootstrap" +depends="python3" +short_desc="Low-level library for installing from a Python wheel (for xbps-src use)" +maintainer="Andrew J. Hesford " +license="MIT" +homepage="https://installer.readthedocs.io/" +distfiles="${PYPI_SITE}/i/installer/installer-${version}.tar.gz" +checksum=a26d3e3116289bb08216e0d0f7d925fcef0b0194eedfa0c944bcaaa106c4b631 +make_check=no # bootstrap +repository=bootstrap +nopyprovides=yes +noverifypydeps=yes + +do_build() { + local pypath="/${py3_sitelib}-bootstrap" + if [ -n "${PYTHONPATH}" ]; then + pypath="${pypath}:${PYTHONPATH}" + fi + + PYTHONPATH="${pypath}" python3 -m flit_core.wheel +} + +do_install() { + local pypath="./src:/${py3_sitelib}-bootstrap" + if [ -n "${PYTHONPATH}" ]; then + pypath="${pypath}:${PYTHONPATH}" + fi + + PYTHONPATH="${pypath}" python3 -m installer --destdir "${DESTDIR}" \ + "dist/installer-${version}-py3-none-any.whl" + mv "${DESTDIR}/${py3_sitelib}" "${DESTDIR}/${py3_sitelib}-bootstrap" + + vlicense LICENSE +}