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

Stéphane Gaudreault stephane at nymeria.archlinux.org
Mon Jan 28 16:49:50 UTC 2013


    Date: Monday, January 28, 2013 @ 17:49:50
  Author: stephane
Revision: 83263

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

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

--------------------------------------+
 community-i686/PKGBUILD              |   79 +++++++++++++++++----------------
 community-i686/fix32bit-fail.patch   |   13 +++++
 community-x86_64/PKGBUILD            |   79 +++++++++++++++++----------------
 community-x86_64/fix32bit-fail.patch |   13 +++++
 4 files changed, 112 insertions(+), 72 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2013-01-28 16:49:49 UTC (rev 83262)
+++ community-i686/PKGBUILD	2013-01-28 16:49:50 UTC (rev 83263)
@@ -1,36 +0,0 @@
-# $Id$
-# Contributor: SpepS <dreamspepser at yahoo dot it>
-# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
-
-pkgname=openimageio
-pkgver=1.0.9
-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')
-makedepends=('cmake' 'qt' 'python2' 'boost' 'mesa')
-optdepends=('qt: iv image viewer'
-            'python2: bindings support')
-source=(https://github.com/OpenImageIO/oiio/tarball/Release-$pkgver)
-md5sums=('4b98a057515cc95fc954743c987f19ba')
-
-build() {
-  cd "$srcdir"/$_pkgname*/src
-
-  [[ -d build ]] && rm -r build
-  mkdir build && cd build
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DPYLIB_INSTALL_DIR=lib/python2.7/site-packages ..
-  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 83238, openimageio/repos/community-testing-i686/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2013-01-28 16:49:50 UTC (rev 83263)
@@ -0,0 +1,43 @@
+# $Id$
+# Contributor: SpepS <dreamspepser at yahoo dot it>
+# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
+
+pkgname=openimageio
+pkgver=1.1.2
+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')
+makedepends=('cmake' 'qt' 'python2' 'boost' 'mesa')
+optdepends=('qt: iv image viewer'
+            'python2: bindings support')
+source=(https://github.com/OpenImageIO/oiio/tarball/Release-$pkgver
+        fix32bit-fail.patch)
+md5sums=('8a5fd88f87fbf1826a4782041cf9e7d0'
+         '64403604d0b74bd6c50fe8638207116a')
+
+build() {
+  cd "$srcdir"/$_pkgname*
+
+  patch -Np1 < $srcdir/fix32bit-fail.patch
+
+  cd src
+
+  [[ -d build ]] && rm -r build
+  mkdir build && cd build
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DPYLIB_INSTALL_DIR=lib/python2.7/site-packages ..
+  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/fix32bit-fail.patch (from rev 83238, openimageio/repos/community-testing-i686/fix32bit-fail.patch)
===================================================================
--- community-i686/fix32bit-fail.patch	                        (rev 0)
+++ community-i686/fix32bit-fail.patch	2013-01-28 16:49:50 UTC (rev 83263)
@@ -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

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2013-01-28 16:49:49 UTC (rev 83262)
+++ community-x86_64/PKGBUILD	2013-01-28 16:49:50 UTC (rev 83263)
@@ -1,36 +0,0 @@
-# $Id$
-# Contributor: SpepS <dreamspepser at yahoo dot it>
-# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
-
-pkgname=openimageio
-pkgver=1.0.9
-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')
-makedepends=('cmake' 'qt' 'python2' 'boost' 'mesa')
-optdepends=('qt: iv image viewer'
-            'python2: bindings support')
-source=(https://github.com/OpenImageIO/oiio/tarball/Release-$pkgver)
-md5sums=('4b98a057515cc95fc954743c987f19ba')
-
-build() {
-  cd "$srcdir"/$_pkgname*/src
-
-  [[ -d build ]] && rm -r build
-  mkdir build && cd build
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DPYLIB_INSTALL_DIR=lib/python2.7/site-packages ..
-  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-x86_64/PKGBUILD (from rev 83238, openimageio/repos/community-testing-x86_64/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2013-01-28 16:49:50 UTC (rev 83263)
@@ -0,0 +1,43 @@
+# $Id$
+# Contributor: SpepS <dreamspepser at yahoo dot it>
+# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
+
+pkgname=openimageio
+pkgver=1.1.2
+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')
+makedepends=('cmake' 'qt' 'python2' 'boost' 'mesa')
+optdepends=('qt: iv image viewer'
+            'python2: bindings support')
+source=(https://github.com/OpenImageIO/oiio/tarball/Release-$pkgver
+        fix32bit-fail.patch)
+md5sums=('8a5fd88f87fbf1826a4782041cf9e7d0'
+         '64403604d0b74bd6c50fe8638207116a')
+
+build() {
+  cd "$srcdir"/$_pkgname*
+
+  patch -Np1 < $srcdir/fix32bit-fail.patch
+
+  cd src
+
+  [[ -d build ]] && rm -r build
+  mkdir build && cd build
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DPYLIB_INSTALL_DIR=lib/python2.7/site-packages ..
+  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-x86_64/fix32bit-fail.patch (from rev 83238, openimageio/repos/community-testing-x86_64/fix32bit-fail.patch)
===================================================================
--- community-x86_64/fix32bit-fail.patch	                        (rev 0)
+++ community-x86_64/fix32bit-fail.patch	2013-01-28 16:49:50 UTC (rev 83263)
@@ -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