@eigenwinter thanks for the report, just tried compiling and it indeed
failed, and is due a mistake I made in 0011_ffmpeg.patch
. It should
be fixed now.
Also added a patch for Python 3.12 from a Blender upstream commit
(252ae7029db3bc61a2740bb2cabeda8328b70f30
), manually applied, copy
pasta style.
Here it compiles again :-)
For those who are interested in helping keeping Blender 2.7 up-to-date with modern libs and compiler, I have a repo here. There is a branch for each patch, and no this is not a fork, just a repo to track and manage the patches.
Pinned Comments
bartus commented on 2022-03-14 10:30 (UTC)
Sorry lads, I'm at the Polish Ukraine border helping allocate refugees. Expect no update until this hell is over, wish us luck. Have no time nor access to my rig and AUR keys to test/post updates. If you have a patch, ping me on email - I'll add you as co-maintainer. Posted with my old script - https://github.com/bartoszek/aur-post
bartus commented on 2019-07-17 07:07 (UTC) (edited on 2019-08-25 12:20 (UTC) by bartus)
Please report
issues
andpatches
to blender-2.7/github.com<img alt="Build Status" src="https://travis-ci.org/bartoszek/AUR-blender-2.7.svg?branch=master" />
Use env vars to control build process:
DISABLE_CUDA=1
to skip cuda kernel build (cycles+compositor)DISABLE_NINJA=1
to switch build system to make (default:ninja)Usage cases:
export DISABLE_CUDA=1
before buildDISABLE_CUDA=1 ~your-aur-helper~
makepkg DISABLE_CUDA=1
yay -S blender-2.7 --mflags "DISABLE_CUDA=1"
Note for
yay
users:Since yay relies solely on
aur-rpc
to solve dependencies instead of callingmakepkg --sync
it can't follow dependencies logic defined inPKGBUILD
. That's why it's up to the user to provide dependencies to enable features.tl;dr; If you want to prebuild cycles kernels, you have to install CUDA beforehand. If you don't have CUDA installed,
PKGBUILD
will silently skip cycles kernel build.