[arch-commits] Commit in opensubdiv/repos (4 files)

2020-09-28 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, September 29, 2020 @ 01:42:33
  Author: svenstaro
Revision: 713655

archrelease: copy trunk to community-staging-x86_64

Added:
  opensubdiv/repos/community-staging-x86_64/
  opensubdiv/repos/community-staging-x86_64/PKGBUILD
(from rev 713654, opensubdiv/trunk/PKGBUILD)
  opensubdiv/repos/community-staging-x86_64/cuda9.patch
(from rev 713654, opensubdiv/trunk/cuda9.patch)
  opensubdiv/repos/community-staging-x86_64/python3.patch
(from rev 713654, opensubdiv/trunk/python3.patch)

---+
 PKGBUILD  |   43 +++
 cuda9.patch   |   25 ++
 python3.patch |  211 
 3 files changed, 279 insertions(+)

Copied: opensubdiv/repos/community-staging-x86_64/PKGBUILD (from rev 713654, 
opensubdiv/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-29 01:42:33 UTC (rev 713655)
@@ -0,0 +1,43 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=opensubdiv
+pkgver=3.4.3
+pkgrel=3
+pkgdesc="An Open-Source subdivision surface library"
+arch=(x86_64)
+url="http://graphics.pixar.com/opensubdiv;
+license=('APACHE')
+depends=('ptex' 'intel-tbb' 'libxcursor' 'xorg-xrandr' 'libxinerama')
+makedepends=('cmake' 'doxygen' 'glfw' 'glew' 'python' 'python-pygments' 
'python-docutils' 'opencl-headers' 'cuda' 'gcc9')
+source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz;
+python3.patch
+cuda9.patch)
+sha512sums=('44fd1361d9e7f48c3fa84f3420ed34743571220602aefb082a42f769ca5b8e9ac21907ce8714f6e3a2caadd75adae03c535a1949a8e6450dfea9ae7a2247cfc2'
+
'035a6691080e9ec1a6eb5e4a7746f3f0ba6caea4b74c1bfededdc477b701431456b026ee75dbf7ca03fabd6526f62e9181c616a62304f26e614474577b96fcc7'
+
'fe51160959f71f33e3c8008158f9f98c3c7a065b22360e7719ec1d262105b35d02c2c2f64f05acee58281c938a007a88054dcc07f1aef89908e6dbf4e3e3ab6f')
+
+prepare() {
+  cd "OpenSubdiv-${pkgver//./_}"
+
+  patch -Np1 -i "${srcdir}"/python3.patch
+  patch -Np1 -i "${srcdir}"/cuda9.patch
+  mkdir build
+}
+
+build() {
+  cd "OpenSubdiv-${pkgver//./_}"/build
+
+  cmake .. \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DCUDA_HOST_COMPILER=/usr/bin/g++ \
+  -DCMAKE_INSTALL_PREFIX=/usr
+
+  make
+}
+
+package() {
+  cd "OpenSubdiv-${pkgver//./_}"/build
+
+  DESTDIR="$pkgdir/" make install
+
+  rm -rf "${pkgdir}"/usr/bin
+}

Copied: opensubdiv/repos/community-staging-x86_64/cuda9.patch (from rev 713654, 
opensubdiv/trunk/cuda9.patch)
===
--- community-staging-x86_64/cuda9.patch(rev 0)
+++ community-staging-x86_64/cuda9.patch2020-09-29 01:42:33 UTC (rev 
713655)
@@ -0,0 +1,25 @@
+From 7b9157bca7138480c387ef3d5b69b6cf1eb498e5 Mon Sep 17 00:00:00 2001
+From: "Daniel M. Weeks" 
+Date: Fri, 15 Dec 2017 22:45:55 -0500
+Subject: [PATCH] CUDA 9 compatible gpu-architecture default
+
+---
+ CMakeLists.txt | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 4f3cd9d40..fa438b461 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -513,8 +513,10 @@ if(CUDA_FOUND)
+ if (NOT DEFINED OSD_CUDA_NVCC_FLAGS)
+ if (CUDA_VERSION_MAJOR LESS 6)
+ set( OSD_CUDA_NVCC_FLAGS --gpu-architecture compute_11 )
+-else()
++elseif (CUDA_VERSION_MAJOR LESS 9)
+ set( OSD_CUDA_NVCC_FLAGS --gpu-architecture compute_20 )
++else()
++set( OSD_CUDA_NVCC_FLAGS --gpu-architecture compute_35 )
+ endif()
+ endif()
+ endif()

Copied: opensubdiv/repos/community-staging-x86_64/python3.patch (from rev 
713654, opensubdiv/trunk/python3.patch)
===
--- community-staging-x86_64/python3.patch  (rev 0)
+++ community-staging-x86_64/python3.patch  2020-09-29 01:42:33 UTC (rev 
713655)
@@ -0,0 +1,211 @@
+diff --git a/build_scripts/build_osd.py b/build_scripts/build_osd.py
+index e8ebef88..4b2b6fb9 100644
+--- a/build_scripts/build_osd.py
 b/build_scripts/build_osd.py
