[arch-commits] Commit in openimageio/repos (10 files)

2017-01-02 Thread Antonio Rojas
Date: Monday, January 2, 2017 @ 11:19:10
  Author: arojas
Revision: 204279

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

Added:
  openimageio/repos/community-staging-i686/
  openimageio/repos/community-staging-i686/PKGBUILD
(from rev 204278, openimageio/trunk/PKGBUILD)
  openimageio/repos/community-staging-i686/fix-compiler-warning.patch
(from rev 204278, openimageio/trunk/fix-compiler-warning.patch)
  openimageio/repos/community-staging-i686/stdmath.patch
(from rev 204278, openimageio/trunk/stdmath.patch)
  openimageio/repos/community-staging-i686/ustring-cxx11-std-string.patch
(from rev 204278, openimageio/trunk/ustring-cxx11-std-string.patch)
  openimageio/repos/community-staging-x86_64/
  openimageio/repos/community-staging-x86_64/PKGBUILD
(from rev 204278, openimageio/trunk/PKGBUILD)
  openimageio/repos/community-staging-x86_64/fix-compiler-warning.patch
(from rev 204278, openimageio/trunk/fix-compiler-warning.patch)
  openimageio/repos/community-staging-x86_64/stdmath.patch
(from rev 204278, openimageio/trunk/stdmath.patch)
  openimageio/repos/community-staging-x86_64/ustring-cxx11-std-string.patch
(from rev 204278, openimageio/trunk/ustring-cxx11-std-string.patch)

-+
 community-staging-i686/PKGBUILD |   45 ++
 community-staging-i686/fix-compiler-warning.patch   |   22 ++
 community-staging-i686/stdmath.patch|   18 +
 community-staging-i686/ustring-cxx11-std-string.patch   |   35 ++
 community-staging-x86_64/PKGBUILD   |   45 ++
 community-staging-x86_64/fix-compiler-warning.patch |   22 ++
 community-staging-x86_64/stdmath.patch  |   18 +
 community-staging-x86_64/ustring-cxx11-std-string.patch |   35 ++
 8 files changed, 240 insertions(+)

