7a63317
Name:           OpenImageIO
a6324ed
Version:        1.8.7
b74dc29
Release:        3%{?dist}
7a63317
Summary:        Library for reading and writing images
7a63317
7a63317
Group:          Development/Libraries
7a63317
License:        BSD
7a63317
URL:            https://sites.google.com/site/openimageio/home
7a63317
b74dc29
Source0:        https://github.com/%{name}/oiio/archive/Release-%{version}.tar.gz#/%{name}-%{version}.tar.gz
3bbc3b7
# Images for test suite
a0d96ee
#Source1:        oiio-images.tar.gz
527c815
cabde45
Patch0:         OpenImageIO-man.patch
b74dc29
Patch1:         OpenImageIO-dcmtk.patch
909e940
Patch2:         OpenImageIO-as_needed.patch
8133348
Patch3:         OpenImageIO-GLES.patch
33da6d4
a03ab4c
BuildRequires:  cmake gcc-c++
ebab20c
BuildRequires:  txt2man
1eed71f
BuildRequires:  qt5-devel
d964540
%if 0%{?rhel} && 0%{?rhel} < 7
d964540
BuildRequires:  boost148-devel
d964540
%else
2f57d9f
BuildRequires:  boost-devel
d964540
%endif
2f57d9f
BuildRequires:  glew-devel
2f57d9f
BuildRequires:  OpenEXR-devel ilmbase-devel
2f57d9f
BuildRequires:  python2-devel
b74dc29
BuildRequires:  libpng-devel libtiff-devel libjpeg-turbo-devel openjpeg2-devel
b74dc29
BuildRequires:  giflib-devel
49aa456
%if ! 0%{?rhel}
ebab20c
BuildRequires:  libwebp-devel
ebab20c
BuildRequires:  Field3D-devel
ebab20c
%endif
ebab20c
BuildRequires:  hdf5-devel
4b19846
BuildRequires:  dcmtk-devel
2f57d9f
BuildRequires:  zlib-devel
2f57d9f
BuildRequires:  jasper-devel
7a63317
BuildRequires:  pugixml-devel
fd7f923
BuildRequires:  opencv-devel
3392bf1
BuildRequires:  LibRaw-devel
f1580b7
BuildRequires:  openssl-devel
92eeec4
92eeec4
# WARNING: OpenColorIO and OpenImageIO are cross dependent.
92eeec4
# If an ABI incompatible update is done in one, the other also needs to be
92eeec4
# rebuilt.
b8cbdd9
BuildRequires:  OpenColorIO-devel
7a63317
66ec4f2
# We don't want to provide private python extension libs
66ec4f2
%{?filter_setup:
b74dc29
%filter_provides_in %{python2_sitearch}/.*\.so$ 
66ec4f2
%filter_setup
66ec4f2
}
66ec4f2
7a63317
7a63317
%description
7a63317
OpenImageIO is a library for reading and writing images, and a bunch of related
7a63317
classes, utilities, and applications. Main features include:
7a63317
- Extremely simple but powerful ImageInput and ImageOutput APIs for reading and
7a63317
  writing 2D images that is format agnostic.
7a63317
- Format plugins for TIFF, JPEG/JFIF, OpenEXR, PNG, HDR/RGBE, Targa, JPEG-2000,
7a63317
  DPX, Cineon, FITS, BMP, ICO, RMan Zfile, Softimage PIC, DDS, SGI,
7a63317
  PNM/PPM/PGM/PBM, Field3d.
7a63317
- An ImageCache class that transparently manages a cache so that it can access
7a63317
  truly vast amounts of image data.
