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

Eric Bélanger eric at archlinux.org
Sat Oct 27 23:41:55 UTC 2012


    Date: Saturday, October 27, 2012 @ 19:41:54
  Author: eric
Revision: 169749

db-move: moved ilmbase from [testing] to [extra] (i686, x86_64)

Added:
  ilmbase/repos/extra-i686/PKGBUILD
    (from rev 169738, ilmbase/repos/testing-i686/PKGBUILD)
  ilmbase/repos/extra-i686/ilmbase-IexMath.patch
    (from rev 169738, ilmbase/repos/testing-i686/ilmbase-IexMath.patch)
  ilmbase/repos/extra-x86_64/PKGBUILD
    (from rev 169738, ilmbase/repos/testing-x86_64/PKGBUILD)
  ilmbase/repos/extra-x86_64/ilmbase-IexMath.patch
    (from rev 169738, ilmbase/repos/testing-x86_64/ilmbase-IexMath.patch)
Deleted:
  ilmbase/repos/extra-i686/PKGBUILD
  ilmbase/repos/extra-i686/tests-compile-fixes.patch
  ilmbase/repos/extra-x86_64/PKGBUILD
  ilmbase/repos/extra-x86_64/tests-compile-fixes.patch
  ilmbase/repos/testing-i686/
  ilmbase/repos/testing-x86_64/

----------------------------------------+
 extra-i686/PKGBUILD                    |   70 +++++++++++++++----------------
 extra-i686/ilmbase-IexMath.patch       |   12 +++++
 extra-i686/tests-compile-fixes.patch   |   12 -----
 extra-x86_64/PKGBUILD                  |   70 +++++++++++++++----------------
 extra-x86_64/ilmbase-IexMath.patch     |   12 +++++
 extra-x86_64/tests-compile-fixes.patch |   12 -----
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2012-10-27 23:41:52 UTC (rev 169748)
+++ extra-i686/PKGBUILD	2012-10-27 23:41:54 UTC (rev 169749)
@@ -1,35 +0,0 @@
-# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
-# Maintainer: Tobias Powalowski <tpowa at archlinux.org>
-
-pkgname=ilmbase
-pkgver=1.0.2
-pkgrel=1
-depends=('gcc-libs')
-pkgdesc="Base libraries from ILM for OpenEXR"
-arch=(i686 x86_64)
-license=('custom')
-options=('!libtool')
-source=(http://savannah.nongnu.org/download/openexr/$pkgname-$pkgver.tar.gz
-        tests-compile-fixes.patch)
-url="http://www.openexr.com"
-md5sums=('26c133ee8ca48e1196fbfb3ffe292ab4'
-         '2687ab9ac01b417ee5cf8c0174b72e43')
-
-build() {
-  cd ${srcdir}/$pkgname-$pkgver
-  patch -Np1 -i ${srcdir}/tests-compile-fixes.patch
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd ${srcdir}/$pkgname-$pkgver
-  # one of the tests fails randomly for an unknown reason
-  make check || true
-}
-
-package() {
-  cd ${srcdir}/$pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-  install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}