Copied: openimageio/repos/community-staging-i686/PKGBUILD (from rev 204278, 
openimageio/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-01-02 11:19:10 UTC (rev 204279)
@@ -0,0 +1,45 @@
+# $Id$
+# Contributor: SpepS 
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=openimageio
+pkgver=1.6.14
+pkgrel=5
+pkgdesc="A library for reading and writing images, including classes, 
utilities, and applications"
+arch=(i686 x86_64)
+url="http://www.openimageio.org/;
+license=('custom')
+depends=('openexr' 'boost-libs' 'jasper' 'glew' 'libtiff' 'opencolorio' 
'intel-tbb' 'openssl')
+makedepends=('cmake' 'qt4' 'python2' 'boost' 'mesa' 'git')
+optdepends=('qt4: iv image viewer'
+'python2: bindings support')
+source=(git+git://github.com/OpenImageIO/oiio.git#tag=Release-${pkgver})
+md5sums=('SKIP')
+
+build() {
+  cd oiio
+
+  [[ -d build ]] && rm -r build
+  mkdir build && cd build
+
+  # Python is currently broken :(
+  cmake .. \
+  -DUSE_PYTHON=OFF \
+  -DUSE_PYTHON3=OFF \
+  -DUSE_OPENSSL=ON \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DPYLIB_INSTALL_DIR=lib/python2.7/site-packages \
+  -DOIIO_BUILD_TESTS=ON \
+  -DOIIO_BUILD_TOOLS=ON
+  make
+}
+
+package() {
+  cd oiio/build
+
+  make DESTDIR="$pkgdir" install
+
+  # license
+  cd ..
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: openimageio/repos/community-staging-i686/fix-compiler-warning.patch 
(from rev 204278, openimageio/trunk/fix-compiler-warning.patch)
===
--- community-staging-i686/fix-compiler-warning.patch   
(rev 0)
+++ community-staging-i686/fix-compiler-warning.patch   2017-01-02 11:19:10 UTC 
(rev 204279)
@@ -0,0 +1,22 @@
+From 4e3371d2e37512c5fa8b1f297ad9af52417fec9e Mon Sep 17 00:00:00 2001
+From: Larry Gritz 
+Date: Wed, 11 Feb 2015 15:27:40 -0800
+Subject: [PATCH] Fix compiler warning about unused variable
+
+---
+ src/ptex.imageio/ptex/PtexHalf.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/ptex.imageio/ptex/PtexHalf.cpp 
b/src/ptex.imageio/ptex/PtexHalf.cpp
+index a880971..3c17369 100644
+--- a/src/ptex.imageio/ptex/PtexHalf.cpp
 b/src/ptex.imageio/ptex/PtexHalf.cpp
+@@ -80,7 +80,7 @@ static bool PtexHalfInit()
+ return 1;
+ }
+ 
+-static bool PtexHalfInitialized = PtexHalfInit();
++bool PtexHalfInitialized = PtexHalfInit();
+ 
+ 
+ /** Handle exceptional cases for half-to-float conversion */

Copied: openimageio/repos/community-staging-i686/stdmath.patch (from rev 
204278, openimageio/trunk/stdmath.patch)
===
--- community-staging-i686/stdmath.patch(rev 0)
+++ community-staging-i686/stdmath.patch2017-01-02 11:19:10 UTC (rev 
204279)
@@ -0,0 +1,18 @@

[arch-commits] Commit in openimageio/repos (10 files)

2016-10-09 Thread Bartłomiej Piotrowski
Date: Sunday, October 9, 2016 @ 22:28:12
  Author: bpiotrowski
Revision: 191758

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

Added:
  openimageio/repos/community-staging-i686/
  openimageio/repos/community-staging-i686/PKGBUILD
(from rev 191757, openimageio/trunk/PKGBUILD)
  openimageio/repos/community-staging-i686/fix-compiler-warning.patch
(from rev 191757, openimageio/trunk/fix-compiler-warning.patch)
  openimageio/repos/community-staging-i686/stdmath.patch
(from rev 191757, openimageio/trunk/stdmath.patch)
  openimageio/repos/community-staging-i686/ustring-cxx11-std-string.patch
(from rev 191757, openimageio/trunk/ustring-cxx11-std-string.patch)
  openimageio/repos/community-staging-x86_64/
  openimageio/repos/community-staging-x86_64/PKGBUILD
(from rev 191757, openimageio/trunk/PKGBUILD)
  openimageio/repos/community-staging-x86_64/fix-compiler-warning.patch
(from rev 191757, openimageio/trunk/fix-compiler-warning.patch)
  openimageio/repos/community-staging-x86_64/stdmath.patch
(from rev 191757, openimageio/trunk/stdmath.patch)
  openimageio/repos/community-staging-x86_64/ustring-cxx11-std-string.patch
(from rev 191757, openimageio/trunk/ustring-cxx11-std-string.patch)

-+
 community-staging-i686/PKGBUILD |   45 ++
 community-staging-i686/fix-compiler-warning.patch   |   22 ++
 community-staging-i686/stdmath.patch|   18 +
 community-staging-i686/ustring-cxx11-std-string.patch   |   35 ++
 community-staging-x86_64/PKGBUILD   |   45 ++
 community-staging-x86_64/fix-compiler-warning.patch |   22 ++
 community-staging-x86_64/stdmath.patch  |   18 +
 community-staging-x86_64/ustring-cxx11-std-string.patch |   35 ++
 8 files changed, 240 insertions(+)

Copied: openimageio/repos/community-staging-i686/PKGBUILD (from rev 191757, 
openimageio/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-09 22:28:12 UTC (rev 191758)
@@ -0,0 +1,45 @@
+# $Id$
+# Contributor: SpepS 
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=openimageio
+pkgver=1.6.14
+pkgrel=4
+pkgdesc="A library for reading and writing images, including classes, 
utilities, and applications"
+arch=(i686 x86_64)
+url="http://www.openimageio.org/;
+license=('custom')
+depends=('openexr' 'boost-libs' 'jasper' 'glew' 'libtiff' 'opencolorio' 
'intel-tbb' 'openssl')
+makedepends=('cmake' 'qt4' 'python2' 'boost' 'mesa' 'git')
+optdepends=('qt4: iv image viewer'
+'python2: bindings support')
+source=(git+git://github.com/OpenImageIO/oiio.git#tag=Release-${pkgver})
+md5sums=('SKIP')
+
+build() {
+  cd oiio
+
+  [[ -d build ]] && rm -r build
+  mkdir build && cd build
+
+  # Python is currently broken :(
+  cmake .. \
+  -DUSE_PYTHON=OFF \
+  -DUSE_PYTHON3=OFF \
+  -DUSE_OPENSSL=ON \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DPYLIB_INSTALL_DIR=lib/python2.7/site-packages \
+  -DOIIO_BUILD_TESTS=ON \
+  -DOIIO_BUILD_TOOLS=ON
+  make
+}
+
+package() {
+  cd oiio/build
+
+  make DESTDIR="$pkgdir" install
+
+  # license
+  cd ..
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: openimageio/repos/community-staging-i686/fix-compiler-warning.patch 
(from rev 191757, openimageio/trunk/fix-compiler-warning.patch)
===
--- community-staging-i686/fix-compiler-warning.patch   
(rev 0)
+++ community-staging-i686/fix-compiler-warning.patch   2016-10-09 22:28:12 UTC 
(rev 191758)
@@ -0,0 +1,22 @@
+From 4e3371d2e37512c5fa8b1f297ad9af52417fec9e Mon Sep 17 00:00:00 2001
+From: Larry Gritz 
+Date: Wed, 11 Feb 2015 15:27:40 -0800
+Subject: [PATCH] Fix compiler warning about unused variable
+
+---
+ src/ptex.imageio/ptex/PtexHalf.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/ptex.imageio/ptex/PtexHalf.cpp 
b/src/ptex.imageio/ptex/PtexHalf.cpp
+index a880971..3c17369 100644
+--- a/src/ptex.imageio/ptex/PtexHalf.cpp
 b/src/ptex.imageio/ptex/PtexHalf.cpp
+@@ -80,7 +80,7 @@ static bool PtexHalfInit()
+ return 1;
+ }
+ 
+-static bool PtexHalfInitialized = PtexHalfInit();
++bool PtexHalfInitialized = PtexHalfInit();
+ 
+ 
+ /** Handle exceptional cases for half-to-float conversion */

Copied: openimageio/repos/community-staging-i686/stdmath.patch (from rev 
191757, openimageio/trunk/stdmath.patch)
===
--- community-staging-i686/stdmath.patch(rev 0)
+++ community-staging-i686/stdmath.patch2016-10-09 22:28:12 UTC (rev 
191758)
@@ -0,0 +1,18 

[arch-commits] Commit in openimageio/repos (10 files)

2016-08-22 Thread Sven-Hendrik Haase
Date: Monday, August 22, 2016 @ 12:42:22
  Author: svenstaro
Revision: 187299

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

Added:
  openimageio/repos/community-staging-i686/
  openimageio/repos/community-staging-i686/PKGBUILD
(from rev 187298, openimageio/trunk/PKGBUILD)
  openimageio/repos/community-staging-i686/fix-compiler-warning.patch
(from rev 187298, openimageio/trunk/fix-compiler-warning.patch)
  openimageio/repos/community-staging-i686/stdmath.patch
(from rev 187298, openimageio/trunk/stdmath.patch)
  openimageio/repos/community-staging-i686/ustring-cxx11-std-string.patch
(from rev 187298, openimageio/trunk/ustring-cxx11-std-string.patch)
  openimageio/repos/community-staging-x86_64/
  openimageio/repos/community-staging-x86_64/PKGBUILD
(from rev 187298, openimageio/trunk/PKGBUILD)
  openimageio/repos/community-staging-x86_64/fix-compiler-warning.patch
(from rev 187298, openimageio/trunk/fix-compiler-warning.patch)
  openimageio/repos/community-staging-x86_64/stdmath.patch
(from rev 187298, openimageio/trunk/stdmath.patch)
  openimageio/repos/community-staging-x86_64/ustring-cxx11-std-string.patch
(from rev 187298, openimageio/trunk/ustring-cxx11-std-string.patch)

-+
 community-staging-i686/PKGBUILD |   45 ++
 community-staging-i686/fix-compiler-warning.patch   |   22 ++
 community-staging-i686/stdmath.patch|   18 +
 community-staging-i686/ustring-cxx11-std-string.patch   |   35 ++
 community-staging-x86_64/PKGBUILD   |   45 ++
 community-staging-x86_64/fix-compiler-warning.patch |   22 ++
 community-staging-x86_64/stdmath.patch  |   18 +
 community-staging-x86_64/ustring-cxx11-std-string.patch |   35 ++
 8 files changed, 240 insertions(+)

Copied: openimageio/repos/community-staging-i686/PKGBUILD (from rev 187298, 
openimageio/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-08-22 12:42:22 UTC (rev 187299)
@@ -0,0 +1,45 @@
+# $Id$
+# Contributor: SpepS 
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=openimageio
+pkgver=1.6.14
+pkgrel=3
+pkgdesc="A library for reading and writing images, including classes, 
utilities, and applications"
+arch=(i686 x86_64)
+url="http://www.openimageio.org/;
+license=('custom')
+depends=('openexr' 'boost-libs' 'jasper' 'glew' 'libtiff' 'opencolorio' 
'intel-tbb' 'openssl')
+makedepends=('cmake' 'qt4' 'python2' 'boost' 'mesa' 'git')
+optdepends=('qt4: iv image viewer'
+'python2: bindings support')
+source=(git+git://github.com/OpenImageIO/oiio.git#tag=Release-${pkgver})
+md5sums=('SKIP')
+
+build() {
+  cd oiio
+
+  [[ -d build ]] && rm -r build
+  mkdir build && cd build
+
+  # Python is currently broken :(
+  cmake .. \
+  -DUSE_PYTHON=OFF \
+  -DUSE_PYTHON3=OFF \
+  -DUSE_OPENSSL=ON \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DPYLIB_INSTALL_DIR=lib/python2.7/site-packages \
+  -DOIIO_BUILD_TESTS=ON \
+  -DOIIO_BUILD_TOOLS=ON
+  make
+}
+
+package() {
+  cd oiio/build
+
+  make DESTDIR="$pkgdir" install
+
+  # license
+  cd ..
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: openimageio/repos/community-staging-i686/fix-compiler-warning.patch 
(from rev 187298, openimageio/trunk/fix-compiler-warning.patch)
===
--- community-staging-i686/fix-compiler-warning.patch   
(rev 0)
+++ community-staging-i686/fix-compiler-warning.patch   2016-08-22 12:42:22 UTC 
(rev 187299)
@@ -0,0 +1,22 @@
+From 4e3371d2e37512c5fa8b1f297ad9af52417fec9e Mon Sep 17 00:00:00 2001
+From: Larry Gritz 
+Date: Wed, 11 Feb 2015 15:27:40 -0800
+Subject: [PATCH] Fix compiler warning about unused variable
+
+---
+ src/ptex.imageio/ptex/PtexHalf.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/ptex.imageio/ptex/PtexHalf.cpp 
b/src/ptex.imageio/ptex/PtexHalf.cpp
+index a880971..3c17369 100644
+--- a/src/ptex.imageio/ptex/PtexHalf.cpp
 b/src/ptex.imageio/ptex/PtexHalf.cpp
+@@ -80,7 +80,7 @@ static bool PtexHalfInit()
+ return 1;
+ }
+ 
+-static bool PtexHalfInitialized = PtexHalfInit();
++bool PtexHalfInitialized = PtexHalfInit();
+ 
+ 
+ /** Handle exceptional cases for half-to-float conversion */

Copied: openimageio/repos/community-staging-i686/stdmath.patch (from rev 
187298, openimageio/trunk/stdmath.patch)
===
--- community-staging-i686/stdmath.patch(rev 0)
+++ community-staging-i686/stdmath.patch2016-08-22 12:42:22 UTC (rev 
187299)
@@ -0,0 +1,18 

[arch-commits] Commit in openimageio/repos (10 files)

2016-08-04 Thread Andreas Radke
Date: Thursday, August 4, 2016 @ 15:45:41
  Author: andyrtr
Revision: 185068

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

Added:
  openimageio/repos/community-staging-i686/
  openimageio/repos/community-staging-i686/PKGBUILD
(from rev 185067, openimageio/trunk/PKGBUILD)
  openimageio/repos/community-staging-i686/fix-compiler-warning.patch
(from rev 185067, openimageio/trunk/fix-compiler-warning.patch)
  openimageio/repos/community-staging-i686/stdmath.patch
(from rev 185067, openimageio/trunk/stdmath.patch)
  openimageio/repos/community-staging-i686/ustring-cxx11-std-string.patch
(from rev 185067, openimageio/trunk/ustring-cxx11-std-string.patch)
  openimageio/repos/community-staging-x86_64/
  openimageio/repos/community-staging-x86_64/PKGBUILD
(from rev 185067, openimageio/trunk/PKGBUILD)
  openimageio/repos/community-staging-x86_64/fix-compiler-warning.patch
(from rev 185067, openimageio/trunk/fix-compiler-warning.patch)
  openimageio/repos/community-staging-x86_64/stdmath.patch
(from rev 185067, openimageio/trunk/stdmath.patch)
  openimageio/repos/community-staging-x86_64/ustring-cxx11-std-string.patch
(from rev 185067, openimageio/trunk/ustring-cxx11-std-string.patch)

-+
 community-staging-i686/PKGBUILD |   45 ++
 community-staging-i686/fix-compiler-warning.patch   |   22 ++
 community-staging-i686/stdmath.patch|   18 +
 community-staging-i686/ustring-cxx11-std-string.patch   |   35 ++
 community-staging-x86_64/PKGBUILD   |   45 ++
 community-staging-x86_64/fix-compiler-warning.patch |   22 ++
 community-staging-x86_64/stdmath.patch  |   18 +
 community-staging-x86_64/ustring-cxx11-std-string.patch |   35 ++
 8 files changed, 240 insertions(+)

Copied: openimageio/repos/community-staging-i686/PKGBUILD (from rev 185067, 
openimageio/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-08-04 15:45:41 UTC (rev 185068)
@@ -0,0 +1,45 @@
+# $Id$
+# Contributor: SpepS 
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=openimageio
+pkgver=1.6.14
+pkgrel=2
+pkgdesc="A library for reading and writing images, including classes, 
utilities, and applications"
+arch=(i686 x86_64)
+url="http://www.openimageio.org/;
+license=('custom')
+depends=('openexr' 'boost-libs' 'jasper' 'glew' 'libtiff' 'opencolorio' 
'intel-tbb' 'openssl')
+makedepends=('cmake' 'qt4' 'python2' 'boost' 'mesa' 'git')
+optdepends=('qt4: iv image viewer'
+'python2: bindings support')
+source=(git+git://github.com/OpenImageIO/oiio.git#tag=Release-${pkgver})
+md5sums=('SKIP')
+
+build() {
+  cd oiio
+
+  [[ -d build ]] && rm -r build
+  mkdir build && cd build
+
+  # Python is currently broken :(
+  cmake .. \
+  -DUSE_PYTHON=OFF \
+  -DUSE_PYTHON3=OFF \
+  -DUSE_OPENSSL=ON \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DPYLIB_INSTALL_DIR=lib/python2.7/site-packages \
+  -DOIIO_BUILD_TESTS=ON \
+  -DOIIO_BUILD_TOOLS=ON
+  make
+}
+
+package() {
+  cd oiio/build
+
+  make DESTDIR="$pkgdir" install
+
+  # license
+  cd ..
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: openimageio/repos/community-staging-i686/fix-compiler-warning.patch 
(from rev 185067, openimageio/trunk/fix-compiler-warning.patch)
===
--- community-staging-i686/fix-compiler-warning.patch   
(rev 0)
+++ community-staging-i686/fix-compiler-warning.patch   2016-08-04 15:45:41 UTC 
(rev 185068)
@@ -0,0 +1,22 @@
+From 4e3371d2e37512c5fa8b1f297ad9af52417fec9e Mon Sep 17 00:00:00 2001
+From: Larry Gritz 
+Date: Wed, 11 Feb 2015 15:27:40 -0800
+Subject: [PATCH] Fix compiler warning about unused variable
+
+---
+ src/ptex.imageio/ptex/PtexHalf.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/ptex.imageio/ptex/PtexHalf.cpp 
b/src/ptex.imageio/ptex/PtexHalf.cpp
+index a880971..3c17369 100644
+--- a/src/ptex.imageio/ptex/PtexHalf.cpp
 b/src/ptex.imageio/ptex/PtexHalf.cpp
+@@ -80,7 +80,7 @@ static bool PtexHalfInit()
+ return 1;
+ }
+ 
+-static bool PtexHalfInitialized = PtexHalfInit();
++bool PtexHalfInitialized = PtexHalfInit();
+ 
+ 
+ /** Handle exceptional cases for half-to-float conversion */

Copied: openimageio/repos/community-staging-i686/stdmath.patch (from rev 
185067, openimageio/trunk/stdmath.patch)
===
--- community-staging-i686/stdmath.patch(rev 0)
+++ community-staging-i686/stdmath.patch2016-08-04 15:45:41 UTC (rev 
185068)
@@ -0,0 +1,18 @@

[arch-commits] Commit in openimageio/repos (10 files)

2016-05-12 Thread Bartłomiej Piotrowski
Date: Thursday, May 12, 2016 @ 13:24:29
  Author: bpiotrowski
Revision: 174942

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

Added:
  openimageio/repos/community-staging-i686/
  openimageio/repos/community-staging-i686/PKGBUILD
(from rev 174941, openimageio/trunk/PKGBUILD)
  openimageio/repos/community-staging-i686/fix-compiler-warning.patch
(from rev 174941, openimageio/trunk/fix-compiler-warning.patch)
  openimageio/repos/community-staging-i686/stdmath.patch
(from rev 174941, openimageio/trunk/stdmath.patch)
  openimageio/repos/community-staging-i686/ustring-cxx11-std-string.patch
(from rev 174941, openimageio/trunk/ustring-cxx11-std-string.patch)
  openimageio/repos/community-staging-x86_64/
  openimageio/repos/community-staging-x86_64/PKGBUILD
(from rev 174941, openimageio/trunk/PKGBUILD)
  openimageio/repos/community-staging-x86_64/fix-compiler-warning.patch
(from rev 174941, openimageio/trunk/fix-compiler-warning.patch)
  openimageio/repos/community-staging-x86_64/stdmath.patch
(from rev 174941, openimageio/trunk/stdmath.patch)
  openimageio/repos/community-staging-x86_64/ustring-cxx11-std-string.patch
(from rev 174941, openimageio/trunk/ustring-cxx11-std-string.patch)

-+
 community-staging-i686/PKGBUILD |   45 ++
 community-staging-i686/fix-compiler-warning.patch   |   22 ++
 community-staging-i686/stdmath.patch|   18 +
 community-staging-i686/ustring-cxx11-std-string.patch   |   35 ++
 community-staging-x86_64/PKGBUILD   |   45 ++
 community-staging-x86_64/fix-compiler-warning.patch |   22 ++
 community-staging-x86_64/stdmath.patch  |   18 +
 community-staging-x86_64/ustring-cxx11-std-string.patch |   35 ++
 8 files changed, 240 insertions(+)

Copied: openimageio/repos/community-staging-i686/PKGBUILD (from rev 174941, 
openimageio/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-05-12 11:24:29 UTC (rev 174942)
@@ -0,0 +1,45 @@
+# $Id$
+# Contributor: SpepS 
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=openimageio
+pkgver=1.6.12
+pkgrel=2
+pkgdesc="A library for reading and writing images, including classes, 
utilities, and applications"
+arch=(i686 x86_64)
+url="http://www.openimageio.org/;
+license=('custom')
+depends=('openexr' 'boost-libs' 'jasper' 'glew' 'libtiff' 'opencolorio' 
'intel-tbb' 'openssl')
+makedepends=('cmake' 'qt4' 'python2' 'boost' 'mesa' 'git')
+optdepends=('qt4: iv image viewer'
+'python2: bindings support')
+source=(git+git://github.com/OpenImageIO/oiio.git#tag=Release-${pkgver})
+md5sums=('SKIP')
+
+build() {
+  cd oiio
+
+  [[ -d build ]] && rm -r build
+  mkdir build && cd build
+
+  # Python is currently broken :(
+  cmake .. \
+  -DUSE_PYTHON=OFF \
+  -DUSE_PYTHON3=OFF \
+  -DUSE_OPENSSL=ON \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DPYLIB_INSTALL_DIR=lib/python2.7/site-packages \
+  -DOIIO_BUILD_TESTS=ON \
+  -DOIIO_BUILD_TOOLS=ON
+  make
+}
+
+package() {
+  cd oiio/build
+
+  make DESTDIR="$pkgdir" install
+
+  # license
+  cd ..
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: openimageio/repos/community-staging-i686/fix-compiler-warning.patch 
(from rev 174941, openimageio/trunk/fix-compiler-warning.patch)
===
--- community-staging-i686/fix-compiler-warning.patch   
(rev 0)
+++ community-staging-i686/fix-compiler-warning.patch   2016-05-12 11:24:29 UTC 
(rev 174942)
@@ -0,0 +1,22 @@
+From 4e3371d2e37512c5fa8b1f297ad9af52417fec9e Mon Sep 17 00:00:00 2001
+From: Larry Gritz 
+Date: Wed, 11 Feb 2015 15:27:40 -0800
+Subject: [PATCH] Fix compiler warning about unused variable
+
+---
+ src/ptex.imageio/ptex/PtexHalf.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/ptex.imageio/ptex/PtexHalf.cpp 
b/src/ptex.imageio/ptex/PtexHalf.cpp
+index a880971..3c17369 100644
+--- a/src/ptex.imageio/ptex/PtexHalf.cpp
 b/src/ptex.imageio/ptex/PtexHalf.cpp
+@@ -80,7 +80,7 @@ static bool PtexHalfInit()
+ return 1;
+ }
+ 
+-static bool PtexHalfInitialized = PtexHalfInit();
++bool PtexHalfInitialized = PtexHalfInit();
+ 
+ 
+ /** Handle exceptional cases for half-to-float conversion */

Copied: openimageio/repos/community-staging-i686/stdmath.patch (from rev 
174941, openimageio/trunk/stdmath.patch)
===
--- community-staging-i686/stdmath.patch(rev 0)
+++ community-staging-i686/stdmath.patch2016-05-12 11:24:29 UTC (rev 
174942)
@@ -0,0 +1,18 

[arch-commits] Commit in openimageio/repos (10 files)

2016-02-18 Thread Sven-Hendrik Haase
Date: Friday, February 19, 2016 @ 00:58:59
  Author: svenstaro
Revision: 162391

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

Added:
  openimageio/repos/community-staging-i686/
  openimageio/repos/community-staging-i686/PKGBUILD
(from rev 162390, openimageio/trunk/PKGBUILD)
  openimageio/repos/community-staging-i686/fix-compiler-warning.patch
(from rev 162390, openimageio/trunk/fix-compiler-warning.patch)
  openimageio/repos/community-staging-i686/stdmath.patch
(from rev 162390, openimageio/trunk/stdmath.patch)
  openimageio/repos/community-staging-i686/ustring-cxx11-std-string.patch
(from rev 162390, openimageio/trunk/ustring-cxx11-std-string.patch)
  openimageio/repos/community-staging-x86_64/
  openimageio/repos/community-staging-x86_64/PKGBUILD
(from rev 162390, openimageio/trunk/PKGBUILD)
  openimageio/repos/community-staging-x86_64/fix-compiler-warning.patch
(from rev 162390, openimageio/trunk/fix-compiler-warning.patch)
  openimageio/repos/community-staging-x86_64/stdmath.patch
(from rev 162390, openimageio/trunk/stdmath.patch)
  openimageio/repos/community-staging-x86_64/ustring-cxx11-std-string.patch
(from rev 162390, openimageio/trunk/ustring-cxx11-std-string.patch)

-+
 community-staging-i686/PKGBUILD |   45 ++
 community-staging-i686/fix-compiler-warning.patch   |   22 ++
 community-staging-i686/stdmath.patch|   18 +
 community-staging-i686/ustring-cxx11-std-string.patch   |   35 ++
 community-staging-x86_64/PKGBUILD   |   45 ++
 community-staging-x86_64/fix-compiler-warning.patch |   22 ++
 community-staging-x86_64/stdmath.patch  |   18 +
 community-staging-x86_64/ustring-cxx11-std-string.patch |   35 ++
 8 files changed, 240 insertions(+)

Copied: openimageio/repos/community-staging-i686/PKGBUILD (from rev 162390, 
openimageio/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-18 23:58:59 UTC (rev 162391)
@@ -0,0 +1,45 @@
+# $Id$
+# Contributor: SpepS 
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=openimageio
+pkgver=1.6.10
+pkgrel=1
+pkgdesc="A library for reading and writing images, including classes, 
utilities, and applications"
+arch=(i686 x86_64)
+url="http://www.openimageio.org/;
+license=('custom')
+depends=('openexr' 'boost-libs' 'jasper' 'glew' 'libtiff' 'opencolorio' 
'intel-tbb' 'openssl')
+makedepends=('cmake' 'qt4' 'python2' 'boost' 'mesa' 'git')
+optdepends=('qt4: iv image viewer'
+'python2: bindings support')
+source=(git+git://github.com/OpenImageIO/oiio.git#tag=Release-${pkgver})
+md5sums=('SKIP')
+
+build() {
+  cd oiio
+
+  [[ -d build ]] && rm -r build
+  mkdir build && cd build
+
+  # Python is currently broken :(
+  cmake .. \
+  -DUSE_PYTHON=OFF \
+  -DUSE_PYTHON3=OFF \
+  -DUSE_OPENSSL=ON \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DPYLIB_INSTALL_DIR=lib/python2.7/site-packages \
+  -DOIIO_BUILD_TESTS=ON \
+  -DOIIO_BUILD_TOOLS=ON
+  make
+}
+
+package() {
+  cd oiio/build
+
+  make DESTDIR="$pkgdir" install
+
+  # license
+  cd ..
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: openimageio/repos/community-staging-i686/fix-compiler-warning.patch 
(from rev 162390, openimageio/trunk/fix-compiler-warning.patch)
===
--- community-staging-i686/fix-compiler-warning.patch   
(rev 0)
+++ community-staging-i686/fix-compiler-warning.patch   2016-02-18 23:58:59 UTC 
(rev 162391)
@@ -0,0 +1,22 @@
+From 4e3371d2e37512c5fa8b1f297ad9af52417fec9e Mon Sep 17 00:00:00 2001
+From: Larry Gritz 
+Date: Wed, 11 Feb 2015 15:27:40 -0800
+Subject: [PATCH] Fix compiler warning about unused variable
+
+---
+ src/ptex.imageio/ptex/PtexHalf.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/ptex.imageio/ptex/PtexHalf.cpp 
b/src/ptex.imageio/ptex/PtexHalf.cpp
+index a880971..3c17369 100644
+--- a/src/ptex.imageio/ptex/PtexHalf.cpp
 b/src/ptex.imageio/ptex/PtexHalf.cpp
+@@ -80,7 +80,7 @@ static bool PtexHalfInit()
+ return 1;
+ }
+ 
+-static bool PtexHalfInitialized = PtexHalfInit();
++bool PtexHalfInitialized = PtexHalfInit();
+ 
+ 
+ /** Handle exceptional cases for half-to-float conversion */

Copied: openimageio/repos/community-staging-i686/stdmath.patch (from rev 
162390, openimageio/trunk/stdmath.patch)
===
--- community-staging-i686/stdmath.patch(rev 0)
+++ community-staging-i686/stdmath.patch2016-02-18 23:58:59 UTC (rev 
162391)
@@ -0,0 +1,18 

[arch-commits] Commit in openimageio/repos (10 files)

2015-12-21 Thread Sven-Hendrik Haase
Date: Tuesday, December 22, 2015 @ 06:47:57
  Author: svenstaro
Revision: 154135

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

Added:
  openimageio/repos/community-staging-i686/
  openimageio/repos/community-staging-i686/PKGBUILD
(from rev 154134, openimageio/trunk/PKGBUILD)
  openimageio/repos/community-staging-i686/fix-compiler-warning.patch
(from rev 154134, openimageio/trunk/fix-compiler-warning.patch)
  openimageio/repos/community-staging-i686/stdmath.patch
(from rev 154134, openimageio/trunk/stdmath.patch)
  openimageio/repos/community-staging-i686/ustring-cxx11-std-string.patch
(from rev 154134, openimageio/trunk/ustring-cxx11-std-string.patch)
  openimageio/repos/community-staging-x86_64/
  openimageio/repos/community-staging-x86_64/PKGBUILD
(from rev 154134, openimageio/trunk/PKGBUILD)
  openimageio/repos/community-staging-x86_64/fix-compiler-warning.patch
(from rev 154134, openimageio/trunk/fix-compiler-warning.patch)
  openimageio/repos/community-staging-x86_64/stdmath.patch
(from rev 154134, openimageio/trunk/stdmath.patch)
  openimageio/repos/community-staging-x86_64/ustring-cxx11-std-string.patch
(from rev 154134, openimageio/trunk/ustring-cxx11-std-string.patch)

-+
 community-staging-i686/PKGBUILD |   45 ++
 community-staging-i686/fix-compiler-warning.patch   |   22 ++
 community-staging-i686/stdmath.patch|   18 +
 community-staging-i686/ustring-cxx11-std-string.patch   |   35 ++
 community-staging-x86_64/PKGBUILD   |   45 ++
 community-staging-x86_64/fix-compiler-warning.patch |   22 ++
 community-staging-x86_64/stdmath.patch  |   18 +
 community-staging-x86_64/ustring-cxx11-std-string.patch |   35 ++
 8 files changed, 240 insertions(+)

Copied: openimageio/repos/community-staging-i686/PKGBUILD (from rev 154134, 
openimageio/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-22 05:47:57 UTC (rev 154135)
@@ -0,0 +1,45 @@
+# $Id$
+# Contributor: SpepS 
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=openimageio
+pkgver=1.6.8
+pkgrel=1
+pkgdesc="A library for reading and writing images, including classes, 
utilities, and applications"
+arch=(i686 x86_64)
+url="http://www.openimageio.org/;
+license=('custom')
+depends=('openexr' 'boost-libs' 'jasper' 'glew' 'libtiff' 'opencolorio' 
'intel-tbb')
+makedepends=('cmake' 'qt4' 'python2' 'boost' 'mesa' 'git' 'ffmpeg' 'libwebp' 
'giflib')
+optdepends=('qt4: iv image viewer'
+'python2: bindings support')
+source=(git+git://github.com/OpenImageIO/oiio.git#tag=Release-${pkgver})
+md5sums=('SKIP')
+
+build() {
+  cd oiio
+
+  [[ -d build ]] && rm -r build
+  mkdir build && cd build
+
+  # Python is currently broken :(
+  # OIIO_BUILD_TOOLS currently broken
+  cmake .. \
+  -DUSE_PYTHON=OFF \
+  -DUSE_PYTHON3=OFF \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DPYLIB_INSTALL_DIR=lib/python2.7/site-packages \
+  -DOIIO_BUILD_TESTS=OFF \
+  -DOIIO_BUILD_TOOLS=OFF
+  make
+}
+
+package() {
+  cd oiio/build
+
+  make DESTDIR="$pkgdir" install
+
+  # license
+  cd ..
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: openimageio/repos/community-staging-i686/fix-compiler-warning.patch 
(from rev 154134, openimageio/trunk/fix-compiler-warning.patch)
===
--- community-staging-i686/fix-compiler-warning.patch   
(rev 0)
+++ community-staging-i686/fix-compiler-warning.patch   2015-12-22 05:47:57 UTC 
(rev 154135)
@@ -0,0 +1,22 @@
+From 4e3371d2e37512c5fa8b1f297ad9af52417fec9e Mon Sep 17 00:00:00 2001
+From: Larry Gritz 
+Date: Wed, 11 Feb 2015 15:27:40 -0800
+Subject: [PATCH] Fix compiler warning about unused variable
+
+---
+ src/ptex.imageio/ptex/PtexHalf.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/ptex.imageio/ptex/PtexHalf.cpp 
b/src/ptex.imageio/ptex/PtexHalf.cpp
+index a880971..3c17369 100644
+--- a/src/ptex.imageio/ptex/PtexHalf.cpp
 b/src/ptex.imageio/ptex/PtexHalf.cpp
+@@ -80,7 +80,7 @@ static bool PtexHalfInit()
+ return 1;
+ }
+ 
+-static bool PtexHalfInitialized = PtexHalfInit();
++bool PtexHalfInitialized = PtexHalfInit();
+ 
+ 
+ /** Handle exceptional cases for half-to-float conversion */

Copied: openimageio/repos/community-staging-i686/stdmath.patch (from rev 
154134, openimageio/trunk/stdmath.patch)
===
--- community-staging-i686/stdmath.patch(rev 0)
+++ community-staging-i686/stdmath.patch2015-12-22 

[arch-commits] Commit in openimageio/repos (10 files)

2015-12-06 Thread Bartłomiej Piotrowski
Date: Monday, December 7, 2015 @ 06:24:29
  Author: bpiotrowski
Revision: 149582

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

Added:
  openimageio/repos/community-staging-i686/
  openimageio/repos/community-staging-i686/PKGBUILD
(from rev 149581, openimageio/trunk/PKGBUILD)
  openimageio/repos/community-staging-i686/fix-compiler-warning.patch
(from rev 149581, openimageio/trunk/fix-compiler-warning.patch)
  openimageio/repos/community-staging-i686/stdmath.patch
(from rev 149581, openimageio/trunk/stdmath.patch)
  openimageio/repos/community-staging-i686/ustring-cxx11-std-string.patch
(from rev 149581, openimageio/trunk/ustring-cxx11-std-string.patch)
  openimageio/repos/community-staging-x86_64/
  openimageio/repos/community-staging-x86_64/PKGBUILD
(from rev 149581, openimageio/trunk/PKGBUILD)
  openimageio/repos/community-staging-x86_64/fix-compiler-warning.patch
(from rev 149581, openimageio/trunk/fix-compiler-warning.patch)
  openimageio/repos/community-staging-x86_64/stdmath.patch
(from rev 149581, openimageio/trunk/stdmath.patch)
  openimageio/repos/community-staging-x86_64/ustring-cxx11-std-string.patch
(from rev 149581, openimageio/trunk/ustring-cxx11-std-string.patch)

-+
 community-staging-i686/PKGBUILD |   56 ++
 community-staging-i686/fix-compiler-warning.patch   |   22 +
 community-staging-i686/stdmath.patch|   18 
 community-staging-i686/ustring-cxx11-std-string.patch   |   35 
 community-staging-x86_64/PKGBUILD   |   56 ++
 community-staging-x86_64/fix-compiler-warning.patch |   22 +
 community-staging-x86_64/stdmath.patch  |   18 
 community-staging-x86_64/ustring-cxx11-std-string.patch |   35 
 8 files changed, 262 insertions(+)

Copied: openimageio/repos/community-staging-i686/PKGBUILD (from rev 149581, 
openimageio/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-07 05:24:29 UTC (rev 149582)
@@ -0,0 +1,56 @@
+# $Id$
+# Contributor: SpepS 
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=openimageio
+pkgver=1.4.16
+pkgrel=7
+pkgdesc="A library for reading and writing images, including classes, 
utilities, and applications"
+arch=(i686 x86_64)
+url="http://www.openimageio.org/;
+license=('custom')
+depends=('openexr' 'boost-libs' 'jasper' 'glew' 'libtiff' 'opencolorio' 
'intel-tbb')
+makedepends=('cmake' 'qt4' 'python2' 'boost' 'mesa' 'git')
+optdepends=('qt4: iv image viewer'
+'python2: bindings support')
+source=(git+git://github.com/OpenImageIO/oiio.git#tag=Release-${pkgver}
+ustring-cxx11-std-string.patch
+fix-compiler-warning.patch
+stdmath.patch)
+md5sums=('SKIP'
+ 'ec2e922a5297331901fd9331fcfb6bdb'
+ 'f41243f93ad9370060efdad931750289'
+ '7b819bf20cf2c13cbde5fc6511e39f35')
+
+prepare() {
+  cd oiio
+
+  patch -Np1 < "$srcdir/ustring-cxx11-std-string.patch"
+  patch -Np1 < "$srcdir/fix-compiler-warning.patch"
+  patch -Np1 < "$srcdir/stdmath.patch"
+}
+
+build() {
+  cd oiio
+
+  [[ -d build ]] && rm -r build
+  mkdir build && cd build
+
+  cmake \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DPYLIB_INSTALL_DIR=lib/python2.7/site-packages \
+  -DUSE_EXTERNAL_TBB=ON \
+  -DOIIO_BUILD_TESTS=OFF \
+  ..
+  make
+}
+
+package() {
+  cd oiio/build
+
+  make DESTDIR="$pkgdir" install
+
+  # license
+  cd ..
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: openimageio/repos/community-staging-i686/fix-compiler-warning.patch 
(from rev 149581, openimageio/trunk/fix-compiler-warning.patch)
===
--- community-staging-i686/fix-compiler-warning.patch   
(rev 0)
+++ community-staging-i686/fix-compiler-warning.patch   2015-12-07 05:24:29 UTC 
(rev 149582)
@@ -0,0 +1,22 @@
+From 4e3371d2e37512c5fa8b1f297ad9af52417fec9e Mon Sep 17 00:00:00 2001
+From: Larry Gritz 
+Date: Wed, 11 Feb 2015 15:27:40 -0800
+Subject: [PATCH] Fix compiler warning about unused variable
+
+---
+ src/ptex.imageio/ptex/PtexHalf.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/ptex.imageio/ptex/PtexHalf.cpp 
b/src/ptex.imageio/ptex/PtexHalf.cpp
+index a880971..3c17369 100644
+--- a/src/ptex.imageio/ptex/PtexHalf.cpp
 b/src/ptex.imageio/ptex/PtexHalf.cpp
+@@ -80,7 +80,7 @@ static bool PtexHalfInit()
+ return 1;
+ }
+ 
+-static bool PtexHalfInitialized = PtexHalfInit();
++bool PtexHalfInitialized = PtexHalfInit();
+ 
+ 
+ /** Handle exceptional cases for half-to-float conversion */

Copied: openimageio/repos/community-staging-i686/stdmath.patch (from 

[arch-commits] Commit in openimageio/repos (10 files)

2015-10-15 Thread Bartłomiej Piotrowski
Date: Thursday, October 15, 2015 @ 14:26:44
  Author: bpiotrowski
Revision: 144145

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

Added:
  openimageio/repos/community-staging-i686/
  openimageio/repos/community-staging-i686/PKGBUILD
(from rev 144144, openimageio/trunk/PKGBUILD)
  openimageio/repos/community-staging-i686/fix-compiler-warning.patch
(from rev 144144, openimageio/trunk/fix-compiler-warning.patch)
  openimageio/repos/community-staging-i686/stdmath.patch
(from rev 144144, openimageio/trunk/stdmath.patch)
  openimageio/repos/community-staging-i686/ustring-cxx11-std-string.patch
(from rev 144144, openimageio/trunk/ustring-cxx11-std-string.patch)
  openimageio/repos/community-staging-x86_64/
  openimageio/repos/community-staging-x86_64/PKGBUILD
(from rev 144144, openimageio/trunk/PKGBUILD)
  openimageio/repos/community-staging-x86_64/fix-compiler-warning.patch
(from rev 144144, openimageio/trunk/fix-compiler-warning.patch)
  openimageio/repos/community-staging-x86_64/stdmath.patch
(from rev 144144, openimageio/trunk/stdmath.patch)
  openimageio/repos/community-staging-x86_64/ustring-cxx11-std-string.patch
(from rev 144144, openimageio/trunk/ustring-cxx11-std-string.patch)

-+
 community-staging-i686/PKGBUILD |   56 ++
 community-staging-i686/fix-compiler-warning.patch   |   22 +
 community-staging-i686/stdmath.patch|   18 
 community-staging-i686/ustring-cxx11-std-string.patch   |   35 
 community-staging-x86_64/PKGBUILD   |   56 ++
 community-staging-x86_64/fix-compiler-warning.patch |   22 +
 community-staging-x86_64/stdmath.patch  |   18 
 community-staging-x86_64/ustring-cxx11-std-string.patch |   35 
 8 files changed, 262 insertions(+)

Copied: openimageio/repos/community-staging-i686/PKGBUILD (from rev 144144, 
openimageio/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-10-15 12:26:44 UTC (rev 144145)
@@ -0,0 +1,56 @@
+# $Id$
+# Contributor: SpepS 
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=openimageio
+pkgver=1.4.16
+pkgrel=6
+pkgdesc="A library for reading and writing images, including classes, 
utilities, and applications"
+arch=(i686 x86_64)
+url="http://www.openimageio.org/;
+license=('custom')
+depends=('openexr' 'boost-libs' 'jasper' 'glew' 'libtiff' 'opencolorio' 
'intel-tbb')
+makedepends=('cmake' 'qt4' 'python2' 'boost' 'mesa' 'git')
+optdepends=('qt4: iv image viewer'
+'python2: bindings support')
+source=(git+git://github.com/OpenImageIO/oiio.git#tag=Release-${pkgver}
+ustring-cxx11-std-string.patch
+fix-compiler-warning.patch
+stdmath.patch)
+md5sums=('SKIP'
+ 'ec2e922a5297331901fd9331fcfb6bdb'
+ 'f41243f93ad9370060efdad931750289'
+ '7b819bf20cf2c13cbde5fc6511e39f35')
+
+prepare() {
+  cd oiio
+
+  patch -Np1 < "$srcdir/ustring-cxx11-std-string.patch"
+  patch -Np1 < "$srcdir/fix-compiler-warning.patch"
+  patch -Np1 < "$srcdir/stdmath.patch"
+}
+
+build() {
+  cd oiio
+
+  [[ -d build ]] && rm -r build
+  mkdir build && cd build
+
+  cmake \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DPYLIB_INSTALL_DIR=lib/python2.7/site-packages \
+  -DUSE_EXTERNAL_TBB=ON \
+  -DOIIO_BUILD_TESTS=OFF \
+  ..
+  make
+}
+
+package() {
+  cd oiio/build
+
+  make DESTDIR="$pkgdir" install
+
+  # license
+  cd ..
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: openimageio/repos/community-staging-i686/fix-compiler-warning.patch 
(from rev 144144, openimageio/trunk/fix-compiler-warning.patch)
===
--- community-staging-i686/fix-compiler-warning.patch   
(rev 0)
+++ community-staging-i686/fix-compiler-warning.patch   2015-10-15 12:26:44 UTC 
(rev 144145)
@@ -0,0 +1,22 @@
+From 4e3371d2e37512c5fa8b1f297ad9af52417fec9e Mon Sep 17 00:00:00 2001
+From: Larry Gritz 
+Date: Wed, 11 Feb 2015 15:27:40 -0800
+Subject: [PATCH] Fix compiler warning about unused variable
+
+---
+ src/ptex.imageio/ptex/PtexHalf.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/ptex.imageio/ptex/PtexHalf.cpp 
b/src/ptex.imageio/ptex/PtexHalf.cpp
+index a880971..3c17369 100644
+--- a/src/ptex.imageio/ptex/PtexHalf.cpp
 b/src/ptex.imageio/ptex/PtexHalf.cpp
+@@ -80,7 +80,7 @@ static bool PtexHalfInit()
+ return 1;
+ }
+ 
+-static bool PtexHalfInitialized = PtexHalfInit();
++bool PtexHalfInitialized = PtexHalfInit();
+ 
+ 
+ /** Handle exceptional cases for half-to-float conversion */

Copied: openimageio/repos/community-staging-i686/stdmath.patch 

[arch-commits] Commit in openimageio/repos (10 files)

2015-09-28 Thread Evangelos Foutras
Date: Tuesday, September 29, 2015 @ 07:21:18
  Author: foutrelis
Revision: 142190

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

Added:
  openimageio/repos/community-staging-i686/
  openimageio/repos/community-staging-i686/PKGBUILD
(from rev 142189, openimageio/trunk/PKGBUILD)
  openimageio/repos/community-staging-i686/fix-compiler-warning.patch
(from rev 142189, openimageio/trunk/fix-compiler-warning.patch)
  openimageio/repos/community-staging-i686/stdmath.patch
(from rev 142189, openimageio/trunk/stdmath.patch)
  openimageio/repos/community-staging-i686/ustring-cxx11-std-string.patch
(from rev 142189, openimageio/trunk/ustring-cxx11-std-string.patch)
  openimageio/repos/community-staging-x86_64/
  openimageio/repos/community-staging-x86_64/PKGBUILD
(from rev 142189, openimageio/trunk/PKGBUILD)
  openimageio/repos/community-staging-x86_64/fix-compiler-warning.patch
(from rev 142189, openimageio/trunk/fix-compiler-warning.patch)
  openimageio/repos/community-staging-x86_64/stdmath.patch
(from rev 142189, openimageio/trunk/stdmath.patch)
  openimageio/repos/community-staging-x86_64/ustring-cxx11-std-string.patch
(from rev 142189, openimageio/trunk/ustring-cxx11-std-string.patch)

-+
 community-staging-i686/PKGBUILD |   56 ++
 community-staging-i686/fix-compiler-warning.patch   |   22 +
 community-staging-i686/stdmath.patch|   18 
 community-staging-i686/ustring-cxx11-std-string.patch   |   35 
 community-staging-x86_64/PKGBUILD   |   56 ++
 community-staging-x86_64/fix-compiler-warning.patch |   22 +
 community-staging-x86_64/stdmath.patch  |   18 
 community-staging-x86_64/ustring-cxx11-std-string.patch |   35 
 8 files changed, 262 insertions(+)

Copied: openimageio/repos/community-staging-i686/PKGBUILD (from rev 142189, 
openimageio/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-29 05:21:18 UTC (rev 142190)
@@ -0,0 +1,56 @@
+# $Id$
+# Contributor: SpepS 
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=openimageio
+pkgver=1.4.16
+pkgrel=5
+pkgdesc="A library for reading and writing images, including classes, 
utilities, and applications"
+arch=(i686 x86_64)
+url="http://www.openimageio.org/;
+license=('custom')
+depends=('openexr' 'boost-libs' 'jasper' 'glew' 'libtiff' 'opencolorio' 
'intel-tbb')
+makedepends=('cmake' 'qt4' 'python2' 'boost' 'mesa' 'git')
+optdepends=('qt4: iv image viewer'
+'python2: bindings support')
+source=(git+git://github.com/OpenImageIO/oiio.git#tag=Release-${pkgver}
+ustring-cxx11-std-string.patch
+fix-compiler-warning.patch
+stdmath.patch)
+md5sums=('SKIP'
+ 'ec2e922a5297331901fd9331fcfb6bdb'
+ 'f41243f93ad9370060efdad931750289'
+ '7b819bf20cf2c13cbde5fc6511e39f35')
+
+prepare() {
+  cd oiio
+
+  patch -Np1 < "$srcdir/ustring-cxx11-std-string.patch"
+  patch -Np1 < "$srcdir/fix-compiler-warning.patch"
+  patch -Np1 < "$srcdir/stdmath.patch"
+}
+
+build() {
+  cd oiio
+
+  [[ -d build ]] && rm -r build
+  mkdir build && cd build
+
+  cmake \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DPYLIB_INSTALL_DIR=lib/python2.7/site-packages \
+  -DUSE_EXTERNAL_TBB=ON \
+  -DOIIO_BUILD_TESTS=OFF \
+  ..
+  make
+}
+
+package() {
+  cd oiio/build
+
+  make DESTDIR="$pkgdir" install
+
+  # license
+  cd ..
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: openimageio/repos/community-staging-i686/fix-compiler-warning.patch 
(from rev 142189, openimageio/trunk/fix-compiler-warning.patch)
===
--- community-staging-i686/fix-compiler-warning.patch   
(rev 0)
+++ community-staging-i686/fix-compiler-warning.patch   2015-09-29 05:21:18 UTC 
(rev 142190)
@@ -0,0 +1,22 @@
+From 4e3371d2e37512c5fa8b1f297ad9af52417fec9e Mon Sep 17 00:00:00 2001
+From: Larry Gritz 
+Date: Wed, 11 Feb 2015 15:27:40 -0800
+Subject: [PATCH] Fix compiler warning about unused variable
+
+---
+ src/ptex.imageio/ptex/PtexHalf.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/ptex.imageio/ptex/PtexHalf.cpp 
b/src/ptex.imageio/ptex/PtexHalf.cpp
+index a880971..3c17369 100644
+--- a/src/ptex.imageio/ptex/PtexHalf.cpp
 b/src/ptex.imageio/ptex/PtexHalf.cpp
+@@ -80,7 +80,7 @@ static bool PtexHalfInit()
+ return 1;
+ }
+ 
+-static bool PtexHalfInitialized = PtexHalfInit();
++bool PtexHalfInitialized = PtexHalfInit();
+ 
+ 
+ /** Handle exceptional cases for half-to-float conversion */

Copied: openimageio/repos/community-staging-i686/stdmath.patch 

[arch-commits] Commit in openimageio/repos (10 files)

2013-03-31 Thread Stéphane Gaudreault
Date: Sunday, March 31, 2013 @ 21:18:31
  Author: stephane
Revision: 87425

db-move: moved openimageio from [community-testing] to [community] (i686, 
x86_64)

Added:
  openimageio/repos/community-i686/PKGBUILD
(from rev 87401, openimageio/repos/community-testing-i686/PKGBUILD)
  openimageio/repos/community-i686/fix32bit-fail.patch
(from rev 87401, 
openimageio/repos/community-testing-i686/fix32bit-fail.patch)
  openimageio/repos/community-x86_64/PKGBUILD
(from rev 87401, openimageio/repos/community-testing-x86_64/PKGBUILD)
  openimageio/repos/community-x86_64/fix32bit-fail.patch
(from rev 87401, 
openimageio/repos/community-testing-x86_64/fix32bit-fail.patch)
Deleted:
  openimageio/repos/community-i686/PKGBUILD
  openimageio/repos/community-i686/fix32bit-fail.patch
  openimageio/repos/community-testing-i686/
  openimageio/repos/community-testing-x86_64/
  openimageio/repos/community-x86_64/PKGBUILD
  openimageio/repos/community-x86_64/fix32bit-fail.patch

--+
 /PKGBUILD|   86 +
 /fix32bit-fail.patch |   26 +
 community-i686/PKGBUILD  |   43 
 community-i686/fix32bit-fail.patch   |   13 
 community-x86_64/PKGBUILD|   43 
 community-x86_64/fix32bit-fail.patch |   13 
 6 files changed, 112 insertions(+), 112 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-03-31 19:18:30 UTC (rev 87424)
+++ community-i686/PKGBUILD 2013-03-31 19:18:31 UTC (rev 87425)
@@ -1,43 +0,0 @@
-# $Id$
-# Contributor: SpepS dreamspepser at yahoo dot it
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-
-pkgname=openimageio
-pkgver=1.1.7
-pkgrel=2
-pkgdesc=A library for reading and writing images, including classes, 
utilities, and applications
-arch=(i686 x86_64)
-url=http://www.openimageio.org/;
-license=('custom')
-depends=('openexr' 'boost-libs' 'jasper' 'glew' 'libtiff' 'opencolorio' 
'intel-tbb')
-makedepends=('cmake' 'qt4' 'python2' 'boost' 'mesa')
-optdepends=('qt4: iv image viewer'
-'python2: bindings support')
-source=(https://github.com/OpenImageIO/oiio/tarball/Release-$pkgver)
-md5sums=('5fafac9b5f9f7edc9bd0507477c12e0d')
-
-build() {
-  cd $srcdir/$_pkgname*
-
-  cd src
-
-  [[ -d build ]]  rm -r build
-  mkdir build  cd build
-
-  cmake \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DPYLIB_INSTALL_DIR=lib/python2.7/site-packages \
-  -DUSE_EXTERNAL_TBB=ON \
-  ..
-  make
-}
-
-package() {
-  cd $srcdir/$_pkgname*/src/build
-
-  make DESTDIR=$pkgdir install
-
-  # license
-  cd ../..
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: openimageio/repos/community-i686/PKGBUILD (from rev 87401, 
openimageio/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-03-31 19:18:31 UTC (rev 87425)
@@ -0,0 +1,43 @@
+# $Id$
+# Contributor: SpepS dreamspepser at yahoo dot it
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+
+pkgname=openimageio
+pkgver=1.1.8
+pkgrel=1
+pkgdesc=A library for reading and writing images, including classes, 
utilities, and applications
+arch=(i686 x86_64)
+url=http://www.openimageio.org/;
+license=('custom')
+depends=('openexr' 'boost-libs' 'jasper' 'glew' 'libtiff' 'opencolorio' 
'intel-tbb')
+makedepends=('cmake' 'qt4' 'python2' 'boost' 'mesa')
+optdepends=('qt4: iv image viewer'
+'python2: bindings support')
+source=(https://github.com/OpenImageIO/oiio/tarball/Release-$pkgver)
+md5sums=('2d816e0ff48f12dfc0491d39a4918456')
+
+build() {
+  cd $srcdir/$_pkgname*
+
+  cd src
+
+  [[ -d build ]]  rm -r build
+  mkdir build  cd build
+
+  cmake \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DPYLIB_INSTALL_DIR=lib/python2.7/site-packages \
+  -DUSE_EXTERNAL_TBB=ON \
+  ..
+  make
+}
+
+package() {
+  cd $srcdir/$_pkgname*/src/build
+
+  make DESTDIR=$pkgdir install
+
+  # license
+  cd ../..
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: community-i686/fix32bit-fail.patch
===
--- community-i686/fix32bit-fail.patch  2013-03-31 19:18:30 UTC (rev 87424)
+++ community-i686/fix32bit-fail.patch  2013-03-31 19:18:31 UTC (rev 87425)
@@ -1,13 +0,0 @@
 orig/src/libutil/SHA1.cpp  2012-11-17 01:02:42.0 +0200
-+++ fixed/src/libutil/SHA1.cpp 2012-12-14 14:37:37.552042793 +0200
-@@ -8,9 +8,9 @@
- 
- // If compiling with MFC, you might want to add #include StdAfx.h
- 
-+#include SHA1.h
- #include hash.h
- #include dassert.h
--#include SHA1.h
- 
- #ifdef SHA1_UTILITY_FUNCTIONS
- #define SHA1_MAX_FILE_BUFFER 8000

Copied: openimageio/repos/community-i686/fix32bit-fail.patch (from rev