Compare commits

...

26 Commits
f26 ... master

Author SHA1 Message Date
Richard Shaw 47f6927865 Fix conditional to > rather than >=. 2018-06-02 07:23:56 -05:00
Richard Shaw 9a215610da Add conditional for BR: python or python2 based on Fedora release. 2018-06-02 07:14:46 -05:00
Richard Shaw 0c89449a0e Add boost-python2-devel and build dependency. 2018-06-01 07:48:06 -05:00
Richard Shaw 53c00d21bf Update to 1.8.12. 2018-06-01 07:33:11 -05:00
Richard Shaw eedcd8de57 Update to 1.8.10. 2018-04-01 20:03:41 -05:00
Adam Williamson dd39d24f59 Rebuild for opencv 3.4.1 2018-03-02 10:29:49 -08:00
Richard Shaw d7bdc6ede3 Update to 1.8.9 2018-03-01 14:30:19 -06:00
Richard Shaw 90e880c8a4 Add variable for soversion to prevent accidental soname updates. 2018-02-27 09:01:05 -06:00
Peter Robinson 8122e401de rebuild 2018-02-23 11:00:05 +00:00
Sandro Mani 91369ed97b Rebuild (giflib) 2018-02-13 12:45:11 +01:00
Richard Shaw 93d5aa4d3a Fix release. 2018-02-11 07:34:37 -06:00
Richard Shaw dd2097c451 Remove unneeded patches. 2018-02-11 07:32:57 -06:00
Richard Shaw df93839ee8 Merge branch 'master' of ssh://pkgs.fedoraproject.org/rpms/OpenImageIO 2018-02-11 07:31:49 -06:00
Richard Shaw 22a6838b79 Update to 1.8.8. 2018-02-11 07:31:35 -06:00
Fedora Release Engineering c9fda34d14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2018-02-07 00:53:04 +00:00
Richard Shaw b73085a7de Update to 1.8.8. 2018-02-01 20:44:29 -06:00
Richard Shaw b74dc29235 Add openjpeg2 to build dependencies.
Re-enable dcmtk for 32bit arches.
2018-01-18 12:39:55 -06:00
Richard Shaw fec3e2023e Rebuild for OpenColorIO 1.1.0. 2018-01-13 08:14:12 -06:00
Richard Shaw a6324edf57 Update to latest upstream release.
Disable building with dcmtk until fixed, see:
  https://github.com/OpenImageIO/oiio/issues/1841
2018-01-07 08:11:17 -06:00
Richard Shaw 8133348e0b Add patch for arm to use GLES. 2017-12-19 08:02:20 -06:00
Richard Shaw 85af7b25c3 Update patches to build man pages. 2017-11-03 10:30:08 -05:00
Richard Shaw 4b19846297 Enable build docs cmake option for man page. 2017-11-02 12:21:08 -05:00
Richard Shaw 1eed71fda6 Qt5 is now required. 2017-11-02 11:09:26 -05:00
Richard Shaw c4daba7506 Comment out uninit patch. 2017-11-02 10:06:04 -05:00
Richard Shaw cb417efd83 Upload new sources. 2017-11-02 09:26:06 -05:00
Richard Shaw d964540e5b Update to latest upstream release. 2017-11-02 09:00:53 -05:00
6 changed files with 112 additions and 314 deletions

7
.gitignore vendored
View File

@ -53,3 +53,10 @@ clog
/OpenImageIO-1.7.14.tar.gz
/OpenImageIO-1.7.15.tar.gz
/OpenImageIO-1.7.17.tar.gz
/OpenImageIO-1.8.5.tar.gz
/OpenImageIO-1.8.6.tar.gz
/OpenImageIO-1.8.7.tar.gz
/OpenImageIO-1.8.8.tar.gz
/OpenImageIO-1.8.9.tar.gz
/OpenImageIO-1.8.10.tar.gz
/OpenImageIO-1.8.12.tar.gz

View File