Copied: ilmbase/repos/extra-i686/PKGBUILD (from rev 169738, ilmbase/repos/testing-i686/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2012-10-27 23:41:54 UTC (rev 169749)
@@ -0,0 +1,35 @@
+# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
+# Maintainer: Tobias Powalowski <tpowa at archlinux.org>
+
+pkgname=ilmbase
+pkgver=1.0.3
+pkgrel=1
+depends=('gcc-libs')
+pkgdesc="Base libraries from ILM for OpenEXR"
+arch=(i686 x86_64)
+url="http://www.openexr.com"
+license=('custom')
+options=('!libtool')
+source=(https://github.com/downloads/openexr/openexr/$pkgname-$pkgver.tar.gz 
+        ilmbase-IexMath.patch)
+md5sums=('d99962ec7e2bfac0647aaabf6b91d5de'
+         '9c8efaf15f60bccf79749ec879657962')
+
+build() {
+  cd "${srcdir}/$pkgname-$pkgver"
+  patch -p0 -i "${srcdir}/ilmbase-IexMath.patch"
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "${srcdir}/$pkgname-$pkgver"
+  # one of the tests fails randomly for an unknown reason
+  make check || true
+}
+
+package() {
+  cd "${srcdir}/$pkgname-$pkgver"
+  make DESTDIR="${pkgdir}" install
+  install -D -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}

Copied: ilmbase/repos/extra-i686/ilmbase-IexMath.patch (from rev 169738, ilmbase/repos/testing-i686/ilmbase-IexMath.patch)
===================================================================
--- extra-i686/ilmbase-IexMath.patch	                        (rev 0)
+++ extra-i686/ilmbase-IexMath.patch	2012-10-27 23:41:54 UTC (rev 169749)
@@ -0,0 +1,12 @@
+--- IexMath/IexMathFpu.cpp.orig	2012-07-26 20:51:55.000000000 +0200
++++ IexMath/IexMathFpu.cpp	2012-10-04 15:30:47.000000000 +0200
+@@ -27,8 +27,7 @@
+ #endif
+ 
+ 
+-#ifdef HAVE_UCONTEXT_H
+-
++#if defined(HAVE_UCONTEXT_H) && (defined(x86_64) || defined(i386_))
+ 
+ #include <ucontext.h>
+ #include <signal.h>

Deleted: extra-i686/tests-compile-fixes.patch
===================================================================
--- extra-i686/tests-compile-fixes.patch	2012-10-27 23:41:52 UTC (rev 169748)
+++ extra-i686/tests-compile-fixes.patch	2012-10-27 23:41:54 UTC (rev 169749)
@@ -1,12 +0,0 @@
-diff -ur ilmbase-1.0.2/Imath/ImathMatrix.h ilmbase-1.0.2.new/Imath/ImathMatrix.h
---- ilmbase-1.0.2/Imath/ImathMatrix.h	2010-07-17 00:48:40.000000000 +0200
-+++ ilmbase-1.0.2.new/Imath/ImathMatrix.h	2011-04-25 10:15:21.121608420 +0200
-@@ -49,6 +49,8 @@
- #include "ImathVec.h"
- #include "ImathShear.h"
- 
-+#include <cstdlib>
-+#include <cstring>
- #include <iostream>
- #include <iomanip>
- 

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2012-10-27 23:41:52 UTC (rev 169748)
+++ extra-x86_64/PKGBUILD	2012-10-27 23:41:54 UTC (rev 169749)
@@ -1,35 +0,0 @@
-# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
-# Maintainer: Tobias Powalowski <tpowa at archlinux.org>
-
-pkgname=ilmbase
-pkgver=1.0.2
-pkgrel=1
-depends=('gcc-libs')
-pkgdesc="Base libraries from ILM for OpenEXR"
-arch=(i686 x86_64)
-license=('custom')
-options=('!libtool')
-source=(http://savannah.nongnu.org/download/openexr/$pkgname-$pkgver.tar.gz
-        tests-compile-fixes.patch)
-url="http://www.openexr.com"
-md5sums=('26c133ee8ca48e1196fbfb3ffe292ab4'
-         '2687ab9ac01b417ee5cf8c0174b72e43')
-
-build() {
-  cd ${srcdir}/$pkgname-$pkgver
-  patch -Np1 -i ${srcdir}/tests-compile-fixes.patch
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd ${srcdir}/$pkgname-$pkgver
-  # one of the tests fails randomly for an unknown reason
-  make check || true
-}
-
-package() {
-  cd ${srcdir}/$pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-  install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}

Copied: ilmbase/repos/extra-x86_64/PKGBUILD (from rev 169738, ilmbase/repos/testing-x86_64/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2012-10-27 23:41:54 UTC (rev 169749)
@@ -0,0 +1,35 @@
+# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
+# Maintainer: Tobias Powalowski <tpowa at archlinux.org>
+
+pkgname=ilmbase
+pkgver=1.0.3
+pkgrel=1
+depends=('gcc-libs')
+pkgdesc="Base libraries from ILM for OpenEXR"
+arch=(i686 x86_64)
+url="http://www.openexr.com"
+license=('custom')
+options=('!libtool')
+source=(https://github.com/downloads/openexr/openexr/$pkgname-$pkgver.tar.gz 
+        ilmbase-IexMath.patch)
+md5sums=('d99962ec7e2bfac0647aaabf6b91d5de'
+         '9c8efaf15f60bccf79749ec879657962')
+
+build() {
+  cd "${srcdir}/$pkgname-$pkgver"
+  patch -p0 -i "${srcdir}/ilmbase-IexMath.patch"
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "${srcdir}/$pkgname-$pkgver"
+  # one of the tests fails randomly for an unknown reason
+  make check || true
+}
+
+package() {
+  cd "${srcdir}/$pkgname-$pkgver"
+  make DESTDIR="${pkgdir}" install
+  install -D -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}

Copied: ilmbase/repos/extra-x86_64/ilmbase-IexMath.patch (from rev 169738, ilmbase/repos/testing-x86_64/ilmbase-IexMath.patch)
===================================================================
--- extra-x86_64/ilmbase-IexMath.patch	                        (rev 0)
+++ extra-x86_64/ilmbase-IexMath.patch	2012-10-27 23:41:54 UTC (rev 169749)
@@ -0,0 +1,12 @@
+--- IexMath/IexMathFpu.cpp.orig	2012-07-26 20:51:55.000000000 +0200
++++ IexMath/IexMathFpu.cpp	2012-10-04 15:30:47.000000000 +0200
+@@ -27,8 +27,7 @@
+ #endif
+ 
+ 
+-#ifdef HAVE_UCONTEXT_H
+-
++#if defined(HAVE_UCONTEXT_H) && (defined(x86_64) || defined(i386_))
+ 
+ #include <ucontext.h>
+ #include <signal.h>

Deleted: extra-x86_64/tests-compile-fixes.patch
===================================================================
--- extra-x86_64/tests-compile-fixes.patch	2012-10-27 23:41:52 UTC (rev 169748)
+++ extra-x86_64/tests-compile-fixes.patch	2012-10-27 23:41:54 UTC (rev 169749)
@@ -1,12 +0,0 @@
-diff -ur ilmbase-1.0.2/Imath/ImathMatrix.h ilmbase-1.0.2.new/Imath/ImathMatrix.h
---- ilmbase-1.0.2/Imath/ImathMatrix.h	2010-07-17 00:48:40.000000000 +0200
-+++ ilmbase-1.0.2.new/Imath/ImathMatrix.h	2011-04-25 10:15:21.121608420 +0200
-@@ -49,6 +49,8 @@
- #include "ImathVec.h"
- #include "ImathShear.h"
- 
-+#include <cstdlib>
-+#include <cstring>
- #include <iostream>
- #include <iomanip>
- 




More information about the arch-commits mailing list