+@@ -38,7 +38,7 @@ import shutil
+ import subprocess
+ import sys
+ import tarfile
+-import urllib2
++import urllib.request, urllib.error, urllib.parse
+ import zipfile
+ 
+ # Helpers for printing output
+@@ -46,26 +46,26 @@ verbosity = 1
+ 
+ def Print(msg):
+ if verbosity > 0:
+-print msg
++print(msg)
+ 
+ def PrintWarning(warning):
+ if verbosity > 0:
+-print "WARNING:", warning
++print("WARNING:", warning)
+ 
+ def PrintStatus(status):
+ if verbosity >= 1:
+-print "STATUS:", status
++print("STATUS:", status)
+ 
+ def PrintInfo(info):
+ if verbosity >= 2:
+-print "INFO:", info
++print("INFO:", 

[arch-commits] Commit in opensubdiv/repos (4 files)

2020-06-22 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 22, 2020 @ 13:02:04
  Author: svenstaro
Revision: 650513

archrelease: copy trunk to community-testing-x86_64

Added:
  opensubdiv/repos/community-testing-x86_64/
  opensubdiv/repos/community-testing-x86_64/PKGBUILD
(from rev 650512, opensubdiv/trunk/PKGBUILD)
  opensubdiv/repos/community-testing-x86_64/cuda9.patch
(from rev 650512, opensubdiv/trunk/cuda9.patch)
  opensubdiv/repos/community-testing-x86_64/python3.patch
(from rev 650512, opensubdiv/trunk/python3.patch)

---+
 PKGBUILD  |   43 +++
 cuda9.patch   |   25 ++
 python3.patch |  211 
 3 files changed, 279 insertions(+)

Copied: opensubdiv/repos/community-testing-x86_64/PKGBUILD (from rev 650512, 
opensubdiv/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-06-22 13:02:04 UTC (rev 650513)
@@ -0,0 +1,43 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=opensubdiv
+pkgver=3.4.3
+pkgrel=2
+pkgdesc="An Open-Source subdivision surface library"
+arch=(x86_64)
+url="http://graphics.pixar.com/opensubdiv;
+license=('APACHE')
+depends=('ptex' 'intel-tbb' 'libxcursor' 'xorg-xrandr' 'libxinerama')
+makedepends=('cmake' 'doxygen' 'glfw' 'glew' 'python' 'python-pygments' 
'python-docutils' 'opencl-headers' 'cuda' 'gcc9')
+source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz;
+python3.patch
+cuda9.patch)
+sha512sums=('44fd1361d9e7f48c3fa84f3420ed34743571220602aefb082a42f769ca5b8e9ac21907ce8714f6e3a2caadd75adae03c535a1949a8e6450dfea9ae7a2247cfc2'
+
'035a6691080e9ec1a6eb5e4a7746f3f0ba6caea4b74c1bfededdc477b701431456b026ee75dbf7ca03fabd6526f62e9181c616a62304f26e614474577b96fcc7'
+
'2aa815acdb873274afb5629c7604ad2586c460a32a7b141c04f71313d03c768798461439cd1b66db565170ca21c7b05a3f8456ab7635b5eb73b1762bea312f4b')
+
+prepare() {
+  cd "OpenSubdiv-${pkgver//./_}"
+
+  patch -Np1 -i "${srcdir}"/python3.patch
+  patch -Np1 -i "${srcdir}"/cuda9.patch
+  mkdir build
+}
+
+build() {
+  cd "OpenSubdiv-${pkgver//./_}"/build
+
+  cmake .. \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DCUDA_HOST_COMPILER=/usr/bin/g++-9 \
+  -DCMAKE_INSTALL_PREFIX=/usr
+
+  make
+}
+
+package() {
+  cd "OpenSubdiv-${pkgver//./_}"/build
+
+  DESTDIR="$pkgdir/" make install
+
+  rm -rf ${pkgdir}/usr/bin
+}

Copied: opensubdiv/repos/community-testing-x86_64/cuda9.patch (from rev 650512, 
opensubdiv/trunk/cuda9.patch)
===
--- community-testing-x86_64/cuda9.patch(rev 0)
+++ community-testing-x86_64/cuda9.patch2020-06-22 13:02:04 UTC (rev 
650513)
@@ -0,0 +1,25 @@
+From 7b9157bca7138480c387ef3d5b69b6cf1eb498e5 Mon Sep 17 00:00:00 2001
+From: "Daniel M. Weeks" 
+Date: Fri, 15 Dec 2017 22:45:55 -0500
+Subject: [PATCH] CUDA 9 compatible gpu-architecture default
+
+---
+ CMakeLists.txt | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 4f3cd9d40..fa438b461 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -513,8 +513,10 @@ if(CUDA_FOUND)
+ if (NOT DEFINED OSD_CUDA_NVCC_FLAGS)
+ if (CUDA_VERSION_MAJOR LESS 6)
+ set( OSD_CUDA_NVCC_FLAGS --gpu-architecture compute_11 )
+-else()
++elseif (CUDA_VERSION_MAJOR LESS 9)
+ set( OSD_CUDA_NVCC_FLAGS --gpu-architecture compute_20 )
++else()
++set( OSD_CUDA_NVCC_FLAGS --gpu-architecture compute_30 )
+ endif()
+ endif()
+ endif()

Copied: opensubdiv/repos/community-testing-x86_64/python3.patch (from rev 
650512, opensubdiv/trunk/python3.patch)
===
--- community-testing-x86_64/python3.patch  (rev 0)
+++ community-testing-x86_64/python3.patch  2020-06-22 13:02:04 UTC (rev 
650513)
@@ -0,0 +1,211 @@
+diff --git a/build_scripts/build_osd.py b/build_scripts/build_osd.py
+index e8ebef88..4b2b6fb9 100644
+--- a/build_scripts/build_osd.py
 b/build_scripts/build_osd.py
+@@ -38,7 +38,7 @@ import shutil
+ import subprocess
+ import sys
+ import tarfile
+-import urllib2
++import urllib.request, urllib.error, urllib.parse
+ import zipfile
+ 
+ # Helpers for printing output
+@@ -46,26 +46,26 @@ verbosity = 1
+ 
+ def Print(msg):
+ if verbosity > 0:
+-print msg
++print(msg)
+ 
+ def PrintWarning(warning):
+ if verbosity > 0:
+-print "WARNING:", warning
++print("WARNING:", warning)
+ 
+ def PrintStatus(status):
+ if verbosity >= 1:
+-print "STATUS:", status
++print("STATUS:", status)
+ 
+ def PrintInfo(info):
+ if verbosity >= 2:
+-print "INFO:", info
++print("INFO:", info)

[arch-commits] Commit in opensubdiv/repos (4 files)

2020-04-24 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, April 24, 2020 @ 11:59:32
  Author: svenstaro
Revision: 619291

archrelease: copy trunk to community-testing-x86_64

Added:
  opensubdiv/repos/community-testing-x86_64/
  opensubdiv/repos/community-testing-x86_64/PKGBUILD
(from rev 619290, opensubdiv/trunk/PKGBUILD)
  opensubdiv/repos/community-testing-x86_64/cuda9.patch
(from rev 619290, opensubdiv/trunk/cuda9.patch)
  opensubdiv/repos/community-testing-x86_64/python3.patch
(from rev 619290, opensubdiv/trunk/python3.patch)

---+
 PKGBUILD  |   42 +++
 cuda9.patch   |   25 ++
 python3.patch |  211 
 3 files changed, 278 insertions(+)

Copied: opensubdiv/repos/community-testing-x86_64/PKGBUILD (from rev 619290, 
opensubdiv/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-04-24 11:59:32 UTC (rev 619291)
@@ -0,0 +1,42 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=opensubdiv
+pkgver=3.4.3
+pkgrel=1
+pkgdesc="An Open-Source subdivision surface library"
+arch=(x86_64)
+url="http://graphics.pixar.com/opensubdiv;
+license=('apache')
+depends=(zlib ptex intel-tbb libxcursor xorg-xrandr libxinerama)
+makedepends=(cmake doxygen glfw glew python python-pygments python-docutils 
opencl-headers cuda)
+source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz;
+python3.patch
+cuda9.patch)
+sha512sums=('44fd1361d9e7f48c3fa84f3420ed34743571220602aefb082a42f769ca5b8e9ac21907ce8714f6e3a2caadd75adae03c535a1949a8e6450dfea9ae7a2247cfc2'
+
'035a6691080e9ec1a6eb5e4a7746f3f0ba6caea4b74c1bfededdc477b701431456b026ee75dbf7ca03fabd6526f62e9181c616a62304f26e614474577b96fcc7'
+
'2aa815acdb873274afb5629c7604ad2586c460a32a7b141c04f71313d03c768798461439cd1b66db565170ca21c7b05a3f8456ab7635b5eb73b1762bea312f4b')
+
+prepare() {
+  cd "OpenSubdiv-${pkgver//./_}"
+
+  patch -Np1 -i "${srcdir}"/python3.patch
+  patch -Np1 -i "${srcdir}"/cuda9.patch
+  mkdir build
+}
+
+build() {
+  cd "OpenSubdiv-${pkgver//./_}"/build
+
+  cmake .. \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DCMAKE_INSTALL_PREFIX=/usr
+
+  make
+}
+
+package() {
+  cd "OpenSubdiv-${pkgver//./_}"/build
+
+  DESTDIR="$pkgdir/" make install
+
+  rm -rf ${pkgdir}/usr/bin
+}

Copied: opensubdiv/repos/community-testing-x86_64/cuda9.patch (from rev 619290, 
opensubdiv/trunk/cuda9.patch)
===
--- community-testing-x86_64/cuda9.patch(rev 0)
+++ community-testing-x86_64/cuda9.patch2020-04-24 11:59:32 UTC (rev 
619291)
@@ -0,0 +1,25 @@
+From 7b9157bca7138480c387ef3d5b69b6cf1eb498e5 Mon Sep 17 00:00:00 2001
+From: "Daniel M. Weeks" 
+Date: Fri, 15 Dec 2017 22:45:55 -0500
+Subject: [PATCH] CUDA 9 compatible gpu-architecture default
+
+---
+ CMakeLists.txt | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 4f3cd9d40..fa438b461 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -513,8 +513,10 @@ if(CUDA_FOUND)
+ if (NOT DEFINED OSD_CUDA_NVCC_FLAGS)
+ if (CUDA_VERSION_MAJOR LESS 6)
+ set( OSD_CUDA_NVCC_FLAGS --gpu-architecture compute_11 )
+-else()
++elseif (CUDA_VERSION_MAJOR LESS 9)
+ set( OSD_CUDA_NVCC_FLAGS --gpu-architecture compute_20 )
++else()
++set( OSD_CUDA_NVCC_FLAGS --gpu-architecture compute_30 )
+ endif()
+ endif()
+ endif()

Copied: opensubdiv/repos/community-testing-x86_64/python3.patch (from rev 
619290, opensubdiv/trunk/python3.patch)
===
--- community-testing-x86_64/python3.patch  (rev 0)
+++ community-testing-x86_64/python3.patch  2020-04-24 11:59:32 UTC (rev 
619291)
@@ -0,0 +1,211 @@
+diff --git a/build_scripts/build_osd.py b/build_scripts/build_osd.py
+index e8ebef88..4b2b6fb9 100644
+--- a/build_scripts/build_osd.py
 b/build_scripts/build_osd.py
+@@ -38,7 +38,7 @@ import shutil
+ import subprocess
+ import sys
+ import tarfile
+-import urllib2
++import urllib.request, urllib.error, urllib.parse
+ import zipfile
+ 
+ # Helpers for printing output
+@@ -46,26 +46,26 @@ verbosity = 1
+ 
+ def Print(msg):
+ if verbosity > 0:
+-print msg
++print(msg)
+ 
+ def PrintWarning(warning):
+ if verbosity > 0:
+-print "WARNING:", warning
++print("WARNING:", warning)
+ 
+ def PrintStatus(status):
+ if verbosity >= 1:
+-print "STATUS:", status
++print("STATUS:", status)
+ 
+ def PrintInfo(info):
+ if verbosity >= 2:
+-print "INFO:", info
++print("INFO:", info)
+ 
+ def PrintCommandOutput(output):
+ if verbosity >= 3:
+ 

[arch-commits] Commit in opensubdiv/repos (4 files)

2017-08-03 Thread Felix Yan
Date: Thursday, August 3, 2017 @ 20:33:21
  Author: felixonmars
Revision: 247945

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  opensubdiv/repos/community-staging-i686/
  opensubdiv/repos/community-staging-i686/PKGBUILD
(from rev 247944, opensubdiv/trunk/PKGBUILD)
  opensubdiv/repos/community-staging-x86_64/
  opensubdiv/repos/community-staging-x86_64/PKGBUILD
(from rev 247944, opensubdiv/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   38 
 community-staging-x86_64/PKGBUILD |   38 
 2 files changed, 76 insertions(+)

Copied: opensubdiv/repos/community-staging-i686/PKGBUILD (from rev 247944, 
opensubdiv/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-08-03 20:33:21 UTC (rev 247945)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=opensubdiv
+pkgver=3.1.1
+pkgrel=2
+pkgdesc="An Open-Source subdivision surface library"
+arch=(i686 x86_64)
+url="http://graphics.pixar.com/opensubdiv;
+license=('apache')
+depends=(zlib ptex intel-tbb libxcursor xorg-xrandr libxinerama)
+makedepends=(cmake doxygen glfw glew python2 python-pygments python-docutils 
opencl-headers)
+#makedepends_x86_64=(cuda) Broken currently :/
+source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz;)
+sha512sums=('700db7e1dde3e916011721a5b42d5e32ea4ae355ab5e3e415541d62efa2059d56d5f30cef853285e95a93f3a3b5fe24a906547a52cce94d47b101ae20021d5b5')
+
+prepare() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+find . -name \*.py | xargs sed -i "s/env python/env python2/g"
+}
+
+build() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+rm -rf build
+mkdir build && cd build
+
+cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+}
+
+package() {
+cd "OpenSubdiv-${pkgver//./_}"/build
+
+make DESTDIR="$pkgdir/" install
+
+rm -rf ${pkgdir}/usr/bin
+}

