2018-02-20 14:23:23 +00:00
|
|
|
%if ! 0%{?bootstrap}
|
|
|
|
%global docs 1
|
|
|
|
%global tests 1
|
|
|
|
%endif
|
|
|
|
|
2012-04-26 16:10:14 +00:00
|
|
|
Name: OpenColorIO
|
2018-01-13 13:48:44 +00:00
|
|
|
Version: 1.1.0
|
2019-01-31 11:45:08 +00:00
|
|
|
Release: 11%{?dist}
|
2012-04-26 16:10:14 +00:00
|
|
|
Summary: Enables color transforms and image display across graphics apps
|
|
|
|
|
|
|
|
License: BSD
|
|
|
|
URL: http://opencolorio.org/
|
2017-02-19 14:43:43 +00:00
|
|
|
Source0: https://github.com/imageworks/OpenColorIO/archive/v%{version}/%{name}-%{version}.tar.gz
|
2018-01-13 13:48:44 +00:00
|
|
|
Patch0: OpenColorIO-gcc.patch
|
|
|
|
Patch1: OpenColorIO-setuptools.patch
|
2018-02-20 06:18:50 +00:00
|
|
|
# Fix build against yaml-cpp 0.6.0+
|
|
|
|
# This patch is fine for our case (building against system yaml-cpp)
|
|
|
|
# but probably a bit too simple-minded to upstream as-is. See
|
|
|
|
# https://github.com/imageworks/OpenColorIO/issues/517
|
|
|
|
Patch2: ocio-1.1.0-yamlcpp060.patch
|
|
|
|
# Fix build of Python bindings with GCC 8
|
|
|
|
# https://github.com/imageworks/OpenColorIO/pull/518
|
|
|
|
Patch3: ocio-1.1.0-gcc8.patch
|
2018-12-13 14:19:55 +00:00
|
|
|
Patch4: ocio-oiio2.patch
|
|
|
|
Patch5: ocio-glext_h.patch
|
2012-04-26 16:10:14 +00:00
|
|
|
|
|
|
|
# Utilities
|
2018-04-25 12:22:37 +00:00
|
|
|
BuildRequires: cmake gcc-c++
|
2012-04-26 16:10:14 +00:00
|
|
|
BuildRequires: help2man
|
2018-09-24 20:51:02 +00:00
|
|
|
BuildRequires: python3-markupsafe
|
|
|
|
BuildRequires: python3-setuptools
|
2018-01-13 13:48:44 +00:00
|
|
|
|
2018-02-20 14:23:23 +00:00
|
|
|
%if 0%{?docs}
|
2018-01-13 13:48:44 +00:00
|
|
|
# Needed for pdf documentation generation
|
|
|
|
BuildRequires: texlive-latex-bin-bin texlive-gsftopk-bin texlive-dvips
|
|
|
|
# Fonts
|
|
|
|
BuildRequires: texlive-cm texlive-ec texlive-times texlive-helvetic
|
|
|
|
BuildRequires: texlive-courier
|
|
|
|
# Map tables
|
|
|
|
BuildRequires: texlive-cmap
|
|
|
|
# Font maps
|
|
|
|
BuildRequires: texlive-updmap-map
|
|
|
|
# Babel
|
|
|
|
BuildRequires: texlive-babel-english
|
|
|
|
# Styles
|
|
|
|
BuildRequires: texlive-fancyhdr texlive-fancybox texlive-mdwtools
|
|
|
|
BuildRequires: texlive-parskip texlive-multirow texlive-titlesec
|
|
|
|
BuildRequires: texlive-framed texlive-threeparttable texlive-wrapfig
|
|
|
|
# Other
|
|
|
|
BuildRequires: texlive-hyphen-base
|
2018-02-20 14:23:23 +00:00
|
|
|
%endif
|
2012-04-26 16:10:14 +00:00
|
|
|
|
2014-01-13 20:54:16 +00:00
|
|
|
# WARNING: OpenColorIO and OpenImageIO are cross dependent.
|
|
|
|
# If an ABI incompatible update is done in one, the other also needs to be
|
|
|
|
# rebuilt.
|
2018-04-25 12:22:37 +00:00
|
|
|
BuildRequires: OpenImageIO-devel
|
2016-10-03 18:44:04 +00:00
|
|
|
BuildRequires: OpenEXR-devel
|
2014-01-13 20:54:16 +00:00
|
|
|
|
2012-04-26 16:10:14 +00:00
|
|
|
# Libraries
|
2018-09-24 20:51:02 +00:00
|
|
|
BuildRequires: python3-devel
|
2012-04-26 16:10:14 +00:00
|
|
|
BuildRequires: mesa-libGL-devel mesa-libGLU-devel
|
|
|
|
BuildRequires: libX11-devel libXmu-devel libXi-devel
|
|
|
|
BuildRequires: freeglut-devel
|
|
|
|
BuildRequires: glew-devel
|
|
|
|
BuildRequires: zlib-devel
|
|
|
|
|
|
|
|
#######################
|
|
|
|
# Unbundled libraries #
|
|
|
|
#######################
|
|
|
|
BuildRequires: tinyxml-devel
|
|
|
|
BuildRequires: lcms2-devel
|
2018-02-20 06:18:50 +00:00
|
|
|
BuildRequires: yaml-cpp-devel >= 0.5.0
|
2012-04-26 16:10:14 +00:00
|
|
|
|
2014-01-13 20:54:16 +00:00
|
|
|
# The following bundled projects are only used for document generation.
|
2012-04-26 16:10:14 +00:00
|
|
|
#BuildRequires: python-docutils
|
|
|
|
#BuildRequires: python-jinja2
|
|
|
|
#BuildRequires: python-pygments
|
|
|
|
#BuildRequires: python-setuptools
|
|
|
|
#BuildRequires: python-sphinx
|
|
|
|
|
2018-04-25 12:22:37 +00:00
|
|
|
%if ! 0%{?docs}
|
2018-02-20 14:23:23 +00:00
|
|
|
# upgrade path for when/if docs are not included
|
|
|
|
Obsoletes: %{name}-doc < %{version}-%{release}
|
|
|
|
%endif
|
|
|
|
|
2012-04-26 16:10:14 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
OCIO enables color transforms and image display to be handled in a consistent
|
|
|
|
manner across multiple graphics applications. Unlike other color management
|
|
|
|
solutions, OCIO is geared towards motion-picture post production, with an
|
|
|
|
emphasis on visual effects and animation color pipelines.
|
|
|
|
|
|
|
|
|
2014-01-13 20:54:16 +00:00
|
|
|
%package tools
|
|
|
|
Summary: Command line tools for %{name}
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description tools
|
|
|
|
Command line tools for %{name}.
|
|
|
|
|
|
|
|
|
2012-04-26 16:10:14 +00:00
|
|
|
%package doc
|
|
|
|
BuildArch: noarch
|
|
|
|
Summary: API Documentation for %{name}
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description doc
|
|
|
|
API documentation for %{name}.
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development libraries and headers for %{name}
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
Development libraries and headers for %{name}.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
2018-01-13 13:48:44 +00:00
|
|
|
%autosetup -p1
|
2012-04-26 16:10:14 +00:00
|
|
|
|
|
|
|
# Remove what bundled libraries
|
|
|
|
rm -f ext/lcms*
|
|
|
|
rm -f ext/tinyxml*
|
2018-02-20 06:18:50 +00:00
|
|
|
rm -f ext/yaml*
|
2012-04-26 16:10:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
rm -rf build && mkdir build && pushd build
|
2012-12-12 01:32:20 +00:00
|
|
|
%cmake -DOCIO_BUILD_STATIC=OFF \
|
2018-02-22 22:16:17 +00:00
|
|
|
-DOCIO_BUILD_DOCS=%{?docs:ON}%{?!docs:OFF} \
|
2018-02-20 14:23:23 +00:00
|
|
|
-DOCIO_BUILD_TESTS=%{?tests:ON}%{?!tests:OFF} \
|
2012-12-12 01:32:20 +00:00
|
|
|
-DOCIO_PYGLUE_SONAME=OFF \
|
2018-09-24 20:51:02 +00:00
|
|
|
-DPYTHON=%{__python3} \
|
2018-02-20 06:18:50 +00:00
|
|
|
-DUSE_EXTERNAL_YAML=TRUE \
|
2012-12-12 01:32:20 +00:00
|
|
|
-DUSE_EXTERNAL_TINYXML=TRUE \
|
|
|
|
-DUSE_EXTERNAL_LCMS=TRUE \
|
2018-01-13 13:48:44 +00:00
|
|
|
-DUSE_EXTERNAL_SETUPTOOLS=TRUE \
|
2012-04-26 16:10:14 +00:00
|
|
|
%ifnarch x86_64
|
2012-12-12 01:32:20 +00:00
|
|
|
-DOCIO_USE_SSE=OFF \
|
2012-04-26 16:10:14 +00:00
|
|
|
%endif
|
2018-09-24 20:51:02 +00:00
|
|
|
-DOpenGL_GL_PREFERENCE=GLVND \
|
2012-12-12 01:32:20 +00:00
|
|
|
../
|
2012-04-26 16:10:14 +00:00
|
|
|
|
2018-01-13 13:48:44 +00:00
|
|
|
%make_build
|
2012-04-26 16:10:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
pushd build
|
2013-10-31 14:36:16 +00:00
|
|
|
%make_install
|
2012-04-26 16:10:14 +00:00
|
|
|
|
|
|
|
# Generate man pages
|
|
|
|
mkdir -p %{buildroot}%{_mandir}/man1
|
2012-05-04 19:43:46 +00:00
|
|
|
help2man -N -s 1 %{?fedora:--version-string=%{version}} \
|
2012-04-26 16:10:14 +00:00
|
|
|
-o %{buildroot}%{_mandir}/man1/ociocheck.1 \
|
|
|
|
src/apps/ociocheck/ociocheck
|
2012-05-04 19:43:46 +00:00
|
|
|
help2man -N -s 1 %{?fedora:--version-string=%{version}} \
|
2012-04-26 16:10:14 +00:00
|
|
|
-o %{buildroot}%{_mandir}/man1/ociobakelut.1 \
|
|
|
|
src/apps/ociobakelut/ociobakelut
|
2018-02-20 14:23:23 +00:00
|
|
|
popd
|
2012-04-26 16:10:14 +00:00
|
|
|
|
2018-02-20 14:23:23 +00:00
|
|
|
%if 0%{?docs}
|
2013-08-28 18:38:31 +00:00
|
|
|
# Move installed documentation back so it doesn't conflict with the main package
|
|
|
|
mkdir _tmpdoc
|
|
|
|
mv %{buildroot}%{_docdir}/%{name}/* _tmpdoc/
|
2018-02-20 14:23:23 +00:00
|
|
|
%endif
|
2013-08-28 18:38:31 +00:00
|
|
|
|
2018-01-13 13:48:44 +00:00
|
|
|
# Fix location of cmake files.
|
|
|
|
mkdir -p %{buildroot}%{_datadir}/cmake/Modules
|
|
|
|
find %{buildroot} -name "*.cmake" -exec mv {} %{buildroot}%{_datadir}/cmake/Modules/ \;
|
|
|
|
|
2012-04-26 16:10:14 +00:00
|
|
|
|
|
|
|
%check
|
|
|
|
# Testing passes locally in mock but fails on the fedora build servers.
|
|
|
|
#pushd build && make test
|
|
|
|
|
|
|
|
|
2018-04-25 12:22:37 +00:00
|
|
|
%ldconfig_scriptlets
|
2012-04-26 16:10:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
%files
|
2017-02-19 14:43:43 +00:00
|
|
|
%license LICENSE
|
2018-01-13 13:48:44 +00:00
|
|
|
%doc ChangeLog README.md
|
2012-04-26 16:10:14 +00:00
|
|
|
%{_libdir}/*.so.*
|
|
|
|
%dir %{_datadir}/ocio
|
|
|
|
%{_datadir}/ocio/setup_ocio.sh
|
2018-09-24 20:51:02 +00:00
|
|
|
%{python3_sitearch}/*.so
|
2012-04-26 16:10:14 +00:00
|
|
|
|
2014-01-13 20:54:16 +00:00
|
|
|
%files tools
|
|
|
|
%{_bindir}/*
|
|
|
|
%{_mandir}/man1/*
|
|
|
|
|
2018-02-20 14:23:23 +00:00
|
|
|
%if 0%{?docs}
|
2012-04-26 16:10:14 +00:00
|
|
|
%files doc
|
2013-08-28 18:38:31 +00:00
|
|
|
%doc _tmpdoc/*
|
2018-02-20 14:23:23 +00:00
|
|
|
%endif
|
2012-04-26 16:10:14 +00:00
|
|
|
|
|
|
|
%files devel
|
2018-01-13 13:48:44 +00:00
|
|
|
%{_datadir}/cmake/Modules/*
|
2012-04-26 16:10:14 +00:00
|
|
|
%{_includedir}/OpenColorIO/
|
|
|
|
%{_includedir}/PyOpenColorIO/
|
|
|
|
%{_libdir}/*.so
|
|
|
|
%{_libdir}/pkgconfig/%{name}.pc
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2019-01-31 11:45:08 +00:00
|
|
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-12-13 14:19:55 +00:00
|
|
|
* Thu Dec 13 2018 Richard Shaw <hobbes1069@gmail.com> - 1.1.0-10
|
|
|
|
- Add patch for OIIO 2.0 and mesa glext.h header changes.
|
|
|
|
|
2018-09-24 20:51:02 +00:00
|
|
|
* Mon Sep 24 2018 Richard Shaw <hobbes1069@gmail.com> - 1.1.0-9
|
|
|
|
- Obsolete Python2 library and build Python3 library.
|
|
|
|
|
2018-08-23 11:22:39 +00:00
|
|
|
* Thu Aug 23 2018 Nicolas Chauvet <kwizart@gmail.com> - 1.1.0-8
|
|
|
|
- Rebuilt for glew 2.1.0
|
|
|
|
|
2018-07-12 19:10:09 +00:00
|
|
|
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-02-22 21:58:00 +00:00
|
|
|
* Thu Feb 22 2018 Adam Williamson <awilliam@redhat.com> - 1.1.0-6
|
|
|
|
- Rebuild with bootstrap disabled, so we get docs again
|
|
|
|
|
2018-02-22 20:20:12 +00:00
|
|
|
* Thu Feb 22 2018 Peter Robinson <pbrobinson@fedoraproject.org> 1.1.0-5
|
|
|
|
- Rebuild
|
|
|
|
|
2018-02-20 14:23:23 +00:00
|
|
|
* Tue Feb 20 2018 Rex Dieter <rdieter@fedoraproject.org> - 1.1.0-4
|
|
|
|
- support %%bootstrap (no docs, no tests)
|
|
|
|
- enable bootstrap mode on f28+ to workaround bug #1546964
|
|
|
|
|
2018-02-20 06:18:50 +00:00
|
|
|
* Mon Feb 19 2018 Adam Williamson <awilliam@redhat.com> - 1.1.0-3
|
|
|
|
- Fix build with yaml-cpp 0.6+ (patch out bogus hidden visibility)
|
|
|
|
- Fix build with GCC 8 (issues in Python bindings, upstream PR #518)
|
|
|
|
- Rebuild for yaml-cpp 0.6.1
|
2018-02-14 16:18:35 +00:00
|
|
|
|
2018-02-07 00:51:59 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-01-13 13:48:44 +00:00
|
|
|
* Fri Jan 12 2018 Richard Shaw <hobbes1069@gmail.com> - 1.1.0-1
|
|
|
|
- Update to latest upstream release.
|
|
|
|
|
2018-01-07 14:50:33 +00:00
|
|
|
* Sun Jan 07 2018 Richard Shaw <hobbes1069@gmail.com> - 1.0.9-20
|
|
|
|
- Rebuild for OpenImageIO 1.8.7.
|
|
|
|
|
2017-12-06 13:35:06 +00:00
|
|
|
* Wed Dec 06 2017 Richard Shaw <hobbes1069@gmail.com> - 1.0.9-19
|
|
|
|
- Fix ambiguous Python 2 dependency declarations
|
|
|
|
https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
|
|
|
|
|
2017-08-02 17:03:18 +00:00
|
|
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.9-18
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 01:58:26 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.9-17
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-07-07 10:24:46 +00:00
|
|
|
* Fri Jul 07 2017 Igor Gnatenko <ignatenko@redhat.com> - 1.0.9-16
|
|
|
|
- Rebuild due to bug in RPM (RHBZ #1468476)
|
|
|
|
|
2017-02-10 05:15:59 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.9-15
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2017-01-10 15:47:50 +00:00
|
|
|
* Tue Jan 10 2017 Orion Poplawski <orion@cora.nwra.com> - 1.0.9-14
|
|
|
|
- Rebuild for glew 2.0.0
|
|
|
|
|
2016-10-03 16:35:05 +00:00
|
|
|
* Mon Oct 03 2016 Richard Shaw <hobbes1069@gmail.com> - 1.0.9-13
|
|
|
|
- Rebuild for new OpenImageIO.
|
|
|
|
|
2016-07-19 06:23:57 +00:00
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.9-12
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
|
2016-02-03 15:33:19 +00:00
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.9-11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2016-01-14 21:35:40 +00:00
|
|
|
* Thu Jan 14 2016 Richard Shaw <hobbes1069@gmail.com> - 1.0.9-10
|
|
|
|
- Rebuild for OpenImageIO 1.6.9.
|
|
|
|
|
2016-01-14 18:09:45 +00:00
|
|
|
* Thu Jan 14 2016 Adam Jackson <ajax@redhat.com> - 1.0.9-9
|
|
|
|
- Rebuild for glew 1.13
|
|
|
|
|
2015-06-16 23:00:48 +00:00
|
|
|
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.9-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-05-02 22:04:37 +00:00
|
|
|
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 1.0.9-7
|
|
|
|
- Rebuilt for GCC 5 C++11 ABI change
|
|
|
|
|
2015-01-28 19:53:27 +00:00
|
|
|
* Wed Jan 28 2015 Richard Shaw <hobbes1069@gmail.com> - 1.0.9-6
|
|
|
|
- Rebuild for OpenImageIO 1.5.11.
|
|
|
|
|
2014-08-15 18:55:35 +00:00
|
|
|
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.9-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-06 22:57:05 +00:00
|
|
|
* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.9-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-21 12:19:47 +00:00
|
|
|
* Wed May 21 2014 Richard Shaw <hobbes1069@gmail.com> - 1.0.9-3
|
|
|
|
- Rebuild for updated OpenImageIO 1.4.7.
|
|
|
|
|
2014-01-13 20:54:16 +00:00
|
|
|
* Mon Jan 13 2014 Richard Shaw <hobbes1069@gmail.com> - 1.0.9-2
|
|
|
|
- Add OpenImageIO as build requirement to build additional command line tools.
|
|
|
|
Fixes BZ#1038860.
|
|
|
|
|
2013-11-06 20:00:29 +00:00
|
|
|
* Wed Nov 6 2013 Richard Shaw <hobbes1069@gmail.com> - 1.0.9-1
|
|
|
|
- Update to latest upstream release.
|
|
|
|
|
2013-10-31 14:36:16 +00:00
|
|
|
* Mon Sep 23 2013 Richard Shaw <hobbes1069@gmail.com> - 1.0.8-6
|
|
|
|
- Rebuild against yaml-cpp03 compatibility package.
|
|
|
|
|
2013-08-28 18:38:31 +00:00
|
|
|
* Mon Aug 26 2013 Richard Shaw <hobbes1069@gmail.com> - 1.0.8-5
|
2013-08-26 20:10:48 +00:00
|
|
|
- Fix for new F20 feature, unversion doc dir. Fixes BZ#1001264
|
|
|
|
|
2013-08-02 23:02:35 +00:00
|
|
|
* Fri Aug 02 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.8-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-02-13 15:28:22 +00:00
|
|
|
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.8-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-12-12 01:32:20 +00:00
|
|
|
* Tue Dec 11 2012 Richard Shaw <hobbes1069@gmail.com> - 1.0.8-1
|
|
|
|
- Update to latest upstream release.
|
|
|
|
|
2012-07-18 13:49:27 +00:00
|
|
|
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.7-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-04-26 16:10:14 +00:00
|
|
|
* Thu Apr 26 2012 Richard Shaw <hobbes1069@gmail.com> - 1.0.7-4
|
|
|
|
- Only use SSE instructions on x86_64.
|
|
|
|
|
|
|
|
* Wed Apr 25 2012 Richard Shaw <hobbes1069@gmail.com> - 1.0.7-3
|
|
|
|
- Misc spec cleanup for packaging guidelines.
|
|
|
|
- Disable testing for now since it fails on the build servers.
|
|
|
|
|
|
|
|
* Wed Apr 18 2012 Richard Shaw <hobbes1069@gmail.com> - 1.0.7-1
|
|
|
|
- Latest upstream release.
|
|
|
|
|
|
|
|
* Thu Apr 05 2012 Richard Shaw <hobbes1069@gmail.com> - 1.0.6-1
|
|
|
|
- Latest upstream release.
|
|
|
|
|
|
|
|
* Wed Nov 16 2011 Richard Shaw <hobbes1069@gmail.com> - 1.0.2-1
|
|
|
|
- Initial release.
|