2017-12-17 00:56:17 +00:00
|
|
|
%if 0%{?fedora} > 27
|
|
|
|
%global boostpy2 boost-python2
|
|
|
|
%else
|
|
|
|
%global boostpy2 boost-python
|
|
|
|
%endif
|
2009-06-08 22:11:28 +00:00
|
|
|
Summary: Generic Programming for Computer Vision
|
|
|
|
Name: vigra
|
2017-12-11 13:08:34 +00:00
|
|
|
Version: 1.11.1
|
2018-02-09 20:29:53 +00:00
|
|
|
Release: 5%{?dist}
|
2009-06-08 22:11:28 +00:00
|
|
|
License: MIT
|
|
|
|
Group: Development/Libraries
|
2016-02-02 21:26:05 +00:00
|
|
|
# The "Lenna" files are non-free, we need to remove them from the source tarball.
|
2016-04-13 23:20:48 +00:00
|
|
|
# tar xf vigra-1.11.0-src.tar.gz
|
|
|
|
# find vigra-1.11.0/ -name "lenna*" -delete
|
|
|
|
# tar zcf vigra-1.11.0-src-clean.tar.gz vigra-1.11.0/
|
2017-12-11 13:08:34 +00:00
|
|
|
Source0: https://github.com/ukoethe/vigra/releases/download/Version-1-11-1/vigra-1.11.1-src.tar.gz
|
2013-08-29 13:47:20 +00:00
|
|
|
Source1: vigra-config.sh
|
2016-06-29 18:06:39 +00:00
|
|
|
URL: http://ukoethe.github.io/vigra/
|
2017-12-17 00:56:17 +00:00
|
|
|
BuildRequires: gcc-c++ zlib-devel libjpeg-devel libpng-devel libtiff-devel fftw-devel >= 3
|
|
|
|
BuildRequires: cmake boost-devel doxygen
|
2013-02-14 11:17:09 +00:00
|
|
|
%if ! 0%{?rhel}
|
2017-12-17 00:56:17 +00:00
|
|
|
Requires: python3
|
|
|
|
BuildRequires: hdf5-devel python2-sphinx python2-numpy-f2py %{boostpy2} OpenEXR-devel
|
|
|
|
BuildRequires: python3-numpy-f2py boost-python3
|
|
|
|
%else
|
|
|
|
Requires: python
|
2013-02-14 11:17:09 +00:00
|
|
|
%endif
|
2016-02-02 21:26:05 +00:00
|
|
|
Patch2: vigra-1.10.0-no-lenna.patch
|
2017-12-17 00:56:17 +00:00
|
|
|
Patch3: vigra-1.11.1.docdir.patch
|
2006-09-12 21:50:31 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
VIGRA stands for "Vision with Generic Algorithms". It's a novel computer vision
|
|
|
|
library that puts its main emphasis on customizable algorithms and data
|
|
|
|
structures. By using template techniques similar to those in the C++ Standard
|
|
|
|
Template Library, you can easily adapt any VIGRA component to the needs of your
|
|
|
|
application without thereby giving up execution speed.
|
|
|
|
|
2017-12-17 00:56:17 +00:00
|
|
|
#'
|
|
|
|
|
2006-09-12 21:50:31 +00:00
|
|
|
%package devel
|
2010-04-21 21:28:14 +00:00
|
|
|
Summary: Development tools for programs which will use the vigra library
|
|
|
|
Group: Development/Libraries
|
2014-11-26 14:27:50 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2010-04-21 21:28:14 +00:00
|
|
|
Requires: libjpeg-devel libtiff-devel libpng-devel zlib-devel fftw-devel >= 3
|
2013-06-04 11:11:41 +00:00
|
|
|
Requires: boost-devel
|
|
|
|
%if ! 0%{?rhel}
|
2017-12-17 00:56:17 +00:00
|
|
|
Requires: hdf5-devel python2-numpy-f2py %{boostpy2} OpenEXR-devel
|
|
|
|
Requires: python3-numpy-f2py boost-python3 boost-python3-devel
|
2013-06-04 11:11:41 +00:00
|
|
|
%endif
|
2006-09-12 21:50:31 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
The vigra-devel package includes the header files necessary for developing
|
|
|
|
programs that use the vigra library.
|
|
|
|
|
2013-02-14 11:17:09 +00:00
|
|
|
%if ! 0%{?rhel}
|
2017-08-19 13:44:24 +00:00
|
|
|
%package -n python2-vigra
|
|
|
|
%{?python_provide:%python_provide python2-vigra}
|
|
|
|
# Remove before F30
|
2017-08-20 14:44:11 +00:00
|
|
|
Provides: %{name}-python = %{version}-%{release}
|
2017-08-19 13:44:24 +00:00
|
|
|
Provides: %{name}-python%{?_isa} = %{version}-%{release}
|
|
|
|
Obsoletes: %{name}-python < %{version}-%{release}
|
2010-04-21 21:28:14 +00:00
|
|
|
Summary: Python interface for the vigra computer vision library
|
2014-11-26 14:27:50 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2017-12-17 00:56:17 +00:00
|
|
|
Requires: python2-numpy python2-numpy-f2py
|
2010-04-21 21:28:14 +00:00
|
|
|
|
2017-08-19 13:44:24 +00:00
|
|
|
%description -n python2-vigra
|
2017-12-17 00:56:17 +00:00
|
|
|
The python2-vigra package provides python 2 bindings for vigra
|
|
|
|
|
|
|
|
%package -n python3-vigra
|
|
|
|
%{?python_provide:%python_provide python3-vigra}
|
|
|
|
Summary: Python 3 interface for the vigra computer vision library
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: python3-numpy python3-numpy-f2py
|
|
|
|
|
|
|
|
%description -n python3-vigra
|
|
|
|
The python3-vigra package provides python 3 bindings for vigra
|
2013-02-14 11:17:09 +00:00
|
|
|
%endif
|
2010-04-21 21:28:14 +00:00
|
|
|
|
2006-09-12 21:50:31 +00:00
|
|
|
%prep
|
2011-02-04 23:42:07 +00:00
|
|
|
%setup -q
|
2016-02-02 21:26:05 +00:00
|
|
|
%patch2 -p1 -b .no-lenna
|
2017-12-17 00:56:17 +00:00
|
|
|
%patch3 -p1
|
2006-09-12 21:50:31 +00:00
|
|
|
|
|
|
|
%build
|
2017-12-17 00:56:17 +00:00
|
|
|
# Will need to set LEMON_DIR to /usr/share/coin-or-lemon/cmake to compile WITH_LEMON
|
|
|
|
# once the coin-or-lemon package's installed cmake is fixed for x86_64 arch.
|
2013-02-14 11:17:09 +00:00
|
|
|
%if ! 0%{?rhel}
|
2017-12-17 00:56:17 +00:00
|
|
|
sed -i '1s=^#!/usr/bin/\(python\|env python\)[0-9.]*=#!%{__python3}=' \
|
|
|
|
config/vigra-config.in
|
2017-12-11 13:08:34 +00:00
|
|
|
|
2017-12-17 00:56:17 +00:00
|
|
|
mkdir buildpy2
|
|
|
|
pushd buildpy2
|
|
|
|
%cmake .. -DWITH_OPENEXR=1 -DWITH_HDF5=1 -DWITH_VALGRIND=0 -DWITH_LEMON=0\
|
|
|
|
-DWITH_VIGRANUMPY=1 -DPYTHON_VERSION=%{python2_version}
|
|
|
|
make VERBOSE=1 %{?_smp_mflags}
|
|
|
|
popd
|
|
|
|
mkdir buildpy3
|
|
|
|
pushd buildpy3
|
|
|
|
%cmake .. -DWITH_OPENEXR=1 -DWITH_HDF5=1 -DWITH_VALGRIND=0 -DWITH_LEMON=0 \
|
|
|
|
-DWITH_VIGRANUMPY=1 -DPYTHON_VERSION=%{python3_version}
|
|
|
|
popd
|
2013-02-14 11:17:09 +00:00
|
|
|
%else
|
2017-12-17 00:56:17 +00:00
|
|
|
sed -i '1s=^#!/usr/bin/\(python\|env python\)[0-9.]*=#!%{__python}=' \
|
|
|
|
config/vigra-config.in
|
|
|
|
|
|
|
|
%cmake . -DWITH_OPENEXR=0 -DWITH_HDF5=0 -DWITH_VIGRANUMPY=0 -DWITH_VALGRIND=0 -DWITH_LEMON=0
|
2010-04-21 21:28:14 +00:00
|
|
|
make VERBOSE=1 %{?_smp_mflags}
|
2017-12-17 00:56:17 +00:00
|
|
|
%endif
|
|
|
|
|
2010-04-21 21:28:14 +00:00
|
|
|
# cleanup
|
|
|
|
rm -f doc/vigranumpy/.buildinfo
|
2017-12-11 14:13:38 +00:00
|
|
|
rm -f doc/vigra/lenna*
|
|
|
|
rm -f doc/vigranumpy/vigra/lenna*
|
2010-04-21 21:28:14 +00:00
|
|
|
find ./doc/ -type f | xargs chmod -x
|
2006-09-12 21:50:31 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf %{buildroot}
|
2017-12-17 00:56:17 +00:00
|
|
|
|
|
|
|
%if ! 0%{?rhel}
|
|
|
|
make -C buildpy2 install DESTDIR=%{buildroot}
|
|
|
|
mv %{buildroot}/%{_libdir}/vigranumpy/VigranumpyConfig.cmake \
|
|
|
|
%{buildroot}/%{_libdir}/vigranumpy/Vigranumpy2Config.cmake
|
|
|
|
|
|
|
|
make -C buildpy3 install DESTDIR=%{buildroot}
|
|
|
|
mv %{buildroot}/%{_libdir}/vigranumpy/VigranumpyConfig.cmake \
|
|
|
|
%{buildroot}/%{_libdir}/vigranumpy/Vigranumpy3Config.cmake
|
|
|
|
|
|
|
|
%else
|
2010-04-21 21:28:14 +00:00
|
|
|
make install DESTDIR=%{buildroot}
|
2017-12-17 00:56:17 +00:00
|
|
|
%endif
|
|
|
|
|
2006-09-12 21:50:31 +00:00
|
|
|
rm -rf %{buildroot}/usr/doc
|
2013-08-29 13:47:20 +00:00
|
|
|
(
|
|
|
|
cd $RPM_BUILD_ROOT%{_bindir}
|
|
|
|
mv vigra-config vigra-config-%{__isa_bits}
|
|
|
|
)
|
|
|
|
install -p -m755 -D %{SOURCE1} $RPM_BUILD_ROOT%{_bindir}/vigra-config
|
2006-09-12 21:50:31 +00:00
|
|
|
|
2012-11-06 15:15:30 +00:00
|
|
|
#fixme: this fails,
|
|
|
|
#%check
|
|
|
|
#make VERBOSE=1 check
|
2012-11-06 14:56:06 +00:00
|
|
|
|
2006-09-12 21:50:31 +00:00
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
|
|
|
%files
|
2013-12-14 00:15:12 +00:00
|
|
|
%doc LICENSE.txt
|
2006-09-12 21:50:31 +00:00
|
|
|
%{_libdir}/libvigraimpex.so.*
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%{_includedir}/vigra
|
2013-08-29 13:47:20 +00:00
|
|
|
%{_bindir}/vigra-config*
|
2006-09-12 21:50:31 +00:00
|
|
|
%{_libdir}/libvigraimpex.so
|
2010-04-21 21:28:14 +00:00
|
|
|
%{_libdir}/vigra
|
|
|
|
%doc doc/vigra doc/vigranumpy
|
|
|
|
|
2013-02-14 11:17:09 +00:00
|
|
|
%if ! 0%{?rhel}
|
2017-08-19 13:44:24 +00:00
|
|
|
%files -n python2-vigra
|
2017-12-17 00:56:17 +00:00
|
|
|
%{python2_sitearch}/vigra
|
2013-12-14 00:15:12 +00:00
|
|
|
%{_libdir}/vigranumpy
|
2017-12-17 00:56:17 +00:00
|
|
|
%exclude %{_libdir}/vigranumpy/Vigranumpy3Config.cmake
|
|
|
|
|
|
|
|
%files -n python3-vigra
|
|
|
|
%{python3_sitearch}/vigra
|
|
|
|
%{_libdir}/vigranumpy
|
|
|
|
%exclude %{_libdir}/vigranumpy/Vigranumpy2Config.cmake
|
2013-02-14 11:17:09 +00:00
|
|
|
%endif
|
2006-09-12 21:50:31 +00:00
|
|
|
|
|
|
|
%changelog
|
2018-02-09 20:29:53 +00:00
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.1-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-12-17 00:56:17 +00:00
|
|
|
* Fri Dec 15 2017 Troy Curtis, Jr <troycurtisjr@gmail.com> - 1.11.1-4
|
|
|
|
- Add python3 subpackage
|
|
|
|
- Disable compiling with LEMON
|
|
|
|
- Move python shebang fix into spec file.
|
|
|
|
|
2017-12-13 23:34:36 +00:00
|
|
|
* Wed Dec 13 2017 Bruno Postle <bruno@postle.net> - 1.11.1-3
|
|
|
|
- fix -devel dependency on boost-python2
|
|
|
|
|
2017-12-11 14:13:38 +00:00
|
|
|
* Mon Dec 11 2017 Bruno Postle <bruno@postle.net> - 1.11.1-2
|
|
|
|
- Remove 'lenna' images
|
|
|
|
|
2017-12-11 13:08:34 +00:00
|
|
|
* Sun Dec 10 2017 Bruno Postle <bruno@postle.net> - 1.11.1-1
|
|
|
|
- Upstream stable release
|
|
|
|
|
2017-08-20 14:44:11 +00:00
|
|
|
* Sun Aug 20 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.11.0-11
|
|
|
|
- Add Provides for the old name without %%_isa
|
|
|
|
|
2017-08-19 13:44:24 +00:00
|
|
|
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.11.0-10
|
|
|
|
- Python 2 binary package renamed to python2-vigra
|
|
|
|
See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
|
|
|
|
|
2017-08-03 10:03:39 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.0-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-27 21:18:19 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.0-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-07-19 18:07:47 +00:00
|
|
|
* Wed Jul 19 2017 Jonathan Wakely <jwakely@redhat.com> - 1.11.0-7
|
|
|
|
- Rebuilt for s390x binutils bug
|
|
|
|
|
2017-07-04 10:05:03 +00:00
|
|
|
* Tue Jul 04 2017 Jonathan Wakely <jwakely@redhat.com> - 1.11.0-6
|
|
|
|
- Rebuilt for Boost 1.64
|
|
|
|
|
2017-02-17 00:59:34 +00:00
|
|
|
* Fri Feb 17 2017 Jonathan Wakely <jwakely@redhat.com> - 1.11.0-5
|
|
|
|
- Fix build failure with GCC 7
|
|
|
|
|
2017-02-11 17:04:20 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.0-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-12-06 18:51:58 +00:00
|
|
|
* Tue Dec 06 2016 Orion Poplawski <orion@cora.nwra.com> - 1.11.0-4
|
|
|
|
- Rebuild for hdf5 1.8.18
|
|
|
|
|
2016-07-19 13:07:01 +00:00
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.11.0-3
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
|
2016-06-29 18:19:57 +00:00
|
|
|
* Wed Jun 29 2016 Orion Poplawski <orion@cora.nwra.com> - 1.11.0-2
|
|
|
|
- Rebuild for hdf5 1.8.17
|
|
|
|
|
2016-04-13 23:20:48 +00:00
|
|
|
* Wed Apr 13 2016 Bruno Postle <bruno@postle.net> - 1.11.0-1
|
|
|
|
- Upstream stable release
|
|
|
|
|
2016-02-02 21:26:05 +00:00
|
|
|
* Tue Feb 2 2016 Tom Callaway <spot@fedoraproject.org> - 1.10.0-18
|
|
|
|
- remove lenna files (non-free)
|
|
|
|
|
2016-01-21 19:28:10 +00:00
|
|
|
* Thu Jan 21 2016 Orion Poplawski <orion@cora.nwra.com> - 1.10.0-17
|
|
|
|
- Rebuild for hdf5 1.8.16
|
|
|
|
|
2016-01-16 01:52:59 +00:00
|
|
|
* Sat Jan 16 2016 Jonathan Wakely <jwakely@redhat.com> - 1.10.0-16
|
|
|
|
- Rebuilt for Boost 1.60
|
|
|
|
|
2015-08-27 17:06:57 +00:00
|
|
|
* Thu Aug 27 2015 Jonathan Wakely <jwakely@redhat.com> - 1.10.0-15
|
|
|
|
- Rebuilt for Boost 1.59
|
|
|
|
|
2015-07-29 18:32:56 +00:00
|
|
|
* Wed Jul 29 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-14
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159
|
|
|
|
|
2015-07-22 17:44:23 +00:00
|
|
|
* Wed Jul 22 2015 David Tardon <dtardon@redhat.com> - 1.10.0-13
|
|
|
|
- rebuild for Boost 1.58
|
|
|
|
|
2015-06-19 02:00:03 +00:00
|
|
|
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-12
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-05-17 21:07:46 +00:00
|
|
|
* Sun May 17 2015 Orion Poplawski <orion@cora.nwra.com> - 1.10.0-11
|
|
|
|
- Rebuild for hdf5 1.8.15
|
|
|
|
|
2015-05-02 16:31:30 +00:00
|
|
|
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 1.10.0-10
|
|
|
|
- Rebuilt for GCC 5 C++11 ABI change
|
|
|
|
|
2015-02-04 13:24:25 +00:00
|
|
|
* Wed Feb 04 2015 Petr Machata <pmachata@redhat.com> - 1.10.0-9
|
|
|
|
- Bump for rebuild.
|
|
|
|
|
2015-02-02 22:41:58 +00:00
|
|
|
* Mon Feb 02 2015 Bruno Postle <bruno@postle.net> - 1.10.0-8
|
|
|
|
- Fix for transparent alpha bug in 16bit and EXR output
|
|
|
|
|
2015-01-27 00:50:59 +00:00
|
|
|
* Tue Jan 27 2015 Petr Machata <pmachata@redhat.com> - 1.10.0-7
|
|
|
|
- Rebuild for boost 1.57.0
|
|
|
|
|
2015-01-07 20:49:18 +00:00
|
|
|
* Wed Jan 07 2015 Orion Poplawski <orion@cora.nwra.com> - 1.10.0-6
|
|
|
|
- Rebuild for hdf5 1.8.14
|
|
|
|
|
2014-11-26 14:27:50 +00:00
|
|
|
* Wed Nov 26 2014 Rex Dieter <rdieter@fedoraproject.org> 1.10.0-5
|
|
|
|
- rebuild (openexr), tighten subpkg deps (via %%{?_isa})
|
|
|
|
|
2014-08-18 07:51:52 +00:00
|
|
|
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-08 03:40:07 +00:00
|
|
|
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-22 23:44:03 +00:00
|
|
|
* Fri May 23 2014 Petr Machata <pmachata@redhat.com> - 1.10.0-2
|
|
|
|
- Rebuild for boost 1.55.0
|
|
|
|
|
2013-12-14 00:15:12 +00:00
|
|
|
* Fri Dec 13 2013 Bruno Postle <bruno@postle.net> - 1.10.0-1
|
|
|
|
- upstream release
|
|
|
|
|
2013-11-27 16:56:27 +00:00
|
|
|
* Wed Nov 27 2013 Rex Dieter <rdieter@fedoraproject.org> - 1.9.0-14
|
|
|
|
- rebuild (openexr)
|
|
|
|
|
2013-09-21 16:36:57 +00:00
|
|
|
* Sat Sep 21 2013 David Tardon <dtardon@redhat.com> - 1.9.0-13
|
|
|
|
- rebuild for atlas 3.10
|
|
|
|
|
2013-09-12 10:20:33 +00:00
|
|
|
* Thu Sep 12 2013 Caolán McNamara <caolanm@redhat.com> - 1.9.0-12
|
|
|
|
- bump n-v-r
|
|
|
|
|
2013-08-29 13:47:20 +00:00
|
|
|
* Thu Aug 29 2013 Caolán McNamara <caolanm@redhat.com> - 1.9.0-11
|
|
|
|
- Resolves: rhbz#884207 multi-lib vigra-config
|
|
|
|
|
2013-08-04 06:11:55 +00:00
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.0-10
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-07-27 12:28:13 +00:00
|
|
|
* Sat Jul 27 2013 pmachata@redhat.com - 1.9.0-9
|
|
|
|
- Rebuild for boost 1.54.0
|
|
|
|
|
2013-07-24 13:52:25 +00:00
|
|
|
* Wed Jul 24 2013 Caolán McNamara <caolanm@redhat.com> - 1.9.0-8
|
|
|
|
- Resolves: rhbz#987048 explicit python path in shebang
|
|
|
|
|
2013-06-04 11:11:41 +00:00
|
|
|
* Tue Jun 04 2013 Caolán McNamara <caolanm@redhat.com> - 1.9.0-7
|
|
|
|
- Resolves: rhbz#970561 no hdf5-devel in RHEL-7
|
|
|
|
|
2013-05-16 18:45:16 +00:00
|
|
|
* Thu May 16 2013 Orion Poplawski <orion@cora.nwra.com> - 1.9.0-6
|
|
|
|
- Rebuild for hdf5 1.8.11
|
|
|
|
|
2013-03-10 21:34:19 +00:00
|
|
|
* Sun Mar 10 2013 Rex Dieter <rdieter@fedoraproject.org> - 1.9.0-5
|
|
|
|
- rebuild (OpenEXR)
|
|
|
|
|
2013-02-14 11:17:09 +00:00
|
|
|
* Thu Feb 14 2013 Caolán McNamara <caolanm@redhat.com> - 1.9.0-4
|
|
|
|
- no hdf5-devel in RHEL-7
|
|
|
|
|
2013-02-09 22:23:23 +00:00
|
|
|
* Sat Feb 09 2013 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.9.0-3
|
|
|
|
- Rebuild for Boost-1.53.0
|
|
|
|
|
2013-01-21 16:40:27 +00:00
|
|
|
* Mon Jan 21 2013 Adam Tkac <atkac redhat com> - 1.9.0-2
|
|
|
|
- rebuild due to "jpeg8-ABI" feature drop
|
|
|
|
|
2012-11-08 23:26:51 +00:00
|
|
|
* Tue Nov 06 2012 Bruno Postle <bruno@postle.net> 1.9.0-1
|
|
|
|
- upstream release, support impex OpenEXR
|
|
|
|
|
2012-11-06 14:56:06 +00:00
|
|
|
* Tue Nov 06 2012 Caolán McNamara <caolanm@redhat.com> - 1.8.0-7
|
2012-11-06 15:15:30 +00:00
|
|
|
- document that there is a test suite, but it fails
|
2012-11-06 14:56:06 +00:00
|
|
|
|
2012-10-31 19:52:39 +00:00
|
|
|
* Wed Oct 31 2012 Tom Callaway <spot@fedoraproject.org> - 1.8.0-6
|
|
|
|
- rebuild
|
|
|
|
|
2012-07-22 02:43:59 +00:00
|
|
|
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.0-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-02-27 21:26:03 +00:00
|
|
|
* Mon Feb 27 2012 Bruno Postle <bruno@postle.net> 1.8.0-4
|
|
|
|
- patch to build with gcc-4.7.0
|
|
|
|
|
2012-01-14 07:54:39 +00:00
|
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-12-06 06:25:03 +00:00
|
|
|
* Tue Dec 06 2011 Adam Jackson <ajax@redhat.com> - 1.8.0-2
|
|
|
|
- Rebuild for new libpng
|
|
|
|
|
2011-09-24 21:38:54 +00:00
|
|
|
* Sat Sep 24 2011 Bruno Postle <bruno@postle.net> 1.8.0-1
|
|
|
|
- upstream release
|
|
|
|
|
2011-08-26 20:35:30 +00:00
|
|
|
* Fri Aug 26 2011 Tom Callaway <spot@fedoraproject.org> - 1.7.1-4
|
|
|
|
- rebuild against boost
|
|
|
|
|
2011-05-18 04:06:11 +00:00
|
|
|
* Tue May 17 2011 Orion Poplawski <orion@cora.nwra.com> - 1.7.1-3
|
2011-05-18 04:05:32 +00:00
|
|
|
- Rebuild for hdf5 1.8.7
|
|
|
|
|
2011-02-08 01:29:35 +00:00
|
|
|
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-02-04 23:42:07 +00:00
|
|
|
* Sun Jan 23 2011 Bruno Postle <bruno@postle.net> 1.7.1-1
|
|
|
|
- upstream release
|
|
|
|
|
2010-07-31 03:03:11 +00:00
|
|
|
* Fri Jul 30 2010 Toshio Kuratomi <toshio@fedoraproject.org> 1.7.0-2
|
|
|
|
- Rebuild for new python release
|
|
|
|
|
2010-04-21 21:28:14 +00:00
|
|
|
* Tue Apr 20 2010 Bruno Postle <bruno@postle.net> 1.7.0-1
|
|
|
|
- new upstream with cmake replacing autotools.
|
|
|
|
- patch for x86_64 systems.
|
|
|
|
- add vigra-python sub-package.
|
|
|
|
|
2009-07-27 06:52:36 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-06-08 22:11:28 +00:00
|
|
|
* Mon Jun 08 2009 Bruno Postle - 1.6.0-1
|
|
|
|
- Update to latest release
|
|
|
|
|
2009-02-26 00:21:18 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.0-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-02-18 21:37:36 +00:00
|
|
|
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.5.0-4
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2007-08-21 21:05:35 +00:00
|
|
|
* Tue Aug 21 2007 Bruno Postle <bruno@postle.net> 1.5.0-3
|
|
|
|
- Bumping for Jesse
|
|
|
|
|
2007-02-21 21:55:48 +00:00
|
|
|
* Mon Feb 19 2007 Bruno Postle <bruno@postle.net> 1.5.0-2
|
2007-02-21 21:38:27 +00:00
|
|
|
- update to 1.5.0 release
|
|
|
|
- fix bug 228926: vigra: $RPM_OPT_FLAGS not used
|
|
|
|
|
2006-09-12 21:50:31 +00:00
|
|
|
* Sun Nov 23 2003 Bruno Postle <bruno@postle.net>
|
2009-06-08 22:11:28 +00:00
|
|
|
- initial package
|
2006-09-12 21:50:31 +00:00
|
|
|
|
|
|
|
|