Copied: opensubdiv/repos/community-staging-x86_64/PKGBUILD (from rev 247944, 
opensubdiv/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-08-03 20:33:21 UTC (rev 247945)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=opensubdiv
+pkgver=3.1.1
+pkgrel=2
+pkgdesc="An Open-Source subdivision surface library"
+arch=(i686 x86_64)
+url="http://graphics.pixar.com/opensubdiv;
+license=('apache')
+depends=(zlib ptex intel-tbb libxcursor xorg-xrandr libxinerama)
+makedepends=(cmake doxygen glfw glew python2 python-pygments python-docutils 
opencl-headers)
+#makedepends_x86_64=(cuda) Broken currently :/
+source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz;)
+sha512sums=('700db7e1dde3e916011721a5b42d5e32ea4ae355ab5e3e415541d62efa2059d56d5f30cef853285e95a93f3a3b5fe24a906547a52cce94d47b101ae20021d5b5')
+
+prepare() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+find . -name \*.py | xargs sed -i "s/env python/env python2/g"
+}
+
+build() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+rm -rf build
+mkdir build && cd build
+
+cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+}
+
+package() {
+cd "OpenSubdiv-${pkgver//./_}"/build
+
+make DESTDIR="$pkgdir/" install
+
+rm -rf ${pkgdir}/usr/bin
+}


