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.000096
First Submitted: 2013-12-05 10:11 (UTC)
Last Updated: 2024-12-04 18:59 (UTC)

Required by (62)

Sources (7)

Latest Comments

« First ‹ Previous 1 .. 16 17 18 19 20 21 22 23 24 25 26 .. 40 Next › Last »

planckstein commented on 2015-05-07 14:20 (UTC)

Hi there! This package built for me, but I got the following error when running it: blender: error while loading shared libraries: libicudata.so.55: cannot open shared object file: No such file or directory Does anyone know what I can do to fix this error? Thanks!

mrunion commented on 2015-01-27 00:53 (UTC)

Awesome! Thanks for all the work you do. I will try it again shortly.

stativ commented on 2015-01-22 19:54 (UTC)

Thanks for reminding me. I made a patch to makepkg that allows blender-git to build: https://lists.archlinux.org/pipermail/pacman-dev/2015-January/019837.html

mrunion commented on 2015-01-21 02:33 (UTC)

Still having the same problem as escentrix with the blender-addon.git folder as well. Has there been a solution yet?

stativ commented on 2015-01-01 12:06 (UTC)

There seems to be a bug in makepkg. I will investigate that more.

escentrix commented on 2014-12-31 16:00 (UTC)

I'm trying to get this compiled ('yaourt -S blender-git' as well as manual makepkg) but I keep running into: ------ ... ==> Validating source files with md5sums... blender ... Skipped blender-addons.git ... Skipped blender-addons-contrib.git ... Skipped blender-translations.git ... Skipped scons.git ... Skipped blender.desktop ... Passed ==> Extracting sources... -> Creating working copy of blender git repo... Cloning into 'blender'... done. -> Creating working copy of blender-addons git repo... Cloning into 'blender-addons'... done. /usr/bin/makepkg: line 1593: cd: blender-addons.git: No such file or directory ==> ERROR: Failed to change to directory blender-addons.git Aborting... ==> ERROR: Makepkg was unable to build blender-git. ------ Everything was downloaded okay and I can see that blender-addons.get is there. Not sure what to do next.

stativ commented on 2014-12-09 21:14 (UTC)

mrunion: I just tried it and it compiles fine. Thank you for all the work on fixing the issue.

mrunion commented on 2014-12-05 00:15 (UTC)

The Blender ticket has been marked resolved and it appears they have (or will shortly) fix the issue.

mrunion commented on 2014-12-04 02:22 (UTC)

The error I'm getting doesn't necessarily relate to these changes AFAIK. Here is the error: ---------- /tmp/tmp.HuPKkPCapN/blender-git/src/blender/source/blender/blenfont/intern/blf_glyph.c: In function ‘blf_glyph_add’: /tmp/tmp.HuPKkPCapN/blender-git/src/blender/source/blender/blenfont/intern/blf_glyph.c:265:13: error: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Werror=sign-conversion] g->width = bitmap.width; ^ /tmp/tmp.HuPKkPCapN/blender-git/src/blender/source/blender/blenfont/intern/blf_glyph.c:266:14: error: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Werror=sign-conversion] g->height = bitmap.rows; ^ cc1: some warnings being treated as errors source/blender/blenfont/CMakeFiles/bf_blenfont.dir/build.make:123: recipe for target 'source/blender/blenfont/CMakeFiles/bf_blenfont.dir/intern/blf_glyph.c.o' failed make[2]: *** [source/blender/blenfont/CMakeFiles/bf_blenfont.dir/intern/blf_glyph.c.o] Error 1 CMakeFiles/Makefile2:4889: recipe for target 'source/blender/blenfont/CMakeFiles/bf_blenfont.dir/all' failed make[1]: *** [source/blender/blenfont/CMakeFiles/bf_blenfont.dir/all] Error 2 make[1]: *** Waiting for unfinished jobs.... ---------- As you can see, the problem is that the setting -Werror=sign-conversion is catching an uncast type coersion. Lines 265 and 266 (where the error occurs) are: 265 g->width = bitmap.width; 266 g->height = bitmap.rows; The problem is that g->width/height are type "int", but bitmap.wdith/height are type "unsigned int". That is causing the issue. I tried an explicit cast (I changed the code to g->width = (int)bitmap.width, ... etc.). Blender compiled fine this way. I added "-Wno-error=sign-conversion" to the CXX_FLAGS in my makepkg.conf file and the build failed the same way. (I may have not done this correctly, though, so YMMV.) I have reported this as a Blender bug. (https://developer.blender.org/T42797)