python3-wheel 0.45.1-5

This commit is contained in:
Евгений Храмов 2025-04-06 15:08:23 +03:00
parent cd6de684a0
commit 9348a7f278

@ -1,6 +1,6 @@
name='python3-wheel'
version='0.45.1'
release='4'
release='5'
desc='This is a command line tool for manipulating Python wheel files, as defined in PEP 427'
homepage='https://github.com/pypa/wheel'
maintainer='Евгений Храмов <xpamych@yandex.ru>'
@ -23,11 +23,17 @@ sources=("https://files.pythonhosted.org/packages/source/w/wheel/wheel-${version
checksums=('blake2b-256:8a982d9906746cdc6a6ef809ae6338005b3f21bb568bea3165cfc6a243fdc25c')
build() {
cd "$srcdir/wheel-${version}"
python3 -m build
cd "$srcdir/wheel-${version}"
python3 -m build
}
package() {
cd "$srcdir/wheel-${version}"
pip install --root="${pkgdir}/" . --no-deps --disable-pip-version-check
cd "$srcdir/wheel-${version}"
pip install --root="${pkgdir}/" . --no-deps --ignore-installed --disable-pip-version-check
}
files() {
echo ./usr/local/bin/wheel
printf '"%s" ' ./usr/local/lib/python3.*/site-packages/wheel/**/*
printf '"%s" ' ./usr/local/lib/python3.*/site-packages/wheel-${version}.dist-info/*
}