[arch-commits] Commit in opensubdiv/repos (4 files)

2017-01-31 Thread Sven-Hendrik Haase
Date: Tuesday, January 31, 2017 @ 16:08:59
  Author: svenstaro
Revision: 209598

archrelease: copy trunk to community-i686, community-x86_64

Added:
  opensubdiv/repos/community-i686/PKGBUILD
(from rev 209597, opensubdiv/trunk/PKGBUILD)
  opensubdiv/repos/community-x86_64/PKGBUILD
(from rev 209597, opensubdiv/trunk/PKGBUILD)
Deleted:
  opensubdiv/repos/community-i686/PKGBUILD
  opensubdiv/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   76 
 community-i686/PKGBUILD   |   38 --
 community-x86_64/PKGBUILD |   38 --
 3 files changed, 76 insertions(+), 76 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-31 16:08:44 UTC (rev 209597)
+++ community-i686/PKGBUILD 2017-01-31 16:08:59 UTC (rev 209598)
@@ -1,38 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgname=opensubdiv
-pkgver=3.1.0
-pkgrel=1
-pkgdesc="An Open-Source subdivision surface library"
-arch=(i686 x86_64)
-url="http://graphics.pixar.com/opensubdiv;
-license=('apache')
-depends=(zlib ptex intel-tbb libxcursor xorg-xrandr libxinerama)
-makedepends=(cmake doxygen glfw glew python2 python-pygments python-docutils 
opencl-headers)
-#makedepends_x86_64=(cuda) Broken currently :/
-source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz;)
-md5sums=('5a5357dff420035ff60f0a7b1e6cbe07')
-
-prepare() {
-cd "OpenSubdiv-${pkgver//./_}"
-
-find . -name \*.py | xargs sed -i "s/env python/env python2/g"
-}
-
-build() {
-cd "OpenSubdiv-${pkgver//./_}"
-
-rm -rf build
-mkdir build && cd build
-
-cmake .. \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-}
-
-package() {
-cd "OpenSubdiv-${pkgver//./_}"/build
-
-make DESTDIR="$pkgdir/" install
-
-rm -rf ${pkgdir}/usr/bin
-}

Copied: opensubdiv/repos/community-i686/PKGBUILD (from rev 209597, 
opensubdiv/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-31 16:08:59 UTC (rev 209598)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=opensubdiv
+pkgver=3.1.1
+pkgrel=1
+pkgdesc="An Open-Source subdivision surface library"
+arch=(i686 x86_64)
+url="http://graphics.pixar.com/opensubdiv;
+license=('apache')
+depends=(zlib ptex intel-tbb libxcursor xorg-xrandr libxinerama)
+makedepends=(cmake doxygen glfw glew python2 python-pygments python-docutils 
opencl-headers)
+#makedepends_x86_64=(cuda) Broken currently :/
+source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz;)
+sha512sums=('700db7e1dde3e916011721a5b42d5e32ea4ae355ab5e3e415541d62efa2059d56d5f30cef853285e95a93f3a3b5fe24a906547a52cce94d47b101ae20021d5b5')
+
+prepare() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+find . -name \*.py | xargs sed -i "s/env python/env python2/g"
+}
+
+build() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+rm -rf build
+mkdir build && cd build
+
+cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+}
+
+package() {
+cd "OpenSubdiv-${pkgver//./_}"/build
+
+make DESTDIR="$pkgdir/" install
+
+rm -rf ${pkgdir}/usr/bin
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-01-31 16:08:44 UTC (rev 209597)
+++ community-x86_64/PKGBUILD   2017-01-31 16:08:59 UTC (rev 209598)
@@ -1,38 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgname=opensubdiv
-pkgver=3.1.0
-pkgrel=1
-pkgdesc="An Open-Source subdivision surface library"
-arch=(i686 x86_64)
-url="http://graphics.pixar.com/opensubdiv;
-license=('apache')
-depends=(zlib ptex intel-tbb libxcursor xorg-xrandr libxinerama)
-makedepends=(cmake doxygen glfw glew python2 python-pygments python-docutils 
opencl-headers)
-#makedepends_x86_64=(cuda) Broken currently :/
-source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz;)
-md5sums=('5a5357dff420035ff60f0a7b1e6cbe07')
-
-prepare() {
-cd "OpenSubdiv-${pkgver//./_}"
-
-find . -name \*.py | xargs sed -i "s/env python/env python2/g"
-}
-
-build() {
-cd "OpenSubdiv-${pkgver//./_}"
-
-rm -rf build
-mkdir build && cd build
-
-cmake .. \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-}
-
-package() {
-cd "OpenSubdiv-${pkgver//./_}"/build
-
-make DESTDIR="$pkgdir/" install
-
-rm -rf ${pkgdir}/usr/bin
-}

