Package Details: blender-4.1-bin 4.1.231115.d0c073898a93-1

Git Clone URL: https://aur.archlinux.org/blender-4.1-bin.git (read-only, click to copy)
Package Base: blender-4.1-bin
Description: A fully integrated 3D graphics creation suite
Upstream URL: https://www.blender.org
Licenses: GPL
Submitter: notfood
Maintainer: notfood
Last Packager: notfood
Votes: 1
Popularity: 0.115706
First Submitted: 2023-10-24 06:43 (UTC)
Last Updated: 2023-11-17 00:32 (UTC)

Dependencies (8)

Required by (0)

Sources (1)

Latest Comments

Tanghe commented on 2024-03-27 02:48 (UTC)

please bump the verion to the released one. THX

mxaddict commented on 2023-11-30 14:13 (UTC)

No, $@ alone works for most cases, but some edge cases like in this issue I have in godot it does not: https://github.com/godotengine/godot/issues/85446

notfood commented on 2023-11-30 05:23 (UTC) (edited on 2023-11-30 05:33 (UTC) by notfood)

I don't know how to make contributions to other's packages. Doesn't "$@" alone work?

mxaddict commented on 2023-11-29 17:06 (UTC)

I'm new to the AUR, and would like to start contributing, how would I go about creating a PR for your package? :)

mxaddict commented on 2023-11-29 17:05 (UTC)

I found a bug when passing args that contain quoted values.

Passing $@ direction will not contain the quotes for an arg like this:

blender-4.1 --python "/path/to file with spaces"

The under lying command will pass it as

--python /path/to file with spaces

A fix for this would be simply to have the .sh file be:

#!/bin/bash
for arg in "$@"; do
    args+=("$arg")
done

LD_LIBRARY_PATH=/usr/share/blender/4.1/lib exec /usr/share/blender/blender-4.1 "${args[@]}"

notfood commented on 2023-11-17 01:12 (UTC)

They changed the webpage (again) breaking the regex. Should be fixed now.

wioo commented on 2023-11-16 08:27 (UTC) (edited on 2023-11-16 12:26 (UTC) by wioo)

pkgver function fails. Looks like regex for _date variable returns nothing and for this reason test fails. I added "|| true" after test for a temp fix.