Blame SPECS/opencv.spec

8b12a2
#global indice   a
8b12a2
8b12a2
Name:           opencv
8b12a2
Version:        2.4.5
984ab2
Release:        3%{?dist}
8b12a2
Summary:        Collection of algorithms for computer vision
8b12a2
8b12a2
Group:          Development/Libraries
8b12a2
# This is normal three clause BSD.
8b12a2
License:        BSD
8b12a2
URL:            http://opencv.org
8b12a2
# Need to remove SIFT/SURF from source tarball, due to legal concerns
8b12a2
# rm -rf opencv-%%{version}/modules/nonfree/src/sift.cpp
8b12a2
# rm -rf opencv-%%{version}/modules/nonfree/src/surf.cpp
8b12a2
# Source0:        http://downloads.sourceforge.net/opencvlibrary/%{name}-%{version}%{?indice}.tar.bz2
8b12a2
Source0:	%{name}-%{version}%{?indice}-clean.tar.xz
8b12a2
Source1:        opencv-samples-Makefile
8b12a2
Patch0:         opencv-pkgcmake.patch
8b12a2
Patch1:         opencv-pkgcmake2.patch
8b12a2
#http://code.opencv.org/issues/2720
8b12a2
Patch2:         OpenCV-2.4.4-pillow.patch
8b12a2
8b12a2
BuildRequires:  libtool
8b12a2
BuildRequires:  cmake >= 2.6.3
8b12a2
BuildRequires:  chrpath
8b12a2
8b12a2
%{?_with_eigen2:BuildRequires:  eigen2-devel}
8b12a2
%{?_with_eigen3:BuildRequires:  eigen3-devel}
8b12a2
BuildRequires:  gtk2-devel
8b12a2
BuildRequires:  libtheora-devel
8b12a2
BuildRequires:  libvorbis-devel
8b12a2
%if 0%{?fedora} >= 1
8b12a2
%ifnarch s390 s390x
8b12a2
BuildRequires:  libraw1394-devel
8b12a2
BuildRequires:  libdc1394-devel
8b12a2
%endif
8b12a2
%endif
8b12a2
BuildRequires:  jasper-devel
8b12a2
BuildRequires:  libpng-devel
8b12a2
BuildRequires:  libjpeg-devel
8b12a2
BuildRequires:  libtiff-devel
8b12a2
BuildRequires:  libv4l-devel
8b12a2
BuildRequires:  OpenEXR-devel
8b12a2
%{?_with_openni:
8b12a2
%ifarch %{ix86} x86_64
8b12a2
BuildRequires:  openni-devel
8b12a2
BuildRequires:  openni-primesense
8b12a2
%endif
8b12a2
}
8b12a2
%{?_with_ttb:
8b12a2
%ifarch %{ix86} x86_64 ia64 ppc ppc64
8b12a2
BuildRequires:  tbb-devel
8b12a2
%endif
8b12a2
}
8b12a2
BuildRequires:  zlib-devel, pkgconfig
8b12a2
BuildRequires:  python-devel
8b12a2
BuildRequires:  numpy, swig >= 1.3.24
8b12a2
BuildRequires:  python-sphinx
8b12a2
%{?_with_ffmpeg:BuildRequires:  ffmpeg-devel >= 0.4.9}
8b12a2
%{!?_without_gstreamer:BuildRequires:  gstreamer-devel gstreamer-plugins-base-devel}
8b12a2
%{?_with_xine:BuildRequires:  xine-lib-devel}
8b12a2
8b12a2
8b12a2
Requires:       opencv-core%{_isa} = %{version}-%{release}
8b12a2
8b12a2
8b12a2
%description
8b12a2
OpenCV means Intel® Open Source Computer Vision Library. It is a collection of
8b12a2
C functions and a few C++ classes that implement some popular Image Processing
8b12a2
and Computer Vision algorithms.
8b12a2
8b12a2
8b12a2
%package core
8b12a2
Summary:        OpenCV core libraries
8b12a2
Group:          Development/Libraries
8b12a2
8b12a2
%description core
8b12a2
This package contains the OpenCV C/C++ core libraries.
8b12a2
8b12a2
%package devel
8b12a2
Summary:        Development files for using the OpenCV library
8b12a2
Group:          Development/Libraries
8b12a2
Requires:       opencv%{_isa} = %{version}-%{release}
8b12a2
Requires:       pkgconfig
8b12a2
8b12a2
%description devel
8b12a2
This package contains the OpenCV C/C++ library and header files, as well as
8b12a2
documentation. It should be installed if you want to develop programs that
8b12a2
will use the OpenCV library. You should consider installing opencv-devel-docs
8b12a2
package.
8b12a2
8b12a2
%package devel-docs
8b12a2
Summary:        Development files for using the OpenCV library
8b12a2
Group:          Development/Libraries
8b12a2
Requires:       opencv-devel = %{version}-%{release}
8b12a2
Requires:       pkgconfig
8b12a2
BuildArch:      noarch
8b12a2
8b12a2
%description devel-docs
8b12a2
This package contains the OpenCV documentation and examples programs.
8b12a2
8b12a2
%package python
8b12a2
Summary:        Python bindings for apps which use OpenCV
8b12a2
Group:          Development/Libraries
8b12a2
Requires:       opencv = %{version}-%{release}
8b12a2
Requires:       numpy
8b12a2
8b12a2
%description python
8b12a2
This package contains Python bindings for the OpenCV library.
8b12a2
8b12a2
8b12a2
%prep
8b12a2
%setup -q
8b12a2
%patch0 -p1 -b .pkgcmake
8b12a2
%patch1 -p1 -b .pkgcmake2
8b12a2
%patch2 -p1 -b .pillow
8b12a2
8b12a2
# fix dos end of lines
8b12a2
sed -i 's|\r||g'  samples/c/adaptiveskindetector.cpp
8b12a2
8b12a2
8b12a2
%build
8b12a2
# enabled by default if libraries are presents at build time:
8b12a2
# GTK, GSTREAMER, UNICAP, 1394, V4L
8b12a2
# non available on Fedora: FFMPEG, XINE
8b12a2
mkdir -p build
8b12a2
pushd build
8b12a2
%cmake CMAKE_VERBOSE=1 \
8b12a2
 -DPYTHON_PACKAGES_PATH=%{python_sitearch} \
