Package Details: blender-git 4.4.r144205.gfba10a82121-1

Git Clone URL: https://aur.archlinux.org/blender-git.git (read-only, click to copy)
Package Base: blender-git
Description: A fully integrated 3D graphics creation suite (development)
Upstream URL: https://blender.org/
Licenses: GPL
Conflicts: blender, blender-4.1-bin
Provides: blender
Submitter: stativ
Maintainer: fbrennan (bartus)
Last Packager: bartus
Votes: 76
Popularity: 0.000098
First Submitted: 2013-12-05 10:11 (UTC)
Last Updated: 2024-12-04 18:59 (UTC)

Dependencies (48)

Required by (62)

Sources (7)

Latest Comments

« First ‹ Previous 1 .. 28 29 30 31 32 33 34 35 36 37 38 .. 40 Next › Last »

mdias commented on 2011-03-02 15:20 (UTC)

PKGBUILD should be updated: http://lists.blender.org/pipermail/bf-committers/2011-March/030712.html

krigun commented on 2011-03-01 09:11 (UTC)

You can patch the CMakeLists.txt file with this dirty little hack (add it into the PKGBUILD before cmake is executed): # Temporary solution to fix the python version diff problem cmakelists_file="$srcdir"/blender/CMakeLists.txt sed -i '249d' "$cmakelists_file" ; sed -i '249 i set(PYTHON_VERSION 3.2 CACHE STRING "")' "$cmakelists_file" sed -i '251d' "$cmakelists_file" ; sed -i '251 i set(PYTHON_INCLUDE_DIRS "${PYTHON}/include/python${PYTHON_VERSION}mu" CACHE STRING "")' "$cmakelists_file" sed -i '254d' "$cmakelists_file" ; sed -i '254 i set(PYTHON_LIBRARY python${PYTHON_VERSION}mu CACHE STRING "")' "$cmakelists_file"

krigun commented on 2011-02-27 15:13 (UTC)

Yeah, the python upgrade to 3.2 broke the blender build. Needed to modify the blender cmake build file slightly to make this work. Don't know when blender will be upgrading to python 3.2, but for now at least it is enough to change the version number. [gunnar@xps blender]$ pwd /home/gunnar/PKGBUILDS/blender-svn/src/blender [gunnar@xps blender]$ svn di CMakeLists.txt Index: CMakeLists.txt =================================================================== --- CMakeLists.txt (revision 35222) +++ CMakeLists.txt (working copy) @@ -246,12 +246,12 @@ # No way to set py31. remove for now. # find_package(PythonLibs) set(PYTHON /usr) - set(PYTHON_VERSION 3.1 CACHE STRING "") + set(PYTHON_VERSION 3.2 CACHE STRING "") mark_as_advanced(PYTHON_VERSION) - set(PYTHON_INCLUDE_DIRS "${PYTHON}/include/python${PYTHON_VERSION}" CACHE STRING "") + set(PYTHON_INCLUDE_DIRS "${PYTHON}/include/python${PYTHON_VERSION}mu" CACHE STRING "") mark_as_advanced(PYTHON_INCLUDE_DIRS) # set(PYTHON_BINARY python) # not used yet - set(PYTHON_LIBRARY python${PYTHON_VERSION} CACHE STRING "") + set(PYTHON_LIBRARY python${PYTHON_VERSION}mu CACHE STRING "")

<deleted-account> commented on 2011-02-26 16:04 (UTC)

Hello, After last Python upgrade i have this : [ 24%] Building C object source/blender/blenkernel/CMakeFiles/bf_blenkernel.dir/intern/nla.c.o /tmp/yaourt-tmp/aur-blender-svn/src/blender/source/blender/blenkernel/intern/nla.c:1579:13: attention : ‘BKE_nla_bake’ defined but not used [ 25%] Building C object source/blender/blenkernel/CMakeFiles/bf_blenkernel.dir/intern/node.c.o /tmp/yaourt-tmp/aur-blender-svn/src/blender/source/blender/blenkernel/intern/node.c:31:20: erreur fatale: Python.h : Aucun fichier ou dossier de ce type compilation terminée. make[2]: *** [source/blender/blenkernel/CMakeFiles/bf_blenkernel.dir/intern/node.c.o] Erreur 1 make[1]: *** [source/blender/blenkernel/CMakeFiles/bf_blenkernel.dir/all] Erreur 2 make: *** [all] Erreur 2 Abandon... ==> ERROR: Makepkg n'a pas pu construire blender-svn.

<deleted-account> commented on 2011-01-22 05:22 (UTC)

Builds fine now. But I just noticed that it doesn't have Freestyle integration! The SVN should be pointing to this https://svn.blender.org/svnroot/bf-blender/branches/soc-2008-mxcurioni/

mosra commented on 2011-01-21 20:45 (UTC)

Sorry, I almost forgot about this package... Updated to new buildsystem (CMake) like in blender-svn, updated URL to freestyle integration blog. Should build flawlessly now. And also a nice revision number: 34444 :-)

<deleted-account> commented on 2011-01-21 05:48 (UTC)

Is this an SVN build problem (34341) or is it because of my configurations? Python is 3.1.3-1 Traceback (most recent call last): File "scons/scons.py", line 66, in <module> if os.environ.has_key("SCONS_LIB_DIR"): AttributeError: '_Environ' object has no attribute 'has_key'

mdias commented on 2011-01-18 20:41 (UTC)

Just a heads up for whoever has the makesrna step segfaulting: While compiling another branch (the particles-2010 one) I noticed that if I have the -O2 (or -O1) option enabled in /etc/makepkg.conf CFLAGS the crash happens. Removing this will make the crash go away.

stativ commented on 2011-01-17 14:19 (UTC)

eribol: thanks for noticing that. They changed the option which enables ffmpeg during the build. It should be enabled again.

<deleted-account> commented on 2011-01-16 00:04 (UTC)

Thank you so much for this PKGBUILD. Can you add sound and video support? I use svn or beta PKGBUILD. But two PKGBUILD does not work with sound or video. Thanks.