[arch-commits] Commit in openimageio/trunk (PKGBUILD)

Sven-Hendrik Haase svenstaro at archlinux.org
Mon Mar 18 14:55:28 UTC 2019


    Date: Monday, March 18, 2019 @ 14:55:27
  Author: svenstaro
Revision: 442465

upgpkg: openimageio 1.8.17-3

Use Python 3 instead of Python 2

Modified:
  openimageio/trunk/PKGBUILD

----------+
 PKGBUILD |   20 +++++++++-----------
 1 file changed, 9 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2019-03-18 14:40:17 UTC (rev 442464)
+++ PKGBUILD	2019-03-18 14:55:27 UTC (rev 442465)
@@ -3,33 +3,31 @@
 
 pkgname=openimageio
 pkgver=1.8.17
-pkgrel=2
+pkgrel=3
 pkgdesc="A library for reading and writing images, including classes, utilities, and applications"
 arch=(x86_64)
 url="http://www.openimageio.org/"
 license=('custom')
 depends=('openexr' 'boost-libs' 'jasper' 'glew' 'libtiff' 'opencolorio' 'intel-tbb' 'openssl' 'libpng')
-makedepends=('cmake' 'qt5-base' 'python2' 'boost' 'mesa' 'git' 'freetype2' 'fontconfig' 'libxrender')
+makedepends=('cmake' 'qt5-base' 'python' 'boost' 'mesa' 'git' 'freetype2' 'fontconfig' 'libxrender')
 optdepends=('qt5-base: iv image viewer'
-            'python2: bindings support')
+            'python: bindings support')
 source=(git+git://github.com/OpenImageIO/oiio.git#tag=Release-${pkgver})
 md5sums=('SKIP')
 
+prepare() {
+  mkdir oiio/build
+}
+
 build() {
-  cd oiio
+  cd oiio/build
 
-  [[ -d build ]] && rm -r build
-  mkdir build && cd build
-
-  # Python is currently broken :(
   cmake .. \
-      -DUSE_PYTHON=ON \
       -DUSE_PYTHON3=ON \
       -DUSE_OPENSSL=ON \
       -DCMAKE_INSTALL_PREFIX=/usr \
       -DCMAKE_INSTALL_LIBDIR=lib \
-      -DPYLIB_INSTALL_DIR=lib/python2.7/site-packages \
-      -DPYLIB3_INSTALL_DIR=lib/python3.6/site-packages \
+      -DPYLIB3_INSTALL_DIR=lib/python3.7/site-packages \
       -DOIIO_BUILD_TESTS=ON \
       -DOIIO_BUILD_TOOLS=ON \
       -DSTOP_ON_WARNING=OFF



More information about the arch-commits mailing list