Copied: opensubdiv/repos/community-x86_64/PKGBUILD (from rev 209597, 
opensubdiv/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ 

[arch-commits] Commit in opensubdiv/repos (4 files)

2016-11-13 Thread Sven-Hendrik Haase
Date: Monday, November 14, 2016 @ 01:20:51
  Author: svenstaro
Revision: 195552

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  opensubdiv/repos/community-staging-i686/
  opensubdiv/repos/community-staging-i686/PKGBUILD
(from rev 195551, opensubdiv/trunk/PKGBUILD)
  opensubdiv/repos/community-staging-x86_64/
  opensubdiv/repos/community-staging-x86_64/PKGBUILD
(from rev 195551, opensubdiv/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   38 
 community-staging-x86_64/PKGBUILD |   38 
 2 files changed, 76 insertions(+)

Copied: opensubdiv/repos/community-staging-i686/PKGBUILD (from rev 195551, 
opensubdiv/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-11-14 01:20:51 UTC (rev 195552)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=opensubdiv
+pkgver=3.1.0
+pkgrel=1
+pkgdesc="An Open-Source subdivision surface library"
+arch=(i686 x86_64)
+url="http://graphics.pixar.com/opensubdiv;
+license=('apache')
+depends=(zlib ptex intel-tbb libxcursor xorg-xrandr libxinerama)
+makedepends=(cmake doxygen glfw glew python2 python-pygments python-docutils 
opencl-headers)
+#makedepends_x86_64=(cuda) Broken currently :/
+source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz;)
+md5sums=('5a5357dff420035ff60f0a7b1e6cbe07')
+
+prepare() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+find . -name \*.py | xargs sed -i "s/env python/env python2/g"
+}
+
+build() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+rm -rf build
+mkdir build && cd build
+
+cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+}
+
+package() {
+cd "OpenSubdiv-${pkgver//./_}"/build
+
+make DESTDIR="$pkgdir/" install
+
+rm -rf ${pkgdir}/usr/bin
+}

Copied: opensubdiv/repos/community-staging-x86_64/PKGBUILD (from rev 195551, 
opensubdiv/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-11-14 01:20:51 UTC (rev 195552)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=opensubdiv
+pkgver=3.1.0
+pkgrel=1
+pkgdesc="An Open-Source subdivision surface library"
+arch=(i686 x86_64)
+url="http://graphics.pixar.com/opensubdiv;
+license=('apache')
+depends=(zlib ptex intel-tbb libxcursor xorg-xrandr libxinerama)
+makedepends=(cmake doxygen glfw glew python2 python-pygments python-docutils 
opencl-headers)
+#makedepends_x86_64=(cuda) Broken currently :/
+source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz;)
+md5sums=('5a5357dff420035ff60f0a7b1e6cbe07')
+
+prepare() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+find . -name \*.py | xargs sed -i "s/env python/env python2/g"
+}
+
+build() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+rm -rf build
+mkdir build && cd build
+
+cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+}
+
+package() {
+cd "OpenSubdiv-${pkgver//./_}"/build
+
+make DESTDIR="$pkgdir/" install
+
+rm -rf ${pkgdir}/usr/bin
+}


[arch-commits] Commit in opensubdiv/repos (4 files)

2016-08-13 Thread Sven-Hendrik Haase
Date: Sunday, August 14, 2016 @ 01:44:34
  Author: svenstaro
Revision: 186722

archrelease: copy trunk to community-i686, community-x86_64

Added:
  opensubdiv/repos/community-i686/PKGBUILD
(from rev 186721, opensubdiv/trunk/PKGBUILD)
  opensubdiv/repos/community-x86_64/PKGBUILD
(from rev 186721, opensubdiv/trunk/PKGBUILD)
Deleted:
  opensubdiv/repos/community-i686/PKGBUILD
  opensubdiv/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   76 
 community-i686/PKGBUILD   |   38 --
 community-x86_64/PKGBUILD |   38 --
 3 files changed, 76 insertions(+), 76 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-08-14 01:44:30 UTC (rev 186721)
+++ community-i686/PKGBUILD 2016-08-14 01:44:34 UTC (rev 186722)
@@ -1,38 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgname=opensubdiv
-pkgver=3.0.2
-pkgrel=5
-pkgdesc="An Open-Source subdivision surface library"
-arch=(i686 x86_64)
-url="http://graphics.pixar.com/opensubdiv;
-license=('apache')
-depends=(zlib ptex intel-tbb libxcursor xorg-xrandr libxinerama)
-makedepends=(cmake doxygen glfw glew python2 python-pygments python-docutils 
opencl-headers)
-#makedepends_x86_64=(cuda) Broken currently :/
-source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz;)
-md5sums=('acee9de1cd966ad3b4e7297858cff6d6')
-
-prepare() {
-cd "OpenSubdiv-${pkgver//./_}"
-
-find . -name \*.py | xargs sed -i "s/env python/env python2/g"
-}
-
-build() {
-cd "OpenSubdiv-${pkgver//./_}"
-
-rm -rf build
-mkdir build && cd build
-
-cmake .. \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-}
-
-package() {
-cd "OpenSubdiv-${pkgver//./_}"/build
-
-make DESTDIR="$pkgdir/" install
-
-rm -rf ${pkgdir}/usr/bin
-}