@ -1,15 +0,0 @@
--- a/src/cmake/modules/FindOpenCV.cmake
+++ b/src/cmake/modules/FindOpenCV.cmake
@@ -51,9 +51,11 @@
)
-set (opencv_components opencv_highgui opencv_imgproc opencv_core)
+set (opencv_components opencv_imgproc opencv_core)
if (NOT ${OpenCV_VERSION} VERSION_LESS 3.0.0)
set (opencv_components opencv_videoio ${opencv_components})
+else ()
+ set (opencv_components opencv_highgui ${opencv_components})
endif ()
foreach (component ${opencv_components})
find_library (${component}_lib

View File

@ -1,6 +1,22 @@
--- a/src/doc/CMakeLists.txt
+++ b/src/doc/CMakeLists.txt
@@ -19,8 +19,7 @@ if (UNIX AND TXT2MAN AND PYTHONINTERP_FO
@@ -6,10 +6,11 @@ set (public_docs
"${OpenImageIO_SOURCE_DIR}/CHANGES.md"
)
-install (FILES ${public_docs}
- DESTINATION ${CMAKE_INSTALL_DOCDIR}
- COMPONENT documentation)
-
+if (INSTALL_DOCS)
+ install (FILES ${public_docs}
+ DESTINATION ${CMAKE_INSTALL_DOCDIR}
+ COMPONENT documentation)
+endif()
# generate man pages using txt2man and a tiny python script to munge the
# result of "$tool --help"
@@ -19,8 +20,7 @@ if (UNIX AND TXT2MAN AND PYTHONINTERP_FO
message (STATUS "Unix man page documentation will be generated")
set (cli_tools oiiotool iinfo maketx idiff igrep iconvert)
@ -10,3 +26,34 @@
list (APPEND cli_tools iv)
endif()
@@ -37,7 +37,9 @@ if (UNIX AND TXT2MAN AND PYTHONINTERP_FO
# force man page build before install
add_custom_target (man_pages ALL DEPENDS ${manpage_files})
+if (INSTALL_DOCS)
install (FILES ${manpage_files}
DESTINATION ${CMAKE_INSTALL_MANDIR}
COMPONENT documentation)
endif()
+endif()
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -101,6 +101,9 @@ set (TEX_BATCH_SIZE "" CACHE STRING "For
set (SOVERSION ${OIIO_VERSION_MAJOR}.${OIIO_VERSION_MINOR}
CACHE STRING "Set the SO version in the SO name of the output library")
option (BUILD_OIIOUTIL_ONLY "If ON, will build *only* libOpenImageIO_Util")
+option (BUILD_DOCS "If ON, build documentation and man pages.")
+option (INSTALL_DOCS "If ON, install documentation and man pages.")
+
if (NOT OIIO_THREAD_ALLOW_DCLP)
add_definitions ("-DOIIO_THREAD_ALLOW_DCLP=0")
@@ -188,7 +191,7 @@ if (USE_PYTHON AND NOT BUILD_OIIOUTIL_ON
endif ()
add_subdirectory (src/include)
-if (INSTALL_DOCS)
+if (BUILD_DOCS)
add_subdirectory (src/doc)
endif ()
add_subdirectory (src/fonts)

View File

@ -1,11 +0,0 @@
--- a/src/libtexture/texturesys.cpp
+++ b/src/libtexture/texturesys.cpp
@@ -2477,7 +2477,7 @@ TextureSystemImpl::sample_bicubic (int n
} else {
wx = evalBSplineWeights (float4(sfrac));
wy = evalBSplineWeights (float4(tfrac));
-#if (defined(__i386__) && !defined(__x86_64__)) || defined(__aarch64__)
+#if !defined(__x86_64__)
// Some platforms complain here about these being uninitialized,
// so initialize them. Don't waste the cycles for platforms that
// don't seem to have that error. It's a false positive -- this

View File

@ -1,36 +1,36 @@
%global subname oiio
#global beta beta1
%global sover 1.8
Name: OpenImageIO
Version: 1.7.17
Release: 2%{?dist}
Version: 1.8.12
Release: 1%{?dist}
Summary: Library for reading and writing images
Group: Development/Libraries
License: BSD
URL: https://sites.google.com/site/openimageio/home
Source0: https://github.com/%{name}/%{subname}/archive/Release-%{version}.tar.gz#/%{name}-%{version}.tar.gz
Source0: https://github.com/%{name}/oiio/archive/Release-%{version}/%{name}-%{version}.tar.gz
# Images for test suite
#Source1: oiio-images.tar.gz
Patch0: OpenImageIO-man.patch
Patch1: OpenImageIO-uninit.patch
Patch2: OpenImageIO-as_needed.patch
BuildRequires: cmake gcc-c++
BuildRequires: txt2man
BuildRequires: qt4-devel
BuildRequires: qt5-devel
BuildRequires: boost-devel
%if 0%{?fedora} > 28
BuildRequires: boost-python2-devel
%else
BuildRequires: boost-python-devel
%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: libpng-devel libtiff-devel libjpeg-turbo-devel openjpeg2-devel
BuildRequires: giflib-devel
BuildRequires: libwebp-devel
BuildRequires: Field3D-devel
%endif
BuildRequires: hdf5-devel
BuildRequires: dcmtk-devel
BuildRequires: zlib-devel
BuildRequires: jasper-devel
BuildRequires: pugixml-devel
@ -43,12 +43,6 @@ BuildRequires: openssl-devel
# rebuilt.
BuildRequires: OpenColorIO-devel
# We don't want to provide private python extension libs
%{?filter_setup:
%filter_provides_in %{python_sitearch}/.*\.so$
%filter_setup
}
%description
OpenImageIO is a library for reading and writing images, and a bunch of related
@ -63,9 +57,9 @@ classes, utilities, and applications. Main features include:
%package -n python2-openimageio
%{?python_provide:%python_provide python2-openimageio}
Summary: Python 2 bindings for %{name}
Requires: %{name}%{?_isa} = %{version}-%{release}
%{?python_provide:%python_provide python2-%{srcname}}
%description -n python2-openimageio
Python bindings for %{name}.
@ -91,7 +85,6 @@ with any formats for which plugins are available).
%package devel
Summary: Documentation for %{name}
Group: Development/Libraries
Requires: %{name}%{?_isa} = %{version}-%{release}
%description devel
@ -113,10 +106,6 @@ rm -rf src/include/tbb
#rm -rf ../oiio-images && mkdir ../oiio-images && pushd ../oiio-images
#tar --strip-components=1 -xzf %{SOURCE1}
# Do not override -std= !!!
sed -i \
-e 's,^\([ ]\+add_definitions.*-std=c++1.*\)$,# \1,' \
CMakeLists.txt
%build
rm -rf build/linux && mkdir -p build/linux && pushd build/linux
@ -126,49 +115,46 @@ rm -rf build/linux && mkdir -p build/linux && pushd build/linux
-DCMAKE_SKIP_RPATH:BOOL=TRUE \
-DINCLUDE_INSTALL_DIR:PATH=/usr/include/%{name} \
-DPYLIB_INSTALL_DIR:PATH=%{python_sitearch} \
-DBUILD_DOCS:BOOL=TRUE \
-DINSTALL_DOCS:BOOL=FALSE \
-DINSTALL_FONTS:BOOL=FALSE \
-DUSE_EXTERNAL_PUGIXML:BOOL=TRUE \
-DUSE_OPENSSL:BOOL=TRUE \
-DSTOP_ON_WARNING:BOOL=FALSE \
%if 0%{?fedora} >= 26
-DUSE_CPP14:BOOL=TRUE \
%endif
-DUSE_CPP:STRING=14 \
%ifarch ppc ppc64
-DNOTHREADS:BOOL=FALSE \
%endif
-DJPEG_INCLUDE_DIR=%{_includedir} \
-DOPENJPEG_INCLUDE_DIR=$(pkgconf --variable=includedir libopenjp2) \
-DVERBOSE=TRUE \
../../
make %{?_smp_mflags}
%make_build
%install
pushd build/linux
make DESTDIR=%{buildroot} install
%make_install
# Move man pages to the right directory
mkdir -p %{buildroot}%{_mandir}/man1
cp -a src/doc/*.1 %{buildroot}%{_mandir}/man1
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%check
# Not all tests pass on linux
#pushd build/linux && make test
%files
%license LICENSE
%doc CHANGES.md README.md
%{_libdir}/libOpenImageIO.so.*
%{_libdir}/libOpenImageIO_Util.so.*
%license LICENSE
%{_libdir}/libOpenImageIO.so.%{sover}*
%{_libdir}/libOpenImageIO_Util.so.%{sover}*
%files -n python2-openimageio
%{python_sitearch}/OpenImageIO.so
%{python2_sitearch}/OpenImageIO.so
%files utils
%exclude %{_bindir}/iv
@ -188,255 +174,39 @@ cp -a src/doc/*.1 %{buildroot}%{_mandir}/man1
%changelog
* Mon Sep 04 2017 Richard Shaw <hobbes1069@gmail.com> - 1.7.17-2
- Add patch to remove opencv qt5 dependency.
* Fri Jun 01 2018 Richard Shaw <hobbes1069@gmail.com> - 1.8.12-1
- Update to 1.8.12.
* Sat Sep 02 2017 Richard Shaw <hobbes1069@gmail.com> - 1.7.17-1
* Mon Apr 02 2018 Richard Shaw <hobbes1069@gmail.com> - 1.8.10-1
- Update to 1.8.10.
* Fri Mar 02 2018 Adam Williamson <awilliam@redhat.com> - 1.8.9-2
- Rebuild for opencv 3.4.1
* Thu Mar 01 2018 Richard Shaw <hobbes1069@gmail.com> - 1.8.9-1
- Update to 1.8.9
* Fri Feb 23 2018 Peter Robinson <pbrobinson@fedoraproject.org> 1.8.8-3
- Rebuild
* Tue Feb 13 2018 Sandro Mani <manisandro@gmail.com> - 1.8.8-2
- Rebuild (giflib)
* Fri Feb 02 2018 Richard Shaw <hobbes1069@gmail.com> - 1.8.8-1
- Update to 1.8.8.
* Thu Jan 18 2018 Richard Shaw <hobbes1069@gmail.com> - 1.8.7-3
- Add openjpeg2 to build dependencies.
- Re-enable dcmtk for 32bit arches.
* Sat Jan 13 2018 Richard Shaw <hobbes1069@gmail.com> - 1.8.7-2
- Rebuild for OpenColorIO 1.1.0.
* Wed Jan 03 2018 Richard Shaw <hobbes1069@gmail.com> - 1.8.7-1
- Update to latest upstream release.
- Disable building with dcmtk until fixed, see:
https://github.com/OpenImageIO/oiio/issues/1841
* 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
* 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)
* Thu Jun 01 2017 Richard Shaw <hobbes1069@gmail.com> - 1.7.15-1
- Update to latest upstream relesae.
* Mon May 1 2017 Richard Shaw <hobbes1069@gmail.com> - 1.7.14-1
* Thu Nov 02 2017 Richard Shaw <hobbes1069@gmail.com> - 1.8.6-1
- Update to latest upstream release.
* Mon Apr 3 2017 Richard Shaw <hobbes1069@gmail.com> - 1.7.13-1
- Update to latest upstream release.
* 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=...
* 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
* 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).
* Tue Dec 27 2016 Jon Ciesla <limburgher@gmail.com> - 1.7.9-2
- Rebuild for new LibRaw.
* Thu Dec 1 2016 Richard Shaw <hobbes1069@gmail.com> - 1.7.9-1
- Update to latest upstream release.
* Sun Oct 2 2016 Richard Shaw <hobbes1069@gmail.com> - 1.7.7-1
- Update to latest upstream release.
* 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
* Fri Jul 1 2016 Richard Shaw <hobbes1069@gmail.com> - 1.6.15-1
- Update to latest upstream release.
* 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.
* Tue Apr 26 2016 Orion Poplawski <orion@cora.nwra.com> - 1.6.12-3
- Rebuild for OpenCV 3.1
* Mon Apr 11 2016 Richard Shaw <hobbes1069@gmail.com> - 1.6.12-2
- Rebuild for updated Field3D.
* Fri Apr 1 2016 Richard Shaw <hobbes1069@gmail.com> - 1.6.12-1
- Update to latest upstream release.
* Tue Mar 1 2016 Richard Shaw <hobbes1069@gmail.com> - 1.6.11-1
- Update to latest upstream release.
* Wed Feb 3 2016 Richard Shaw <hobbes1069@gmail.com> - 1.6.10-1
- 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
* Thu Jan 21 2016 Orion Poplawski <orion@cora.nwra.com> - 1.6.9-3
- Rebuild for hdf5 1.8.16
* Thu Jan 14 2016 Adam Jackson <ajax@redhat.com> - 1.6.9-2
- Rebuild for glew 1.13
* 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.
* Wed Dec 23 2015 Richard Shaw <hobbes1069@gmail.com> - 1.6.8-1
- Update to latest upstream release.
- Use openssl, fixes BZ#1294602.
* Thu Dec 17 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.22-1
- Update to latest upstream release.
- Add LibRaw to build requirements.
* 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.
* Thu Oct 22 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.20-2
- Rebuild for updated pugixml.
* Mon Sep 28 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.20-1
- Update to latest upstream release.
* Thu Aug 27 2015 Jonathan Wakely <jwakely@redhat.com> - 1.5.18-3
- Rebuilt for Boost 1.59
* Wed Aug 05 2015 Jonathan Wakely <jwakely@redhat.com> 1.5.18-2
- Rebuilt for Boost 1.58
* 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
* Wed Jul 22 2015 David Tardon <dtardon@redhat.com> - 1.5.17-2
- rebuild for Boost 1.58
* 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
* Sun May 17 2015 Orion Poplawski <orion@cora.nwra.com> - 1.5.14-3
- Rebuild for hdf5 1.8.15
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 1.5.14-2
- Rebuilt for GCC 5 C++11 ABI change
* Wed Apr 15 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.14-1
- Update to latest upstream release.
* Wed Mar 11 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.13-1
- Update to latest upstream release.
* 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.
* Wed Feb 11 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.11-3
- Rebuild for Field3D.
* 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.
* Tue Jan 27 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.10-1
- Update to latest upstream release.
* Tue Jan 27 2015 Petr Machata <pmachata@redhat.com> - 1.4.16-2
- Rebuild for boost 1.57.0
* Thu Jan 22 2015 Richard Shaw <hobbes1069@gmail.com> - 1.4.16-1
- Update to latest upstream release.
* Wed Nov 26 2014 Rex Dieter <rdieter@fedoraproject.org> 1.4.15-2
- rebuild (openexr)
* Tue Nov 25 2014 Richard Shaw <hobbes1069@gmail.com> - 1.4.15-1
- Update to latest upstream release.
* Fri Nov 14 2014 Richard Shaw <hobbes1069@gmail.com> - 1.4.14-1
- Update to latest upstream release.
* Fri Sep 5 2014 Richard Shaw <hobbes1069@gmail.com> - 1.4.12-4
- Rebuild for Field3D 1.4.3.
* 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
* 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
* Fri May 23 2014 Petr Machata <pmachata@redhat.com> - 1.4.7-3
- Rebuild for boost 1.55.0
* Fri May 23 2014 David Tardon <dtardon@redhat.com> - 1.4.7-2
- rebuild for boost 1.55.0
* 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.
* Wed Nov 27 2013 Rex Dieter <rdieter@fedoraproject.org> - 1.2.3-3
- rebuild (openexr)
* 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.
* Sun Sep 08 2013 Rex Dieter <rdieter@fedoraproject.org> 1.2.1-2
- rebuild (ilmbase/openexr)
* 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
* Sun Jul 28 2013 Petr Machata <pmachata@redhat.com> - 1.2.0-2
- Rebuild for boost 1.54.0
- Add dcmtk to build to enable DICOM plugin.

View File

@ -1 +1 @@
SHA512 (OpenImageIO-1.7.17.tar.gz) = c5ee9173d3acc24a5045e6ac97657d4bf0c5ac1d3250497db51b8bd9e27e2fc48979eba3598635eb6053b87748f8827be2d2831d425459a41c893e6cb43bce94
SHA512 (OpenImageIO-1.8.12.tar.gz) = 2475792ff475d34b47b6af5ca71c6cf6d9d8c60452a506b1bf740b9dbb20ea72109117dc9a531b8302095de99f6280172723f26e23dc6e038256cbb43b697145