[arch-commits] Commit in blender/repos (3 files)

2020-05-12 Thread Antonio Rojas via arch-commits
Date: Tuesday, May 12, 2020 @ 10:12:14
  Author: arojas
Revision: 626701

archrelease: copy trunk to community-staging-x86_64

Added:
  blender/repos/community-staging-x86_64/
  blender/repos/community-staging-x86_64/PKGBUILD
(from rev 626700, blender/trunk/PKGBUILD)
  blender/repos/community-staging-x86_64/embree.patch
(from rev 626700, blender/trunk/embree.patch)

--+
 PKGBUILD |   97 +
 embree.patch |   43 +
 2 files changed, 140 insertions(+)

Copied: blender/repos/community-staging-x86_64/PKGBUILD (from rev 626700, 
blender/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-05-12 10:12:14 UTC (rev 626701)
@@ -0,0 +1,97 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: John Sowiak 
+# Contributor: tobias 
+
+# Sometimes blender.org takes some time to release patch releases and because 
Arch users
+# are impatient, we sometimes need to build from git directly.
+# Update because I get so many queries on this:
+# Due to our other rolling deps, it's sometimes not possible to build Blender 
stable releases.
+# More often than not, a new openshadinglanguage breaks it and I could either 
backport fixes
+# or simply roll with a new version. I usually choose the latter when the 
former seems
+# unreasonable.
+
+# For legal reasons, we can't separately package the Optix headers so we'll
+# just build the package against them. I checked with NVIDIA and this way is
+# fine with them.
+
+_gittag=v2.82a
+# _gitcommit=054dbb833e15275e0e991e2c15e754a3e7583716
+
+pkgname=blender
+pkgver=2.82.a
+[[ -n $_gitcommit ]] && pkgver=${pkgver}.git1.${_gitcommit:0:8}
+pkgrel=5
+epoch=17
+pkgdesc="A fully integrated 3D graphics creation suite"
+arch=('x86_64')
+license=('GPL')
+url="http://www.blender.org;
+depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils' 
'python-requests'
+ 'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew' 
'openjpeg2' 'python-numpy'
+ 'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada' 
'alembic'
+ 'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage' 
'openimagedenoise'
+ 'jemalloc' 'libspnav' 'ptex' 'opensubdiv' 'openvdb' 'log4cplus' 
'sdl2' 'embree')
+makedepends=('cmake' 'boost' 'mesa' 'git' 'llvm' 'cuda' 'ninja')
+optdepends=('cuda: cycles renderer cuda support')
+options=(!strip)
+source=("git://git.blender.org/blender-addons.git"
+"git://git.blender.org/blender-addons-contrib.git"
+"git://git.blender.org/blender-translations.git"
+"git://git.blender.org/blender-dev-tools.git"
+embree.patch
+
https://developer.download.nvidia.com/redist/optix/v7.0/OptiX-7.0.0-include.zip)
+if [[ -n $_gittag ]]; then
+
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#tag=${_gittag}")
+elif [[ -n $_gitcommit ]]; then
+
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#commit=${_gitcommit}")
+fi
+sha512sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+
'6de779ad8649a034ee65c45a36d7838ac0b8b32c3336b4d476186265c060f56276e3e0a2860ec4bff42bef7d5582ee82238013845f6a697672767a05a455aaca'
+
'b2cff73def3757d4259f4b4d318a8ccfe166bf7c215cbb2124f1c81bd6e742f96207285b24eb4d99b527b7b97dc6d5e8fdf2f16d78d5d1e2684c26d681328491'
+'SKIP')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  git submodule init
+  git config submodule."release/scripts/addons".url "${srcdir}/blender-addons"
+  git config submodule."release/scripts/addons_contrib".url 
"${srcdir}/blender-addons-contrib"
+  git config submodule."release/datafiles/locale".url 
"${srcdir}/blender-translations"
+  git config submodule."source/tools".url "${srcdir}/blender-dev-tools"
+  git submodule update
+
+  patch -Np1 -i "$srcdir"/embree.patch
+
+  mkdir build
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"/build
+
+  cmake \
+-GNinja \
+-C../build_files/cmake/config/blender_release.cmake .. \
+-DOPTIX_ROOT_DIR="$srcdir"/include \
+-DWITH_CYCLES_EMBREE=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DWITH_INSTALL_PORTABLE=OFF \
+-DWITH_PYTHON_INSTALL=OFF \
+-DPYTHON_VERSION=3.8 \
+-DPYTHON_LIBPATH=/usr/lib \
+-DPYTHON_LIBRARY=python3.8 \
+-DPYTHON_INCLUDE_DIRS=/usr/include/python3.8
+  ninja
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver/build"
+
+  DESTDIR="${pkgdir}" ninja install
+  install -Dm755 ../release/bin/blender-softwaregl 
"${pkgdir}/usr/bin/blender-softwaregl"
+  python -m compileall "${pkgdir}/usr/share/blender"
+  python -O -m compileall "${pkgdir}/usr/share/blender"
+}

Copied: blender/repos/community-staging-x86_64/embree.patch (from rev 626700, 
blender/trunk/embree.patch)

[arch-commits] Commit in blender/repos (3 files)

2020-05-10 Thread Antonio Rojas via arch-commits
Date: Sunday, May 10, 2020 @ 08:13:20
  Author: arojas
Revision: 626107

archrelease: copy trunk to community-staging-x86_64

Added:
  blender/repos/community-staging-x86_64/
  blender/repos/community-staging-x86_64/PKGBUILD
(from rev 626106, blender/trunk/PKGBUILD)
  blender/repos/community-staging-x86_64/embree.patch
(from rev 626106, blender/trunk/embree.patch)

--+
 PKGBUILD |   97 +
 embree.patch |   43 +
 2 files changed, 140 insertions(+)

