OpenImageIO/OpenImageIO.spec

457 lines
14 KiB
RPMSpec
Raw Normal View History

2014-05-20 20:28:54 +00:00
%global subname oiio
2015-01-22 14:22:05 +00:00
#global beta beta1
2014-05-20 20:28:54 +00:00
2011-07-28 01:39:14 +00:00
Name: OpenImageIO
2017-11-02 14:00:53 +00:00
Version: 1.8.6
Release: 1%{?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
2017-04-03 11:01:21 +00:00
Source0: https://github.com/%{name}/%{subname}/archive/Release-%{version}.tar.gz#/%{name}-%{version}.tar.gz
# Images for test suite
#Source1: oiio-images.tar.gz
Patch0: OpenImageIO-man.patch
2017-11-03 15:30:08 +00:00
Patch1: OpenImageIO-dcmtk.patch
Patch2: OpenImageIO-as_needed.patch
2016-02-03 20:35:31 +00:00
2016-04-01 15:08:51 +00:00
BuildRequires: cmake gcc-c++
BuildRequires: txt2man
2017-11-02 16:09:26 +00:00
BuildRequires: qt5-devel
2017-11-02 14:00:53 +00:00
%if 0%{?rhel} && 0%{?rhel} < 7
BuildRequires: boost148-devel
%else
BuildRequires: boost-devel
2017-11-02 14:00:53 +00:00
%endif
BuildRequires: glew-devel
BuildRequires: OpenEXR-devel ilmbase-devel
BuildRequires: python2-devel
BuildRequires: libpng-devel libtiff-devel libjpeg-turbo-devel giflib-devel
%if ! 0%{?rhel}
BuildRequires: libwebp-devel
BuildRequires: Field3D-devel
%endif
BuildRequires: hdf5-devel
BuildRequires: dcmtk-devel
BuildRequires: zlib-devel
BuildRequires: jasper-devel
2011-07-28 01:39:14 +00:00
BuildRequires: pugixml-devel
BuildRequires: opencv-devel
BuildRequires: LibRaw-devel
BuildRequires: openssl-devel
# WARNING: OpenColorIO and OpenImageIO are cross dependent.
# If an ABI incompatible update is done in one, the other also needs to be
# rebuilt.
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 -n python2-openimageio
%{?python_provide:%python_provide python2-openimageio}
Summary: Python 2 bindings for %{name}
Requires: %{name}%{?_isa} = %{version}-%{release}
%description -n python2-openimageio
Python bindings for %{name}.
%package utils
Summary: Command line utilities for %{name}
Requires: %{name}%{?_isa} = %{version}-%{release}
%description utils
Command-line tools to manipulate and get information on images using the
%{name} library.
%package iv
Summary: %{name} based image viewer
Requires: %{name}%{?_isa} = %{version}-%{release}
%description iv
2014-11-14 14:42:44 +00:00
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
2017-02-19 15:52:00 +00:00
%autosetup -p1 -n oiio-Release-%{version}
2011-07-28 01:39:14 +00:00
# Remove bundled pugixml
rm -f src/include/OpenImageIO/pugixml.hpp \
src/include/OpenImageIO/pugiconfig.hpp \
src/libutil/OpenImageIO/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
# Do not override -std= !!!
sed -i \
-e 's,^\([ ]\+add_definitions.*-std=c++1.*\)$,# \1,' \
CMakeLists.txt
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} \
2017-11-03 15:30:08 +00:00
-DBUILD_DOCS:BOOL=TRUE \
-DINSTALL_DOCS:BOOL=FALSE \
2015-12-25 15:38:21 +00:00
-DINSTALL_FONTS:BOOL=FALSE \
2011-07-28 01:39:14 +00:00
-DUSE_EXTERNAL_PUGIXML:BOOL=TRUE \
-DUSE_OPENSSL:BOOL=TRUE \
-DSTOP_ON_WARNING:BOOL=FALSE \
%if 0%{?fedora} >= 26
2017-11-03 15:30:08 +00:00
-DUSE_CPP:STRING=14 \
%endif
%ifarch ppc ppc64
2014-08-01 13:44:48 +00:00
-DNOTHREADS:BOOL=FALSE \
2017-11-02 14:00:53 +00:00
%endif
%if 0%{?rhel} && 0%{?rhel} < 7
-DBOOST_INCLUDEDIR=%{_includedir}/boost148 \
-DBOOST_LIBRARYDIR=%{_libdir}/boost148 \
%endif
2013-08-29 14:21:42 +00:00
-DVERBOSE=TRUE \
../../
2011-07-28 01:39:14 +00:00
2017-11-02 16:09:26 +00:00
%make_build
2011-07-28 01:39:14 +00:00
%install
pushd build/linux
2017-11-02 16:09:26 +00:00
%make_install
2011-07-28 01:39:14 +00:00
# Move man pages to the right directory
mkdir -p %{buildroot}%{_mandir}/man1
cp -a src/doc/*.1 %{buildroot}%{_mandir}/man1
2011-07-28 01:39:14 +00:00
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%check
# Not all tests pass on linux
#pushd build/linux && make test
2011-07-28 01:39:14 +00:00
%files
%license LICENSE
2016-10-02 21:14:55 +00:00
%doc CHANGES.md README.md
2011-07-28 01:39:14 +00:00
%{_libdir}/libOpenImageIO.so.*
2014-05-20 20:28:54 +00:00
%{_libdir}/libOpenImageIO_Util.so.*
%files -n python2-openimageio
2011-07-28 01:39:14 +00:00
%{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
2014-05-20 20:28:54 +00:00
%{_libdir}/libOpenImageIO_Util.so
2011-07-28 01:39:14 +00:00
%{_includedir}/*
2011-08-05 00:41:29 +00:00
2011-07-28 01:39:14 +00:00
%changelog
2017-11-02 14:00:53 +00:00
* Thu Nov 02 2017 Richard Shaw <hobbes1069@gmail.com> - 1.8.6-1
- Update to latest upstream release.
2017-11-03 15:30:08 +00:00
- Add dcmtk to build to enable DICOM plugin.
2017-11-02 14:00:53 +00:00
* Mon Sep 04 2017 Richard Shaw <hobbes1069@gmail.com> - 1.7.17-2
- Add patch to remove opencv qt5 dependency.
2017-09-02 15:52:20 +00:00
* Sat Sep 02 2017 Richard Shaw <hobbes1069@gmail.com> - 1.7.17-1
- Update to latest upstream release.
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.7.15-6
- Python 2 binary package renamed to python2-openimageio
See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.15-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.15-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
2017-07-21 13:41:00 +00:00
* Fri Jul 21 2017 Kalev Lember <klember@redhat.com> - 1.7.15-3
- Rebuilt for Boost 1.64
* Fri Jul 07 2017 Igor Gnatenko <ignatenko@redhat.com> - 1.7.15-2
- Rebuild due to bug in RPM (RHBZ #1468476)
2017-06-02 14:33:44 +00:00
* Thu Jun 01 2017 Richard Shaw <hobbes1069@gmail.com> - 1.7.15-1
- Update to latest upstream relesae.
2017-05-02 13:16:21 +00:00
* Mon May 1 2017 Richard Shaw <hobbes1069@gmail.com> - 1.7.14-1
- Update to latest upstream release.
2017-04-03 11:01:21 +00:00
* Mon Apr 3 2017 Richard Shaw <hobbes1069@gmail.com> - 1.7.13-1
- Update to latest upstream release.
2017-03-04 15:00:41 +00:00
* Sat Mar 04 2017 Richard Shaw <hobbes1069@gmail.com> - 1.7.12-1
- Update to latest upstream release.
* Sun Feb 19 2017 Richard Shaw <hobbes1069@gmail.com> - 1.7.11-1
- Update to latest upstream release.
- Add patch per RHBZ#1412089 to prevent pulling in Qt5.
* Sun Feb 19 2017 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.7.10-5
- Disable -Werror (Fix F26FTBFS, RHBZ#1424580).
- Force USE_CPP14 on fedora >=26.
- Prevent CMakeList.txt from overiding -std=...
2017-02-17 03:14:56 +00:00
* Fri Feb 17 2017 Richard Shaw <hobbes1069@gmail.com> - 1.7.10-4
- Rebuild for boost 1.63
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.10-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
2017-02-01 18:27:12 +00:00
* Wed Feb 01 2017 Sandro Mani <manisandro@gmail.com> - 1.7.10-2
- Rebuild (libwebp)
* Mon Jan 2 2017 Richard Shaw <hobbes1069@gmail.com> - 1.7.10-1
- Update to latest upstream release.
- Fixes FTBFS on aarch64 (BZ#1408883).
2016-12-27 23:14:58 +00:00
* Tue Dec 27 2016 Jon Ciesla <limburgher@gmail.com> - 1.7.9-2
- Rebuild for new LibRaw.
2016-12-02 13:47:36 +00:00
* Thu Dec 1 2016 Richard Shaw <hobbes1069@gmail.com> - 1.7.9-1
- Update to latest upstream release.
2016-10-02 21:14:55 +00:00
* Sun Oct 2 2016 Richard Shaw <hobbes1069@gmail.com> - 1.7.7-1
- Update to latest upstream release.
2016-08-03 15:14:24 +00:00
* Tue Aug 2 2016 Richard Shaw <hobbes1069@gmail.com> - 1.6.16-1
- Update to latest upstream release.
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.15-2
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
2016-07-01 19:22:56 +00:00
* Fri Jul 1 2016 Richard Shaw <hobbes1069@gmail.com> - 1.6.15-1
- Update to latest upstream release.
2016-06-02 02:44:49 +00:00
* Wed Jun 1 2016 Richard Shaw <hobbes1069@gmail.com> - 1.6.14-1
- Update to latest upstream release.
* Sun May 1 2016 Richard Shaw <hobbes1069@gmail.com> - 1.6.13-1
- Update to latest upstream release.
- Change from openjpeg to libjpeg-turbo.
2016-04-26 21:13:32 +00:00
* Tue Apr 26 2016 Orion Poplawski <orion@cora.nwra.com> - 1.6.12-3
- Rebuild for OpenCV 3.1
2016-04-11 18:41:58 +00:00
* Mon Apr 11 2016 Richard Shaw <hobbes1069@gmail.com> - 1.6.12-2
- Rebuild for updated Field3D.
2016-04-01 15:08:51 +00:00
* Fri Apr 1 2016 Richard Shaw <hobbes1069@gmail.com> - 1.6.12-1
- Update to latest upstream release.
2016-03-02 04:01:49 +00:00
* Tue Mar 1 2016 Richard Shaw <hobbes1069@gmail.com> - 1.6.11-1
- Update to latest upstream release.
2016-02-03 20:36:48 +00:00
* Wed Feb 3 2016 Richard Shaw <hobbes1069@gmail.com> - 1.6.10-1
2016-02-03 20:35:31 +00:00
- Update to latest upstream release.
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.9-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
2016-01-21 19:02:08 +00:00
* Thu Jan 21 2016 Orion Poplawski <orion@cora.nwra.com> - 1.6.9-3
- Rebuild for hdf5 1.8.16
2016-01-14 18:09:57 +00:00
* Thu Jan 14 2016 Adam Jackson <ajax@redhat.com> - 1.6.9-2
- Rebuild for glew 1.13
2016-01-14 16:50:05 +00:00
* Wed Jan 6 2016 Richard Shaw <hobbes1069@gmail.com> - 1.6.9-1
- Update to latest upstream release.
* Mon Dec 28 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 1.6.8-2
- Rebuilt for libwebp soname bump
- Use openssl, fixes BZ#1294602.
2015-12-25 15:38:21 +00:00
* Wed Dec 23 2015 Richard Shaw <hobbes1069@gmail.com> - 1.6.8-1
- Update to latest upstream release.
2016-01-14 16:50:05 +00:00
- Use openssl, fixes BZ#1294602.
2015-12-25 15:38:21 +00:00
* Thu Dec 17 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.22-1
- Update to latest upstream release.
- Add LibRaw to build requirements.
2015-12-02 15:29:04 +00:00
* Wed Dec 2 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.21-1
- Update to latest upstream release.
- Move python bindings to their own subpackage.
2015-12-02 15:29:04 +00:00
2015-10-22 16:01:53 +00:00
* Thu Oct 22 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.20-2
- Rebuild for updated pugixml.
2015-09-29 02:44:40 +00:00
* Mon Sep 28 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.20-1
- Update to latest upstream release.
2015-08-27 20:16:30 +00:00
* Thu Aug 27 2015 Jonathan Wakely <jwakely@redhat.com> - 1.5.18-3
- Rebuilt for Boost 1.59
2015-08-05 18:18:32 +00:00
* Wed Aug 05 2015 Jonathan Wakely <jwakely@redhat.com> 1.5.18-2
- Rebuilt for Boost 1.58
2015-08-05 02:36:22 +00:00
* Tue Aug 4 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.18-1
- Update to latest upstream release.
* Wed Jul 29 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.17-3
- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159
2015-07-22 15:59:09 +00:00
* Wed Jul 22 2015 David Tardon <dtardon@redhat.com> - 1.5.17-2
- rebuild for Boost 1.58
2015-07-16 18:54:59 +00:00
* Thu Jul 16 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.17-1
- Update to latest upstream release.
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.14-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2015-05-17 21:04:10 +00:00
* Sun May 17 2015 Orion Poplawski <orion@cora.nwra.com> - 1.5.14-3
- Rebuild for hdf5 1.8.15
2015-05-02 14:28:10 +00:00
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 1.5.14-2
- Rebuilt for GCC 5 C++11 ABI change
2015-04-15 16:16:33 +00:00
* Wed Apr 15 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.14-1
- Update to latest upstream release.
2015-03-12 02:10:49 +00:00
* Wed Mar 11 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.13-1
- Update to latest upstream release.
2015-02-21 22:48:27 +00:00
* Sat Feb 21 2015 Orion Poplawski <orion@cora.nwra.com> - 1.5.12-3
- Rebuild for undefined symbols
* Thu Feb 12 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.12-2
- Update to latest upstream release.
- Add opencv optional dependency.
- Use new license rpmbuild macro.
- Fix broken conditional which prevented Field3D from being required.
2015-02-12 04:25:23 +00:00
* Wed Feb 11 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.11-3
- Rebuild for Field3D.
2015-02-04 13:08:04 +00:00
* Wed Feb 04 2015 Petr Machata <pmachata@redhat.com> - 1.5.11-2
- Bump for rebuild.
* Wed Jan 28 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.11-1
- Update to latest upstream release.
2015-01-27 17:33:20 +00:00
* Tue Jan 27 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.10-1
- Update to latest upstream release.
2015-01-27 17:00:54 +00:00
* Tue Jan 27 2015 Petr Machata <pmachata@redhat.com> - 1.4.16-2
- Rebuild for boost 1.57.0
2015-01-22 14:22:05 +00:00
* Thu Jan 22 2015 Richard Shaw <hobbes1069@gmail.com> - 1.4.16-1
- Update to latest upstream release.
2014-11-26 14:57:20 +00:00
* Wed Nov 26 2014 Rex Dieter <rdieter@fedoraproject.org> 1.4.15-2
- rebuild (openexr)
2014-11-25 13:55:32 +00:00
* Tue Nov 25 2014 Richard Shaw <hobbes1069@gmail.com> - 1.4.15-1
- Update to latest upstream release.
2014-11-14 14:42:44 +00:00
* Fri Nov 14 2014 Richard Shaw <hobbes1069@gmail.com> - 1.4.14-1
- Update to latest upstream release.
2014-09-05 14:48:03 +00:00
* Fri Sep 5 2014 Richard Shaw <hobbes1069@gmail.com> - 1.4.12-4
- Rebuild for Field3D 1.4.3.
2014-09-04 15:46:34 +00:00
* Thu Sep 04 2014 Orion Poplawski <orion@cora.nwra.com> - 1.4.12-3
- Rebuild for pugixml 1.4
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.12-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
2014-08-01 13:44:48 +00:00
* Fri Aug 1 2014 Richard Shaw <hobbes1069@gmail.com> - 1.4.12-1
- Update to latest upstream release.
* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.7-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2014-05-23 10:29:53 +00:00
* Fri May 23 2014 Petr Machata <pmachata@redhat.com> - 1.4.7-3
- Rebuild for boost 1.55.0
2014-05-23 09:41:12 +00:00
* Fri May 23 2014 David Tardon <dtardon@redhat.com> - 1.4.7-2
- rebuild for boost 1.55.0
2014-05-20 20:28:54 +00:00
* Mon May 19 2014 Richard Shaw <hobbes1069@gmail.com> - 1.4.7-1
- Update to latest upstream release.
* Tue Jan 7 2014 Richard Shaw <hobbes1069@gmail.com> - 1.3.10-1
- Update to latest upstream release.
- Add libgif as build requirement.
2013-11-27 16:50:46 +00:00
* Wed Nov 27 2013 Rex Dieter <rdieter@fedoraproject.org> - 1.2.3-3
- rebuild (openexr)
2013-11-18 00:52:55 +00:00
* Mon Nov 18 2013 Dave Airlie <airlied@redhat.com> - 1.2.3-2
- rebuilt for GLEW 1.10
* Wed Nov 6 2013 Richard Shaw <hobbes1069@gmail.com> - 1.2.3-1
- Update to latest upstream release.
- Fix ppc builds (BZ#1021977).
- Add conditionals to build requirements for EPEL 6.
* Wed Oct 2 2013 Richard Shaw <hobbes1069@gmail.com> - 1.2.2-1
- Update to latest upstream release.
2013-09-09 01:52:09 +00:00
* Sun Sep 08 2013 Rex Dieter <rdieter@fedoraproject.org> 1.2.1-2
- rebuild (ilmbase/openexr)
2013-08-28 19:54:51 +00:00
* Thu Aug 8 2013 Richard Shaw <hobbes1069@gmail.com> - 1.2.1-1
- Update to latest upstream release.
* Fri Aug 02 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2013-07-28 18:25:10 +00:00
* Sun Jul 28 2013 Petr Machata <pmachata@redhat.com> - 1.2.0-2
- Rebuild for boost 1.54.0