Copied: opensubdiv/repos/community-i686/PKGBUILD (from rev 186721, 
opensubdiv/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-08-14 01:44:34 UTC (rev 186722)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=opensubdiv
+pkgver=3.0.5
+pkgrel=1
+pkgdesc="An Open-Source subdivision surface library"
+arch=(i686 x86_64)
+url="http://graphics.pixar.com/opensubdiv;
+license=('apache')
+depends=(zlib ptex intel-tbb libxcursor xorg-xrandr libxinerama)
+makedepends=(cmake doxygen glfw glew python2 python-pygments python-docutils 
opencl-headers)
+#makedepends_x86_64=(cuda) Broken currently :/
+source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz;)
+md5sums=('f16fa309b3fa3d400e6dcbf59d316dfe')
+
+prepare() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+find . -name \*.py | xargs sed -i "s/env python/env python2/g"
+}
+
+build() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+rm -rf build
+mkdir build && cd build
+
+cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+}
+
+package() {
+cd "OpenSubdiv-${pkgver//./_}"/build
+
+make DESTDIR="$pkgdir/" install
+
+rm -rf ${pkgdir}/usr/bin
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-08-14 01:44:30 UTC (rev 186721)
+++ community-x86_64/PKGBUILD   2016-08-14 01:44:34 UTC (rev 186722)
@@ -1,38 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgname=opensubdiv
-pkgver=3.0.2
-pkgrel=5
-pkgdesc="An Open-Source subdivision surface library"
-arch=(i686 x86_64)
-url="http://graphics.pixar.com/opensubdiv;
-license=('apache')
-depends=(zlib ptex intel-tbb libxcursor xorg-xrandr libxinerama)
-makedepends=(cmake doxygen glfw glew python2 python-pygments python-docutils 
opencl-headers)
-#makedepends_x86_64=(cuda) Broken currently :/
-source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz;)
-md5sums=('acee9de1cd966ad3b4e7297858cff6d6')
-
-prepare() {
-cd "OpenSubdiv-${pkgver//./_}"
-
-find . -name \*.py | xargs sed -i "s/env python/env python2/g"
-}
-
-build() {
-cd "OpenSubdiv-${pkgver//./_}"
-
-rm -rf build
-mkdir build && cd build
-
-cmake .. \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-}
-
-package() {
-cd "OpenSubdiv-${pkgver//./_}"/build
-
-make DESTDIR="$pkgdir/" install
-
-rm -rf ${pkgdir}/usr/bin
-}

Copied: opensubdiv/repos/community-x86_64/PKGBUILD (from rev 186721, 
opensubdiv/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-08-14 01:44:34 UTC (rev 186722)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 

[arch-commits] Commit in opensubdiv/repos (4 files)

2016-08-04 Thread Andreas Radke
Date: Thursday, August 4, 2016 @ 15:37:32
  Author: andyrtr
Revision: 185064

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  opensubdiv/repos/community-staging-i686/
  opensubdiv/repos/community-staging-i686/PKGBUILD
(from rev 185063, opensubdiv/trunk/PKGBUILD)
  opensubdiv/repos/community-staging-x86_64/
  opensubdiv/repos/community-staging-x86_64/PKGBUILD
(from rev 185063, opensubdiv/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   38 
 community-staging-x86_64/PKGBUILD |   38 
 2 files changed, 76 insertions(+)

Copied: opensubdiv/repos/community-staging-i686/PKGBUILD (from rev 185063, 
opensubdiv/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-08-04 15:37:32 UTC (rev 185064)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=opensubdiv
+pkgver=3.0.2
+pkgrel=5
+pkgdesc="An Open-Source subdivision surface library"
+arch=(i686 x86_64)
+url="http://graphics.pixar.com/opensubdiv;
+license=('apache')
+depends=(zlib ptex intel-tbb libxcursor xorg-xrandr libxinerama)
+makedepends=(cmake doxygen glfw glew python2 python-pygments python-docutils 
opencl-headers)
+#makedepends_x86_64=(cuda) Broken currently :/
+source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz;)
+md5sums=('acee9de1cd966ad3b4e7297858cff6d6')
+
+prepare() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+find . -name \*.py | xargs sed -i "s/env python/env python2/g"
+}
+
+build() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+rm -rf build
+mkdir build && cd build
+
+cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+}
+
+package() {
+cd "OpenSubdiv-${pkgver//./_}"/build
+
+make DESTDIR="$pkgdir/" install
+
+rm -rf ${pkgdir}/usr/bin
+}

Copied: opensubdiv/repos/community-staging-x86_64/PKGBUILD (from rev 185063, 
opensubdiv/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-08-04 15:37:32 UTC (rev 185064)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=opensubdiv
+pkgver=3.0.2
+pkgrel=5
+pkgdesc="An Open-Source subdivision surface library"
+arch=(i686 x86_64)
+url="http://graphics.pixar.com/opensubdiv;
+license=('apache')
+depends=(zlib ptex intel-tbb libxcursor xorg-xrandr libxinerama)
+makedepends=(cmake doxygen glfw glew python2 python-pygments python-docutils 
opencl-headers)
+#makedepends_x86_64=(cuda) Broken currently :/
+source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz;)
+md5sums=('acee9de1cd966ad3b4e7297858cff6d6')
+
+prepare() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+find . -name \*.py | xargs sed -i "s/env python/env python2/g"
+}
+
+build() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+rm -rf build
+mkdir build && cd build
+
+cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+}
+
+package() {
+cd "OpenSubdiv-${pkgver//./_}"/build
+
+make DESTDIR="$pkgdir/" install
+
+rm -rf ${pkgdir}/usr/bin
+}


[arch-commits] Commit in opensubdiv/repos (4 files)

2016-06-12 Thread Sven-Hendrik Haase
Date: Monday, June 13, 2016 @ 01:16:38
  Author: svenstaro
Revision: 179747

archrelease: copy trunk to community-i686, community-x86_64

Added:
  opensubdiv/repos/community-i686/PKGBUILD
(from rev 179746, opensubdiv/trunk/PKGBUILD)
  opensubdiv/repos/community-x86_64/PKGBUILD
(from rev 179746, opensubdiv/trunk/PKGBUILD)
Deleted:
  opensubdiv/repos/community-i686/PKGBUILD
  opensubdiv/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   76 
 community-i686/PKGBUILD   |   38 --
 community-x86_64/PKGBUILD |   38 --
 3 files changed, 76 insertions(+), 76 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-06-12 23:16:21 UTC (rev 179746)
