Caleb Maclennan pushed to branch main at Arch Linux / Packaging / Packages /
blender
Commits:
f8d8746a by Caleb Maclennan at 2026-07-15T11:34:42+03:00
upgpkg: 17:5.2.0-1
- - - - -
2 changed files:
- .SRCINFO
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,6 +1,6 @@
pkgbase = blender
pkgdesc = A fully integrated 3D graphics creation suite
- pkgver = 5.1.2
+ pkgver = 5.2.0
pkgrel = 1
epoch = 17
url = https://www.blender.org
@@ -107,11 +107,11 @@ pkgbase = blender
optdepends = hiprt: Ray tracing AMD ROCm support
optdepends = libdecor: wayland support
options = !lto
- source = git+https://projects.blender.org/blender/blender.git#tag=v5.1.2
+ source = git+https://projects.blender.org/blender/blender.git#tag=v5.2.0
source = blender-hip-update.patch
source =
blender-fix-oneapi-2026-atomic-address-space.patch::https://raw.githubusercontent.com/intel/llvm/20a7095cba72ace59f7c8a64711ec4b51f01f030/devops/actions/blender/blender-build/patches/Fix-build.patch
source =
https://developer.download.nvidia.com/redist/optix/v8.0/OptiX-8.0-Include.zip
- sha512sums =
1773e1cfe06bf924aea253dcc6c5248ac7f9963c2809598b5e1c18ab2d4a40c2d8630d4a6d55a77e6ef217e11bf4955b389c75a989548a2d1547da9fd5ebd791
+ sha512sums =
e113ddf9deb48ff1d53ddd7137677f6fd661b8315363fd55189a5b4fc44fe5a0f1cb46ba24a733939f97836edaec09900acc4486893e455bc526057c3a0bd31b
sha512sums =
77d202e2033a2e5c26adcc5340da6fbd7f859a8b237b37f9be7f08fbbb99173a67462f1b0aa0dce31967cd8c465b6341628567ace1e477b81a1b75c2383357ca
sha512sums =
17b15a7e2ea7e89e22a35325104e6a047253242f820815fa499a1010a0caa90b5a7c0a67b4434e24d472d09c767d34a6524e769ca8f1da13728dec89ed9267c0
sha512sums =
5502d9df847de12badc702c0444bd4f1f7620460b2235026df2c3133da1e04c148af0f1fc7f345e9a0c009c32f905f66c8d427743445e8864d3a797cdce6a483
=====================================
PKGBUILD
=====================================
@@ -8,7 +8,7 @@
# fine with them.
pkgname=blender
-pkgver=5.1.2
+pkgver=5.2.0
pkgrel=1
epoch=17
pkgdesc="A fully integrated 3D graphics creation suite"
@@ -132,7 +132,7 @@
source=("git+https://projects.blender.org/blender/blender.git#tag=v$pkgver"
blender-hip-update.patch
blender-fix-oneapi-2026-atomic-address-space.patch::https://raw.githubusercontent.com/intel/llvm/20a7095cba72ace59f7c8a64711ec4b51f01f030/devops/actions/blender/blender-build/patches/Fix-build.patch
https://developer.download.nvidia.com/redist/optix/v8.0/OptiX-8.0-Include.zip)
-sha512sums=('1773e1cfe06bf924aea253dcc6c5248ac7f9963c2809598b5e1c18ab2d4a40c2d8630d4a6d55a77e6ef217e11bf4955b389c75a989548a2d1547da9fd5ebd791'
+sha512sums=('e113ddf9deb48ff1d53ddd7137677f6fd661b8315363fd55189a5b4fc44fe5a0f1cb46ba24a733939f97836edaec09900acc4486893e455bc526057c3a0bd31b'
'77d202e2033a2e5c26adcc5340da6fbd7f859a8b237b37f9be7f08fbbb99173a67462f1b0aa0dce31967cd8c465b6341628567ace1e477b81a1b75c2383357ca'
'17b15a7e2ea7e89e22a35325104e6a047253242f820815fa499a1010a0caa90b5a7c0a67b4434e24d472d09c767d34a6524e769ca8f1da13728dec89ed9267c0'
'5502d9df847de12badc702c0444bd4f1f7620460b2235026df2c3133da1e04c148af0f1fc7f345e9a0c009c32f905f66c8d427743445e8864d3a797cdce6a483')
@@ -147,17 +147,6 @@ prepare() {
patch -Np1 -i "$srcdir"/blender-hip-update.patch
patch -Np1 -i "$srcdir"/blender-fix-oneapi-2026-atomic-address-space.patch
-
- # TODO Dirty hack / workaround to address:
- #
https://gitlab.archlinux.org/archlinux/packaging/packages/blender/-/issues/44
- local _hiprt_api_ver
- _hiprt_api_ver=$(awk '/HIPRT_API_VERSION/ {print $3}'
/opt/rocm/include/hiprt/hiprtew.h)
- sed -i "/HIPRT_API_VERSION/s/2005/$_hiprt_api_ver/"
extern/hipew/include/hiprtew.h
-
- # TODO Dirty hack / workaround to fix faulty manpage generation.. arguably
an upstream issue.
- #
https://gitlab.archlinux.org/archlinux/packaging/packages/blender/-/issues/19
- sed -i "/blender_help = subprocess/i\ blender_env = {\"LD_LIBRARY_PATH\":
\"${pkgdir}/usr/share/blender/lib\"}" \
- doc/manpage/blender.1.py
}
_get_pyver() {
@@ -224,7 +213,7 @@ package() {
DESTDIR="${pkgdir}" cmake --install build
cd "$pkgname"
- install -Dm755 release/bin/blender-softwaregl
"${pkgdir}/usr/bin/blender-softwaregl"
+ # install -Dm755 release/bin/blender-softwaregl
"${pkgdir}/usr/bin/blender-softwaregl"
python -m compileall "${pkgdir}/usr/share/blender"
python -O -m compileall "${pkgdir}/usr/share/blender"
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/blender/-/commit/f8d8746aa836509883c4ed2e718d3e558f1a9f1d
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/blender/-/commit/f8d8746aa836509883c4ed2e718d3e558f1a9f1d
You're receiving this email because of your account on gitlab.archlinux.org.
Manage all notifications: https://gitlab.archlinux.org/-/profile/notifications
| Help: https://gitlab.archlinux.org/help