Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-02-17install_deps: final CMake instructions: always update all libs controlled by ↵Bastien Montagne
this script. Otherwise, switch from local built to system installed libs (once a valid package becomes available) would be missed...
2016-02-17install_deps: OSD building: disable CUDA/OpenCL backends.Bastien Montagne
Those are can of worms to support properly (versions mismatch, etc.), and not used in Blender currently anyway.
2016-02-11install_deps: fix boost installation on Fedora/Suze & co.Bastien Montagne
Was only trying to install $BOOST_VERSION or higher boost - being fairly recent this always failed. We can live with older versions too, so now using *BOOST_VERSION_MIN as with other distros.
2016-02-05Install_deps: update magic build numbers of OIIO and OSL.Bastien Montagne
Please remember to change those each time you update building code and there is no version change. Otherwise poeple re-running the script won't get the updated builds.
2016-02-05Install Deps: Use SSE2 optimizations for OIIO and OSL.Thomas Dinges
2016-02-04Install_deps: Disable building tests for OSLThomas Beck
Since we're now on 1.7 we can skip building the OSL testsuite. It was giving various compilation errors on different machines and we don't need them anyway...so just disabling them in the script.
2016-02-04Install_deps: tweak OSL build options.Bastien Montagne
2016-02-04Install_deps: updated OSL to 1.7.1.Bastien Montagne
2016-01-29install_deps: disable ffmpeg in oiio, we do not need it and this lib varies ↵Bastien Montagne
too much accross distros...
2016-01-29Install_deps.sh: attempt to add OpenVDB, not working for now.Bastien Montagne
OpenVDB is like a 30-years old lib when it comes to building it - not even a configure.sh script! This makes it impossible to auto-build (install_deps is not a new CMake!). So for now, just storing some template code for it, and expected version/deps data in --show-deps option.
2016-01-14install_deps: Cleanup, delete trailing whitespaceSergey Sharybin
Based on patch D1644 by Jeffrey Hoover
2016-01-11Bah, forgot to increase boost magic number...Bastien Montagne
2016-01-11install_deps: add wave to boost built modules, seems needed by OSL1.6.9...Bastien Montagne
2016-01-11install_deps: fix typo preventing installation of libsndfile on Fedora-like ↵Bastien Montagne
distro.
2016-01-08install_deps: bump OIIO and OSL to 1.6.9.Bastien Montagne
And we can even use vanilia version of OSL now! :D
2016-01-08install_deps: raise boost official version to 1.60.Bastien Montagne
2016-01-08install_deps: bump ffmpeg to 2.8.4.Bastien Montagne
2016-01-08Add new '--no-confirm' option to avoid user interaction (needs to run ths ↵Bastien Montagne
script as sudo then)
2016-01-04Fix for previous commit...Bastien Montagne
Arg, forgot half of it, sorry for the noise. :|
2016-01-04Fix missing 'WITH_OPENCOLORIO/OPENIMAGEIO' defines in install_deps final ↵Bastien Montagne
message. Reported by venomgfx on IRC, thanks.
2016-01-04Remove SCons building systemSergey Sharybin
While SCons building system was serving us really good for ages it's no longer having much attention by the developers and started to become quite a difficult task to maintain. What's even worse -- there started to be quite serious divergence between SCons and CMake which was only accumulating over the releases now. The fact that none of the active developers are really using SCons and that our main studio is also using CMake spotting bugs in the SCons builds became quite a difficult task and we aren't always spotting them in time. Meanwhile CMake became really mature building system which is available on every platform we support and arguably it's also easier and more robust to use. This commit includes: - Removal of actual SCons building system - Removal of SCons git submodule - Removal of documentation which is stored in the sources and covers SCons - Tweaks to the buildbot master to stop using SCons submodule (this change requires deploying to the server) - Tweaks to the install dependencies script to skip installing or mentioning SCons building system - Tweaks to various helper scripts to avoid mention of SCons folders/files as well Reviewers: mont29, dingto, dfelinto, lukastoenne, lukasstockner97, brecht, Severin, merwin, aligorith, psy-fi, campbellbarton, juicyfruit Reviewed By: campbellbarton, juicyfruit Differential Revision: https://developer.blender.org/D1680
2015-12-09install_deps.sh: fix (hopefully) broken OSL building on modern RPM-like distro.Bastien Montagne
Those stupid ones only have one version of llvm (obviously not 3.4 one ;) ), so we have to build again LLVM3.4 in those cases. Thing is, * I did not update LLVM magic number when fixed a stupid typo breaking OSL building (the terminfo thing), so many people were still using previously-built LLVM. * Even worse, options passed to OSL to specify own LLVM from /opt/lib were wrong (not sure when this got out of sync...). Thanks to mib2berlin and slikdigit for the report & testings!
2015-12-09install_deps.sh: fix utmost stupid typo breaking 'skip-osl' option on ↵Bastien Montagne
RPM-based distro...
2015-12-09install_deps.sh: print correct set of sources tested when a wget fails...Bastien Montagne
2015-12-09install_deps.sh: raise default py version to 3.5.1 (due to some obscure bugs ↵Bastien Montagne
with OPM and 3.5.0).
2015-12-09install_deps.sh: add '-U' update commands to onle-liner CMake-based build ↵Bastien Montagne
command line. Avoid user to have to edit themselves their CMake config. Thanks a bunch @campbellbarton for the tip! :D
2015-12-06install_deps.sh: Fix typos in scons instructions.Bastien Montagne
Luckily we'll soon get rid of that insane dual build system maintenance... Anyway, thanks to Leo Koppel (lack) for the report and patch.
2015-11-30install_deps.sh: add libsndfile (seems to be mandatory for correct flac export?)Bastien Montagne
Related to T46886.
2015-11-28install_deps.sh: always give py version arg to cmake/scons (same as we ↵Bastien Montagne
already do with llvm). This should avoid 'casual builders' to have issues when we switch py versions.
2015-11-25install_deps.sh: Updated official boost version (grrr).Bastien Montagne
2015-11-25install_deps.sh: Updated official Python (to 3.5.0) and NumPy (to 1.10.1).Bastien Montagne
2015-11-24install_deps.sh: update official numpy version.Bastien Montagne
2015-11-23install_deps.sh: Fix dependencies between (built) libs.Bastien Montagne
Who in hell did make OSD dependant on llvm???
2015-11-23install_deps.sh: Cleanup: Use correct boolean checks.Bastien Montagne
Yeah... that is correct bash boolean check syntax. Pretty sure even BASIC or Perl do better. See http://stackoverflow.com/questions/2953646/how-to-declare-and-use-boolean-variables-in-shell-script
2015-11-23install_deps.sh: add option to force building libs instead of using ↵Bastien Montagne
packages, and limited fallback for unsuported distro. This commit adds '--build-foo' options to force the script to build relevant libraries instead of trying to use packages from the distribution. In addition, it also now offers (with those '--build-foo' options) the possibility to build libraries on distributions that are not fully supported. This is limited, but should still help people once they have installed themselves the basics of dependencies - boost, llvm, osl/osd etc. are not libraries that are really easy to build. DISCLAIMER: I did not take the 20 (or more) hours needed to test all combinations over all distributions, and given the size of the changes, bad sneaky typos are quite probable, so please report if you get some errors!
2015-11-23install_deps.sh: refactor message about needed dependencies, and add option ↵Bastien Montagne
to show it and exit (--show-deps). More info about 'official' source and versions of main libraries handled by the script have also been added to that info option.
2015-11-17Fix for previous own commit (logical error - I hate bash).Bastien Montagne
2015-11-17Install_deps.sh: More attempt to fix building OSL on newer distro.Bastien Montagne
Now it looks like our version of OSL is not compatible with OIIO 1.5... sigh...
2015-11-17Fix (unreported) install_deps.sh --force-openexr option not working.Bastien Montagne
2015-11-17install_deps.sh: point to newer own OSL rev (should fix issues on recent ↵Bastien Montagne
distro featuring recent ilmbase libs).
2015-10-03InstallDeps: Fix broken OSL (would not generate valid default names for its ↵Bastien Montagne
.oso pre-compiled files). Also, externalize temp/hacky patches in own dir, much much cleaner than integrating them in bash script!
2015-09-22Install_deps: Hopefully fix broken checks for numpy package in fedora-like ↵Bastien Montagne
distro.
2015-09-22Install_deps: Add command line options to saved BUILD_NOTES.txt.Bastien Montagne
Requested by Daniel Salazar (zanqdo) over IRC.
2015-08-11install_deps: fix broken force/skip-osd options.Bastien Montagne
Bash scripts are such a PITA, having to redefine the options in three different places... :(
2015-08-10Install_deps: add basic listing of needed dependencies to error message for ↵Bastien Montagne
unsupported distro.
2015-08-09Install_deps: add (non-tested) OSD-building code.Bastien Montagne
Not tested for fedora-like and arch distro, would expect it to work though. Please report otherwise. Also, always inatll git now (and a few other XOrg -dev packages).
2015-08-09install_deps: Add libxcursor packages, seems to be needed now?Bastien Montagne
2015-08-08Support building OpenSubdiv libraries under Debian (Ubuntu) with our ↵Thomas Beck
build_deps.sh script. Use --skip-osd to skip building opensubdiv libs, use --force-osd to force a rebuild of the libs. I added all needed user information (where to find the include dir, which -D options to set) to the print_info method that is called at the end too, so it should be pretty intuitive to use. Reviewers: sergey, mont29 Reviewed By: mont29 Subscribers: mont29 Differential Revision: https://developer.blender.org/D1452
2015-05-28Install_deps: fix different 'libfreetype2' devel package name on fedora and ↵Bastien Montagne
suse... *sigh*
2015-05-14install_deps.sh: correct typoCampbell Barton