+++ community-i686/PKGBUILD 2016-06-12 23:16:38 UTC (rev 179747)
@@ -1,38 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgname=opensubdiv
-pkgver=3.0.2
-pkgrel=3
-pkgdesc="An Open-Source subdivision surface library"
-arch=(i686 x86_64)
-url="http://graphics.pixar.com/opensubdiv;
-license=('apache')
-depends=(zlib ptex intel-tbb)
-makedepends=(cmake doxygen glfw glew python2 python-pygments python-docutils 
opencl-headers)
-#makedepends_x86_64=(cuda) Broken currently :/
-source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz;)
-md5sums=('acee9de1cd966ad3b4e7297858cff6d6')
-
-prepare() {
-cd "OpenSubdiv-${pkgver//./_}"
-
-find . -name \*.py | xargs sed -i "s/env python/env python2/g"
-}
-
-build() {
-cd "OpenSubdiv-${pkgver//./_}"
-
-rm -rf build
-mkdir build && cd build
-
-cmake .. \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-}
-
-package() {
-cd "OpenSubdiv-${pkgver//./_}"/build
-
-make DESTDIR="$pkgdir/" install
-
-rm -rf ${pkgdir}/usr/bin
-}

Copied: opensubdiv/repos/community-i686/PKGBUILD (from rev 179746, 
opensubdiv/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-06-12 23:16:38 UTC (rev 179747)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=opensubdiv
+pkgver=3.0.2
+pkgrel=4
+pkgdesc="An Open-Source subdivision surface library"
+arch=(i686 x86_64)
+url="http://graphics.pixar.com/opensubdiv;
+license=('apache')
+depends=(zlib ptex intel-tbb libxcursor xorg-xrandr libxinerama)
+makedepends=(cmake doxygen glfw glew python2 python-pygments python-docutils 
opencl-headers)
+#makedepends_x86_64=(cuda) Broken currently :/
+source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz;)
+md5sums=('acee9de1cd966ad3b4e7297858cff6d6')
+
+prepare() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+find . -name \*.py | xargs sed -i "s/env python/env python2/g"
+}
+
+build() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+rm -rf build
+mkdir build && cd build
+
+cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+}
+
+package() {
+cd "OpenSubdiv-${pkgver//./_}"/build
+
+make DESTDIR="$pkgdir/" install
+
+rm -rf ${pkgdir}/usr/bin
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-06-12 23:16:21 UTC (rev 179746)
+++ community-x86_64/PKGBUILD   2016-06-12 23:16:38 UTC (rev 179747)
@@ -1,38 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgname=opensubdiv
-pkgver=3.0.2
-pkgrel=3
-pkgdesc="An Open-Source subdivision surface library"
-arch=(i686 x86_64)
-url="http://graphics.pixar.com/opensubdiv;
-license=('apache')
-depends=(zlib ptex intel-tbb)
-makedepends=(cmake doxygen glfw glew python2 python-pygments python-docutils 
opencl-headers)
-#makedepends_x86_64=(cuda) Broken currently :/
-source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz;)
-md5sums=('acee9de1cd966ad3b4e7297858cff6d6')
-
-prepare() {
-cd "OpenSubdiv-${pkgver//./_}"
-
-find . -name \*.py | xargs sed -i "s/env python/env python2/g"
-}
-
-build() {
-cd "OpenSubdiv-${pkgver//./_}"
-
-rm -rf build
-mkdir build && cd build
-
-cmake .. \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-}
-
-package() {
-cd "OpenSubdiv-${pkgver//./_}"/build
-
-make DESTDIR="$pkgdir/" install
-
-rm -rf ${pkgdir}/usr/bin
-}

Copied: opensubdiv/repos/community-x86_64/PKGBUILD (from rev 179746, 
opensubdiv/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-06-12 23:16:38 UTC (rev 179747)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=opensubdiv
+pkgver=3.0.2
+pkgrel=4

[arch-commits] Commit in opensubdiv/repos (4 files)

2015-12-06 Thread Evangelos Foutras
Date: Monday, December 7, 2015 @ 06:27:08
  Author: foutrelis
Revision: 149586

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  opensubdiv/repos/community-staging-i686/
  opensubdiv/repos/community-staging-i686/PKGBUILD
(from rev 149585, opensubdiv/trunk/PKGBUILD)
  opensubdiv/repos/community-staging-x86_64/
  opensubdiv/repos/community-staging-x86_64/PKGBUILD
(from rev 149585, opensubdiv/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   38 
 community-staging-x86_64/PKGBUILD |   38 
 2 files changed, 76 insertions(+)

Copied: opensubdiv/repos/community-staging-i686/PKGBUILD (from rev 149585, 
opensubdiv/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-07 05:27:08 UTC (rev 149586)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=opensubdiv
+pkgver=3.0.2
+pkgrel=3
+pkgdesc="An Open-Source subdivision surface library"
+arch=(i686 x86_64)
+url="http://graphics.pixar.com/opensubdiv;
+license=('apache')
+depends=(zlib ptex intel-tbb)
+makedepends=(cmake doxygen glfw glew python2 python-pygments python-docutils 
opencl-headers)
+#makedepends_x86_64=(cuda) Broken currently :/
+source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz;)
+md5sums=('acee9de1cd966ad3b4e7297858cff6d6')
+
+prepare() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+find . -name \*.py | xargs sed -i "s/env python/env python2/g"
+}
+
+build() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+rm -rf build
+mkdir build && cd build
+
+cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+}
+
+package() {
+cd "OpenSubdiv-${pkgver//./_}"/build
+
+make DESTDIR="$pkgdir/" install
+
+rm -rf ${pkgdir}/usr/bin
+}

Copied: opensubdiv/repos/community-staging-x86_64/PKGBUILD (from rev 149585, 
opensubdiv/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-07 05:27:08 UTC (rev 149586)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=opensubdiv
+pkgver=3.0.2
+pkgrel=3
+pkgdesc="An Open-Source subdivision surface library"
+arch=(i686 x86_64)
+url="http://graphics.pixar.com/opensubdiv;
+license=('apache')
+depends=(zlib ptex intel-tbb)
+makedepends=(cmake doxygen glfw glew python2 python-pygments python-docutils 
opencl-headers)
+#makedepends_x86_64=(cuda) Broken currently :/
+source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz;)
+md5sums=('acee9de1cd966ad3b4e7297858cff6d6')
+
+prepare() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+find . -name \*.py | xargs sed -i "s/env python/env python2/g"
+}
+
+build() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+rm -rf build
+mkdir build && cd build
+
+cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+}
+
+package() {
+cd "OpenSubdiv-${pkgver//./_}"/build
+
+make DESTDIR="$pkgdir/" install
+
+rm -rf ${pkgdir}/usr/bin
+}


