Date: Wednesday, April 5, 2023 @ 17:16:18
Author: felixonmars
Revision: 1437809
archrelease: copy trunk to community-staging-any
Added:
python-build/repos/community-staging-any/
python-build/repos/community-staging-any/PKGBUILD
(from rev 1437808, python-build/trunk/PKGBUILD)
python-build/repos/community-staging-any/keys/
----------+
PKGBUILD | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
Copied: python-build/repos/community-staging-any/PKGBUILD (from rev 1437808,
python-build/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2023-04-05 17:16:18 UTC (rev 1437809)
@@ -0,0 +1,49 @@
+# Maintainer: Filipe Laíns (FFY00) <[email protected]>
+# Maintainer: Daniel M. Capella <[email protected]>
+
+_pkgname=build
+pkgname=python-$_pkgname
+pkgver=0.10.0
+pkgrel=2
+pkgdesc='A simple, correct PEP 517 build frontend'
+arch=('any')
+url='https://github.com/pypa/build'
+license=('MIT')
+depends=('python-packaging' 'python-pyproject-hooks' 'python-tomli')
+optdepends=('python-virtualenv: Use virtualenv for build isolation')
+makedepends=('git' 'python-build' 'python-flit-core' 'python-installer'
+ 'python-sphinx' 'python-sphinx-argparse-cli'
'python-sphinx-autodoc-typehints' 'python-sphinx-furo')
+checkdepends=('python-pytest' 'python-pytest-mock'
'python-pytest-rerunfailures' 'python-filelock' 'python-setuptools'
'python-toml' 'python-wheel')
+source=("git+$url#tag=$pkgver?signed")
+validpgpkeys=('3DCE51D60930EBA47858BA4146F633CBB0EB4BF2') # Filipe Laíns
(FFY00) <[email protected]>
+sha512sums=('SKIP')
+
+build() {
+ cd $_pkgname
+
+ python -m build --wheel --skip-dependency-check --no-isolation
+
+ PYTHONPATH=src sphinx-build -b dirhtml -v docs docs/build/html
+}
+
+check() {
+ cd $_pkgname
+
+ PYTHONPATH=src pytest
+}
+
+package() {
+ cd $_pkgname
+
+ python -m installer --destdir="$pkgdir" dist/*.whl
+
+ install -dm 755 "$pkgdir"/usr/share/doc/$pkgname
+ cp -r -a --no-preserve=ownership docs/build/html
"$pkgdir"/usr/share/doc/$pkgname
+ rm -rf "$pkgdir"/usr/share/doc/$pkgname/html/.doctrees
+
+ # Symlink license file
+ local site_packages=$(python -c "import site;
print(site.getsitepackages()[0])")
+ install -d "$pkgdir"/usr/share/licenses/$pkgname
+ ln -s "$site_packages"/$_pkgname-$pkgver.dist-info/LICENSE \
+ "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}