opencv/opencv.spec

585 lines
18 KiB
RPMSpec
Raw Normal View History

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