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

Sven-Hendrik Haase svenstaro at archlinux.org
Wed Apr 22 22:13:12 UTC 2015


    Date: Thursday, April 23, 2015 @ 00:13:12
  Author: svenstaro
Revision: 132013

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 132012, openimageio/trunk/PKGBUILD)
  openimageio/repos/community-staging-i686/stdmath.patch
    (from rev 132012, openimageio/trunk/stdmath.patch)
  openimageio/repos/community-staging-x86_64/
  openimageio/repos/community-staging-x86_64/PKGBUILD
    (from rev 132012, openimageio/trunk/PKGBUILD)
  openimageio/repos/community-staging-x86_64/stdmath.patch
    (from rev 132012, openimageio/trunk/stdmath.patch)

----------------------------------------+
 community-staging-i686/PKGBUILD        |   50 +++++++++++++++++++++++++++++++
 community-staging-i686/stdmath.patch   |   18 +++++++++++
 community-staging-x86_64/PKGBUILD      |   50 +++++++++++++++++++++++++++++++
 community-staging-x86_64/stdmath.patch |   18 +++++++++++
 4 files changed, 136 insertions(+)

Copied: openimageio/repos/community-staging-i686/PKGBUILD (from rev 132012, openimageio/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD	                        (rev 0)
+++ community-staging-i686/PKGBUILD	2015-04-22 22:13:12 UTC (rev 132013)
@@ -0,0 +1,50 @@
+# $Id$
+# Contributor: SpepS <dreamspepser at yahoo dot it>
+# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
+
+pkgname=openimageio
+pkgver=1.4.16
+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')
+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}
+        stdmath.patch)
+md5sums=('SKIP'
+         '7b819bf20cf2c13cbde5fc6511e39f35')
+
+prepare() {
+  cd oiio
+
+  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/stdmath.patch (from rev 132012, openimageio/trunk/stdmath.patch)
===================================================================
--- community-staging-i686/stdmath.patch	                        (rev 0)
+++ community-staging-i686/stdmath.patch	2015-04-22 22:13:12 UTC (rev 132013)
@@ -0,0 +1,18 @@
+diff --git a/src/include/OpenImageIO/fmath.h b/src/include/OpenImageIO/fmath.h
+index 8db8442..751cd07 100644
+--- a/src/include/OpenImageIO/fmath.h
++++ b/src/include/OpenImageIO/fmath.h
+@@ -1298,9 +1298,9 @@ OIIO_NAMESPACE_EXIT
+ 
+ #ifndef _MSC_VER
+  // Some systems have isnan, isinf and isfinite in the std namespace.
+- using std::isnan;
+- using std::isinf;
+- using std::isfinite;
++ using ::isnan;
++ using ::isinf;
++ using OIIO::isfinite;
+ #endif
+ 
+ #if (defined(__FreeBSD__) && (__FreeBSD_version < 803000))
+

Copied: openimageio/repos/community-staging-x86_64/PKGBUILD (from rev 132012, openimageio/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2015-04-22 22:13:12 UTC (rev 132013)
@@ -0,0 +1,50 @@
+# $Id$
+# Contributor: SpepS <dreamspepser at yahoo dot it>
+# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
+
+pkgname=openimageio
+pkgver=1.4.16
+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')
+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}
+        stdmath.patch)
+md5sums=('SKIP'
+         '7b819bf20cf2c13cbde5fc6511e39f35')
+
+prepare() {
+  cd oiio
+
+  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-x86_64/stdmath.patch (from rev 132012, openimageio/trunk/stdmath.patch)
===================================================================
--- community-staging-x86_64/stdmath.patch	                        (rev 0)
+++ community-staging-x86_64/stdmath.patch	2015-04-22 22:13:12 UTC (rev 132013)
@@ -0,0 +1,18 @@
+diff --git a/src/include/OpenImageIO/fmath.h b/src/include/OpenImageIO/fmath.h
+index 8db8442..751cd07 100644
+--- a/src/include/OpenImageIO/fmath.h
++++ b/src/include/OpenImageIO/fmath.h
+@@ -1298,9 +1298,9 @@ OIIO_NAMESPACE_EXIT
+ 
+ #ifndef _MSC_VER
+  // Some systems have isnan, isinf and isfinite in the std namespace.
+- using std::isnan;
+- using std::isinf;
+- using std::isfinite;
++ using ::isnan;
++ using ::isinf;
++ using OIIO::isfinite;
+ #endif
+ 
+ #if (defined(__FreeBSD__) && (__FreeBSD_version < 803000))
+



More information about the arch-commits mailing list