[arch-commits] Commit in openimageio/repos (6 files)
Sven-Hendrik Haase
svenstaro at nymeria.archlinux.org
Mon May 12 01:04:28 UTC 2014
Date: Monday, May 12, 2014 @ 03:04:28
Author: svenstaro
Revision: 111009
archrelease: copy trunk to community-testing-i686, community-testing-x86_64
Added:
openimageio/repos/community-testing-i686/
openimageio/repos/community-testing-i686/PKGBUILD
(from rev 111008, openimageio/trunk/PKGBUILD)
openimageio/repos/community-testing-i686/fix32bit-fail.patch
(from rev 111008, openimageio/trunk/fix32bit-fail.patch)
openimageio/repos/community-testing-x86_64/
openimageio/repos/community-testing-x86_64/PKGBUILD
(from rev 111008, openimageio/trunk/PKGBUILD)
openimageio/repos/community-testing-x86_64/fix32bit-fail.patch
(from rev 111008, openimageio/trunk/fix32bit-fail.patch)
----------------------------------------------+
community-testing-i686/PKGBUILD | 42 +++++++++++++++++++++++++
community-testing-i686/fix32bit-fail.patch | 13 +++++++
community-testing-x86_64/PKGBUILD | 42 +++++++++++++++++++++++++
community-testing-x86_64/fix32bit-fail.patch | 13 +++++++
4 files changed, 110 insertions(+)
Copied: openimageio/repos/community-testing-i686/PKGBUILD (from rev 111008, openimageio/trunk/PKGBUILD)
===================================================================
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-05-12 01:04:28 UTC (rev 111009)
@@ -0,0 +1,42 @@
+# $Id$
+# Contributor: SpepS <dreamspepser at yahoo dot it>
+# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
+
+pkgname=openimageio
+pkgver=1.4.5dev
+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/archive/Release-${pkgver}.tar.gz)
+md5sums=('d89a4abc2f138d4e556764e991b5b62f')
+
+build() {
+ cd oiio-Release-$pkgver
+
+ [[ -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-Release-$pkgver/build
+
+ make DESTDIR="$pkgdir" install
+
+ # license
+ cd ..
+ install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
Copied: openimageio/repos/community-testing-i686/fix32bit-fail.patch (from rev 111008, openimageio/trunk/fix32bit-fail.patch)
===================================================================
--- community-testing-i686/fix32bit-fail.patch (rev 0)
+++ community-testing-i686/fix32bit-fail.patch 2014-05-12 01:04:28 UTC (rev 111009)
@@ -0,0 +1,13 @@
+--- orig/src/libutil/SHA1.cpp 2012-11-17 01:02:42.000000000 +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-testing-x86_64/PKGBUILD (from rev 111008, openimageio/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2014-05-12 01:04:28 UTC (rev 111009)
@@ -0,0 +1,42 @@
+# $Id$
+# Contributor: SpepS <dreamspepser at yahoo dot it>
+# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
+
+pkgname=openimageio
+pkgver=1.4.5dev
+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/archive/Release-${pkgver}.tar.gz)
+md5sums=('d89a4abc2f138d4e556764e991b5b62f')
+
+build() {
+ cd oiio-Release-$pkgver
+
+ [[ -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-Release-$pkgver/build
+
+ make DESTDIR="$pkgdir" install
+
+ # license
+ cd ..
+ install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
Copied: openimageio/repos/community-testing-x86_64/fix32bit-fail.patch (from rev 111008, openimageio/trunk/fix32bit-fail.patch)
===================================================================
--- community-testing-x86_64/fix32bit-fail.patch (rev 0)
+++ community-testing-x86_64/fix32bit-fail.patch 2014-05-12 01:04:28 UTC (rev 111009)
@@ -0,0 +1,13 @@
+--- orig/src/libutil/SHA1.cpp 2012-11-17 01:02:42.000000000 +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
More information about the arch-commits
mailing list