Copied: blender/repos/community-staging-x86_64/PKGBUILD (from rev 626106, 
blender/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-05-10 08:13:20 UTC (rev 626107)
@@ -0,0 +1,97 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: John Sowiak 
+# Contributor: tobias 
+
+# Sometimes blender.org takes some time to release patch releases and because 
Arch users
+# are impatient, we sometimes need to build from git directly.
+# Update because I get so many queries on this:
+# Due to our other rolling deps, it's sometimes not possible to build Blender 
stable releases.
+# More often than not, a new openshadinglanguage breaks it and I could either 
backport fixes
+# or simply roll with a new version. I usually choose the latter when the 
former seems
+# unreasonable.
+
+# For legal reasons, we can't separately package the Optix headers so we'll
+# just build the package against them. I checked with NVIDIA and this way is
+# fine with them.
+
+_gittag=v2.82a
+# _gitcommit=054dbb833e15275e0e991e2c15e754a3e7583716
+
+pkgname=blender
+pkgver=2.82.a
+[[ -n $_gitcommit ]] && pkgver=${pkgver}.git1.${_gitcommit:0:8}
+pkgrel=4
+epoch=17
+pkgdesc="A fully integrated 3D graphics creation suite"
+arch=('x86_64')
+license=('GPL')
+url="http://www.blender.org;
+depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils' 
'python-requests'
+ 'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew' 
'openjpeg2' 'python-numpy'
+ 'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada' 
'alembic'
+ 'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage' 
'openimagedenoise'
+ 'jemalloc' 'libspnav' 'ptex' 'opensubdiv' 'openvdb' 'log4cplus' 
'sdl2' 'embree')
+makedepends=('cmake' 'boost' 'mesa' 'git' 'llvm' 'cuda' 'ninja')
+optdepends=('cuda: cycles renderer cuda support')
+options=(!strip)
+source=("git://git.blender.org/blender-addons.git"
+"git://git.blender.org/blender-addons-contrib.git"
+"git://git.blender.org/blender-translations.git"
+"git://git.blender.org/blender-dev-tools.git"
+embree.patch
+
https://developer.download.nvidia.com/redist/optix/v7.0/OptiX-7.0.0-include.zip)
+if [[ -n $_gittag ]]; then
+
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#tag=${_gittag}")
+elif [[ -n $_gitcommit ]]; then
+
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#commit=${_gitcommit}")
+fi
+sha512sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+
'6de779ad8649a034ee65c45a36d7838ac0b8b32c3336b4d476186265c060f56276e3e0a2860ec4bff42bef7d5582ee82238013845f6a697672767a05a455aaca'
+
'b2cff73def3757d4259f4b4d318a8ccfe166bf7c215cbb2124f1c81bd6e742f96207285b24eb4d99b527b7b97dc6d5e8fdf2f16d78d5d1e2684c26d681328491'
+'SKIP')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  git submodule init
+  git config submodule."release/scripts/addons".url "${srcdir}/blender-addons"
+  git config submodule."release/scripts/addons_contrib".url 
"${srcdir}/blender-addons-contrib"
+  git config submodule."release/datafiles/locale".url 
"${srcdir}/blender-translations"
+  git config submodule."source/tools".url "${srcdir}/blender-dev-tools"
+  git submodule update
+
+  patch -Np1 -i "$srcdir"/embree.patch
+
+  mkdir build
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"/build
+
+  cmake \
+-GNinja \
+-C../build_files/cmake/config/blender_release.cmake .. \
+-DOPTIX_ROOT_DIR="$srcdir"/include \
+-DWITH_CYCLES_EMBREE=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DWITH_INSTALL_PORTABLE=OFF \
+-DWITH_PYTHON_INSTALL=OFF \
+-DPYTHON_VERSION=3.8 \
+-DPYTHON_LIBPATH=/usr/lib \
+-DPYTHON_LIBRARY=python3.8 \
+-DPYTHON_INCLUDE_DIRS=/usr/include/python3.8
+  ninja
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver/build"
+
+  DESTDIR="${pkgdir}" ninja install
+  install -Dm755 ../release/bin/blender-softwaregl 
"${pkgdir}/usr/bin/blender-softwaregl"
+  python -m compileall "${pkgdir}/usr/share/blender"
+  python -O -m compileall "${pkgdir}/usr/share/blender"
+}

Copied: blender/repos/community-staging-x86_64/embree.patch (from rev 626106, 
blender/trunk/embree.patch)

[arch-commits] Commit in blender/repos (3 files)

2020-04-23 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, April 23, 2020 @ 06:43:21
  Author: svenstaro
Revision: 617770

archrelease: copy trunk to community-testing-x86_64

Added:
  blender/repos/community-testing-x86_64/
  blender/repos/community-testing-x86_64/PKGBUILD
(from rev 617769, blender/trunk/PKGBUILD)
  blender/repos/community-testing-x86_64/embree.patch
(from rev 617769, blender/trunk/embree.patch)

--+
 PKGBUILD |   97 +
 embree.patch |   43 +
 2 files changed, 140 insertions(+)

Copied: blender/repos/community-testing-x86_64/PKGBUILD (from rev 617769, 
blender/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-04-23 06:43:21 UTC (rev 617770)
@@ -0,0 +1,97 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: John Sowiak 
+# Contributor: tobias 
+
+# Sometimes blender.org takes some time to release patch releases and because 
Arch users
+# are impatient, we sometimes need to build from git directly.
+# Update because I get so many queries on this:
+# Due to our other rolling deps, it's sometimes not possible to build Blender 
stable releases.
+# More often than not, a new openshadinglanguage breaks it and I could either 
backport fixes
+# or simply roll with a new version. I usually choose the latter when the 
former seems
+# unreasonable.
+
+# For legal reasons, we can't separately package the Optix headers so we'll
+# just build the package against them. I checked with NVIDIA and this way is
+# fine with them.
+
+_gittag=v2.82a
+# _gitcommit=054dbb833e15275e0e991e2c15e754a3e7583716
+
+pkgname=blender
+pkgver=2.82.a
+[[ -n $_gitcommit ]] && pkgver=${pkgver}.git1.${_gitcommit:0:8}
+pkgrel=2
+epoch=17
+pkgdesc="A fully integrated 3D graphics creation suite"
+arch=('x86_64')
+license=('GPL')
+url="http://www.blender.org;
+depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils' 
'python-requests'
+ 'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew' 
'openjpeg2' 'python-numpy'
+ 'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada' 
'alembic'
+ 'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage' 
'openimagedenoise'
+ 'jemalloc' 'libspnav' 'ptex' 'opensubdiv' 'openvdb' 'log4cplus' 
'sdl2' 'embree')
+makedepends=('cmake' 'boost' 'mesa' 'git' 'llvm' 'cuda' 'ninja')
+optdepends=('cuda: cycles renderer cuda support')
+options=(!strip)
+source=("git://git.blender.org/blender-addons.git"
+"git://git.blender.org/blender-addons-contrib.git"
+"git://git.blender.org/blender-translations.git"
+"git://git.blender.org/blender-dev-tools.git"
+embree.patch
+
https://developer.download.nvidia.com/redist/optix/v7.0/OptiX-7.0.0-include.zip)
+if [[ -n $_gittag ]]; then
+
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#tag=${_gittag}")
+elif [[ -n $_gitcommit ]]; then
+
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#commit=${_gitcommit}")
+fi
+sha512sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+
'6de779ad8649a034ee65c45a36d7838ac0b8b32c3336b4d476186265c060f56276e3e0a2860ec4bff42bef7d5582ee82238013845f6a697672767a05a455aaca'
+
'b2cff73def3757d4259f4b4d318a8ccfe166bf7c215cbb2124f1c81bd6e742f96207285b24eb4d99b527b7b97dc6d5e8fdf2f16d78d5d1e2684c26d681328491'
+'SKIP')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  git submodule init
+  git config submodule."release/scripts/addons".url "${srcdir}/blender-addons"
+  git config submodule."release/scripts/addons_contrib".url 
"${srcdir}/blender-addons-contrib"
+  git config submodule."release/datafiles/locale".url 
"${srcdir}/blender-translations"
+  git config submodule."source/tools".url "${srcdir}/blender-dev-tools"
+  git submodule update
+
+  patch -Np1 -i "$srcdir"/embree.patch
+
+  mkdir build
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"/build
+
+  cmake \
+-GNinja \
+-C../build_files/cmake/config/blender_release.cmake .. \
+-DOPTIX_ROOT_DIR="$srcdir"/include \
+-DWITH_CYCLES_EMBREE=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DWITH_INSTALL_PORTABLE=OFF \
+-DWITH_PYTHON_INSTALL=OFF \
+-DPYTHON_VERSION=3.8 \
+-DPYTHON_LIBPATH=/usr/lib \
+-DPYTHON_LIBRARY=python3.8 \
+-DPYTHON_INCLUDE_DIRS=/usr/include/python3.8
+  ninja
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver/build"
+
+  DESTDIR="${pkgdir}" ninja install
+  install -Dm755 ../release/bin/blender-softwaregl 
"${pkgdir}/usr/bin/blender-softwaregl"
+  python -m compileall "${pkgdir}/usr/share/blender"
+  python -O -m compileall "${pkgdir}/usr/share/blender"
+}

Copied: blender/repos/community-testing-x86_64/embree.patch (from rev 617769, 
blender/trunk/embree.patch)

[arch-commits] Commit in blender/repos (3 files)

2019-12-15 Thread Lukas Fleischer via arch-commits
Date: Sunday, December 15, 2019 @ 18:18:25
  Author: lfleischer
Revision: 537772

db-move: moved blender from [community-testing] to [community] (x86_64)

Added:
  blender/repos/community-x86_64/PKGBUILD
(from rev 537771, blender/repos/community-testing-x86_64/PKGBUILD)
Deleted:
  blender/repos/community-testing-x86_64/
  blender/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   85 
 community-x86_64/PKGBUILD |   85 
 2 files changed, 85 insertions(+), 85 deletions(-)

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2019-12-15 18:18:10 UTC (rev 537771)
+++ community-x86_64/PKGBUILD   2019-12-15 18:18:25 UTC (rev 537772)
@@ -1,85 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: John Sowiak 
-# Contributor: tobias 
-
-# Sometimes blender.org takes some time to release patch releases and because 
Arch users
-# are impatient, we sometimes need to build from git directly.
-# Update because I get so many queries on this:
-# Due to our other rolling deps, it's sometimes not possible to build Blender 
stable releases.
-# More often than not, a new openshadinglanguage breaks it and I could either 
backport fixes
-# or simply roll with a new version. I usually choose the latter when the 
former seems
-# unreasonable.
-
-_gittag=v2.81a
-# _gitcommit=054dbb833e15275e0e991e2c15e754a3e7583716
-
-pkgname=blender
-pkgver=2.81.a
-[[ -n $_gitcommit ]] && pkgver=${pkgver}.git1.${_gitcommit:0:8}
-pkgrel=2
-epoch=17
-pkgdesc="A fully integrated 3D graphics creation suite"
-arch=('x86_64')
-license=('GPL')
-url="http://www.blender.org;
-depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils' 
'python-requests'
- 'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew' 'openjpeg' 
'python-numpy'
- 'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada' 
'alembic'
- 'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage' 
'openimagedenoise'
- 'jemalloc' 'libspnav' 'ptex' 'opensubdiv' 'openvdb' 'log4cplus' 
'sdl2')
-makedepends=('cmake' 'boost' 'mesa' 'git' 'llvm' 'cuda' 'ninja')
-optdepends=('cuda: cycles renderer cuda support')
-options=(!strip)
-source=("git://git.blender.org/blender-addons.git"
-"git://git.blender.org/blender-addons-contrib.git"
-"git://git.blender.org/blender-translations.git"
-"git://git.blender.org/blender-dev-tools.git")
-if [[ -n $_gittag ]]; then
-
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#tag=${_gittag}")
-elif [[ -n $_gitcommit ]]; then
-
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#commit=${_gitcommit}")
-fi
-sha512sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  git submodule init
-  git config submodule."release/scripts/addons".url "${srcdir}/blender-addons"
-  git config submodule."release/scripts/addons_contrib".url 
"${srcdir}/blender-addons-contrib"
-  git config submodule."release/datafiles/locale".url 
"${srcdir}/blender-translations"
-  git config submodule."source/tools".url "${srcdir}/blender-dev-tools"
-  git submodule update
-
-  mkdir build
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"/build
-
-  cmake \
--GNinja \
--C../build_files/cmake/config/blender_release.cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DWITH_INSTALL_PORTABLE=OFF \
--DWITH_PYTHON_INSTALL=OFF \
--DPYTHON_VERSION=3.8 \
--DPYTHON_LIBPATH=/usr/lib \
--DPYTHON_LIBRARY=python3.8 \
--DPYTHON_INCLUDE_DIRS=/usr/include/python3.8
-  ninja
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver/build"
-
-  DESTDIR="${pkgdir}" ninja install
-  install -Dm755 ../release/bin/blender-softwaregl 
"${pkgdir}/usr/bin/blender-softwaregl"
-  python -m compileall "${pkgdir}/usr/share/blender"
-  python -O -m compileall "${pkgdir}/usr/share/blender"
-}

Copied: blender/repos/community-x86_64/PKGBUILD (from rev 537771, 
blender/repos/community-testing-x86_64/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-12-15 18:18:25 UTC (rev 537772)
@@ -0,0 +1,85 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: John Sowiak 
+# Contributor: tobias 
+
+# Sometimes blender.org takes some time to release patch releases and because 
Arch users
+# are impatient, we sometimes need to build from git directly.
+# Update because I get so many queries on this:
+# Due to our other rolling deps, it's sometimes not possible to build Blender 
stable releases.
+# More often than not, a new openshadinglanguage breaks it and I could either 
backport fixes
+# or simply roll with a new version. I usually 

[arch-commits] Commit in blender/repos (3 files)

2019-12-11 Thread Lukas Fleischer via arch-commits
Date: Thursday, December 12, 2019 @ 03:07:33
  Author: lfleischer
Revision: 537130

db-move: moved blender from [community-staging] to [community-testing] (x86_64)

Added:
  blender/repos/community-testing-x86_64/
  blender/repos/community-testing-x86_64/PKGBUILD
(from rev 537129, blender/repos/community-staging-x86_64/PKGBUILD)
Deleted:
  blender/repos/community-staging-x86_64/

--+
 PKGBUILD |   85 +
 1 file changed, 85 insertions(+)

Copied: blender/repos/community-testing-x86_64/PKGBUILD (from rev 537129, 
blender/repos/community-staging-x86_64/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-12-12 03:07:33 UTC (rev 537130)
@@ -0,0 +1,85 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: John Sowiak 
+# Contributor: tobias 
+
+# Sometimes blender.org takes some time to release patch releases and because 
Arch users
+# are impatient, we sometimes need to build from git directly.
+# Update because I get so many queries on this:
+# Due to our other rolling deps, it's sometimes not possible to build Blender 
stable releases.
+# More often than not, a new openshadinglanguage breaks it and I could either 
backport fixes
+# or simply roll with a new version. I usually choose the latter when the 
former seems
+# unreasonable.
+
+_gittag=v2.81a
+# _gitcommit=054dbb833e15275e0e991e2c15e754a3e7583716
+
+pkgname=blender
+pkgver=2.81.a
+[[ -n $_gitcommit ]] && pkgver=${pkgver}.git1.${_gitcommit:0:8}
+pkgrel=3
+epoch=17
+pkgdesc="A fully integrated 3D graphics creation suite"
+arch=('x86_64')
+license=('GPL')
+url="http://www.blender.org;
+depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils' 
'python-requests'
+ 'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew' 'openjpeg' 
'python-numpy'
+ 'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada' 
'alembic'
+ 'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage' 
'openimagedenoise'
+ 'jemalloc' 'libspnav' 'ptex' 'opensubdiv' 'openvdb' 'log4cplus' 
'sdl2')
+makedepends=('cmake' 'boost' 'mesa' 'git' 'llvm' 'cuda' 'ninja')
+optdepends=('cuda: cycles renderer cuda support')
+options=(!strip)
+source=("git://git.blender.org/blender-addons.git"
+"git://git.blender.org/blender-addons-contrib.git"
+"git://git.blender.org/blender-translations.git"
+"git://git.blender.org/blender-dev-tools.git")
+if [[ -n $_gittag ]]; then
+
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#tag=${_gittag}")
+elif [[ -n $_gitcommit ]]; then
+
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#commit=${_gitcommit}")
+fi
+sha512sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  git submodule init
+  git config submodule."release/scripts/addons".url "${srcdir}/blender-addons"
+  git config submodule."release/scripts/addons_contrib".url 
"${srcdir}/blender-addons-contrib"
+  git config submodule."release/datafiles/locale".url 
"${srcdir}/blender-translations"
+  git config submodule."source/tools".url "${srcdir}/blender-dev-tools"
+  git submodule update
+
+  mkdir build
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"/build
+
+  cmake \
+-GNinja \
+-C../build_files/cmake/config/blender_release.cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DWITH_INSTALL_PORTABLE=OFF \
+-DWITH_PYTHON_INSTALL=OFF \
+-DPYTHON_VERSION=3.8 \
+-DPYTHON_LIBPATH=/usr/lib \
+-DPYTHON_LIBRARY=python3.8 \
+-DPYTHON_INCLUDE_DIRS=/usr/include/python3.8
+  ninja
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver/build"
+
+  DESTDIR="${pkgdir}" ninja install
+  install -Dm755 ../release/bin/blender-softwaregl 
"${pkgdir}/usr/bin/blender-softwaregl"
+  python -m compileall "${pkgdir}/usr/share/blender"
+  python -O -m compileall "${pkgdir}/usr/share/blender"
+}


[arch-commits] Commit in blender/repos (3 files)

2018-06-02 Thread Evangelos Foutras via arch-commits
Date: Sunday, June 3, 2018 @ 05:09:20
  Author: foutrelis
Revision: 338548

archrelease: copy trunk to community-staging-x86_64

Added:
  blender/repos/community-staging-x86_64/
  blender/repos/community-staging-x86_64/PKGBUILD
(from rev 338547, blender/trunk/PKGBUILD)
  blender/repos/community-staging-x86_64/ffmpeg4.0.patch
(from rev 338547, blender/trunk/ffmpeg4.0.patch)

-+
 PKGBUILD|  102 
 ffmpeg4.0.patch |  113 ++
 2 files changed, 215 insertions(+)

Copied: blender/repos/community-staging-x86_64/PKGBUILD (from rev 338547, 
blender/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-06-03 05:09:20 UTC (rev 338548)
@@ -0,0 +1,102 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: John Sowiak 
+# Contributor: tobias 
+
+# Sometimes blender.org takes some time to release patch releases and because 
Arch users
+# are impatient, we sometimes need to build from git directly.
+# Update because I get so many queries on this:
+# Due to our other rolling deps, it's sometimes not possible to build Blender 
stable releases.
+# More often than not, a new openshadinglanguage breaks it and I could either 
backport fixes
+# or simply roll with a new version. I usually choose the latter when the 
former seems
+# unreasonable.
+
+# _gittag=v2.79b
+_gitcommit=0385b33f0b3e389ea2a82c4b6bb181c684f0511a
+
+pkgname=blender
+pkgver=2.79.b
+[[ -n $_gitcommit ]] && pkgver=${pkgver}.git2.${_gitcommit:0:8}
+pkgrel=16
+epoch=17
+pkgdesc="A fully integrated 3D graphics creation suite"
+arch=('x86_64')
+license=('GPL')
+url="http://www.blender.org;
+depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils' 
'python-requests'
+ 'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew' 'openjpeg' 
'python-numpy'
+ 'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada' 
'alembic'
+ 'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage'
+ 'jemalloc' 'libspnav' 'ptex' 'opensubdiv' 'openvdb' 'log4cplus' 
'sdl2')
+makedepends=('cmake' 'boost' 'mesa' 'git' 'llvm' 'cuda')
+optdepends=('cuda: cycles renderer cuda support')
+options=(!strip)
+source=("git://git.blender.org/blender-addons.git"
+"git://git.blender.org/blender-addons-contrib.git"
+"git://git.blender.org/blender-translations.git"
+"git://git.blender.org/blender-dev-tools.git"
+"git://git.blender.org/scons.git")
+if [[ -n $_gittag ]]; then
+
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#tag=${_gittag}")
+elif [[ -n $_gitcommit ]]; then
+
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#commit=${_gitcommit}")
+fi
+md5sums=('SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  git submodule init
+  git config submodule."release/scripts/addons".url ${srcdir}/blender-addons
+  git config submodule."release/scripts/addons_contrib".url 
${srcdir}/blender-addons-contrib
+  git config submodule."release/datafiles/locale".url 
${srcdir}/blender-translations
+  git config submodule."source/tools".url ${srcdir}/blender-dev-tools
+  git config submodule."scons".url ${srcdir}/scons
+  git submodule update
+
+  # Fix installation of modules
+  sed -i "144i\ \ \ \ pass" 
release/scripts/addons_contrib/np_station/np_point_dimension.py
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  export CFLAGS="${CFLAGS} -DOPENVDB_3_ABI_COMPATIBLE"
+  export CXXFLAGS="${CXXFLAGS} -DOPENVDB_3_ABI_COMPATIBLE"
+  cmake -C../build_files/cmake/config/blender_release.cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DWITH_INSTALL_PORTABLE=OFF \
+-DWITH_PYTHON_INSTALL=OFF \
+-DOPENIMAGEIO_ROOT_DIR=/usr \
+-DWITH_SYSTEM_OPENJPEG=ON \
+-DWITH_GL_PROFILE_CORE=OFF \
+-DWITH_GL_PROFILE_ES20=OFF \
+-DWITH_LLVM=ON \
+-DWITH_CYCLES_CUDA_BINARIES=ON \
+-DWITH_CYCLES_PTEX=OFF \
+-DPYTHON_VERSION=3.6 \
+-DPYTHON_LIBPATH=/usr/lib \
+-DPYTHON_LIBRARY=python3.6m \
+-DPYTHON_INCLUDE_DIRS=/usr/include/python3.6m
+  make
+
+  # PTEX is currently broken and experimental in blender anyway
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver/build"
+
+  make DESTDIR="${pkgdir}" install
+  install -Dm755 ../release/bin/blender-softwaregl 
"${pkgdir}/usr/bin/blender-softwaregl"
+  python -m compileall "${pkgdir}/usr/share/blender"
+  python -O -m compileall "${pkgdir}/usr/share/blender"
+}

Copied: blender/repos/community-staging-x86_64/ffmpeg4.0.patch (from rev 
338547, blender/trunk/ffmpeg4.0.patch)
===

[arch-commits] Commit in blender/repos (3 files)

2018-05-20 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, May 20, 2018 @ 11:13:13
  Author: svenstaro
Revision: 325237

archrelease: copy trunk to community-testing-x86_64

Added:
  blender/repos/community-testing-x86_64/
  blender/repos/community-testing-x86_64/PKGBUILD
(from rev 325236, blender/trunk/PKGBUILD)
  blender/repos/community-testing-x86_64/ffmpeg4.0.patch
(from rev 325236, blender/trunk/ffmpeg4.0.patch)

-+
 PKGBUILD|  102 
 ffmpeg4.0.patch |  113 ++
 2 files changed, 215 insertions(+)

Copied: blender/repos/community-testing-x86_64/PKGBUILD (from rev 325236, 
blender/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-05-20 11:13:13 UTC (rev 325237)
@@ -0,0 +1,102 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: John Sowiak 
+# Contributor: tobias 
+
+# Sometimes blender.org takes some time to release patch releases and because 
Arch users
+# are impatient, we sometimes need to build from git directly.
+# Update because I get so many queries on this:
+# Due to our other rolling deps, it's sometimes not possible to build Blender 
stable releases.
+# More often than not, a new openshadinglanguage breaks it and I could either 
backport fixes
+# or simply roll with a new version. I usually choose the latter when the 
former seems
+# unreasonable.
+
+# _gittag=v2.79b
+_gitcommit=0385b33f0b3e389ea2a82c4b6bb181c684f0511a
+
+pkgname=blender
+pkgver=2.79.b
+[[ -n $_gitcommit ]] && pkgver=${pkgver}.git2.${_gitcommit:0:8}
+pkgrel=14
+epoch=17
+pkgdesc="A fully integrated 3D graphics creation suite"
+arch=('x86_64')
+license=('GPL')
+url="http://www.blender.org;
+depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils' 
'python-requests'
+ 'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew' 'openjpeg' 
'python-numpy'
+ 'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada' 
'alembic'
+ 'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage'
+ 'jemalloc' 'libspnav' 'ptex' 'opensubdiv' 'openvdb' 'log4cplus' 
'sdl2')
+makedepends=('cmake' 'boost' 'mesa' 'git' 'llvm' 'cuda')
+optdepends=('cuda: cycles renderer cuda support')
+options=(!strip)
+source=("git://git.blender.org/blender-addons.git"
+"git://git.blender.org/blender-addons-contrib.git"
+"git://git.blender.org/blender-translations.git"
+"git://git.blender.org/blender-dev-tools.git"
+"git://git.blender.org/scons.git")
+if [[ -n $_gittag ]]; then
+
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#tag=${_gittag}")
+elif [[ -n $_gitcommit ]]; then
+
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#commit=${_gitcommit}")
+fi
+md5sums=('SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  git submodule init
+  git config submodule."release/scripts/addons".url ${srcdir}/blender-addons
+  git config submodule."release/scripts/addons_contrib".url 
${srcdir}/blender-addons-contrib
+  git config submodule."release/datafiles/locale".url 
${srcdir}/blender-translations
+  git config submodule."source/tools".url ${srcdir}/blender-dev-tools
+  git config submodule."scons".url ${srcdir}/scons
+  git submodule update
+
+  # Fix installation of modules
+  sed -i "144i\ \ \ \ pass" 
release/scripts/addons_contrib/np_station/np_point_dimension.py
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  export CFLAGS="${CFLAGS} -DOPENVDB_3_ABI_COMPATIBLE"
+  export CXXFLAGS="${CXXFLAGS} -DOPENVDB_3_ABI_COMPATIBLE"
+  cmake -C../build_files/cmake/config/blender_release.cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DWITH_INSTALL_PORTABLE=OFF \
+-DWITH_PYTHON_INSTALL=OFF \
+-DOPENIMAGEIO_ROOT_DIR=/usr \
+-DWITH_SYSTEM_OPENJPEG=ON \
+-DWITH_GL_PROFILE_CORE=OFF \
+-DWITH_GL_PROFILE_ES20=OFF \
+-DWITH_LLVM=ON \
+-DWITH_CYCLES_CUDA_BINARIES=ON \
+-DWITH_CYCLES_PTEX=OFF \
+-DPYTHON_VERSION=3.6 \
+-DPYTHON_LIBPATH=/usr/lib \
+-DPYTHON_LIBRARY=python3.6m \
+-DPYTHON_INCLUDE_DIRS=/usr/include/python3.6m
+  make
+
+  # PTEX is currently broken and experimental in blender anyway
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver/build"
+
+  make DESTDIR="${pkgdir}" install
+  install -Dm755 ../release/bin/blender-softwaregl 
"${pkgdir}/usr/bin/blender-softwaregl"
+  python -m compileall "${pkgdir}/usr/share/blender"
+  python -O -m compileall "${pkgdir}/usr/share/blender"
+}

Copied: blender/repos/community-testing-x86_64/ffmpeg4.0.patch (from rev 
325236, blender/trunk/ffmpeg4.0.patch)

[arch-commits] Commit in blender/repos (3 files)

2018-05-11 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, May 11, 2018 @ 20:04:07
  Author: svenstaro
Revision: 320900

archrelease: copy trunk to community-testing-x86_64

Added:
  blender/repos/community-testing-x86_64/
  blender/repos/community-testing-x86_64/PKGBUILD
(from rev 320899, blender/trunk/PKGBUILD)
  blender/repos/community-testing-x86_64/ffmpeg4.0.patch
(from rev 320899, blender/trunk/ffmpeg4.0.patch)

-+
 PKGBUILD|  102 
 ffmpeg4.0.patch |  113 ++
 2 files changed, 215 insertions(+)

Copied: blender/repos/community-testing-x86_64/PKGBUILD (from rev 320899, 
blender/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-05-11 20:04:07 UTC (rev 320900)
@@ -0,0 +1,102 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: John Sowiak 
+# Contributor: tobias 
+
+# Sometimes blender.org takes some time to release patch releases and because 
Arch users
+# are impatient, we sometimes need to build from git directly.
+# Update because I get so many queries on this:
+# Due to our other rolling deps, it's sometimes not possible to build Blender 
stable releases.
+# More often than not, a new openshadinglanguage breaks it and I could either 
backport fixes
+# or simply roll with a new version. I usually choose the latter when the 
former seems
+# unreasonable.
+
+# _gittag=v2.79b
+_gitcommit=0385b33f0b3e389ea2a82c4b6bb181c684f0511a
+
+pkgname=blender
+pkgver=2.79.b
+[[ -n $_gitcommit ]] && pkgver=${pkgver}.git2.${_gitcommit:0:8}
+pkgrel=13
+epoch=17
+pkgdesc="A fully integrated 3D graphics creation suite"
+arch=('x86_64')
+license=('GPL')
+url="http://www.blender.org;
+depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils' 
'python-requests'
+ 'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew' 'openjpeg' 
'python-numpy'
+ 'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada' 
'alembic'
+ 'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage'
+ 'jemalloc' 'libspnav' 'ptex' 'opensubdiv' 'openvdb' 'log4cplus' 
'sdl2')
+makedepends=('cmake' 'boost' 'mesa' 'git' 'llvm' 'cuda')
+optdepends=('cuda: cycles renderer cuda support')
+options=(!strip)
+source=("git://git.blender.org/blender-addons.git"
+"git://git.blender.org/blender-addons-contrib.git"
+"git://git.blender.org/blender-translations.git"
+"git://git.blender.org/blender-dev-tools.git"
+"git://git.blender.org/scons.git")
+if [[ -n $_gittag ]]; then
+
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#tag=${_gittag}")
+elif [[ -n $_gitcommit ]]; then
+
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#commit=${_gitcommit}")
+fi
+md5sums=('SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  git submodule init
+  git config submodule."release/scripts/addons".url ${srcdir}/blender-addons
+  git config submodule."release/scripts/addons_contrib".url 
${srcdir}/blender-addons-contrib
+  git config submodule."release/datafiles/locale".url 
${srcdir}/blender-translations
+  git config submodule."source/tools".url ${srcdir}/blender-dev-tools
+  git config submodule."scons".url ${srcdir}/scons
+  git submodule update
+
+  # Fix installation of modules
+  sed -i "144i\ \ \ \ pass" 
release/scripts/addons_contrib/np_station/np_point_dimension.py
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  export CFLAGS="${CFLAGS} -DOPENVDB_3_ABI_COMPATIBLE"
+  export CXXFLAGS="${CXXFLAGS} -DOPENVDB_3_ABI_COMPATIBLE"
+  cmake -C../build_files/cmake/config/blender_release.cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DWITH_INSTALL_PORTABLE=OFF \
+-DWITH_PYTHON_INSTALL=OFF \
+-DOPENIMAGEIO_ROOT_DIR=/usr \
+-DWITH_SYSTEM_OPENJPEG=ON \
+-DWITH_GL_PROFILE_CORE=OFF \
+-DWITH_GL_PROFILE_ES20=OFF \
+-DWITH_LLVM=ON \
+-DWITH_CYCLES_CUDA_BINARIES=ON \
+-DWITH_CYCLES_PTEX=OFF \
+-DPYTHON_VERSION=3.6 \
+-DPYTHON_LIBPATH=/usr/lib \
+-DPYTHON_LIBRARY=python3.6m \
+-DPYTHON_INCLUDE_DIRS=/usr/include/python3.6m
+  make
+
+  # PTEX is currently broken and experimental in blender anyway
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver/build"
+
+  make DESTDIR="${pkgdir}" install
+  install -Dm755 ../release/bin/blender-softwaregl 
"${pkgdir}/usr/bin/blender-softwaregl"
+  python -m compileall "${pkgdir}/usr/share/blender"
+  python -O -m compileall "${pkgdir}/usr/share/blender"
+}

Copied: blender/repos/community-testing-x86_64/ffmpeg4.0.patch (from rev 
320899, blender/trunk/ffmpeg4.0.patch)

[arch-commits] Commit in blender/repos (3 files)

2018-04-24 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, April 24, 2018 @ 21:32:06
  Author: svenstaro
Revision: 317631

archrelease: copy trunk to community-staging-x86_64

Added:
  blender/repos/community-staging-x86_64/
  blender/repos/community-staging-x86_64/PKGBUILD
(from rev 317630, blender/trunk/PKGBUILD)
  blender/repos/community-staging-x86_64/ffmpeg4.0.patch
(from rev 317630, blender/trunk/ffmpeg4.0.patch)

-+
 PKGBUILD|  112 +
 ffmpeg4.0.patch |  113 ++
 2 files changed, 225 insertions(+)

Copied: blender/repos/community-staging-x86_64/PKGBUILD (from rev 317630, 
blender/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-04-24 21:32:06 UTC (rev 317631)
@@ -0,0 +1,112 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: John Sowiak 
+# Contributor: tobias 
+
+# Sometimes blender.org takes some time to release patch releases and because 
Arch users
+# are impatient, we sometimes need to build from git directly.
+# Update because I get so many queries on this:
+# Due to our other rolling deps, it's sometimes not possible to build Blender 
stable releases.
+# More often than not, a new openshadinglanguage breaks it and I could either 
backport fixes
+# or simply roll with a new version. I usually choose the latter when the 
former seems
+# unreasonable.
+
+ _gittag=v2.79b
+#_gitcommit=3c3d0898b0c1a1d7da70f4a1778d4360b3cfe5c8
+
+pkgname=blender
+pkgver=2.79.b
+#[[ -n $_gitcommit ]] && pkgver=${pkgver}.git1.${_gitcommit}
+pkgrel=8
+epoch=17
+pkgdesc="A fully integrated 3D graphics creation suite"
+arch=('x86_64')
+license=('GPL')
+url="http://www.blender.org;
+depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils' 
'python-requests'
+ 'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew' 'openjpeg' 
'python-numpy'
+ 'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada' 
'alembic'
+ 'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage'
+ 'jemalloc' 'libspnav' 'ptex' 'opensubdiv' 'openvdb' 'log4cplus' 
'sdl2')
+makedepends=('cmake' 'boost' 'mesa' 'git' 'llvm' 'gcc6' 'cuda')
+optdepends=('cuda: cycles renderer cuda support')
+options=(!strip)
+source=("git://git.blender.org/blender-addons.git"
+"git://git.blender.org/blender-addons-contrib.git"
+"git://git.blender.org/blender-translations.git"
+"git://git.blender.org/blender-dev-tools.git"
+"git://git.blender.org/scons.git"
+ffmpeg4.0.patch)
+if [[ -n $_gittag ]]; then
+
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#tag=${_gittag}")
+elif [[ -n $_gitcommit ]]; then
+
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#commit=${_gitcommit}")
+fi
+md5sums=('SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'da14d7cbdea1ab5499659a066658cdd2'
+ 'SKIP')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  git submodule init
+  git config submodule."release/scripts/addons".url ${srcdir}/blender-addons
+  git config submodule."release/scripts/addons_contrib".url 
${srcdir}/blender-addons-contrib
+  git config submodule."release/datafiles/locale".url 
${srcdir}/blender-translations
+  git config submodule."source/tools".url ${srcdir}/blender-dev-tools
+  git config submodule."scons".url ${srcdir}/scons
+  git submodule update
+
+  # cuda 9.1 fixes
+  sed -i -e "s/sm_20;//" -e "s/sm_21;//" 
build_files/cmake/config/blender_release.cmake
+
+  # openvdb 5 fix
+  sed -i "s/OPENVDB_LIBRARY_MAJOR_VERSION_NUMBER == 
3/OPENVDB_LIBRARY_MAJOR_VERSION_NUMBER >= 3/g" 
intern/openvdb/intern/openvdb_writer.cc
+
+  # ffmpeg 4.0 fixes
+  patch -Np1 -i "${srcdir}"/ffmpeg4.0.patch
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  export CFLAGS="${CFLAGS} -DOPENVDB_3_ABI_COMPATIBLE"
+  export CXXFLAGS="${CXXFLAGS} -DOPENVDB_3_ABI_COMPATIBLE"
+  cmake -C../build_files/cmake/config/blender_release.cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DWITH_INSTALL_PORTABLE=OFF \
+-DWITH_PYTHON_INSTALL=OFF \
+-DOPENIMAGEIO_ROOT_DIR=/usr \
+-DWITH_LLVM=ON \
+-DWITH_SYSTEM_OPENJPEG=ON \
+-DWITH_GL_PROFILE_CORE=OFF \
+-DWITH_GL_PROFILE_ES20=OFF \
+-DLLVM_VERSION=3.6 \
+-DLLVM_STATIC=ON \
+-DWITH_CYCLES_CUDA_BINARIES=ON \
+-DWITH_CYCLES_PTEX=OFF \
+-DPYTHON_VERSION=3.6 \
+-DPYTHON_LIBPATH=/usr/lib \
+-DPYTHON_LIBRARY=python3.6m \
+-DPYTHON_INCLUDE_DIRS=/usr/include/python3.6m
+  make
+
+  # PTEX is currently broken and experimental in blender anyway
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver/build"
+
+  make 

[arch-commits] Commit in blender/repos (3 files)

2018-02-28 Thread Antonio Rojas via arch-commits
Date: Wednesday, February 28, 2018 @ 09:46:04
  Author: arojas
Revision: 299947

archrelease: copy trunk to community-staging-x86_64

Added:
  blender/repos/community-staging-x86_64/
  blender/repos/community-staging-x86_64/PKGBUILD
(from rev 299946, blender/trunk/PKGBUILD)
  blender/repos/community-staging-x86_64/cuda9.patch
(from rev 299946, blender/trunk/cuda9.patch)

-+
 PKGBUILD|  109 ++
 cuda9.patch |   40 +
 2 files changed, 149 insertions(+)

Copied: blender/repos/community-staging-x86_64/PKGBUILD (from rev 299946, 
blender/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-02-28 09:46:04 UTC (rev 299947)
@@ -0,0 +1,109 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: John Sowiak 
+# Contributor: tobias 
+
+# Sometimes blender.org takes some time to release patch releases and because 
Arch users
+# are impatient, we sometimes need to build from git directly.
+# Update because I get so many queries on this:
+# Due to our other rolling deps, it's sometimes not possible to build Blender 
stable releases.
+# More often than not, a new openshadinglanguage breaks it and I could either 
backport fixes
+# or simply roll with a new version. I usually choose the latter when the 
former seems
+# unreasonable.
+
+ _gittag=v2.79
+#_gitcommit=3c3d0898b0c1a1d7da70f4a1778d4360b3cfe5c8
+
+pkgname=blender
+pkgver=2.79
+#[[ -n $_gitcommit ]] && pkgver=${pkgver}.git1.${_gitcommit}
+pkgrel=10
+epoch=17
+pkgdesc="A fully integrated 3D graphics creation suite"
+arch=('x86_64')
+license=('GPL')
+url="http://www.blender.org;
+depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils' 
'python-requests'
+ 'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew' 'openjpeg' 
'python-numpy'
+ 'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada' 
'alembic'
+ 'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage'
+ 'jemalloc' 'libspnav' 'ptex' 'opensubdiv' 'openvdb' 'log4cplus' 
'sdl2')
+makedepends=('cmake' 'boost' 'mesa' 'git' 'llvm35' 'gcc6')
+makedepends_x86_64=('cuda')
+optdepends=('cuda: cycles renderer cuda support')
+options=(!strip)
+source=("git://git.blender.org/blender-addons.git"
+"git://git.blender.org/blender-addons-contrib.git"
+"git://git.blender.org/blender-translations.git"
+"git://git.blender.org/blender-dev-tools.git"
+"git://git.blender.org/scons.git"
+cuda9.patch)
+if [[ -n $_gittag ]]; then
+
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#tag=${_gittag}")
+elif [[ -n $_gitcommit ]]; then
+
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#commit=${_gitcommit}")
+fi
+md5sums=('SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
+ '88f47cac4cac2977f006c0ce22f84e53'
+ 'SKIP')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  git submodule init
+  git config submodule."release/scripts/addons".url ${srcdir}/blender-addons
+  git config submodule."release/scripts/addons_contrib".url 
${srcdir}/blender-addons-contrib
+  git config submodule."release/datafiles/locale".url 
${srcdir}/blender-translations
+  git config submodule."source/tools".url ${srcdir}/blender-dev-tools
+  git config submodule."scons".url ${srcdir}/scons
+  git submodule update
+
+  patch -Np1 < "${srcdir}"/cuda9.patch
+
+  # cuda 9.1 fixes
+  sed -i -e "s/sm_20;//" -e "s/sm_21;//" 
build_files/cmake/config/blender_release.cmake
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  export CFLAGS="${CFLAGS} -DOPENVDB_3_ABI_COMPATIBLE"
+  export CXXFLAGS="${CXXFLAGS} -DOPENVDB_3_ABI_COMPATIBLE"
+  cmake -C../build_files/cmake/config/blender_release.cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DWITH_INSTALL_PORTABLE=OFF \
+-DWITH_PYTHON_INSTALL=OFF \
+-DOPENIMAGEIO_ROOT_DIR=/usr \
+-DWITH_LLVM=ON \
+-DWITH_SYSTEM_OPENJPEG=ON \
+-DWITH_GL_PROFILE_CORE=OFF \
+-DWITH_GL_PROFILE_ES20=OFF \
+-DLLVM_VERSION=3.6 \
+-DLLVM_STATIC=ON \
+-DWITH_CYCLES_CUDA_BINARIES=ON \
+-DWITH_CYCLES_PTEX=OFF \
+-DPYTHON_VERSION=3.6 \
+-DPYTHON_LIBPATH=/usr/lib \
+-DPYTHON_LIBRARY=python3.6m \
+-DPYTHON_INCLUDE_DIRS=/usr/include/python3.6m
+  make
+
+  # PTEX is currently broken and experimental in blender anyway
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver/build"
+
+  make DESTDIR="${pkgdir}" install
+  install -Dm755 ../release/bin/blender-softwaregl 
"${pkgdir}/usr/bin/blender-softwaregl"
+  python -m compileall "${pkgdir}/usr/share/blender"
+  python -O -m compileall 

[arch-commits] Commit in blender/repos (3 files)

2017-12-28 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, December 29, 2017 @ 02:59:24
  Author: svenstaro
Revision: 276776

archrelease: copy trunk to community-staging-x86_64

Added:
  blender/repos/community-staging-x86_64/
  blender/repos/community-staging-x86_64/PKGBUILD
(from rev 276775, blender/trunk/PKGBUILD)
  blender/repos/community-staging-x86_64/cuda9.patch
(from rev 276775, blender/trunk/cuda9.patch)

-+
 PKGBUILD|  109 ++
 cuda9.patch |   40 +
 2 files changed, 149 insertions(+)

Copied: blender/repos/community-staging-x86_64/PKGBUILD (from rev 276775, 
blender/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-29 02:59:24 UTC (rev 276776)
@@ -0,0 +1,109 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: John Sowiak 
+# Contributor: tobias 
+
+# Sometimes blender.org takes some time to release patch releases and because 
Arch users
+# are impatient, we sometimes need to build from git directly.
+# Update because I get so many queries on this:
+# Due to our other rolling deps, it's sometimes not possible to build Blender 
stable releases.
+# More often than not, a new openshadinglanguage breaks it and I could either 
backport fixes
+# or simply roll with a new version. I usually choose the latter when the 
former seems
+# unreasonable.
+
+ _gittag=v2.79
+#_gitcommit=3c3d0898b0c1a1d7da70f4a1778d4360b3cfe5c8
+
+pkgname=blender
+pkgver=2.79
+#[[ -n $_gitcommit ]] && pkgver=${pkgver}.git1.${_gitcommit}
+pkgrel=8
+epoch=17
+pkgdesc="A fully integrated 3D graphics creation suite"
+arch=('x86_64')
+license=('GPL')
+url="http://www.blender.org;
+depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils' 
'python-requests'
+ 'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew' 'openjpeg' 
'python-numpy'
+ 'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada' 
'alembic'
+ 'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage'
+ 'jemalloc' 'libspnav' 'ptex' 'opensubdiv' 'openvdb' 'log4cplus' 
'sdl2')
+makedepends=('cmake' 'boost' 'mesa' 'git' 'llvm35' 'gcc6')
+makedepends_x86_64=('cuda')
+optdepends=('cuda: cycles renderer cuda support')
+options=(!strip)
+source=("git://git.blender.org/blender-addons.git"
+"git://git.blender.org/blender-addons-contrib.git"
+"git://git.blender.org/blender-translations.git"
+"git://git.blender.org/blender-dev-tools.git"
+"git://git.blender.org/scons.git"
+cuda9.patch)
+if [[ -n $_gittag ]]; then
+
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#tag=${_gittag}")
+elif [[ -n $_gitcommit ]]; then
+
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#commit=${_gitcommit}")
+fi
+md5sums=('SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
+ '88f47cac4cac2977f006c0ce22f84e53'
+ 'SKIP')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  git submodule init
+  git config submodule."release/scripts/addons".url ${srcdir}/blender-addons
+  git config submodule."release/scripts/addons_contrib".url 
${srcdir}/blender-addons-contrib
+  git config submodule."release/datafiles/locale".url 
${srcdir}/blender-translations
+  git config submodule."source/tools".url ${srcdir}/blender-dev-tools
+  git config submodule."scons".url ${srcdir}/scons
+  git submodule update
+
+  patch -Np1 < "${srcdir}"/cuda9.patch
+
+  # cuda 9.1 fixes
+  sed -i -e "s/sm_20;//" -e "s/sm_21;//" 
build_files/cmake/config/blender_release.cmake
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  export CFLAGS="${CFLAGS} -DOPENVDB_3_ABI_COMPATIBLE"
+  export CXXFLAGS="${CXXFLAGS} -DOPENVDB_3_ABI_COMPATIBLE"
+  cmake -C../build_files/cmake/config/blender_release.cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DWITH_INSTALL_PORTABLE=OFF \
+-DWITH_PYTHON_INSTALL=OFF \
+-DOPENIMAGEIO_ROOT_DIR=/usr \
+-DWITH_LLVM=ON \
+-DWITH_SYSTEM_OPENJPEG=ON \
+-DWITH_GL_PROFILE_CORE=OFF \
+-DWITH_GL_PROFILE_ES20=OFF \
+-DLLVM_VERSION=3.6 \
+-DLLVM_STATIC=ON \
+-DWITH_CYCLES_CUDA_BINARIES=ON \
+-DWITH_CYCLES_PTEX=OFF \
+-DPYTHON_VERSION=3.6 \
+-DPYTHON_LIBPATH=/usr/lib \
+-DPYTHON_LIBRARY=python3.6m \
+-DPYTHON_INCLUDE_DIRS=/usr/include/python3.6m
+  make
+
+  # PTEX is currently broken and experimental in blender anyway
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver/build"
+
+  make DESTDIR="${pkgdir}" install
+  install -Dm755 ../release/bin/blender-softwaregl 
"${pkgdir}/usr/bin/blender-softwaregl"
+  python -m compileall "${pkgdir}/usr/share/blender"
+  python -O -m compileall 

[arch-commits] Commit in blender/repos (3 files)

2017-12-13 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, December 14, 2017 @ 07:07:22
  Author: svenstaro
Revision: 274371

archrelease: copy trunk to community-testing-x86_64

Added:
  blender/repos/community-testing-x86_64/
  blender/repos/community-testing-x86_64/PKGBUILD
(from rev 274370, blender/trunk/PKGBUILD)
  blender/repos/community-testing-x86_64/cuda9.patch
(from rev 274370, blender/trunk/cuda9.patch)

-+
 PKGBUILD|  109 ++
 cuda9.patch |   40 +
 2 files changed, 149 insertions(+)

Copied: blender/repos/community-testing-x86_64/PKGBUILD (from rev 274370, 
blender/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-12-14 07:07:22 UTC (rev 274371)
@@ -0,0 +1,109 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: John Sowiak 
+# Contributor: tobias 
+
+# Sometimes blender.org takes some time to release patch releases and because 
Arch users
+# are impatient, we sometimes need to build from git directly.
+# Update because I get so many queries on this:
+# Due to our other rolling deps, it's sometimes not possible to build Blender 
stable releases.
+# More often than not, a new openshadinglanguage breaks it and I could either 
backport fixes
+# or simply roll with a new version. I usually choose the latter when the 
former seems
+# unreasonable.
+
+ _gittag=v2.79
+#_gitcommit=3c3d0898b0c1a1d7da70f4a1778d4360b3cfe5c8
+
+pkgname=blender
+pkgver=2.79
+#[[ -n $_gitcommit ]] && pkgver=${pkgver}.git1.${_gitcommit}
+pkgrel=7
+epoch=17
+pkgdesc="A fully integrated 3D graphics creation suite"
+arch=('x86_64')
+license=('GPL')
+url="http://www.blender.org;
+depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils' 
'python-requests'
+ 'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew' 'openjpeg' 
'python-numpy'
+ 'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada' 
'alembic'
+ 'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage'
+ 'jemalloc' 'libspnav' 'ptex' 'opensubdiv' 'openvdb' 'log4cplus' 
'sdl2')
+makedepends=('cmake' 'boost' 'mesa' 'git' 'llvm35' 'gcc6')
+makedepends_x86_64=('cuda')
+optdepends=('cuda: cycles renderer cuda support')
+options=(!strip)
+source=("git://git.blender.org/blender-addons.git"
+"git://git.blender.org/blender-addons-contrib.git"
+"git://git.blender.org/blender-translations.git"
+"git://git.blender.org/blender-dev-tools.git"
+"git://git.blender.org/scons.git"
+cuda9.patch)
+if [[ -n $_gittag ]]; then
+
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#tag=${_gittag}")
+elif [[ -n $_gitcommit ]]; then
+
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#commit=${_gitcommit}")
+fi
+md5sums=('SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
+ '88f47cac4cac2977f006c0ce22f84e53'
+ 'SKIP')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  git submodule init
+  git config submodule."release/scripts/addons".url ${srcdir}/blender-addons
+  git config submodule."release/scripts/addons_contrib".url 
${srcdir}/blender-addons-contrib
+  git config submodule."release/datafiles/locale".url 
${srcdir}/blender-translations
+  git config submodule."source/tools".url ${srcdir}/blender-dev-tools
+  git config submodule."scons".url ${srcdir}/scons
+  git submodule update
+
+  patch -Np1 < "${srcdir}"/cuda9.patch
+
+  # cuda 9.1 fixes
+  sed -i -e "s/sm_20;//" -e "s/sm_21;//" 
build_files/cmake/config/blender_release.cmake
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  export CFLAGS="${CFLAGS} -DOPENVDB_3_ABI_COMPATIBLE"
+  export CXXFLAGS="${CXXFLAGS} -DOPENVDB_3_ABI_COMPATIBLE"
+  cmake -C../build_files/cmake/config/blender_release.cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DWITH_INSTALL_PORTABLE=OFF \
+-DWITH_PYTHON_INSTALL=OFF \
+-DOPENIMAGEIO_ROOT_DIR=/usr \
+-DWITH_LLVM=ON \
+-DWITH_SYSTEM_OPENJPEG=ON \
+-DWITH_GL_PROFILE_CORE=OFF \
+-DWITH_GL_PROFILE_ES20=OFF \
+-DLLVM_VERSION=3.6 \
+-DLLVM_STATIC=ON \
+-DWITH_CYCLES_CUDA_BINARIES=ON \
+-DWITH_CYCLES_PTEX=OFF \
+-DPYTHON_VERSION=3.6 \
+-DPYTHON_LIBPATH=/usr/lib \
+-DPYTHON_LIBRARY=python3.6m \
+-DPYTHON_INCLUDE_DIRS=/usr/include/python3.6m
+  make
+
+  # PTEX is currently broken and experimental in blender anyway
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver/build"
+
+  make DESTDIR="${pkgdir}" install
+  install -Dm755 ../release/bin/blender-softwaregl 
"${pkgdir}/usr/bin/blender-softwaregl"
+  python -m compileall "${pkgdir}/usr/share/blender"
+  python -O -m compileall