OpenImageIO/OpenImageIO.spec

270 lines
7.7 KiB
RPMSpec
Raw Normal View History

2012-09-22 13:50:42 +00:00
%global githash1 g0b78dec
%global githash2 0d48631
%global githash3 9bf4356
2011-07-28 01:39:14 +00:00
Name: OpenImageIO
Version: 1.1.3
Release: 7%{?dist}
2011-07-28 01:39:14 +00:00
Summary: Library for reading and writing images
Group: Development/Libraries
License: BSD
URL: https://sites.google.com/site/openimageio/home
#Source0: https://download.github.com/%{name}-oiio-Release-%{version}-0-%{githash1}.tar.gz
Source0: https://download.github.com/oiio-Release-%{version}.tar.gz
# Images for test suite
#Source1: %{name}-oiio-images-%{githash3}.tar.gz
Source101: FindTBB.cmake
Patch0: OpenImageIO-1.1.2-use_external_tbb.patch
2012-06-12 19:03:59 +00:00
Patch2: OpenImageIO-ppc.patch
# https://github.com/OpenImageIO/oiio/issues/473
Patch3: OpenImageIO-1.1.3-SHA1_undef_ref.patch
# https://github.com/The11ers/oiio/commit/010754d2a9b4b41f658a7752046c9217abaf98fc
Patch4: oiio-arm.patch
2011-07-28 01:39:14 +00:00
BuildRequires: cmake txt2man
2012-05-02 13:22:05 +00:00
BuildRequires: qt4-devel
BuildRequires: boost-devel
BuildRequires: glew-devel
BuildRequires: OpenEXR-devel ilmbase-devel
BuildRequires: python2-devel
2012-05-03 13:21:13 +00:00
BuildRequires: libpng-devel libtiff-devel openjpeg-devel libwebp-devel
BuildRequires: zlib-devel
BuildRequires: jasper-devel
2011-07-28 01:39:14 +00:00
BuildRequires: pugixml-devel
%ifarch x86_64
BuildRequires: tbb-devel
%endif
BuildRequires: hdf5-devel Field3D-devel
BuildRequires: OpenColorIO-devel
2011-07-28 01:39:14 +00:00
# We don't want to provide private python extension libs
%{?filter_setup:
%filter_provides_in %{python_sitearch}/.*\.so$
%filter_setup
}
2011-07-28 01:39:14 +00:00
%description
OpenImageIO is a library for reading and writing images, and a bunch of related
classes, utilities, and applications. Main features include:
- Extremely simple but powerful ImageInput and ImageOutput APIs for reading and
writing 2D images that is format agnostic.
- Format plugins for TIFF, JPEG/JFIF, OpenEXR, PNG, HDR/RGBE, Targa, JPEG-2000,
DPX, Cineon, FITS, BMP, ICO, RMan Zfile, Softimage PIC, DDS, SGI,
PNM/PPM/PGM/PBM, Field3d.
- An ImageCache class that transparently manages a cache so that it can access
truly vast amounts of image data.
%package utils
Summary: Command line utilies for %{name}
Requires: %{name}%{?_isa} = %{version}-%{release}
%description utils
Command-line tools to minipulate and get information on images using the
%{name} library.
%package iv
Summary: %{name} based image viewer.
Requires: %{name}%{?_isa} = %{version}-%{release}
%description iv
A really nice image viewer, iv, based on %{name} classes (and so will work with
any formats for which plugins are available).
2011-07-28 01:39:14 +00:00
2011-07-28 01:39:14 +00:00
%package devel
Summary: Documentation for %{name}
2011-07-28 01:39:14 +00:00
Group: Development/Libraries
Requires: %{name}%{?_isa} = %{version}-%{release}
%description devel
Development files for package %{name}
%prep
#setup -q -n %{name}-oiio-%{githash2}
%setup -q -n oiio-Release-%{version}
2012-03-04 23:10:14 +00:00
%patch0 -p1 -b .exttbb
2013-01-28 13:34:02 +00:00
%ifarch ppc %{power64}
2012-06-12 19:03:59 +00:00
%patch2 -p1 -b .ppc
%endif
%patch3 -p1 -b .sha1
%patch4 -p1 -b .arm
2011-07-28 01:39:14 +00:00
# Install FindTBB.cmake
install %{SOURCE101} src/cmake/modules/
2011-07-28 01:39:14 +00:00
# Remove bundled pugixml
rm -f src/include/pugixml.hpp \
src/include/pugiconfig.hpp \
2011-08-05 00:41:29 +00:00
src/libutil/pugixml.cpp
# Remove bundled tbb
2011-07-28 01:39:14 +00:00
rm -rf src/include/tbb
# Install test images
#rm -rf ../oiio-images && mkdir ../oiio-images && pushd ../oiio-images
#tar --strip-components=1 -xzf %{SOURCE1}
2011-07-28 01:39:14 +00:00
%build
rm -rf build/linux && mkdir -p build/linux && pushd build/linux
# CMAKE_SKIP_RPATH is OK here because it is set to FALSE internally and causes
# CMAKE_INSTALL_RPATH to be cleared, which is the desiered result.
2012-03-02 20:27:51 +00:00
%cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_SKIP_RPATH:BOOL=TRUE \
2011-07-28 01:39:14 +00:00
-DINCLUDE_INSTALL_DIR:PATH=/usr/include/%{name} \
-DPYLIB_INSTALL_DIR:PATH=%{python_sitearch} \
-DINSTALL_DOCS:BOOL=FALSE \
2011-07-28 01:39:14 +00:00
-DUSE_EXTERNAL_PUGIXML:BOOL=TRUE \
%ifarch x86_64
-DUSE_TBB:BOOL=TRUE \
2012-03-02 20:27:51 +00:00
-DUSE_EXTERNAL_TBB=TRUE \
%else
-DUSE_TBB:BOOL=FALSE \
%endif
2013-01-28 13:34:02 +00:00
%ifarch ppc %{power64}
-DNOTHREADS:BOOL=TRUE \
%endif
../../src
2011-07-28 01:39:14 +00:00
make %{?_smp_mflags}
%install
pushd build/linux
2011-07-28 01:39:14 +00:00
make DESTDIR=%{buildroot} install
# Move man pages to the right directory
mkdir -p %{buildroot}%{_mandir}/man1
cp -a doc/*.1 %{buildroot}%{_mandir}/man1
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%check
#pushd build/linux && make test
2011-07-28 01:39:14 +00:00
%files
%doc CHANGES LICENSE
%{_libdir}/libOpenImageIO.so.*
%{python_sitearch}/OpenImageIO.so
%files utils
%exclude %{_bindir}/iv
%{_bindir}/*
%exclude %{_mandir}/man1/iv.1.gz
%{_mandir}/man1/*.1.gz
%files iv
%{_bindir}/iv
%{_mandir}/man1/iv.1.gz
2011-07-28 01:39:14 +00:00
%files devel
%doc src/doc/*.pdf
%{_libdir}/libOpenImageIO.so
%{_includedir}/*
2011-08-05 00:41:29 +00:00
2011-07-28 01:39:14 +00:00
%changelog
* Sun Mar 31 2013 Peter Robinson <pbrobinson@fedoraproject.org> 1.1.3-7
- Add upstream patch to fix FTBFS on ARM (RHBZ 924932)
2013-03-10 21:23:20 +00:00
* Sun Mar 10 2013 Rex Dieter <rdieter@fedoraproject.org> 1.1.3-6
- rebuild (OpenEXR)
2013-02-10 01:24:53 +00:00
* Sun Feb 10 2013 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.1.3-5
- Rebuild for Boost-1.53.0
2013-02-09 22:08:32 +00:00
* Sat Feb 09 2013 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.1.3-4
- Rebuild for Boost-1.53.0
2013-01-28 13:34:02 +00:00
* Mon Jan 28 2013 Karsten Hopp <karsten@redhat.com> 1.1.3-3
- update PPC patch, use power64 macro
* Fri Jan 18 2013 Adam Tkac <atkac redhat com> - 1.1.3-2
- rebuild due to "jpeg8-ABI" feature drop
* Mon Jan 14 2013 Richard Shaw <hobbes1069@gmail.com> - 1.1.3-1
- Update to latest upstream release.
- Separate utilities and library packages.
* Fri Dec 28 2012 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-3
- Rebuild, see
http://lists.fedoraproject.org/pipermail/devel/2012-December/175685.html
2012-12-13 18:40:28 +00:00
* Thu Dec 13 2012 Adam Jackson <ajax@redhat.com> - 1.0.9-2
- Rebuild for glew 1.9.0
2012-09-22 13:50:42 +00:00
* Sat Sep 22 2012 Richard Shaw <hobbes1069@gmail.com> - 1.0.9-1
- Update to latest upstream release.
2012-08-08 21:00:21 +00:00
* Wed Aug 8 2012 David Malcolm <dmalcolm@redhat.com> - 1.0.8-2
- rebuild against boost-1.50
2012-08-01 15:08:14 +00:00
* Wed Aug 01 2012 Richard Shaw <hobbes1069@gmail.com> - 1.0.8-1
- Update to latest upstream release.
2012-07-30 12:59:12 +00:00
* Mon Jul 30 2012 Richard Shaw <hobbes1069@gmail.com> - 1.0.7-3
- Rebuild for updated libGLEW.
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.7-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2012-07-10 01:54:29 +00:00
* Mon Jul 09 2012 Richard Shaw <hobbes1069@gmail.com> - 1.0.7-1
- Update to latest upstream release.
* Thu Jun 28 2012 Richard Shaw <hobbes1069@gmail.com> - 1.0.6-1
- Update to latest upstream release.
- Fix linking against TBB which broke at some point.
2012-06-12 17:27:40 +00:00
* Tue Jun 12 2012 Richard Shaw <hobbes1069@gmail.com> - 1.0.5-1
- Update to latest upstream release.
* Mon May 07 2012 Richard Shaw <hobbes1069@gmail.com> - 1.0.4-2
- Rebuild for updated libtiff.
- Add OpenColorIO to build requirements.
2012-05-03 13:21:13 +00:00
* Thu May 03 2012 Richard Shaw <hobbes1069@gmail.com> - 1.0.4-1
- Update to latest upstream release.
* Tue Apr 24 2012 Richard Shaw <hobbes1069@gmail.com> - 1.0.3-1
- Update to latest upstream release.
2012-03-02 20:27:51 +00:00
* Fri Mar 02 2012 Richard Shaw <hobbes1069@gmail.com> - 1.0.0-1
- Update to latest upstream release.
2012-01-05 19:22:28 +00:00
* Thu Jan 05 2012 Richard Shaw <hobbes1069@gmail.com> - 0.10.4-1
- Update to 0.10.4.
- Rebuild for GCC 4.7.0.
* Fri Dec 02 2011 Richard Shaw <hobbes1069@gmail.com> - 0.10.3-1
- Build against TBB library.
2011-11-20 14:55:53 +00:00
* Sat Nov 05 2011 Richard Shaw <hobbes1069@gmail.com> - 0.10.3-1
- Update to 0.10.3
- Rebuild for libpng 1.5.
- Fixed bulding against tbb library.
2011-11-05 19:09:09 +00:00
2011-08-27 13:54:19 +00:00
* Thu Aug 27 2011 Tom Callaway <spot@fedoraproject.org> - 0.10.2-1
- Update to 0.10.2
2011-08-27 13:54:19 +00:00
* Thu Aug 04 2011 Richard Shaw <hobbes1069@gmail.com> - 0.10.1-2
2011-08-05 00:41:29 +00:00
- New upstream release.
- Fix private shared object provides with python library.
2011-08-05 00:41:29 +00:00
2011-07-28 01:39:14 +00:00
* Mon Jul 18 2011 Richard Shaw <hobbes1069@gmail.com> - 0.10.0-2
- Disabled use of the TBB library.
2011-08-05 00:41:29 +00:00
- Moved headers to named directory.
2011-07-28 01:39:14 +00:00
* Tue Jul 05 2011 Richard Shaw <hobbes1069@gmail.com> - 0.10.0-1
- Inital Release.