2f57d9f
2f57d9f
e603759
%package -n python2-openimageio
e603759
%{?python_provide:%python_provide python2-openimageio}
b9ab72a
Summary:        Python 2 bindings for %{name}
b9ab72a
Requires:       %{name}%{?_isa} = %{version}-%{release}
b9ab72a
e603759
%description -n python2-openimageio
b9ab72a
Python bindings for %{name}.
b9ab72a
b9ab72a
2f57d9f
%package utils
92eeec4
Summary:        Command line utilities for %{name}
2f57d9f
Requires:       %{name}%{?_isa} = %{version}-%{release}
2f57d9f
2f57d9f
%description utils
92eeec4
Command-line tools to manipulate and get information on images using the
2f57d9f
%{name} library.
2f57d9f
2f57d9f
2f57d9f
%package iv
92eeec4
Summary:        %{name} based image viewer
2f57d9f
Requires:       %{name}%{?_isa} = %{version}-%{release}
2f57d9f
2f57d9f
%description iv
c37941e
A really nice image viewer, iv, based on %{name} classes (and so will work
c37941e
with any formats for which plugins are available).
7a63317
527c815
7a63317
%package devel
527c815
Summary:        Documentation for %{name}
7a63317
Group:          Development/Libraries
7a63317
Requires:       %{name}%{?_isa} = %{version}-%{release}
7a63317
7a63317
%description devel
7a63317
Development files for package %{name}
7a63317
7a63317
7a63317
%prep
79e7f98
%autosetup -p1 -n oiio-Release-%{version}
3bbc3b7
7a63317
# Remove bundled pugixml
e5a7404
rm -f src/include/OpenImageIO/pugixml.hpp \
e5a7404
      src/include/OpenImageIO/pugiconfig.hpp \
e5a7404
      src/libutil/OpenImageIO/pugixml.cpp 
527c815
1a39c4a
# Remove bundled tbb
7a63317
rm -rf src/include/tbb
3bbc3b7
3bbc3b7
# Install test images
3bbc3b7
#rm -rf ../oiio-images && mkdir ../oiio-images && pushd ../oiio-images
3bbc3b7
#tar --strip-components=1 -xzf %{SOURCE1}
7a63317
e1ef02b
# Do not override -std= !!!
e1ef02b
sed -i \
e1ef02b
-e 's,^\([ ]\+add_definitions.*-std=c++1.*\)$,# \1,' \
e1ef02b
CMakeLists.txt
7a63317
7a63317
%build
3bbc3b7
rm -rf build/linux && mkdir -p build/linux && pushd build/linux
527c815
# CMAKE_SKIP_RPATH is OK here because it is set to FALSE internally and causes
527c815
# CMAKE_INSTALL_RPATH to be cleared, which is the desiered result.
fdddaa9
%cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo \
fdddaa9
       -DCMAKE_SKIP_RPATH:BOOL=TRUE \
7a63317
       -DINCLUDE_INSTALL_DIR:PATH=/usr/include/%{name} \
7a63317
       -DPYLIB_INSTALL_DIR:PATH=%{python_sitearch} \
85af7b2
       -DBUILD_DOCS:BOOL=TRUE \
85af7b2
       -DINSTALL_DOCS:BOOL=FALSE \
631720a
       -DINSTALL_FONTS:BOOL=FALSE \
7a63317
       -DUSE_EXTERNAL_PUGIXML:BOOL=TRUE \
f1580b7
       -DUSE_OPENSSL:BOOL=TRUE \
e1ef02b
       -DSTOP_ON_WARNING:BOOL=FALSE \
e1ef02b
%if 0%{?fedora} >= 26
85af7b2
       -DUSE_CPP:STRING=14 \
e1ef02b
%endif
5d225ec
%ifarch ppc ppc64
8dcfcd4
       -DNOTHREADS:BOOL=FALSE \
f84394c
%endif
d964540
%if 0%{?rhel} && 0%{?rhel} < 7
d964540
       -DBOOST_INCLUDEDIR=%{_includedir}/boost148 \
d964540
       -DBOOST_LIBRARYDIR=%{_libdir}/boost148 \
d964540
%endif
b74dc29
       -DJPEG_INCLUDE_DIR=%{_includedir} \
b74dc29
       -DOPENJPEG_INCLUDE_DIR=$(pkgconf --variable=includedir libopenjp2) \
39a295a
       -DVERBOSE=TRUE \
92eeec4
       ../../
