Date: Wednesday, April 12, 2023 @ 18:10:34
Author: foutrelis
Revision: 1444988
archrelease: copy trunk to community-staging-x86_64
Added:
python-pycuda/repos/community-staging-x86_64/
python-pycuda/repos/community-staging-x86_64/PKGBUILD
(from rev 1444987, python-pycuda/trunk/PKGBUILD)
----------+
PKGBUILD | 85 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 85 insertions(+)
Copied: python-pycuda/repos/community-staging-x86_64/PKGBUILD (from rev
1444987, python-pycuda/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2023-04-12 18:10:34 UTC (rev 1444988)
@@ -0,0 +1,85 @@
+# Maintainer:
+# Contributor: Felix Yan <[email protected]>
+# Contributor: Stéphane Gaudreault <[email protected]>
+
+_name=pycuda
+pkgname=python-pycuda
+pkgver=2022.2.2
+pkgrel=3
+pkgdesc="Python wrapper for Nvidia CUDA"
+arch=(x86_64)
+url="https://documen.tician.de/pycuda/"
+license=(
+ Apache
+ MIT
+)
+depends=(
+ boost-libs
+ cuda
+ gcc-libs
+ glibc
+ nvidia-utils
+ python
+ python-numpy
+ python-pytools
+)
+makedepends=(
+ boost
+ ctags
+ mesa
+ python-build
+ python-installer
+ python-setuptools
+ python-wheel
+)
+checkdepends=(
+ python-pytest
+)
+provides=(pycuda-headers)
+conflicts=(pycuda-headers)
+replaces=(pycuda-headers)
+source=(https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz)
+sha512sums=('c62aafe473e44339ac2147d86b51fc9bc2429310450b6d99e78a127828cc3a42dc74f20e1bdf8261f6652aed6d07ee3a871ce371f89f33fbcc4014f551af0b96')
+b2sums=('d60e83ac2faa183e0fa022c3d901c9d97ec2f9a59195425b9d71467c24b154d48d5735223220b41aa58b0898800d382d9ead54166d0a59db9c2a777e03e574be')
+
+prepare() {
+ local lib_arch=''
+ [[ "$CARCH" = "x86_64" ]] && lib_arch='64'
+
+ # create local siteconf.py for build system
+ # defaults can be compared from running the ./configure.py script
+ {
+ printf "BOOST_PYTHON_LIBNAME = ['boost_python3']\n"
+ printf "CUDA_ROOT = '/opt/cuda'\n"
+ printf "USE_SHIPPED_BOOST = False\n"
+ } > $_name-$pkgver/siteconf.py
+
+ # we ship python-numpy
+ sed -e 's/oldest-supported-numpy/numpy/' -i $_name-$pkgver/pyproject.toml
+}
+
+build() {
+ cd $_name-$pkgver
+ python -m build --wheel --no-isolation
+}
+
+# requires an Nvidia graphics card to run
+# check() {
+# local pytest_options=(
+# -vv
+# --ignore examples/from-wiki/simple_speed_test.py
+# )
+# local site_packages=$(python -c "import site;
print(site.getsitepackages()[0])")
+
+# cd $_name-$pkgver
+# # install to temporary location, as importlib is used
+# python -m installer --destdir=test_dir dist/*.whl
+# export PYTHONPATH="test_dir/$site_packages:$PYTHONPATH"
+# pytest "${pytest_options[@]}"
+# }
+
+package() {
+ cd $_name-$pkgver
+ python -m installer --destdir="$pkgdir" dist/*.whl
+ install -vDm 644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}