8b12a2
 -DCMAKE_SKIP_RPATH=ON \
8b12a2
%ifnarch x86_64 ia64
8b12a2
 -DENABLE_SSE=0 \
8b12a2
 -DENABLE_SSE2=0 \
8b12a2
%endif
8b12a2
 %{!?_with_sse3:-DENABLE_SSE3=0} \
8b12a2
 -DCMAKE_BUILD_TYPE=ReleaseWithDebInfo \
8b12a2
 -DBUILD_TEST=1 \
8b12a2
 -DBUILD_opencv_java=0 \
8b12a2
%{?_with_ttb:
8b12a2
%ifarch %{ix86} x86_64 ia64
8b12a2
 -DWITH_TBB=1 -DTBB_LIB_DIR=%{_libdir} \
8b12a2
%endif
8b12a2
} \
8b12a2
 %{?_without_gstreamer:-DWITH_GSTREAMER=0} \
8b12a2
 %{!?_with_ffmpeg:-DWITH_FFMPEG=0} \
8b12a2
 -DBUILD_opencv_nonfree=0 \
8b12a2
%{!?_with_cuda:-DBUILD_opencv_gpu=0} \
8b12a2
%{?_with_cuda: \
8b12a2
 -DCUDA_TOOLKIT_ROOT_DIR=%{?_cuda_topdir} \
8b12a2
 -DCUDA_VERBOSE_BUILD=1 \
8b12a2
 -DCUDA_PROPAGATE_HOST_FLAGS=0 \
8b12a2
} \
8b12a2
%ifarch %{ix86} x86_64
8b12a2
%{?_with_openni: \
8b12a2
 -DWITH_OPENNI=ON \
8b12a2
} \
8b12a2
%endif
8b12a2
 %{!?_with_xine:-DWITH_XINE=0} \