7a63317
1eed71f
%make_build
7a63317
7a63317
7a63317
%install
3bbc3b7
pushd build/linux
1eed71f
%make_install
7a63317
7a63317
# Move man pages to the right directory
7a63317
mkdir -p %{buildroot}%{_mandir}/man1
92eeec4
cp -a src/doc/*.1 %{buildroot}%{_mandir}/man1
7a63317
7a63317
7a63317
%post -p /sbin/ldconfig
7a63317
%postun -p /sbin/ldconfig
7a63317
7a63317
527c815
%check
5d225ec
# Not all tests pass on linux
3bbc3b7
#pushd build/linux && make test
527c815
527c815
7a63317
%files
fd7f923
%license LICENSE
45c2a19
%doc CHANGES.md README.md
7a63317
%{_libdir}/libOpenImageIO.so.*
054dab7
%{_libdir}/libOpenImageIO_Util.so.*
b9ab72a
e603759
%files -n python2-openimageio
b74dc29
%{python2_sitearch}/OpenImageIO.so
2f57d9f
2f57d9f
%files utils
2f57d9f
%exclude %{_bindir}/iv
2f57d9f
%{_bindir}/*
cabde45
%exclude %{_mandir}/man1/iv.1.gz
2f57d9f
%{_mandir}/man1/*.1.gz
2f57d9f
2f57d9f
%files iv
2f57d9f
%{_bindir}/iv
cabde45
%{_mandir}/man1/iv.1.gz
7a63317
7a63317
%files devel
7a63317
%doc src/doc/*.pdf
7a63317
%{_libdir}/libOpenImageIO.so
054dab7
%{_libdir}/libOpenImageIO_Util.so
7a63317
%{_includedir}/*
7a63317
5371afc
7a63317
%changelog
b74dc29
* Thu Jan 18 2018 Richard Shaw <hobbes1069@gmail.com> - 1.8.7-3
b74dc29
- Add openjpeg2 to build dependencies.
b74dc29
- Re-enable dcmtk for 32bit arches.
b74dc29
fec3e20
* Sat Jan 13 2018 Richard Shaw <hobbes1069@gmail.com> - 1.8.7-2
fec3e20
- Rebuild for OpenColorIO 1.1.0.
fec3e20
a6324ed
* Wed Jan 03 2018 Richard Shaw <hobbes1069@gmail.com> - 1.8.7-1
a6324ed
- Update to latest upstream release.
a6324ed
- Disable building with dcmtk until fixed, see:
a6324ed
  https://github.com/OpenImageIO/oiio/issues/1841
a6324ed
d964540
* Thu Nov 02 2017 Richard Shaw <hobbes1069@gmail.com> - 1.8.6-1
d964540
- Update to latest upstream release.
85af7b2
- Add dcmtk to build to enable DICOM plugin.
d964540
909e940
* Mon Sep 04 2017 Richard Shaw <hobbes1069@gmail.com> - 1.7.17-2
909e940
- Add patch to remove opencv qt5 dependency.
909e940
d69a60c
* Sat Sep 02 2017 Richard Shaw <hobbes1069@gmail.com> - 1.7.17-1
d69a60c
- Update to latest upstream release.
d69a60c
e603759
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.7.15-6
e603759
- Python 2 binary package renamed to python2-openimageio
e603759
  See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
e603759
83a3986
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.15-5
83a3986
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
83a3986
650ad63
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.15-4
650ad63
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
650ad63
6be3e74
* Fri Jul 21 2017 Kalev Lember <klember@redhat.com> - 1.7.15-3
6be3e74
- Rebuilt for Boost 1.64
6be3e74
Igor Gnatenko 6d0b591
* Fri Jul 07 2017 Igor Gnatenko <ignatenko@redhat.com> - 1.7.15-2
Igor Gnatenko 6d0b591
- Rebuild due to bug in RPM (RHBZ #1468476)
Igor Gnatenko 6d0b591
879e4ef
* Thu Jun 01 2017 Richard Shaw <hobbes1069@gmail.com> - 1.7.15-1
879e4ef
- Update to latest upstream relesae.
879e4ef
889b15c
* Mon May  1 2017 Richard Shaw <hobbes1069@gmail.com> - 1.7.14-1
889b15c
- Update to latest upstream release.
889b15c
6811d4e
* Mon Apr  3 2017 Richard Shaw <hobbes1069@gmail.com> - 1.7.13-1
6811d4e
- Update to latest upstream release.
6811d4e
e4567a7
* Sat Mar 04 2017 Richard Shaw <hobbes1069@gmail.com> - 1.7.12-1
e4567a7
- Update to latest upstream release.
e4567a7
1d9506e
* Sun Feb 19 2017 Richard Shaw <hobbes1069@gmail.com> - 1.7.11-1
1d9506e
- Update to latest upstream release.
1d9506e
- Add patch per RHBZ#1412089 to prevent pulling in Qt5.
1d9506e
e1ef02b
* Sun Feb 19 2017 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.7.10-5
e1ef02b
- Disable -Werror (Fix F26FTBFS, RHBZ#1424580).
e1ef02b
- Force USE_CPP14 on fedora >=26.
e1ef02b
- Prevent CMakeList.txt from overiding -std=...
e1ef02b
0e9c2ec
* Fri Feb 17 2017 Richard Shaw <hobbes1069@gmail.com> - 1.7.10-4
0e9c2ec
- Rebuild for boost 1.63
0e9c2ec
e3753e2
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.10-3
e3753e2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
e3753e2
82fb5de
* Wed Feb 01 2017 Sandro Mani <manisandro@gmail.com> - 1.7.10-2
82fb5de
- Rebuild (libwebp)
82fb5de
cabde45
* Mon Jan  2 2017 Richard Shaw <hobbes1069@gmail.com> - 1.7.10-1
cabde45
- Update to latest upstream release.
cabde45
- Fixes FTBFS on aarch64 (BZ#1408883).
cabde45
9295e10
* Tue Dec 27 2016 Jon Ciesla <limburgher@gmail.com> - 1.7.9-2
9295e10
- Rebuild for new LibRaw.
9295e10
30404af
* Thu Dec  1 2016 Richard Shaw <hobbes1069@gmail.com> - 1.7.9-1
30404af
- Update to latest upstream release.
30404af
45c2a19
* Sun Oct  2 2016 Richard Shaw <hobbes1069@gmail.com> - 1.7.7-1
45c2a19
- Update to latest upstream release.
45c2a19
efd57a3
* Tue Aug  2 2016 Richard Shaw <hobbes1069@gmail.com> - 1.6.16-1
efd57a3
- Update to latest upstream release.
efd57a3
fd656a3
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.15-2
fd656a3
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
fd656a3
45f7654
* Fri Jul  1 2016 Richard Shaw <hobbes1069@gmail.com> - 1.6.15-1
45f7654
- Update to latest upstream release.
45f7654
889415c
* Wed Jun  1 2016 Richard Shaw <hobbes1069@gmail.com> - 1.6.14-1
889415c
- Update to latest upstream release.
889415c
cdc5b48
* Sun May  1 2016 Richard Shaw <hobbes1069@gmail.com> - 1.6.13-1
cdc5b48
- Update to latest upstream release.
cdc5b48
- Change from openjpeg to libjpeg-turbo.
cdc5b48
Orion Poplawski bce3e0a
* Tue Apr 26 2016 Orion Poplawski <orion@cora.nwra.com> - 1.6.12-3
Orion Poplawski bce3e0a
- Rebuild for OpenCV 3.1
Orion Poplawski bce3e0a
b7c6788
* Mon Apr 11 2016 Richard Shaw <hobbes1069@gmail.com> - 1.6.12-2
b7c6788
- Rebuild for updated Field3D.
b7c6788
a03ab4c
* Fri Apr  1 2016 Richard Shaw <hobbes1069@gmail.com> - 1.6.12-1
a03ab4c
- Update to latest upstream release.
a03ab4c
727ab2e
* Tue Mar  1 2016 Richard Shaw <hobbes1069@gmail.com> - 1.6.11-1
727ab2e
- Update to latest upstream release.
727ab2e
8422271
* Wed Feb  3 2016 Richard Shaw <hobbes1069@gmail.com> - 1.6.10-1
33da6d4
- Update to latest upstream release.
33da6d4
03f1270
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.9-4
03f1270
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
03f1270
Orion Poplawski 83f960e
* Thu Jan 21 2016 Orion Poplawski <orion@cora.nwra.com> - 1.6.9-3
Orion Poplawski 83f960e
- Rebuild for hdf5 1.8.16
Orion Poplawski 83f960e
9e863a3
* Thu Jan 14 2016 Adam Jackson <ajax@redhat.com> - 1.6.9-2
9e863a3
- Rebuild for glew 1.13
9e863a3
1471e40
* Wed Jan  6 2016 Richard Shaw <hobbes1069@gmail.com> - 1.6.9-1
1471e40
- Update to latest upstream release.
1471e40
f825291
* Mon Dec 28 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 1.6.8-2
f825291
- Rebuilt for libwebp soname bump
ba2d3e7
- Use openssl, fixes BZ#1294602.
f825291
631720a
* Wed Dec 23 2015 Richard Shaw <hobbes1069@gmail.com> - 1.6.8-1
631720a
- Update to latest upstream release.
1471e40
- Use openssl, fixes BZ#1294602.
631720a
3392bf1
* Thu Dec 17 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.22-1
3392bf1
- Update to latest upstream release.
3392bf1
- Add LibRaw to build requirements.
3392bf1
b9f52c9
* Wed Dec  2 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.21-1
b9f52c9
- Update to latest upstream release.
b9ab72a
- Move python bindings to their own subpackage.
b9f52c9
9ec49ce
* Thu Oct 22 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.20-2
9ec49ce
- Rebuild for updated pugixml.
9ec49ce
fb70ce3
* Mon Sep 28 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.20-1
fb70ce3
- Update to latest upstream release.
fb70ce3
3b42182
* Thu Aug 27 2015 Jonathan Wakely <jwakely@redhat.com> - 1.5.18-3
3b42182
- Rebuilt for Boost 1.59
3b42182
2ece3f9
* Wed Aug 05 2015 Jonathan Wakely <jwakely@redhat.com> 1.5.18-2
2ece3f9
- Rebuilt for Boost 1.58
2ece3f9
da73048
* Tue Aug  4 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.18-1
da73048
- Update to latest upstream release.
da73048
08e8021
* Wed Jul 29 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.17-3
08e8021
- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159
08e8021
78e6414
* Wed Jul 22 2015 David Tardon <dtardon@redhat.com> - 1.5.17-2
78e6414
- rebuild for Boost 1.58
78e6414
7099ddd
* Thu Jul 16 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.17-1
7099ddd
- Update to latest upstream release.
7099ddd
87413e5
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.14-4
87413e5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
87413e5
Orion Poplawski 6197590
* Sun May 17 2015 Orion Poplawski <orion@cora.nwra.com> - 1.5.14-3
Orion Poplawski 6197590
- Rebuild for hdf5 1.8.15
Orion Poplawski 6197590
c73bc32
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 1.5.14-2
c73bc32
- Rebuilt for GCC 5 C++11 ABI change
c73bc32
9af8883
* Wed Apr 15 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.14-1
9af8883
- Update to latest upstream release.
9af8883
a37eb4a
* Wed Mar 11 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.13-1
a37eb4a
- Update to latest upstream release.
a37eb4a
Orion Poplawski fde9b06
* Sat Feb 21 2015 Orion Poplawski <orion@cora.nwra.com> - 1.5.12-3
Orion Poplawski fde9b06
- Rebuild for undefined symbols
Orion Poplawski fde9b06
49aa456
* Thu Feb 12 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.12-2
fd7f923
- Update to latest upstream release.
fd7f923
- Add opencv optional dependency.
fd7f923
- Use new license rpmbuild macro.
49aa456
- Fix broken conditional which prevented Field3D from being required.
fd7f923
2c535ff
* Wed Feb 11 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.11-3
2c535ff
- Rebuild for Field3D.
2c535ff
Petr Machata 4646c87
* Wed Feb 04 2015 Petr Machata <pmachata@redhat.com> - 1.5.11-2
Petr Machata 4646c87
- Bump for rebuild.
Petr Machata 4646c87
fa5af94
* Wed Jan 28 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.11-1
fa5af94
- Update to latest upstream release.
fa5af94
1013dfc
* Tue Jan 27 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5.10-1
1013dfc
- Update to latest upstream release.
1013dfc
Petr Machata 51a57dc
* Tue Jan 27 2015 Petr Machata <pmachata@redhat.com> - 1.4.16-2
Petr Machata 51a57dc
- Rebuild for boost 1.57.0
Petr Machata 51a57dc
9e58345
* Thu Jan 22 2015 Richard Shaw <hobbes1069@gmail.com> - 1.4.16-1
9e58345
- Update to latest upstream release.
9e58345
Rex Dieter 2d1578a
* Wed Nov 26 2014 Rex Dieter <rdieter@fedoraproject.org> 1.4.15-2
Rex Dieter 2d1578a
- rebuild (openexr)
Rex Dieter 2d1578a
a476e32
* Tue Nov 25 2014 Richard Shaw <hobbes1069@gmail.com> - 1.4.15-1
a476e32
- Update to latest upstream release.
a476e32
c37941e
* Fri Nov 14 2014 Richard Shaw <hobbes1069@gmail.com> - 1.4.14-1
c37941e
- Update to latest upstream release.
c37941e
dd68cd1
* Fri Sep  5 2014 Richard Shaw <hobbes1069@gmail.com> - 1.4.12-4
dd68cd1
- Rebuild for Field3D 1.4.3.
dd68cd1
Orion Poplawski 338ba88
* Thu Sep 04 2014 Orion Poplawski <orion@cora.nwra.com> - 1.4.12-3
Orion Poplawski 338ba88
- Rebuild for pugixml 1.4
Orion Poplawski 338ba88
dc67a32
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.12-2
dc67a32
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
dc67a32
8dcfcd4
* Fri Aug  1 2014 Richard Shaw <hobbes1069@gmail.com> - 1.4.12-1
8dcfcd4
- Update to latest upstream release.
8dcfcd4
c0f199b
* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.7-4
c0f199b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
c0f199b
Petr Machata ce55f90
* Fri May 23 2014 Petr Machata <pmachata@redhat.com> - 1.4.7-3
Petr Machata ce55f90
- Rebuild for boost 1.55.0
Petr Machata ce55f90
ff65deb
* Fri May 23 2014 David Tardon <dtardon@redhat.com> - 1.4.7-2
ff65deb
- rebuild for boost 1.55.0
ff65deb
054dab7
* Mon May 19 2014 Richard Shaw <hobbes1069@gmail.com> - 1.4.7-1
054dab7
- Update to latest upstream release.
054dab7
92eeec4
* Tue Jan  7 2014 Richard Shaw <hobbes1069@gmail.com> - 1.3.10-1
92eeec4
- Update to latest upstream release.
92eeec4
- Add libgif as build requirement.
92eeec4
Rex Dieter a0c1f52
* Wed Nov 27 2013 Rex Dieter <rdieter@fedoraproject.org> - 1.2.3-3
Rex Dieter a0c1f52
- rebuild (openexr)
Rex Dieter a0c1f52
c82996b
* Mon Nov 18 2013 Dave Airlie <airlied@redhat.com> - 1.2.3-2
c82996b
- rebuilt for GLEW 1.10
c82996b
ebab20c
* Wed Nov  6 2013 Richard Shaw <hobbes1069@gmail.com> - 1.2.3-1
ebab20c
- Update to latest upstream release.
ebab20c
- Fix ppc builds (BZ#1021977).
ebab20c
- Add conditionals to build requirements for EPEL 6.
ebab20c
ebab20c
* Wed Oct  2 2013 Richard Shaw <hobbes1069@gmail.com> - 1.2.2-1
ebab20c
- Update to latest upstream release.
ebab20c
Rex Dieter d70c6b3
* Sun Sep 08 2013 Rex Dieter <rdieter@fedoraproject.org> 1.2.1-2
Rex Dieter d70c6b3
- rebuild (ilmbase/openexr)
Rex Dieter d70c6b3
8b5f5d6
* Thu Aug  8 2013 Richard Shaw <hobbes1069@gmail.com> - 1.2.1-1
8b5f5d6
- Update to latest upstream release.
8b5f5d6
4a3ef26
* Fri Aug 02 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-3
4a3ef26
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
4a3ef26
Petr Machata 55ccc44
* Sun Jul 28 2013 Petr Machata <pmachata@redhat.com> - 1.2.0-2
Petr Machata 55ccc44
- Rebuild for boost 1.54.0