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

Eric Bélanger eric at archlinux.org
Thu Oct 25 01:35:09 UTC 2012


    Date: Wednesday, October 24, 2012 @ 21:35:08
  Author: eric
Revision: 169639

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

Added:
  ilmbase/repos/testing-i686/
  ilmbase/repos/testing-i686/PKGBUILD
    (from rev 169628, ilmbase/repos/staging-i686/PKGBUILD)
  ilmbase/repos/testing-i686/ilmbase-IexMath.patch
    (from rev 169628, ilmbase/repos/staging-i686/ilmbase-IexMath.patch)
  ilmbase/repos/testing-x86_64/
  ilmbase/repos/testing-x86_64/PKGBUILD
    (from rev 169628, ilmbase/repos/staging-x86_64/PKGBUILD)
  ilmbase/repos/testing-x86_64/ilmbase-IexMath.patch
    (from rev 169628, ilmbase/repos/staging-x86_64/ilmbase-IexMath.patch)
Deleted:
  ilmbase/repos/staging-i686/
  ilmbase/repos/staging-x86_64/

--------------------------------------+
 testing-i686/PKGBUILD                |   35 +++++++++++++++++++++++++++++++++
 testing-i686/ilmbase-IexMath.patch   |   12 +++++++++++
 testing-x86_64/PKGBUILD              |   35 +++++++++++++++++++++++++++++++++
 testing-x86_64/ilmbase-IexMath.patch |   12 +++++++++++
 4 files changed, 94 insertions(+)

Copied: ilmbase/repos/testing-i686/PKGBUILD (from rev 169628, ilmbase/repos/staging-i686/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2012-10-25 01:35:08 UTC (rev 169639)
@@ -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/testing-i686/ilmbase-IexMath.patch (from rev 169628, ilmbase/repos/staging-i686/ilmbase-IexMath.patch)
===================================================================
--- testing-i686/ilmbase-IexMath.patch	                        (rev 0)
+++ testing-i686/ilmbase-IexMath.patch	2012-10-25 01:35:08 UTC (rev 169639)
@@ -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>

Copied: ilmbase/repos/testing-x86_64/PKGBUILD (from rev 169628, ilmbase/repos/staging-x86_64/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2012-10-25 01:35:08 UTC (rev 169639)
@@ -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/testing-x86_64/ilmbase-IexMath.patch (from rev 169628, ilmbase/repos/staging-x86_64/ilmbase-IexMath.patch)
===================================================================
--- testing-x86_64/ilmbase-IexMath.patch	                        (rev 0)
+++ testing-x86_64/ilmbase-IexMath.patch	2012-10-25 01:35:08 UTC (rev 169639)
@@ -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>




More information about the arch-commits mailing list