[arch-commits] Commit in opensubdiv/repos (4 files)

2015-09-28 Thread Evangelos Foutras
Date: Monday, September 28, 2015 @ 22:56:50
  Author: foutrelis
Revision: 142156

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  opensubdiv/repos/community-staging-i686/
  opensubdiv/repos/community-staging-i686/PKGBUILD
(from rev 142155, opensubdiv/trunk/PKGBUILD)
  opensubdiv/repos/community-staging-x86_64/
  opensubdiv/repos/community-staging-x86_64/PKGBUILD
(from rev 142155, opensubdiv/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   38 
 community-staging-x86_64/PKGBUILD |   38 
 2 files changed, 76 insertions(+)

Copied: opensubdiv/repos/community-staging-i686/PKGBUILD (from rev 142155, 
opensubdiv/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-28 20:56:50 UTC (rev 142156)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=opensubdiv
+pkgver=3.0.2
+pkgrel=2
+pkgdesc="An Open-Source subdivision surface library"
+arch=(i686 x86_64)
+url="http://graphics.pixar.com/opensubdiv;
+license=('apache')
+depends=(zlib ptex intel-tbb)
+makedepends=(cmake doxygen glfw glew python2 python-pygments python-docutils 
opencl-headers)
+#makedepends_x86_64=(cuda) Broken currently :/
+source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz;)
+md5sums=('acee9de1cd966ad3b4e7297858cff6d6')
+
+prepare() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+find . -name \*.py | xargs sed -i "s/env python/env python2/g"
+}
+
+build() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+rm -rf build
+mkdir build && cd build
+
+cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+}
+
+package() {
+cd "OpenSubdiv-${pkgver//./_}"/build
+
+make DESTDIR="$pkgdir/" install
+
+rm -rf ${pkgdir}/usr/bin
+}

Copied: opensubdiv/repos/community-staging-x86_64/PKGBUILD (from rev 142155, 
opensubdiv/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-09-28 20:56:50 UTC (rev 142156)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=opensubdiv
+pkgver=3.0.2
+pkgrel=2
+pkgdesc="An Open-Source subdivision surface library"
+arch=(i686 x86_64)
+url="http://graphics.pixar.com/opensubdiv;
+license=('apache')
+depends=(zlib ptex intel-tbb)
+makedepends=(cmake doxygen glfw glew python2 python-pygments python-docutils 
opencl-headers)
+#makedepends_x86_64=(cuda) Broken currently :/
+source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz;)
+md5sums=('acee9de1cd966ad3b4e7297858cff6d6')
+
+prepare() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+find . -name \*.py | xargs sed -i "s/env python/env python2/g"
+}
+
+build() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+rm -rf build
+mkdir build && cd build
+
+cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+}
+
+package() {
+cd "OpenSubdiv-${pkgver//./_}"/build
+
+make DESTDIR="$pkgdir/" install
+
+rm -rf ${pkgdir}/usr/bin
+}


[arch-commits] Commit in opensubdiv/repos (4 files)

2015-09-25 Thread Sven-Hendrik Haase
Date: Saturday, September 26, 2015 @ 03:54:06
  Author: svenstaro
Revision: 141621

archrelease: copy trunk to community-i686, community-x86_64

Added:
  opensubdiv/repos/community-i686/
  opensubdiv/repos/community-i686/PKGBUILD
(from rev 141620, opensubdiv/trunk/PKGBUILD)
  opensubdiv/repos/community-x86_64/
  opensubdiv/repos/community-x86_64/PKGBUILD
(from rev 141620, opensubdiv/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   38 ++
 community-x86_64/PKGBUILD |   38 ++
 2 files changed, 76 insertions(+)

Copied: opensubdiv/repos/community-i686/PKGBUILD (from rev 141620, 
opensubdiv/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-26 01:54:06 UTC (rev 141621)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=opensubdiv
+pkgver=3.0.2
+pkgrel=1
+pkgdesc="An Open-Source subdivision surface library"
+arch=(i686 x86_64)
+url="http://graphics.pixar.com/opensubdiv;
+license=('apache')
+depends=(zlib ptex intel-tbb)
+makedepends=(cmake doxygen glfw glew python2 python-pygments python-docutils 
opencl-headers)
+#makedepends_x86_64=(cuda) Broken currently :/
+source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz;)
+md5sums=('acee9de1cd966ad3b4e7297858cff6d6')
+
+prepare() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+find . -name \*.py | xargs sed -i "s/env python/env python2/g"
+}
+
+build() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+rm -rf build
+mkdir build && cd build
+
+cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+}
+
+package() {
+cd "OpenSubdiv-${pkgver//./_}"/build
+
+make DESTDIR="$pkgdir/" install
+
+rm -rf ${pkgdir}/usr/bin
+}

Copied: opensubdiv/repos/community-x86_64/PKGBUILD (from rev 141620, 
opensubdiv/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-09-26 01:54:06 UTC (rev 141621)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=opensubdiv
+pkgver=3.0.2
+pkgrel=1
+pkgdesc="An Open-Source subdivision surface library"
+arch=(i686 x86_64)
+url="http://graphics.pixar.com/opensubdiv;
+license=('apache')
+depends=(zlib ptex intel-tbb)
+makedepends=(cmake doxygen glfw glew python2 python-pygments python-docutils 
opencl-headers)
+#makedepends_x86_64=(cuda) Broken currently :/
+source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz;)
+md5sums=('acee9de1cd966ad3b4e7297858cff6d6')
+
+prepare() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+find . -name \*.py | xargs sed -i "s/env python/env python2/g"
+}
+
+build() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+rm -rf build
+mkdir build && cd build
+
+cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+}
+
+package() {
+cd "OpenSubdiv-${pkgver//./_}"/build
+
+make DESTDIR="$pkgdir/" install
+
+rm -rf ${pkgdir}/usr/bin
+}