Skip to content
Snippets Groups Projects
Verified Commit 73bb0776 authored by Jelle van der Waa's avatar Jelle van der Waa :construction:
Browse files

Set lower version and fix Python dep

Without the python dependency python-pep517 does not build. Set a lower
version so we can install a bootstrapped python-pep517.
parent 279622e0
Branches PKGBUILD
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@
pkgbase=python-bootstrap
pkgname=(python-build python-installer python-tomli python-pep517 python-setuptools python-flit-core python-wheel)
pkgver=1
pkgver=0.1
pkgrel=1
arch=(any)
license=('custom')
......@@ -52,21 +52,21 @@ build() {
}
package_python-build() {
depends=(python-pep517)
depends=(python-pep517 python)
pkgdesc="A simple, correct PEP 517 build frontend"
cd python-bootstrap
python -m bootstrap.install dist/build-*-py3-none-any.whl -d $pkgdir
}
package_python-installer() {
depends=(python-pep517)
depends=(python-pep517 python)
pkgdesc="Low-level library for installing a Python package from a wheel distribution"
cd python-bootstrap
python -m bootstrap.install dist/installer-*-py3-none-any.whl -d $pkgdir
}
package_python-flit-core() {
depends=(python-pep517)
depends=(python-pep517 python)
pkgdesc="Simplified packaging of Python modules (core backend)"
cd python-bootstrap
python -m bootstrap.install dist/flit_core-*-py3-none-any.whl -d $pkgdir
......@@ -74,24 +74,28 @@ package_python-flit-core() {
package_python-pep517() {
pkgdesc="Wrappers to build Python packages using PEP 517 hooks"
depends=(python)
cd python-bootstrap
python -m bootstrap.install dist/pep517-*-py3-none-any.whl -d $pkgdir
}
package_python-setuptools() {
pkgdesc="Easily download, build, install, upgrade, and uninstall Python packages"
depends=(python)
cd python-bootstrap
python -m bootstrap.install dist/setuptools-*-py3-none-any.whl -d $pkgdir
}
package_python-tomli() {
pkgdesc="A lil' TOML parser"
depends=(python)
cd python-bootstrap
python -m bootstrap.install dist/tomli-*-py3-none-any.whl -d $pkgdir
}
package_python-wheel() {
pkgdesc="A built-package format for Python"
depends=(python)
cd python-bootstrap
python -m bootstrap.install dist/wheel-*-py2.py3-none-any.whl -d $pkgdir
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment