[arch-commits] Commit in blender/repos/community-x86_64 (4 files)

2020-06-03 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, June 3, 2020 @ 22:06:40
  Author: svenstaro
Revision: 638605

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |  198 -
 embree.patch |   86 
 2 files changed, 142 insertions(+), 142 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-03 22:06:26 UTC (rev 638604)
+++ PKGBUILD2020-06-03 22:06:40 UTC (rev 638605)
@@ -1,99 +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.
-
-# 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=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' 
'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"
-
-  install -Dm644 ../release/freedesktop/org.blender.Blender.appdata.xml 
"${pkgdir}/usr/share/metainfo/org.blender.Blender.appdata.xml"
-}

Copied: blender/repos/community-x86_64/PKGBUILD (from rev 638604, 

[arch-commits] Commit in blender/repos/community-x86_64 (4 files)

2020-06-02 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, June 2, 2020 @ 23:50:15
  Author: svenstaro
Revision: 638141

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |  198 -
 embree.patch |   86 
 2 files changed, 142 insertions(+), 142 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-02 23:50:08 UTC (rev 638140)
+++ PKGBUILD2020-06-02 23:50:15 UTC (rev 638141)
@@ -1,99 +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.
-
-# 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=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' 
'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"
-
-  install -Dm644 ../release/freedesktop/org.blender.Blender.appdata.xml 
"${pkgdir}/usr/share/metainfo/org.blender.Blender.appdata.xml"
-}

Copied: blender/repos/community-x86_64/PKGBUILD (from rev 638140, 

[arch-commits] Commit in blender/repos/community-x86_64 (4 files)

2020-06-02 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, June 2, 2020 @ 13:26:55
  Author: svenstaro
Revision: 638057

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |  196 -
 embree.patch |   86 -
 2 files changed, 142 insertions(+), 140 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-02 13:26:48 UTC (rev 638056)
+++ PKGBUILD2020-06-02 13:26:55 UTC (rev 638057)
@@ -1,97 +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.
-
-# 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=6
-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-x86_64/PKGBUILD (from rev 638056, 
blender/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ 

[arch-commits] Commit in blender/repos/community-x86_64 (4 files)

2020-04-24 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, April 24, 2020 @ 12:13:14
  Author: svenstaro
Revision: 619294

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |  194 -
 embree.patch |   86 -
 2 files changed, 140 insertions(+), 140 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-24 12:13:06 UTC (rev 619293)
+++ PKGBUILD2020-04-24 12:13:14 UTC (rev 619294)
@@ -1,97 +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.
-
-# 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-x86_64/PKGBUILD (from rev 619293, 
blender/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ 

[arch-commits] Commit in blender/repos/community-x86_64 (4 files)

2018-05-30 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, May 30, 2018 @ 19:14:58
  Author: svenstaro
Revision: 333480

archrelease: copy trunk to community-x86_64

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

-+
 PKGBUILD|  204 
 ffmpeg4.0.patch |  226 +++---
 2 files changed, 215 insertions(+), 215 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-05-30 19:14:52 UTC (rev 333479)
+++ PKGBUILD2018-05-30 19:14:58 UTC (rev 333480)
@@ -1,102 +0,0 @@
-# $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-x86_64/PKGBUILD (from rev 333479, 
blender/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-05-30 19:14:58 UTC (rev 

[arch-commits] Commit in blender/repos/community-x86_64 (4 files)

2018-05-11 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, May 11, 2018 @ 19:08:01
  Author: svenstaro
Revision: 320893

archrelease: copy trunk to community-x86_64

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

-+
 PKGBUILD|  204 
 ffmpeg4.0.patch |  226 +++---
 2 files changed, 215 insertions(+), 215 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-05-11 19:07:47 UTC (rev 320892)
+++ PKGBUILD2018-05-11 19:08:01 UTC (rev 320893)
@@ -1,102 +0,0 @@
-# $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=11
-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-x86_64/PKGBUILD (from rev 320892, 
blender/trunk/PKGBUILD)
===
--- PKGBUILD  

[arch-commits] Commit in blender/repos/community-x86_64 (4 files)

2018-01-08 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, January 8, 2018 @ 16:55:41
  Author: svenstaro
Revision: 280556

archrelease: copy trunk to community-x86_64

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

-+
 PKGBUILD|  218 +-
 cuda9.patch |   80 ++---
 2 files changed, 149 insertions(+), 149 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-08 16:55:36 UTC (rev 280555)
+++ PKGBUILD2018-01-08 16:55:41 UTC (rev 280556)
@@ -1,109 +0,0 @@
-# $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 "${pkgdir}/usr/share/blender"
-}

Copied: blender/repos/community-x86_64/PKGBUILD (from rev 280555,