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
2022-06-02Cleanup: remove "<pep8 compliant>" from headersCampbell Barton
It can be assumed that all scripts comply with basic pep8 formatting regarding white-space, indentation etc. Also remove note in best practices page & update `tests/python/pep8.py`. If we want to exclude some scripts from make format, this can be done by adding them to `ignore_files` in: source/tools/utils_maintenance/autopep8_format_paths.py Or using `# nopep8` for to ignore for individual lines. Ref T98554
2022-02-11File headers: add license to Python scriptsCampbell Barton
2020-01-27Fix T63805: remove outdated and unused Linux package spec filesBrecht Van Lommel
These are maintained by the various Linux distributions themselves instead.
2019-11-29Archive build script: stop when creating archive failsSybren A. Stüvel
The `subprocess.call()` function doesn't check the exit status code of the subprocess. Use `subprocess.check_call()` or `subprocess.run()` instead.
2019-11-29Archive build script: fix compatibility with older tar on CentOS 7Sybren A. Stüvel
On CentOS 7, `tar --use-compress-program='xz -9'` tries to run `xz -9` as executable, rather than running `xz` with `-9` as argument. Passing the `-9` option via the `XZ_OPT` environment variable, as suggested by @campbellbarton in D6138, works fine.
2019-11-28Buildbot: Migrate package archive format for Linux from tar.bz2 to tar.xzJens
xz compresses 25% better than bz2, reducing download times and server load. The numbers: blender-2.80-linux-glibc217-x86_64.tar.bz2 (release): 134 886 174 bytes with xz: 96 181 604 bytes (-28.7%) with xz -9: 93 871 548 bytes (-30.4%) blender-2.81-7c1fbe24ca33-linux-glibc217-x86_64.tar.bz2 (beta): 173 600 363 bytes with xz: 133 100 664 bytes (-23.3%) with xz -9: 129 534 124 bytes (-25.4%) xz also decompresses more than twice as fast as bz2, however compression needs four times as long (on my 7-year-old laptop 3-4 minutes instead of <1). Also xz has become more common than bz2, e.g. Debian/Ubuntu deb packages have been xz-compressed for years, so the dpkg package manager as well as systemd and grub all depend on liblzma being present, whereas bz2 is becoming more and more optional. Current Linux archives also include the UID/GID of whatever user account happens to be used for building by the blender.org infrastructure. If someone then installs these archives as root e.g. to /usr/local/... and doesn't pay full attention the files remain owned by a regular user, which is a serious security issue. This patch fixes that by setting the UID/GID to 0. Differential Revision: https://developer.blender.org/D6138
2019-07-31Spelling fixes in comments and descriptions, patch by luzpazBrecht Van Lommel
Differential Revision: https://developer.blender.org/D3744
2019-02-09Fix T61332: Python3 syntax errorsJacques Lucke
2016-07-25Call to python3 for stand-alone scriptsCampbell Barton
Needed since Debian & FreeBSD both move away from keeping a synlink to `python`.
2016-07-03Update pacman pkgbuildCampbell Barton
2015-03-23tweaks to packman buildCampbell Barton
remove --asroot arg to makepkg
2015-01-29cleanup: shebang linesCampbell Barton
D888 by @sambler
2014-11-18CMake: update pacman specCampbell Barton
2012-12-29Add datafiles/locale/languages to blender.spec.in for CPackDan Eicher
2012-10-04Have CPack rpm builder install the colorspace folder tooDan Eicher
2012-05-16CPack rpm cleanupDan Eicher
-- package name and .spec->Version match -- use find_lang macro for locales -- Requires & Provides (mostly) match the fedora .spec -- fix unpackaged file error for blender-thumbnailer.py TODO: figure out how persuade CPack to make multiple rpms to also package blenderplayer
2011-10-05modify pacman file not to compile templates & presets.Campbell Barton
2011-10-03fix [#28784] CRASHER on load with load_post handlerCampbell Barton
also fix pacman package build spec.
2011-10-02* Removing libsamplerate from build systemsJoerg Mueller
* Enabling OpenAL for scons win64-vc in default config; Nathan or Sergey: please update the build bot to build with OpenAL!
2011-08-24part of a patch from Dan Eicher for cmake packaging.Campbell Barton
2011-05-11patch from Dan Eicher for cpack rpmsCampbell Barton
2011-05-07patch from Dan Eicher, CPack/RPM working againCampbell Barton
2011-05-02remove dos/unix conversion scripts, enough editors and utilities can do this.Campbell Barton
update debian spec for new icon location.
2011-04-03patch [#26606] Debian spec: Bump to Python 3.2Campbell Barton
also update pacman spec.
2011-03-27pep8 cleanupCampbell Barton
2011-03-22Printing error message would fail on exception.Nathan Letwory
2011-03-22fix for grease pencil conversion to bezier curve reading past the end of the ↵Campbell Barton
array.
2011-03-21CMake package_archive target to create a .zip/.tar.bz2 package on mac/unix,Brecht Van Lommel
to be used by buildbot.
2011-03-06update 'make' GNUmakefile stub to run 'make install'Campbell Barton
update packman and debian for to disable portable install option.
2011-03-03patch [#26235] debian/watch: Update for change of versioningCampbell Barton
2011-02-24patch [#26178] build_debian.sh: Use BLENDER_VERSION_CHARCampbell Barton
from Shinsuke Irie (irie) also apply to pacman.
2011-02-22missing deps for pacmanCampbell Barton
2011-02-22Type in snapshort ;)Ton Roosendaal
2011-02-22part of a patch from Dan Eicher with some edits.Campbell Barton
- clean svn string: 35042:35051M -> 35051 - debian and pacman build with threads by default.
2011-02-21patch [#26146] debian/rules: Avoid unnecessary downloadingCampbell Barton
--- from the tracker It's annoying that build_debian.sh downloads the source tree to create tarball every time we build a deb package. fix_debian_rules_avoid_downloading.patch modifies debian/rules so that the tarball will be created from local repository if possible.
2011-02-17patch [#26063] Fix deb package versioning (Patch for #26062)Campbell Barton
from Shinsuke Irie (irie), also updated pacman
2011-02-14py rna api: turn class.is_register into a class property rather then a class ↵Campbell Barton
method. eg: if MySybclass.is_registered: ...
2011-02-14Revert incorrect fix for 26062 made in svn rev34828.Sergey Sharybin
2011-02-13Fix #26062: build_debian.sh gives unappropriate deb versionSergey Sharybin
Added subverison number to debian package version. Quick tests run ok, but haven't checked if deb version comparation also goes fine.
2011-02-11SVN maintenance.Guillermo S. Romero
2011-02-11patch [#26030] Debian spec fix (Patch for #26028)Campbell Barton
from Shinsuke Irie (irie)
2011-02-11update pacman spec for newer python and match naming convention to debian spec.Campbell Barton
also pre-compile python modiles.
2011-02-10script to build debian packages directly from svn, using blender version and ↵Campbell Barton
svn rev for package name.
2011-02-10debian package spec [#26007] Debian specCampbell Barton
by Dan Eicher (dna)
2010-09-12spec files for building arch linux packages (pacman)Campbell Barton