8b12a2
 -DINSTALL_C_EXAMPLES=1 \
8b12a2
 -DINSTALL_PYTHON_EXAMPLES=1 \
8b12a2
 ..
8b12a2
8b12a2
make VERBOSE=1 %{?_smp_mflags}
8b12a2
8b12a2
popd
8b12a2
8b12a2
8b12a2
%install
8b12a2
rm -rf __devel-doc
8b12a2
pushd build
8b12a2
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" CPPROG="cp -p"
8b12a2
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
8b12a2
8b12a2
8b12a2
rm -f $RPM_BUILD_ROOT%{_datadir}/OpenCV/samples/c/build_all.sh \
8b12a2
      $RPM_BUILD_ROOT%{_datadir}/OpenCV/samples/c/cvsample.dsp \
8b12a2
      $RPM_BUILD_ROOT%{_datadir}/OpenCV/samples/c/cvsample.vcproj \
8b12a2
      $RPM_BUILD_ROOT%{_datadir}/OpenCV/samples/c/facedetect.cmd
8b12a2
install -pm644 %{SOURCE1} $RPM_BUILD_ROOT%{_datadir}/OpenCV/samples/c/GNUmakefile
8b12a2
8b12a2
# remove unnecessary documentation
8b12a2
rm -rf $RPM_BUILD_ROOT%{_datadir}/OpenCV/doc
8b12a2
8b12a2
popd
8b12a2
8b12a2
#Cmake mess
8b12a2
mkdir -p  $RPM_BUILD_ROOT%{_libdir}/cmake/OpenCV
8b12a2
mv $RPM_BUILD_ROOT%{_datadir}/OpenCV/*.cmake \
8b12a2
  $RPM_BUILD_ROOT%{_libdir}/cmake/OpenCV
8b12a2
8b12a2
8b12a2
%check
8b12a2
# Check fails since we don't support most video
8b12a2
# read/write capability and we don't provide a display
8b12a2
# ARGS=-V increases output verbosity
8b12a2
# Make test is unavailble as of 2.3.1
8b12a2
%if 0
8b12a2
#ifnarch ppc64
8b12a2
pushd build
8b12a2
    LD_LIBRARY_PATH=%{_builddir}/%{tar_name}-%{version}/lib:$LD_LIBARY_PATH make test ARGS=-V || :
8b12a2
popd
8b12a2
%endif
8b12a2
8b12a2
8b12a2
%post core -p /sbin/ldconfig
8b12a2
%postun core -p /sbin/ldconfig
8b12a2
8b12a2
%post -p /sbin/ldconfig
8b12a2
%postun -p /sbin/ldconfig
8b12a2
8b12a2
8b12a2
8b12a2
%files
8b12a2
%doc doc/license.txt
8b12a2
%{_bindir}/opencv_*
8b12a2
%{_libdir}/libopencv_calib3d.so.2.4*
8b12a2
%{_libdir}/libopencv_contrib.so.2.4*
8b12a2
%{_libdir}/libopencv_features2d.so.2.4*
8b12a2
%{_libdir}/libopencv_highgui.so.2.4*
8b12a2
%{_libdir}/libopencv_legacy.so.2.4*
8b12a2
%{_libdir}/libopencv_objdetect.so.2.4*
8b12a2
%{_libdir}/libopencv_stitching.so.2.4*
8b12a2
%{_libdir}/libopencv_ts.so.2.4*
8b12a2
%{_libdir}/libopencv_superres.so.2.4*
8b12a2
%{_libdir}/libopencv_videostab.so.2.4*
8b12a2
%dir %{_datadir}/OpenCV
8b12a2
%{_datadir}/OpenCV/haarcascades
8b12a2
%{_datadir}/OpenCV/lbpcascades
8b12a2
8b12a2
%files core
8b12a2
%{_libdir}/libopencv_core.so.2.4*
8b12a2
%{_libdir}/libopencv_flann.so.2.4*
8b12a2
%{_libdir}/libopencv_imgproc.so.2.4*
8b12a2
%{_libdir}/libopencv_ml.so.2.4*
8b12a2
%{_libdir}/libopencv_photo.so.2.4*
8b12a2
%{_libdir}/libopencv_video.so.2.4*
8b12a2
8b12a2
8b12a2
%files devel
8b12a2
%{_includedir}/opencv
8b12a2
%{_includedir}/opencv2
8b12a2
%{_libdir}/lib*.so
8b12a2
%{_libdir}/pkgconfig/opencv.pc
8b12a2
# own cmake dir avoiding dep on cmake
8b12a2
%{_libdir}/cmake/
8b12a2
8b12a2
8b12a2
%files devel-docs
8b12a2
%doc doc/*.{htm,png,jpg}
8b12a2
%doc %{_datadir}/OpenCV/samples
8b12a2
%doc %{_datadir}/opencv/samples
8b12a2
8b12a2
%files python
8b12a2
%{python_sitearch}/cv.py*
8b12a2
%{python_sitearch}/cv2.so
8b12a2
8b12a2
8b12a2
%changelog
984ab2
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 2.4.5-3
984ab2
- Mass rebuild 2014-01-24
984ab2
984ab2
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 2.4.5-2
984ab2
- Mass rebuild 2013-12-27
984ab2
8b12a2
* Thu May 23 2013 Nicolas Chauvet <kwizart@gmail.com> - 2.4.5-1
8b12a2
- Update to 2.4.5-clean
8b12a2
- Spec file clean-up
8b12a2
- Split core libraries into a sub-package
8b12a2
8b12a2
* Sat May 11 2013 François Cami <fcami@fedoraproject.org> - 2.4.4-3
8b12a2
- change project URL.
8b12a2
8b12a2
* Tue Apr 02 2013 Tom Callaway <spot@fedoraproject.org> - 2.4.4-2
8b12a2
- make clean source without SIFT/SURF
8b12a2
8b12a2
* Sat Mar 23 2013 Nicolas Chauvet <kwizart@gmail.com> - 2.4.4-1
8b12a2
- Update to 2.4.4a
8b12a2
- Fix ttb-devel architecture conditionals
8b12a2
8b12a2
* Sun Mar 10 2013 Rex Dieter <rdieter@fedoraproject.org> 2.4.4-0.2.beta
8b12a2
- rebuild (OpenEXR)
8b12a2
8b12a2
* Mon Feb 18 2013 Nicolas Chauvet <kwizart@gmail.com> - 2.4.4-0.1.beta
8b12a2
- Update to 2.4.4 beta
8b12a2
- Drop python-imaging also from requires
8b12a2
- Drop merged patch for additionals codecs
8b12a2
- Disable the java binding for now (untested)
8b12a2
8b12a2
* Fri Jan 25 2013 Honza Horak <hhorak@redhat.com> - 2.4.3-7
8b12a2
- Do not build with 1394 libs in rhel
8b12a2
8b12a2
* Mon Jan 21 2013 Adam Tkac <atkac redhat com> - 2.4.3-6
8b12a2
- rebuild due to "jpeg8-ABI" feature drop
8b12a2
8b12a2
* Sun Jan 20 2013 Nicolas Chauvet <kwizart@gmail.com> - 2.4.3-5
8b12a2
- Add more FourCC for gstreamer - rhbz#812628
8b12a2
- Allow to use python-pillow - rhbz#895767
8b12a2
8b12a2
* Mon Nov 12 2012 Nicolas Chauvet <kwizart@gmail.com> - 2.4.3-3
8b12a2
- Switch Build Type to ReleaseWithDebInfo to avoid -03
8b12a2
8b12a2
* Sun Nov 04 2012 Nicolas Chauvet <kwizart@gmail.com> - 2.4.3-2
8b12a2
- Disable SSE3 and allow --with sse3 build conditional.
8b12a2
- Disable gpu module as we don't build cuda
8b12a2
- Update to 2.4.3
8b12a2
8b12a2
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.2-2
8b12a2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
8b12a2
8b12a2
* Mon Jul 09 2012 Honza Horak <hhorak@redhat.com> - 2.4.2-1
8b12a2
- Update to 2.4.2
8b12a2
8b12a2
* Fri Jun 29 2012 Honza Horak <hhorak@redhat.com> - 2.4.1-2
8b12a2
- Fixed cmake script for generating opencv.pc file
8b12a2
- Fixed OpenCVConfig script file
8b12a2
8b12a2
* Mon Jun 04 2012 Nicolas Chauvet <kwizart@gmail.com> - 2.4.1-1
8b12a2
- Update to 2.4.1
8b12a2
- Rework dependencies - rhbz#828087
8b12a2
  Re-enable using --with tbb,opennpi,eigen2,eigen3
8b12a2
8b12a2
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.1-8
8b12a2
- Rebuilt for c++ ABI breakage
8b12a2
8b12a2
* Mon Jan 16 2012 Nicolas Chauvet <kwizart@gmail.com> - 2.3.1-7
8b12a2
- Update gcc46 patch for ARM FTBFS
8b12a2
8b12a2
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.1-6
8b12a2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
8b12a2
8b12a2
* Mon Dec 05 2011 Adam Jackson <ajax@redhat.com> 2.3.1-5
8b12a2
- Rebuild for new libpng
8b12a2
8b12a2
* Thu Oct 20 2011 Nicolas Chauvet <kwizart@gmail.com> - 2.3.1-4
8b12a2
- Rebuilt for tbb silent ABI change
8b12a2
8b12a2
* Mon Oct 10 2011 Nicolas Chauvet <kwizart@gmail.com> - 2.3.1-3
8b12a2
- Update to 2.3.1a
8b12a2
8b12a2
* Mon Sep 26 2011 Dan Horák <dan[at]danny.cz> - 2.3.1-2
8b12a2
- openni is exclusive for x86/x86_64
8b12a2
8b12a2
* Fri Aug 19 2011 Nicolas Chauvet <kwizart@gmail.com> - 2.3.1-1
8b12a2
- Update to 2.3.1
8b12a2
- Add BR openni-devel python-sphinx
8b12a2
- Remove deprecated cmake options
8b12a2
- Add --with cuda conditional (wip)
8b12a2
- Disable make test (unavailable)
8b12a2
8b12a2
* Thu May 26 2011 Nicolas Chauvet <kwizart@gmail.com> - 2.2.0-6
8b12a2
- Backport fixes from branch 2.2 to date
8b12a2
8b12a2
* Tue May 17 2011 Nicolas Chauvet <kwizart@gmail.com> - 2.2.0-5
8b12a2
- Re-enable v4l on f15
8b12a2
- Remove unused cmake options
8b12a2
8b12a2
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.0-3
8b12a2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
8b12a2
8b12a2
* Wed Feb 02 2011 Nicolas Chauvet <kwizart@gmail.com> - 2.2.0-2
8b12a2
- Fix with gcc46
8b12a2
- Disable V4L as V4L1 is disabled for Fedora 15
8b12a2
8b12a2
* Thu Jan 06 2011 Nicolas Chauvet <kwizart@gmail.com> - 2.2.0-1
8b12a2
- Update to 2.2.0
8b12a2
- Disable -msse and -msse2 on x86_32
8b12a2
8b12a2
* Wed Aug 25 2010 Rex Dieter <rdieter@fedoraproject.org> - 2.1.0-5
8b12a2
- -devel: include OpenCVConfig.cmake (#627359)
8b12a2
8b12a2
* Thu Jul 22 2010 Dan Horák <dan[at]danny.cz> - 2.1.0-4
8b12a2
- TBB is available only on x86/x86_64 and ia64
8b12a2
8b12a2
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 2.1.0-3
8b12a2
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
8b12a2
8b12a2
* Fri Jun 25 2010 Nicolas Chauvet <kwizart@gmail.com> - 2.1.0-2
8b12a2
- Move samples from main to -devel
8b12a2
- Fix spurious permission
8b12a2
- Add BR tbb-devel
8b12a2
- Fix CFLAGS
8b12a2
8b12a2
* Fri Apr 23 2010 Nicolas Chauvet <kwizart@fedoraproject.org> - 2.1.0-1
8b12a2
- Update to 2.1.0
8b12a2
- Update libdir patch
8b12a2
8b12a2
* Tue Apr 13 2010 Karel Klic <kklic@redhat.com> - 2.0.0-10
8b12a2
- Fix nonstandard executable permissions
8b12a2
8b12a2
* Mon Mar 09 2010 Karel Klic <kklic@redhat.com> - 2.0.0-9
8b12a2
- apply the previously added patch
8b12a2
8b12a2
* Mon Mar 08 2010 Karel Klic <kklic@redhat.com> - 2.0.0-8
8b12a2
- re-enable testing on CMake build system
8b12a2
- fix memory corruption in the gaussian random number generator
8b12a2
8b12a2
* Sat Feb 27 2010 Haïkel Guémar <karlthered@gmail.com> - 2.0.0-7
8b12a2
- replaced BR unicap-devel by libucil-devel (unicap split)
8b12a2
8b12a2
* Thu Feb 25 2010 Haïkel Guémar <karlthered@gmail.com> - 2.0.0-6
8b12a2
- use cmake build system
8b12a2
- applications renamed to opencv_xxx instead of opencv-xxx
8b12a2
- add devel-docs subpackage #546605
8b12a2
- add OpenCVConfig.cmake
8b12a2
- enable openmp build
8b12a2
- enable old SWIG based python wrappers
8b12a2
- opencv package is a good boy and use global instead of define
8b12a2
8b12a2
* Tue Feb 16 2010 Karel Klic <kklic@redhat.com> - 2.0.0-5
8b12a2
- Set CXXFLAXS without -match=i386 for i386 architecture #565074
8b12a2
8b12a2
* Sat Jan 09 2010 Rakesh Pandit <rakesh@fedoraproject.org> - 2.0.0-4
8b12a2
- Updated opencv-samples-Makefile (Thanks Scott Tsai) #553697
8b12a2
8b12a2
* Wed Jan 06 2010 Karel Klic <kklic@redhat.com> - 2.0.0-3
8b12a2
- Fixed spec file issues detected by rpmlint
8b12a2
8b12a2
* Sun Dec 06 2009 Haïkel Guémar <karlthered@gmail.com> - 2.0.0-2
8b12a2
- Fix autotools scripts (missing LBP features) - #544167
8b12a2
8b12a2
* Fri Nov 27 2009 Haïkel Guémar <karlthered@gmail.com> - 2.0.0-1
8b12a2
- Updated to 2.0.0
8b12a2
- Removed upstream-ed patches
8b12a2
- Ugly hack (added cvconfig.h)
8b12a2
- Disable %%check on ppc64
8b12a2
8b12a2
* Thu Sep 10 2009 Karsten Hopp <karsten@redhat.com> - 1.1.0-0.7.pre1
8b12a2
- fix build on s390x where we don't have libraw1394 and devel
8b12a2
8b12a2
* Fri Jul 30 2009 Haïkel Guémar <karlthered@gmail.com> - 1.1.0.0.6.pre1
8b12a2
- Fix typo I introduced that prevented build on i386/i586
8b12a2
8b12a2
* Fri Jul 30 2009 Haïkel Guémar <karlthered@gmail.com> - 1.1.0.0.5.pre1
8b12a2
- Added 1394 libs and unicap support
8b12a2
8b12a2
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.0-0.4.pre1
8b12a2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
8b12a2
8b12a2
* Thu Jul 16 2009 kwizart < kwizart at gmail.com > - 1.1.0-0.3.pre1
8b12a2
- Build with gstreamer support - #491223
8b12a2
- Backport gcc43 fix from trunk
8b12a2
8b12a2
* Thu Jul 16 2009 kwizart < kwizart at gmail.com > - 1.1.0-0.2.pre1
8b12a2
- Fix FTBFS #511705
8b12a2
8b12a2
* Fri Apr 24 2009 kwizart < kwizart at gmail.com > - 1.1.0-0.1.pre1
8b12a2
- Update to 1.1pre1
8b12a2
- Disable CXXFLAGS hardcoded optimization
8b12a2
- Add BR: python-imaging, numpy
8b12a2
- Disable make check failure for now
8b12a2
8b12a2
* Wed Apr 22 2009 kwizart < kwizart at gmail.com > - 1.0.0-14
8b12a2
- Fix for gcc44
8b12a2
- Enable BR jasper-devel
8b12a2
- Disable ldconfig run on python modules (uneeded)
8b12a2
- Prevent timestamp change on install
8b12a2
8b12a2
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.0-13
8b12a2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
8b12a2
8b12a2
* Mon Dec 29 2008 Rakesh Pandit <rakesh@fedoraproject.org> - 1.0.0-12
8b12a2
- fix URL field
8b12a2
8b12a2
* Fri Dec 19 2008 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.0.0-11
8b12a2
- Adopt latest python spec rules.
8b12a2
- Rebuild for Python 2.6 once again.
8b12a2
8b12a2
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.0.0-10
8b12a2
- Rebuild for Python 2.6
8b12a2
8b12a2
* Thu May 22 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.0.0-9
8b12a2
- fix license tag
8b12a2
8b12a2
* Sun May 11 2008 Ralf Corsépius <rc040203@freenet.de> - 1.0.0-8
8b12a2
- Adjust library order in opencv.pc.in (BZ 445937).
8b12a2
8b12a2
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.0.0-7
8b12a2
- Autorebuild for GCC 4.3
8b12a2
8b12a2
* Sun Feb 10 2008 Ralf Corsépius <rc040203@freenet.de> - 1.0.0-6
8b12a2
- Rebuild for gcc43.
8b12a2
8b12a2
* Tue Aug 28 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 1.0.0-5
8b12a2
- Rebuild for selinux ppc32 issue.
8b12a2
8b12a2
* Wed Aug 22 2007 Ralf Corsépius <rc040203@freenet.de> - 1.0.0-4
8b12a2
- Mass rebuild.
8b12a2
8b12a2
* Thu Mar 22 2007 Ralf Corsépius <rc040203@freenet.de> - 1.0.0-3
8b12a2
- Fix %%{_datadir}/opencv/samples ownership.
8b12a2
- Adjust timestamp of cvconfig.h.in to avoid re-running autoheader.
8b12a2
8b12a2
* Thu Mar 22 2007 Ralf Corsépius <rc040203@freenet.de> - 1.0.0-2
8b12a2
- Move all of the python module to pyexecdir (BZ 233128).
8b12a2
- Activate the testsuite.
8b12a2
8b12a2
* Mon Dec 11 2006 Ralf Corsépius <rc040203@freenet.de> - 1.0.0-1
8b12a2
- Upstream update.
8b12a2
8b12a2
* Mon Dec 11 2006 Ralf Corsépius <rc040203@freenet.de> - 0.9.9-4
8b12a2
- Remove python-abi.
8b12a2
8b12a2
* Thu Oct 05 2006 Christian Iseli <Christian.Iseli@licr.org> 0.9.9-3
8b12a2
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
8b12a2
8b12a2
* Thu Sep 21 2006 Ralf Corsépius <rc040203@freenet.de> - 0.9.9-2
8b12a2
- Stop configure.in from hacking CXXFLAGS.
8b12a2
- Activate testsuite.
8b12a2
- Let *-devel require pkgconfig.
8b12a2
8b12a2
* Thu Sep 21 2006 Ralf Corsépius <rc040203@freenet.de> - 0.9.9-1
8b12a2
- Upstream update.
8b12a2
- Don't BR: autotools.
8b12a2
- Install samples' Makefile as GNUmakefile.
8b12a2
8b12a2
* Thu Sep 21 2006 Ralf Corsépius <rc040203@freenet.de> - 0.9.7-18
8b12a2
- Un'%%ghost *.pyo.
8b12a2
- Separate %%{pythondir} from %%{pyexecdir}.
8b12a2
8b12a2
* Thu Sep 21 2006 Ralf Corsépius <rc040203@freenet.de> - 0.9.7-17
8b12a2
- Rebuild for FC6.
8b12a2
- BR: libtool.
8b12a2
8b12a2
* Fri Mar 17 2006 Simon Perreault <nomis80@nomis80.org> - 0.9.7-16
8b12a2
- Rebuild.
8b12a2
8b12a2
* Wed Mar  8 2006 Simon Perreault <nomis80@nomis80.org> - 0.9.7-15
8b12a2
- Force a re-run of Autotools by calling autoreconf.
8b12a2
8b12a2
* Wed Mar  8 2006 Simon Perreault <nomis80@nomis80.org> - 0.9.7-14
8b12a2
- Added build dependency on Autotools.
8b12a2
8b12a2
* Tue Mar  7 2006 Simon Perreault <nomis80@nomis80.org> - 0.9.7-13
8b12a2
- Changed intrinsics patch so that it matches upstream.
8b12a2
8b12a2
* Tue Mar  7 2006 Simon Perreault <nomis80@nomis80.org> - 0.9.7-12
8b12a2
- More intrinsics patch fixing.
8b12a2
8b12a2
* Tue Mar  7 2006 Simon Perreault <nomis80@nomis80.org> - 0.9.7-11
8b12a2
- Don't do "make check" because it doesn't run any tests anyway.
8b12a2
- Back to main intrinsics patch.
8b12a2
8b12a2
* Tue Mar  7 2006 Simon Perreault <nomis80@nomis80.org> - 0.9.7-10
8b12a2
- Using simple intrinsincs patch.
8b12a2
8b12a2
* Tue Mar  7 2006 Simon Perreault <nomis80@nomis80.org> - 0.9.7-9
8b12a2
- Still more fixing of intrinsics patch for Python bindings on x86_64.
8b12a2
8b12a2
* Tue Mar  7 2006 Simon Perreault <nomis80@nomis80.org> - 0.9.7-8
8b12a2
- Again fixed intrinsics patch so that Python modules build on x86_64.
8b12a2
8b12a2
* Tue Mar  7 2006 Simon Perreault <nomis80@nomis80.org> - 0.9.7-7
8b12a2
- Fixed intrinsics patch so that it works.
8b12a2
8b12a2
* Tue Mar  7 2006 Simon Perreault <nomis80@nomis80.org> - 0.9.7-6
8b12a2
- Fixed Python bindings location on x86_64.
8b12a2
8b12a2
* Mon Mar  6 2006 Simon Perreault <nomis80@nomis80.org> - 0.9.7-5
8b12a2
- SSE2 support on x86_64.
8b12a2
8b12a2
* Mon Mar  6 2006 Simon Perreault <nomis80@nomis80.org> - 0.9.7-4
8b12a2
- Rebuild
8b12a2
8b12a2
* Sun Oct 16 2005 Simon Perreault <nomis80@nomis80.org> - 0.9.7-3
8b12a2
- Removed useless sample compilation makefiles/project files and replaced them
8b12a2
  with one that works on Fedora Core.
8b12a2
- Removed shellbang from Python modules.
8b12a2
8b12a2
* Mon Oct 10 2005 Simon Perreault <nomis80@nomis80.org> - 0.9.7-2
8b12a2
- Made FFMPEG dependency optional (needs to be disabled for inclusion in FE).
8b12a2
8b12a2
* Mon Oct 10 2005 Simon Perreault <nomis80@nomis80.org> - 0.9.7-1
8b12a2
- Initial package.