2020-08-02 00:30:04 +00:00
|
|
|
%undefine __cmake_in_source_build
|
2020-06-01 02:09:03 +00:00
|
|
|
%bcond_without tests
|
2022-03-20 02:12:43 +00:00
|
|
|
%bcond_without extras
|
2018-01-25 18:33:43 +00:00
|
|
|
%bcond_with ffmpeg
|
|
|
|
%bcond_without gstreamer
|
|
|
|
%bcond_with eigen2
|
|
|
|
%bcond_without eigen3
|
|
|
|
%bcond_without opencl
|
2017-08-28 23:47:40 +00:00
|
|
|
%ifarch %{ix86} x86_64 %{arm}
|
2018-01-25 18:33:43 +00:00
|
|
|
%bcond_without openni
|
2017-11-15 10:10:59 +00:00
|
|
|
%else
|
|
|
|
# we dont have openni in other archs
|
2018-01-25 18:33:43 +00:00
|
|
|
%bcond_with openni
|
2017-08-28 23:47:40 +00:00
|
|
|
%endif
|
2018-01-25 18:33:43 +00:00
|
|
|
%bcond_without tbb
|
|
|
|
%bcond_with cuda
|
|
|
|
%bcond_with xine
|
2017-08-22 00:24:12 +00:00
|
|
|
# Atlas need (missing: Atlas_CLAPACK_INCLUDE_DIR Atlas_CBLAS_LIBRARY Atlas_BLAS_LIBRARY Atlas_LAPACK_LIBRARY)
|
2018-01-28 17:30:03 +00:00
|
|
|
# LAPACK may use atlas or openblas since now it detect openblas, atlas is not used anyway, more info please
|
2018-01-26 17:13:15 +00:00
|
|
|
# check OpenCVFindLAPACK.cmake
|
2018-01-25 18:33:43 +00:00
|
|
|
%bcond_with atlas
|
|
|
|
%bcond_without openblas
|
2019-03-03 00:55:15 +00:00
|
|
|
%bcond_without gdcm
|
2021-01-28 07:05:17 +00:00
|
|
|
%if 0%{?rhel} >= 8
|
|
|
|
%bcond_with vtk
|
|
|
|
%else
|
2020-06-01 02:09:03 +00:00
|
|
|
%bcond_without vtk
|
2021-01-28 07:05:17 +00:00
|
|
|
%endif
|
2018-10-30 12:48:13 +00:00
|
|
|
|
2019-12-19 08:14:20 +00:00
|
|
|
%ifarch x86_64
|
2018-03-02 08:59:17 +00:00
|
|
|
%bcond_without libmfx
|
2022-01-03 16:29:06 +00:00
|
|
|
%bcond_without va
|
2018-01-26 17:13:15 +00:00
|
|
|
%else
|
2018-03-02 08:59:17 +00:00
|
|
|
%bcond_with libmfx
|
2018-01-26 17:13:15 +00:00
|
|
|
%endif
|
|
|
|
%bcond_without clp
|
2022-07-06 13:51:36 +00:00
|
|
|
%ifarch %{java_arches}
|
2019-05-12 15:05:50 +00:00
|
|
|
%bcond_without java
|
2022-07-06 13:51:36 +00:00
|
|
|
%else
|
|
|
|
%bcond_with java
|
|
|
|
%endif
|
|
|
|
|
2019-09-13 20:20:23 +00:00
|
|
|
%bcond_without vulkan
|
2018-01-25 18:33:43 +00:00
|
|
|
|
2020-08-02 00:30:04 +00:00
|
|
|
%define _lto_cflags %{nil}
|
|
|
|
|
2021-03-12 14:33:02 +00:00
|
|
|
# If _cuda_version is unset
|
|
|
|
%if 0%{!?_cuda_version:1} && 0%{?with_cuda:1}
|
|
|
|
%global _cuda_version 11.2
|
|
|
|
%global _cuda_rpm_version 11-2
|
|
|
|
%global _cuda_prefix /usr/local/cuda-%{_cuda_version}
|
2021-03-12 16:23:45 +00:00
|
|
|
%bcond_without dnn_cuda
|
2021-03-12 14:33:02 +00:00
|
|
|
%endif
|
2016-08-05 09:19:43 +00:00
|
|
|
|
2006-03-05 19:45:57 +00:00
|
|
|
Name: opencv
|
2022-06-17 23:43:22 +00:00
|
|
|
Version: 4.6.0
|
2020-05-30 02:23:15 +00:00
|
|
|
%global javaver %(foo=%{version}; echo ${foo//./})
|
2022-06-17 23:43:22 +00:00
|
|
|
%global majorver %(foo=%{version}; a=(${foo//./ }); echo ${a[0]} )
|
|
|
|
%global minorver %(foo=%{version}; a=(${foo//./ }); echo ${a[1]} )
|
|
|
|
%global padding %(digits=00; num=%{minorver}; echo ${digits:${#num}:${#digits}} )
|
|
|
|
%global abiver %(echo %{majorver}%{padding}%{minorver} )
|
2022-07-08 08:50:24 +00:00
|
|
|
Release: 4%{?dist}
|
2006-03-05 19:45:57 +00:00
|
|
|
Summary: Collection of algorithms for computer vision
|
2008-05-22 18:38:41 +00:00
|
|
|
# This is normal three clause BSD.
|
|
|
|
License: BSD
|
2019-09-13 14:49:55 +00:00
|
|
|
URL: https://opencv.org
|
2021-12-28 17:13:16 +00:00
|
|
|
# TO PREPARE TARBALLS FOR FEDORA
|
2022-06-17 23:43:22 +00:00
|
|
|
# Edit opencv-clean.sh and set VERSION, save file and run opencv-clean.sh
|
2017-02-28 11:59:32 +00:00
|
|
|
#
|
|
|
|
# Need to remove copyrighted lena.jpg images from tarball (rhbz#1295173)
|
|
|
|
# and SIFT/SURF from tarball, due to legal concerns.
|
2017-11-15 10:10:59 +00:00
|
|
|
#
|
2017-02-28 11:59:32 +00:00
|
|
|
Source0: %{name}-clean-%{version}.tar.gz
|
|
|
|
Source1: %{name}_contrib-clean-%{version}.tar.gz
|
2022-03-20 02:12:43 +00:00
|
|
|
%{?with_extras:
|
2020-06-04 15:31:17 +00:00
|
|
|
Source2: %{name}_extra-clean-%{version}.tar.gz
|
2022-03-20 02:12:43 +00:00
|
|
|
}
|
2019-09-13 16:09:00 +00:00
|
|
|
Source3: face_landmark_model.dat.xz
|
2020-06-06 06:20:05 +00:00
|
|
|
# from https://github.com/opencv/ade/archive/v0.1.1f.zip
|
|
|
|
Source4: b624b995ec9c439cbc2e9e6ee940d3a2-v0.1.1f.zip
|
2020-06-01 02:09:03 +00:00
|
|
|
Source5: xorg.conf
|
2018-07-12 02:53:41 +00:00
|
|
|
|
2019-09-14 07:18:03 +00:00
|
|
|
Patch0: opencv-4.1.0-install_3rdparty_licenses.patch
|
2022-04-14 14:38:25 +00:00
|
|
|
Patch3: opencv.python.patch
|
2019-09-14 07:18:03 +00:00
|
|
|
|
2018-10-04 06:04:22 +00:00
|
|
|
BuildRequires: gcc-c++
|
2010-08-26 14:03:10 +00:00
|
|
|
BuildRequires: cmake >= 2.6.3
|
2010-06-25 16:50:54 +00:00
|
|
|
BuildRequires: chrpath
|
2019-05-20 11:11:18 +00:00
|
|
|
%{?with_cuda:
|
2021-03-12 14:33:02 +00:00
|
|
|
BuildRequires: cuda-minimal-build-%{?_cuda_rpm_version}
|
|
|
|
BuildRequires: pkgconfig(cublas-%{?_cuda_version})
|
|
|
|
BuildRequires: pkgconfig(cufft-%{?_cuda_version})
|
|
|
|
BuildRequires: pkgconfig(nppc-%{?_cuda_version})
|
2021-03-12 16:23:45 +00:00
|
|
|
%{?with_dnn_cuda:BuildRequires: libcudnn8-devel}
|
2019-05-20 11:11:18 +00:00
|
|
|
}
|
2015-07-14 17:58:31 +00:00
|
|
|
%{?with_eigen2:BuildRequires: eigen2-devel}
|
|
|
|
%{?with_eigen3:BuildRequires: eigen3-devel}
|
2009-07-30 11:22:15 +00:00
|
|
|
BuildRequires: libtheora-devel
|
|
|
|
BuildRequires: libvorbis-devel
|
2022-01-03 16:25:49 +00:00
|
|
|
%if 0%{?fedora}
|
2009-09-10 12:32:22 +00:00
|
|
|
%ifnarch s390 s390x
|
2009-07-30 11:22:15 +00:00
|
|
|
BuildRequires: libraw1394-devel
|
|
|
|
BuildRequires: libdc1394-devel
|
2009-09-10 12:32:22 +00:00
|
|
|
%endif
|
2013-02-05 08:42:23 +00:00
|
|
|
%endif
|
2009-04-23 15:03:05 +00:00
|
|
|
BuildRequires: jasper-devel
|
|
|
|
BuildRequires: libjpeg-devel
|
2016-04-22 03:34:46 +00:00
|
|
|
BuildRequires: libpng-devel
|
2009-04-23 15:03:05 +00:00
|
|
|
BuildRequires: libtiff-devel
|
2013-11-14 20:53:27 +00:00
|
|
|
BuildRequires: libGL-devel
|
2016-04-22 03:34:46 +00:00
|
|
|
BuildRequires: libv4l-devel
|
2010-06-25 16:50:54 +00:00
|
|
|
BuildRequires: OpenEXR-devel
|
2016-05-04 14:00:33 +00:00
|
|
|
%{?with_openni:
|
2011-08-21 10:04:06 +00:00
|
|
|
BuildRequires: openni-devel
|
|
|
|
BuildRequires: openni-primesense
|
2012-06-04 21:55:18 +00:00
|
|
|
}
|
2017-08-20 21:03:00 +00:00
|
|
|
%{?with_tbb:
|
2010-06-25 16:50:54 +00:00
|
|
|
BuildRequires: tbb-devel
|
2012-06-04 21:55:18 +00:00
|
|
|
}
|
2019-01-15 11:32:02 +00:00
|
|
|
BuildRequires: zlib-devel
|
|
|
|
BuildRequires: pkgconfig
|
2018-10-30 12:48:13 +00:00
|
|
|
BuildRequires: python3-devel
|
2016-04-24 04:05:19 +00:00
|
|
|
BuildRequires: python3-numpy
|
2019-09-13 21:31:32 +00:00
|
|
|
BuildRequires: pylint
|
2020-06-22 00:08:53 +00:00
|
|
|
BuildRequires: python3-flake8
|
2017-10-28 00:30:04 +00:00
|
|
|
BuildRequires: swig >= 1.3.24
|
2015-07-14 17:58:31 +00:00
|
|
|
%{?with_ffmpeg:BuildRequires: ffmpeg-devel >= 0.4.9}
|
2018-01-24 22:35:54 +00:00
|
|
|
%if 0%{?fedora} || 0%{?rhel} > 7
|
2015-07-14 17:58:31 +00:00
|
|
|
%{?with_gstreamer:BuildRequires: gstreamer1-devel gstreamer1-plugins-base-devel}
|
2014-07-25 12:09:56 +00:00
|
|
|
%else
|
2015-07-14 17:58:31 +00:00
|
|
|
%{?with_gstreamer:BuildRequires: gstreamer-devel gstreamer-plugins-base-devel}
|
2014-07-25 12:09:56 +00:00
|
|
|
%endif
|
2015-07-14 17:58:31 +00:00
|
|
|
%{?with_xine:BuildRequires: xine-lib-devel}
|
2017-11-15 10:10:59 +00:00
|
|
|
%{?with_opencl:BuildRequires: opencl-headers}
|
2016-04-22 03:34:46 +00:00
|
|
|
BuildRequires: libgphoto2-devel
|
|
|
|
BuildRequires: libwebp-devel
|
2016-04-24 04:05:19 +00:00
|
|
|
BuildRequires: tesseract-devel
|
|
|
|
BuildRequires: protobuf-devel
|
|
|
|
BuildRequires: gdal-devel
|
|
|
|
BuildRequires: glog-devel
|
2020-06-22 00:08:53 +00:00
|
|
|
#BuildRequires: doxygen
|
2019-06-10 19:52:37 +00:00
|
|
|
BuildRequires: python3-beautifulsoup4
|
2018-01-26 17:13:15 +00:00
|
|
|
#for doc/doxygen/bib2xhtml.pl
|
2020-06-22 00:08:53 +00:00
|
|
|
#BuildRequires: perl-open
|
2016-04-24 04:05:19 +00:00
|
|
|
BuildRequires: gflags-devel
|
2017-08-20 21:03:00 +00:00
|
|
|
BuildRequires: libucil-devel
|
2016-04-24 04:05:19 +00:00
|
|
|
BuildRequires: qt5-qtbase-devel
|
2019-09-13 16:11:29 +00:00
|
|
|
BuildRequires: libGL-devel
|
|
|
|
BuildRequires: libGLU-devel
|
2016-04-24 04:05:19 +00:00
|
|
|
BuildRequires: hdf5-devel
|
2020-10-20 22:11:52 +00:00
|
|
|
BuildRequires: openjpeg2-devel
|
2018-10-04 06:04:22 +00:00
|
|
|
# Module opencv_ovis disabled because of incompatible OGRE3D version < 1.10
|
|
|
|
# BuildRequires: ogre-devel
|
2021-03-31 10:01:05 +00:00
|
|
|
%{?with_vtk:BuildRequires: vtk-devel vtk-java}
|
2017-02-28 11:59:32 +00:00
|
|
|
%{?with_atlas:BuildRequires: atlas-devel}
|
|
|
|
#ceres-solver-devel push eigen3-devel and tbb-devel
|
|
|
|
%{?with_tbb:
|
|
|
|
%{?with_eigen3:
|
|
|
|
BuildRequires: ceres-solver-devel
|
|
|
|
}
|
|
|
|
}
|
2017-11-15 10:10:59 +00:00
|
|
|
%{?with_openblas:
|
|
|
|
BuildRequires: openblas-devel
|
|
|
|
BuildRequires: blas-devel
|
|
|
|
BuildRequires: lapack-devel
|
|
|
|
}
|
2018-01-26 17:13:15 +00:00
|
|
|
%{?with_gdcm:BuildRequires: gdcm-devel}
|
2018-03-02 08:59:17 +00:00
|
|
|
%{?with_libmfx:BuildRequires: libmfx-devel}
|
2018-01-26 17:13:15 +00:00
|
|
|
%{?with_clp:BuildRequires: coin-or-Clp-devel}
|
|
|
|
%{?with_va:BuildRequires: libva-devel}
|
2019-05-12 15:05:50 +00:00
|
|
|
%{?with_java:
|
|
|
|
BuildRequires: ant
|
|
|
|
BuildRequires: java-devel
|
|
|
|
}
|
2019-09-13 20:20:23 +00:00
|
|
|
%{?with_vulkan:BuildRequires: vulkan-headers}
|
2020-06-01 02:09:03 +00:00
|
|
|
%if %{with tests}
|
|
|
|
BuildRequires: xorg-x11-drv-dummy
|
|
|
|
BuildRequires: mesa-dri-drivers
|
|
|
|
%endif
|
2013-05-23 20:58:33 +00:00
|
|
|
|
|
|
|
Requires: opencv-core%{_isa} = %{version}-%{release}
|
|
|
|
|
2006-03-05 19:45:57 +00:00
|
|
|
%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.
|
|
|
|
|
|
|
|
|
2014-01-17 01:26:42 +00:00
|
|
|
%package core
|
2013-05-23 20:58:33 +00:00
|
|
|
Summary: OpenCV core libraries
|
2019-06-10 19:52:37 +00:00
|
|
|
Provides: bundled(quirc) = 1.0
|
2019-05-12 17:20:05 +00:00
|
|
|
Obsoletes: python2-%{name} < %{version}-%{release}
|
2013-05-23 20:58:33 +00:00
|
|
|
|
2014-01-17 01:26:42 +00:00
|
|
|
%description core
|
2013-05-23 20:58:33 +00:00
|
|
|
This package contains the OpenCV C/C++ core libraries.
|
|
|
|
|
2018-01-25 00:57:36 +00:00
|
|
|
|
2014-01-17 01:26:42 +00:00
|
|
|
%package devel
|
2006-03-05 19:45:57 +00:00
|
|
|
Summary: Development files for using the OpenCV library
|
2016-04-24 04:05:19 +00:00
|
|
|
Requires: %{name}%{_isa} = %{version}-%{release}
|
|
|
|
Requires: %{name}-contrib%{_isa} = %{version}-%{release}
|
2006-03-05 19:45:57 +00:00
|
|
|
|
2014-01-17 01:26:42 +00:00
|
|
|
%description devel
|
2006-03-05 19:45:57 +00:00
|
|
|
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
|
2018-01-25 00:57:36 +00:00
|
|
|
will use the OpenCV library. You should consider installing opencv-doc
|
2010-02-27 13:08:49 +00:00
|
|
|
package.
|
2006-03-05 19:45:57 +00:00
|
|
|
|
2018-01-25 00:57:36 +00:00
|
|
|
|
|
|
|
%package doc
|
2019-10-08 08:19:28 +00:00
|
|
|
Summary: Documentation files
|
2010-02-27 13:08:49 +00:00
|
|
|
Requires: opencv-devel = %{version}-%{release}
|
2022-05-21 20:44:08 +00:00
|
|
|
# Doc dependes on architecture, specifically whether the va_intel sample is installed depends on HAVE_VA
|
|
|
|
# BuildArch: noarch
|
2018-03-01 11:08:40 +00:00
|
|
|
Provides: %{name}-devel-docs = %{version}-%{release}
|
|
|
|
Obsoletes: %{name}-devel-docs < %{version}-%{release}
|
2010-02-27 13:08:49 +00:00
|
|
|
|
2018-01-25 00:57:36 +00:00
|
|
|
%description doc
|
|
|
|
This package contains the OpenCV documentation, samples and examples programs.
|
|
|
|
|
2006-03-05 19:45:57 +00:00
|
|
|
|
2018-01-25 00:57:36 +00:00
|
|
|
%package -n python3-opencv
|
2016-04-22 03:34:46 +00:00
|
|
|
Summary: Python3 bindings for apps which use OpenCV
|
|
|
|
Requires: opencv%{_isa} = %{version}-%{release}
|
2017-10-28 00:30:04 +00:00
|
|
|
Requires: python3-numpy
|
2021-10-10 13:28:46 +00:00
|
|
|
%{?%py_provides:%py_provides python3-%{name}}
|
2016-04-22 03:34:46 +00:00
|
|
|
|
2018-01-25 00:57:36 +00:00
|
|
|
%description -n python3-opencv
|
2016-04-22 03:34:46 +00:00
|
|
|
This package contains Python3 bindings for the OpenCV library.
|
|
|
|
|
|
|
|
|
2019-05-12 15:05:50 +00:00
|
|
|
%package java
|
|
|
|
Summary: Java bindings for apps which use OpenCV
|
|
|
|
Requires: java-headless
|
|
|
|
Requires: javapackages-filesystem
|
|
|
|
Requires: %{name}-core%{_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description java
|
|
|
|
This package contains Java bindings for the OpenCV library.
|
|
|
|
|
|
|
|
|
2016-04-22 03:34:46 +00:00
|
|
|
%package contrib
|
|
|
|
Summary: OpenCV contributed functionality
|
|
|
|
|
|
|
|
%description contrib
|
|
|
|
This package is intended for development of so-called "extra" modules, contributed
|
|
|
|
functionality. New modules quite often do not have stable API, and they are not
|
|
|
|
well-tested. Thus, they shouldn't be released as a part of official OpenCV
|
|
|
|
distribution, since the library maintains binary compatibility, and tries
|
|
|
|
to provide decent performance and stability.
|
2006-03-05 19:45:57 +00:00
|
|
|
|
|
|
|
%prep
|
2022-03-20 02:12:43 +00:00
|
|
|
%setup -q -a1 %{?with_extras:-a2}
|
2020-01-18 11:00:17 +00:00
|
|
|
%if 1
|
2018-12-03 17:10:52 +00:00
|
|
|
# we don't use pre-built contribs except quirc
|
2020-01-18 11:00:17 +00:00
|
|
|
pushd 3rdparty
|
|
|
|
shopt -s extglob
|
2021-07-17 00:24:53 +00:00
|
|
|
#rm -r !(openexr|openvx|quirc)
|
|
|
|
rm -r !(openvx|quirc)
|
2020-01-18 11:00:17 +00:00
|
|
|
shopt -u extglob
|
|
|
|
popd &>/dev/null
|
|
|
|
%endif
|
2018-03-08 19:47:33 +00:00
|
|
|
|
2019-09-14 15:51:06 +00:00
|
|
|
%patch0 -p1 -b .install_3rdparty_licenses
|
2022-04-14 14:38:25 +00:00
|
|
|
%patch3 -p1 -b .python_install_binary
|
2019-09-14 15:51:06 +00:00
|
|
|
|
2017-11-15 10:10:59 +00:00
|
|
|
pushd %{name}_contrib-%{version}
|
2021-12-28 17:13:16 +00:00
|
|
|
#patch1 -p1 -b .install_cvv
|
2016-05-07 02:38:20 +00:00
|
|
|
popd
|
2009-04-24 10:14:52 +00:00
|
|
|
|
2020-07-27 07:46:17 +00:00
|
|
|
# Install face_landmark_model
|
|
|
|
mkdir -p .cache/data
|
|
|
|
install -pm 0644 %{SOURCE3} .cache/data
|
|
|
|
pushd .cache/data
|
|
|
|
xz -d face_landmark_model.dat.xz
|
2021-10-10 22:54:27 +00:00
|
|
|
mv face_landmark_model.dat 7505c44ca4eb54b4ab1e4777cb96ac05-face_landmark_model.dat
|
2020-07-27 07:46:17 +00:00
|
|
|
popd
|
|
|
|
|
2020-01-18 11:00:17 +00:00
|
|
|
# Install ADE, needed for opencv_gapi
|
|
|
|
mkdir -p .cache/ade
|
|
|
|
install -pm 0644 %{SOURCE4} .cache/ade/
|
|
|
|
|
2010-06-25 16:50:54 +00:00
|
|
|
%build
|
2010-02-27 13:08:49 +00:00
|
|
|
# enabled by default if libraries are presents at build time:
|
2016-04-24 04:05:19 +00:00
|
|
|
# GTK, GSTREAMER, 1394, V4L, eigen3
|
2010-02-27 13:08:49 +00:00
|
|
|
# non available on Fedora: FFMPEG, XINE
|
2016-04-22 03:34:46 +00:00
|
|
|
# disabling IPP because it is closed source library from intel
|
|
|
|
|
2020-07-28 22:40:37 +00:00
|
|
|
%cmake \
|
2020-07-27 07:46:41 +00:00
|
|
|
-DCV_TRACE=OFF \
|
2016-04-22 03:34:46 +00:00
|
|
|
-DWITH_IPP=OFF \
|
2017-11-15 10:10:59 +00:00
|
|
|
-DWITH_ITT=OFF \
|
2016-04-24 04:05:19 +00:00
|
|
|
-DWITH_QT=ON \
|
|
|
|
-DWITH_OPENGL=ON \
|
2021-03-31 13:12:29 +00:00
|
|
|
%if ! %{with tests}
|
2021-03-31 15:16:34 +00:00
|
|
|
-DBUILD_TESTS=OFF \
|
2021-03-31 13:12:29 +00:00
|
|
|
%endif
|
2018-09-30 16:27:42 +00:00
|
|
|
-DOpenGL_GL_PREFERENCE=GLVND \
|
2016-04-24 04:05:19 +00:00
|
|
|
-DWITH_GDAL=ON \
|
2020-01-18 11:00:17 +00:00
|
|
|
-DWITH_OPENEXR=ON \
|
2016-04-24 04:05:19 +00:00
|
|
|
-DWITH_UNICAP=ON \
|
2011-08-20 13:00:12 +00:00
|
|
|
-DCMAKE_SKIP_RPATH=ON \
|
2017-02-28 11:59:32 +00:00
|
|
|
-DWITH_CAROTENE=OFF \
|
2019-10-17 08:54:52 +00:00
|
|
|
%ifarch x86_64 %{ix86}
|
|
|
|
-DCPU_BASELINE=SSE2 \
|
|
|
|
%endif
|
2012-11-12 22:20:56 +00:00
|
|
|
-DCMAKE_BUILD_TYPE=ReleaseWithDebInfo \
|
2019-06-12 19:11:30 +00:00
|
|
|
%{?with_java: -DBUILD_opencv_java=ON \
|
|
|
|
-DOPENCV_JAR_INSTALL_PATH=%{_jnidir} } \
|
2019-05-12 15:05:50 +00:00
|
|
|
%{!?with_java: -DBUILD_opencv_java=OFF } \
|
2017-02-28 11:59:32 +00:00
|
|
|
%{?with_tbb: -DWITH_TBB=ON } \
|
2018-01-26 17:13:15 +00:00
|
|
|
%{!?with_gstreamer: -DWITH_GSTREAMER=OFF } \
|
|
|
|
%{!?with_ffmpeg: -DWITH_FFMPEG=OFF } \
|
|
|
|
%{?with_cuda: \
|
2016-04-24 04:05:19 +00:00
|
|
|
-DWITH_CUDA=ON \
|
2019-05-20 09:32:04 +00:00
|
|
|
-DCUDA_TOOLKIT_ROOT_DIR=%{?_cuda_prefix} \
|
2016-04-24 04:05:19 +00:00
|
|
|
-DCUDA_VERBOSE_BUILD=ON \
|
|
|
|
-DCUDA_PROPAGATE_HOST_FLAGS=OFF \
|
2021-03-12 14:33:02 +00:00
|
|
|
-DCUDA_NVCC_FLAGS="-Xcompiler -fPIC" \
|
2021-03-12 16:23:45 +00:00
|
|
|
%{?with_dnn_cuda:-DOPENCV_DNN_CUDA=ON} \
|
2018-01-26 17:13:15 +00:00
|
|
|
} \
|
2017-08-28 23:47:40 +00:00
|
|
|
%{?with_openni: -DWITH_OPENNI=ON } \
|
2018-01-26 17:13:15 +00:00
|
|
|
%{!?with_xine: -DWITH_XINE=OFF } \
|
|
|
|
-DBUILD_DOCS=ON \
|
2018-03-08 19:47:33 +00:00
|
|
|
-DBUILD_EXAMPLES=ON \
|
2020-01-18 11:00:17 +00:00
|
|
|
-DBUILD_opencv_python2=OFF \
|
2016-04-24 04:05:19 +00:00
|
|
|
-DINSTALL_C_EXAMPLES=ON \
|
|
|
|
-DINSTALL_PYTHON_EXAMPLES=ON \
|
2019-01-15 11:32:02 +00:00
|
|
|
-DPYTHON3_EXECUTABLE=%{__python3} \
|
2019-10-13 22:57:58 +00:00
|
|
|
-DPYTHON3_PACKAGES_PATH=%{python3_sitearch} \
|
2022-03-19 23:45:16 +00:00
|
|
|
-DOPENCV_GENERATE_SETUPVARS=OFF \
|
2019-09-13 21:31:32 +00:00
|
|
|
-DENABLE_PYLINT=ON \
|
2018-03-02 08:59:17 +00:00
|
|
|
-DBUILD_PROTOBUF=OFF \
|
2018-10-23 14:43:07 +00:00
|
|
|
-DPROTOBUF_UPDATE_FILES=ON \
|
2018-12-02 19:14:48 +00:00
|
|
|
%{?with_opencl: -DOPENCL_INCLUDE_DIR=%{_includedir}/CL } \
|
|
|
|
%{!?with_opencl: -DWITH_OPENCL=OFF } \
|
2020-07-28 22:40:37 +00:00
|
|
|
-DOPENCV_EXTRA_MODULES_PATH=opencv_contrib-%{version}/modules \
|
2017-09-02 18:31:58 +00:00
|
|
|
-DWITH_LIBV4L=ON \
|
2018-01-26 17:13:15 +00:00
|
|
|
-DWITH_OPENMP=ON \
|
2019-06-26 21:08:14 +00:00
|
|
|
-DOPENCV_CONFIG_INSTALL_PATH=%{_lib}/cmake/OpenCV \
|
2019-09-13 17:41:44 +00:00
|
|
|
-DOPENCV_GENERATE_PKGCONFIG=ON \
|
2022-03-20 02:12:43 +00:00
|
|
|
%{?with_extras: -DOPENCV_TEST_DATA_PATH=opencv_extra-%{version}/testdata} \
|
2018-01-26 17:13:15 +00:00
|
|
|
%{?with_gdcm: -DWITH_GDCM=ON } \
|
2018-03-02 08:59:17 +00:00
|
|
|
%{?with_libmfx: -DWITH_MFX=ON } \
|
2018-01-26 17:13:15 +00:00
|
|
|
%{?with_clp: -DWITH_CLP=ON } \
|
|
|
|
%{?with_va: -DWITH_VA=ON } \
|
2018-12-02 19:14:48 +00:00
|
|
|
%{!?with_vtk: -DWITH_VTK=OFF} \
|
2020-07-28 22:40:37 +00:00
|
|
|
%{?with_vulkan: -DWITH_VULKAN=ON -DVULKAN_INCLUDE_DIRS=%{_includedir}/vulkan }
|
2010-06-25 16:50:54 +00:00
|
|
|
|
2020-07-28 06:15:32 +00:00
|
|
|
%cmake_build
|
2010-02-27 13:08:49 +00:00
|
|
|
|
2006-03-05 19:45:57 +00:00
|
|
|
|
|
|
|
%install
|
2020-07-28 22:40:37 +00:00
|
|
|
%cmake_install
|
2020-07-28 06:15:32 +00:00
|
|
|
|
2018-09-26 19:17:16 +00:00
|
|
|
rm -rf %{buildroot}%{_datadir}/OpenCV/licenses/
|
2019-05-12 15:05:50 +00:00
|
|
|
%if %{with java}
|
2019-06-12 19:11:30 +00:00
|
|
|
ln -s -r %{buildroot}%{_jnidir}/libopencv_java%{javaver}.so %{buildroot}%{_jnidir}/libopencv_java.so
|
2019-05-20 18:05:15 +00:00
|
|
|
ln -s -r %{buildroot}%{_jnidir}/opencv-%{javaver}.jar %{buildroot}%{_jnidir}/opencv.jar
|
2019-05-12 15:05:50 +00:00
|
|
|
%endif
|
2010-06-25 16:50:54 +00:00
|
|
|
|
2020-03-26 08:10:36 +00:00
|
|
|
# For compatibility with existing opencv.pc application
|
|
|
|
%{!?without_compat_openvc_pc:
|
|
|
|
ln -s opencv4.pc %{buildroot}%{_libdir}/pkgconfig/opencv.pc
|
|
|
|
}
|
|
|
|
|
2019-10-18 10:34:23 +00:00
|
|
|
|
2006-09-21 15:52:42 +00:00
|
|
|
%check
|
2010-02-27 13:08:49 +00:00
|
|
|
# Check fails since we don't support most video
|
|
|
|
# read/write capability and we don't provide a display
|
2010-03-09 09:08:59 +00:00
|
|
|
# ARGS=-V increases output verbosity
|
2011-08-21 10:04:06 +00:00
|
|
|
#ifnarch ppc64
|
2018-01-25 00:57:36 +00:00
|
|
|
%if %{with tests}
|
2020-06-01 02:09:03 +00:00
|
|
|
cp %SOURCE5 .
|
|
|
|
if [ -x /usr/libexec/Xorg ]; then
|
|
|
|
Xorg=/usr/libexec/Xorg
|
|
|
|
else
|
|
|
|
Xorg=/usr/libexec/Xorg.bin
|
|
|
|
fi
|
|
|
|
$Xorg -noreset +extension GLX +extension RANDR +extension RENDER -logfile ./xorg.log -config ./xorg.conf -configdir . :99 &
|
|
|
|
export DISPLAY=:99
|
2020-07-29 00:04:56 +00:00
|
|
|
LD_LIBRARY_PATH=%{_builddir}/%{name}-%{version}/build/lib:$LD_LIBARY_PATH %ctest || :
|
2018-01-25 00:57:36 +00:00
|
|
|
%endif
|
2015-07-14 17:58:31 +00:00
|
|
|
#endif
|
2006-09-21 15:52:42 +00:00
|
|
|
|
2018-01-25 00:57:36 +00:00
|
|
|
|
2018-03-01 11:08:40 +00:00
|
|
|
%ldconfig_scriptlets core
|
2006-03-05 19:45:57 +00:00
|
|
|
|
2018-03-01 11:08:40 +00:00
|
|
|
%ldconfig_scriptlets contrib
|
2017-09-02 22:12:22 +00:00
|
|
|
|
2019-05-12 15:05:50 +00:00
|
|
|
%ldconfig_scriptlets java
|
2018-03-08 19:47:33 +00:00
|
|
|
|
2006-03-05 19:45:57 +00:00
|
|
|
%files
|
2016-04-22 03:34:46 +00:00
|
|
|
%doc README.md
|
2010-02-27 13:08:49 +00:00
|
|
|
%{_bindir}/opencv_*
|
2019-09-13 17:41:44 +00:00
|
|
|
%dir %{_datadir}/opencv4
|
|
|
|
%{_datadir}/opencv4/haarcascades
|
|
|
|
%{_datadir}/opencv4/lbpcascades
|
|
|
|
%{_datadir}/opencv4/valgrind*
|
2019-09-14 15:51:06 +00:00
|
|
|
%{_datadir}/opencv4/quality
|
2006-03-05 19:45:57 +00:00
|
|
|
|
2013-05-23 20:58:33 +00:00
|
|
|
%files core
|
2019-06-08 01:23:51 +00:00
|
|
|
%license LICENSE
|
2019-09-13 17:41:44 +00:00
|
|
|
%{_datadir}/licenses/opencv4/
|
2022-06-17 23:43:22 +00:00
|
|
|
%{_libdir}/libopencv_calib3d.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_core.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_dnn.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_features2d.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_flann.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_gapi.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_highgui.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_imgcodecs.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_imgproc.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_ml.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_objdetect.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_photo.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_stitching.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_video.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_videoio.so.{%{abiver},%{version}}
|
2006-03-05 19:45:57 +00:00
|
|
|
|
|
|
|
%files devel
|
2019-10-17 08:50:04 +00:00
|
|
|
%dir %{_includedir}/opencv4
|
2019-09-13 17:41:44 +00:00
|
|
|
%{_includedir}/opencv4/opencv2
|
2006-03-05 19:45:57 +00:00
|
|
|
%{_libdir}/lib*.so
|
2020-03-26 08:10:36 +00:00
|
|
|
%{!?without_compat_openvc_pc:
|
2006-03-05 19:45:57 +00:00
|
|
|
%{_libdir}/pkgconfig/opencv.pc
|
2020-03-26 08:10:36 +00:00
|
|
|
}
|
|
|
|
%{_libdir}/pkgconfig/opencv4.pc
|
2019-09-14 15:51:06 +00:00
|
|
|
%{_libdir}/cmake/OpenCV/*.cmake
|
2010-05-06 15:08:46 +00:00
|
|
|
|
2018-01-25 00:57:36 +00:00
|
|
|
%files doc
|
2019-09-13 17:41:44 +00:00
|
|
|
%{_datadir}/opencv4/samples
|
2006-03-05 19:45:57 +00:00
|
|
|
|
2018-01-25 00:57:36 +00:00
|
|
|
%files -n python3-opencv
|
2022-04-14 14:38:25 +00:00
|
|
|
%{python3_sitearch}/cv2
|
2016-04-22 03:34:46 +00:00
|
|
|
|
2019-05-12 15:05:50 +00:00
|
|
|
%if %{with java}
|
|
|
|
%files java
|
2019-06-12 19:11:30 +00:00
|
|
|
%{_jnidir}/libopencv_java%{javaver}.so
|
2019-05-20 18:05:15 +00:00
|
|
|
%{_jnidir}/opencv-%{javaver}.jar
|
2019-06-12 19:11:30 +00:00
|
|
|
%{_jnidir}/libopencv_java.so
|
2019-05-20 18:05:15 +00:00
|
|
|
%{_jnidir}/opencv.jar
|
2019-05-12 15:05:50 +00:00
|
|
|
%endif
|
|
|
|
|
2016-04-22 03:34:46 +00:00
|
|
|
%files contrib
|
2022-06-17 23:43:22 +00:00
|
|
|
%{_libdir}/libopencv_alphamat.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_aruco.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_bgsegm.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_barcode.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_bioinspired.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_ccalib.so.{%{abiver},%{version}}
|
2021-03-12 14:33:02 +00:00
|
|
|
%{?with_cuda:
|
2022-06-17 23:43:22 +00:00
|
|
|
%{_libdir}/libopencv_cuda*.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_cudev.so.{%{abiver},%{version}}
|
2021-03-12 14:33:02 +00:00
|
|
|
}
|
2022-06-17 23:43:22 +00:00
|
|
|
%{_libdir}/libopencv_cvv.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_datasets.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_dnn_objdetect.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_dnn_superres.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_dpm.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_face.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_freetype.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_fuzzy.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_hdf.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_hfs.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_img_hash.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_intensity_transform.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_line_descriptor.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_mcc.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_optflow.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_phase_unwrapping.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_plot.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_quality.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_rapid.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_reg.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_rgbd.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_saliency.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_shape.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_stereo.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_structured_light.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_superres.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_surface_matching.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_text.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_tracking.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_videostab.so.{%{abiver},%{version}}
|
2021-02-10 14:54:49 +00:00
|
|
|
%if %{with vtk}
|
2022-06-17 23:43:22 +00:00
|
|
|
%{_libdir}/libopencv_viz.so.{%{abiver},%{version}}
|
2021-02-10 14:54:49 +00:00
|
|
|
%endif
|
2022-06-17 23:43:22 +00:00
|
|
|
%{_libdir}/libopencv_wechat_qrcode.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_ximgproc.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_xobjdetect.so.{%{abiver},%{version}}
|
|
|
|
%{_libdir}/libopencv_xphoto.so.{%{abiver},%{version}}
|
2016-04-22 03:34:46 +00:00
|
|
|
|
2006-03-05 19:45:57 +00:00
|
|
|
%changelog
|
2022-07-08 08:50:24 +00:00
|
|
|
* Fri Jul 08 2022 Sandro Mani <manisandro@gmail.com> - 4.6.0-4
|
|
|
|
- Rebuild (tesseract)
|
|
|
|
|
2022-07-06 13:51:36 +00:00
|
|
|
* Wed Jul 06 2022 Sérgio Basto <sergio@serjux.com> - 4.6.0-3
|
|
|
|
- (#2104082) only build Java sub package on arches that java is supported
|
|
|
|
|
2022-06-20 14:52:24 +00:00
|
|
|
* Mon Jun 20 2022 Sérgio Basto <sergio@serjux.com> - 4.6.0-2
|
|
|
|
- Rebuilt for Python 3.11 (is just arrived to rawhide)
|
|
|
|
|
2022-06-17 23:43:22 +00:00
|
|
|
* Fri Jun 17 2022 Sérgio Basto <sergio@serjux.com> - 4.6.0-1
|
|
|
|
- Update opencv to 4.6.0 (#2094603)
|
|
|
|
- Remove hack to keep old so version
|
|
|
|
- Adapt spec to new so version ${OPENCV_VERSION_MAJOR}${OPENCV_VERSION_MINOR_2DIGITS}
|
|
|
|
and drop OPENCV_VERSION_PATCH
|
|
|
|
|
2022-06-14 07:33:06 +00:00
|
|
|
* Tue Jun 14 2022 Python Maint <python-maint@redhat.com> - 4.5.5-9
|
|
|
|
- Rebuilt for Python 3.11
|
|
|
|
|
2022-05-21 16:00:12 +00:00
|
|
|
* Sat May 21 2022 Sandro Mani <manisandro@gmail.com> - 4.5.5-8
|
|
|
|
- Rebuild for gdal-3.5.0 and/or openjpeg-2.5.0
|
|
|
|
|
2022-04-14 14:38:25 +00:00
|
|
|
* Sun Mar 20 2022 Sérgio Basto <sergio@serjux.com> - 4.5.5-7
|
|
|
|
- Switch to new Python loader, doesn't fix rhbz #2054951 but can be a step
|
|
|
|
|
2022-03-09 23:16:09 +00:00
|
|
|
* Thu Mar 10 2022 Sandro Mani <manisandro@gmail.com> - 4.5.5-6
|
|
|
|
- Rebuild for tesseract 5.1.0
|
|
|
|
|
2022-02-15 14:39:37 +00:00
|
|
|
* Tue Feb 15 2022 Sérgio Basto <sergio@serjux.com> - 4.5.5-5
|
|
|
|
- The upstream fix https://github.com/opencv/opencv/pull/21614
|
|
|
|
and remove the previous workaround
|
|
|
|
|
2022-02-13 13:42:00 +00:00
|
|
|
* Sun Feb 13 2022 Mamoru TASAKA <mtasaka@fedoraproject.org> - 4.5.5-4
|
|
|
|
- Disable some altivec vectorization optimization on ppc64le (bug 2051193)
|
|
|
|
|
2022-02-05 22:13:22 +00:00
|
|
|
* Sat Feb 05 2022 Jiri Vanek <jvanek@redhat.com> - 4.5.5-3
|
|
|
|
- Rebuilt for java-17-openjdk as system jdk
|
|
|
|
|
2022-01-20 22:20:26 +00:00
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2021-12-28 17:13:16 +00:00
|
|
|
* Mon Dec 27 2021 Sérgio Basto <sergio@serjux.com> - 4.5.5-1
|
|
|
|
- Update opencv to 4.5.5 (#2035628)
|
|
|
|
|
2021-12-19 17:58:21 +00:00
|
|
|
* Sun Dec 19 2021 Sandro Mani <manisandro@gmail.com> - 4.5.4-8
|
|
|
|
- Rebuild (tesseract)
|
|
|
|
|
2021-12-14 13:57:44 +00:00
|
|
|
* Tue Dec 14 2021 Sandro Mani <manisandro@gmail.com> - 4.5.4-7
|
|
|
|
- Rebuild (tesseract)
|
|
|
|
|
2021-11-22 19:13:46 +00:00
|
|
|
* Mon Nov 22 2021 Orion Poplawski <orion@nwra.com> - 4.5.4-6
|
|
|
|
- Rebuild for hdf5 1.12.1
|
|
|
|
|
2021-11-11 11:08:28 +00:00
|
|
|
* Thu Nov 11 2021 Sandro Mani <manisandro@gmail.com> - 4.5.4-5
|
|
|
|
- Rebuild (gdal)
|
|
|
|
|
2021-11-06 11:59:56 +00:00
|
|
|
* Sat Nov 06 2021 Adrian Reber <adrian@lisas.de> - 4.5.4-4
|
|
|
|
- Rebuilt for protobuf 3.19.0
|
|
|
|
|
2021-11-05 22:22:33 +00:00
|
|
|
* Fri Nov 05 2021 Adrian Reber <adrian@lisas.de> - 4.5.4-3
|
|
|
|
- Rebuilt for protobuf 3.19.0
|
|
|
|
|
2021-10-25 06:57:11 +00:00
|
|
|
* Mon Oct 25 2021 Adrian Reber <adrian@lisas.de> - 4.5.4-2
|
|
|
|
- Rebuilt for protobuf 3.18.1
|
|
|
|
|
2021-10-10 22:54:27 +00:00
|
|
|
* Sun Oct 10 2021 Sérgio Basto <sergio@serjux.com> - 4.5.4-1
|
|
|
|
- Update to 4.5.4
|
|
|
|
|
2021-08-20 23:30:27 +00:00
|
|
|
* Fri Aug 20 2021 Richard Shaw <hobbes1069@gmail.com> - 4.5.3-6
|
|
|
|
- Rebuild for OpenEXR/Imath 3.1.
|
|
|
|
|
2021-08-10 02:10:28 +00:00
|
|
|
* Tue Aug 10 2021 Orion Poplawski <orion@nwra.com> - 4.5.3-5
|
|
|
|
- Rebuild for hdf5 1.10.7
|
|
|
|
|
2021-07-31 16:08:14 +00:00
|
|
|
* Sat Jul 31 2021 Richard Shaw <hobbes1069@gmail.com> - 4.5.3-4
|
|
|
|
- Rebuild for OpenEXR/Imath 3.
|
|
|
|
|
2021-07-22 17:12:21 +00:00
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-07-20 12:12:58 +00:00
|
|
|
* Tue Jul 20 2021 Richard Shaw <hobbes1069@gmail.com> - 4.5.3-2
|
|
|
|
- Rebuild for openexr 3.
|
|
|
|
|
2021-07-17 00:24:53 +00:00
|
|
|
* Thu Jul 15 2021 Sérgio Basto <sergio@serjux.com> - 4.5.3-1
|
|
|
|
- Update to 4.5.3
|
|
|
|
|
2021-06-04 18:13:48 +00:00
|
|
|
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 4.5.2-6
|
|
|
|
- Rebuilt for Python 3.10
|
|
|
|
|
2021-05-21 18:28:17 +00:00
|
|
|
* Fri May 21 2021 Sandro Mani <manisandro@gmail.com> - 4.5.2-5
|
|
|
|
- Rebuild (gdal)
|
|
|
|
|
2021-05-20 15:56:13 +00:00
|
|
|
* Thu May 20 2021 Richard Shaw <hobbes1069@gmail.com> - 4.5.2-4
|
|
|
|
- Rebuild for gdal 3.3.0.
|
|
|
|
|
2021-05-07 10:13:31 +00:00
|
|
|
* Fri May 07 2021 Sandro Mani <manisandro@gmail.com> - 4.5.2-3
|
|
|
|
- Rebuild (gdal)
|
|
|
|
|
2021-04-30 09:20:46 +00:00
|
|
|
* Thu Apr 29 2021 Sérgio Basto <sergio@serjux.com> - 4.5.2-2
|
|
|
|
- Upstream fixed GCC11 issues, so we can re-enable the tests
|
|
|
|
|
2021-04-03 08:51:25 +00:00
|
|
|
* Sat Apr 03 2021 Nicolas Chauvet <kwizart@gmail.com> - 4.5.2-1
|
|
|
|
- Update to 4.5.2
|
|
|
|
|
2021-03-31 13:12:55 +00:00
|
|
|
* Wed Mar 31 2021 Nicolas Chauvet <kwizart@gmail.com> - 4.5.1-8
|
|
|
|
- Disable tests for now
|
|
|
|
|
2021-03-30 18:38:30 +00:00
|
|
|
* Tue Mar 30 2021 Jonathan Wakely <jwakely@redhat.com> - 4.5.1-7
|
|
|
|
- Rebuilt for removed libstdc++ symbol (#1937698)
|
|
|
|
|
2021-02-10 14:54:49 +00:00
|
|
|
* Wed Feb 10 2021 Jiri Kucera <jkucera@redhat.com> - 4.5.1-6
|
|
|
|
- Fix file lists
|
|
|
|
Based on comparison of `opencv-4.5.1/modules/` and
|
|
|
|
`opencv-4.5.1/opencv_contrib-4.5.1/modules/`, move some *.so's between core
|
|
|
|
and contrib rpms
|
|
|
|
|
2021-01-31 16:11:02 +00:00
|
|
|
* Sun Jan 31 2021 Orion Poplawski <orion@nwra.com> - 4.5.1-5
|
|
|
|
- Rebuild for VTK 9
|
|
|
|
|
2021-01-28 07:05:17 +00:00
|
|
|
* Wed Jan 27 2021 Tomas Popela <tpopela@redhat.com> - 4.5.1-4
|
|
|
|
- Drop unused BR on SFML and disable VTK support on RHEL 8+
|
|
|
|
|
2021-01-26 22:29:00 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2021-01-12 13:20:58 +00:00
|
|
|
* Tue Jan 12 14:20:57 CET 2021 Adrian Reber <adrian@lisas.de> - 4.5.1-2
|
|
|
|
- Rebuilt for protobuf 3.14
|
|
|
|
|
2021-01-03 23:34:09 +00:00
|
|
|
* Sat Jan 02 2021 Sérgio Basto <sergio@serjux.com> - 4.5.1-1
|
|
|
|
- Update to 4.5.1
|
|
|
|
|
2021-01-01 22:21:33 +00:00
|
|
|
* Fri Jan 01 2021 Richard Shaw <hobbes1069@gmail.com> - 4.5.0-4
|
|
|
|
- Rebuild for OpenEXR 2.5.3.
|
|
|
|
|
2020-12-05 23:35:23 +00:00
|
|
|
* Sat Dec 5 2020 Jeff Law <law@redhat.com> - 4.5.0-3
|
|
|
|
- Fix missing #include for gcc-11
|
|
|
|
|
2020-11-12 12:11:00 +00:00
|
|
|
* Fri Nov 6 22:47:45 CET 2020 Sandro Mani <manisandro@gmail.com> - 4.5.0-2
|
|
|
|
- Rebuild (proj, gdal)
|
|
|
|
|
2020-10-20 22:11:52 +00:00
|
|
|
* Thu Oct 15 2020 Sérgio Basto <sergio@serjux.com> - 4.5.0-1
|
|
|
|
- Update 4.5.0
|
|
|
|
|
|
|
|
* Wed Oct 07 2020 Sérgio Basto <sergio@serjux.com> - 4.4.0-1
|
|
|
|
- Update 4.4.0
|
|
|
|
- opencv_vulkan.patch already applied in upstream
|
|
|
|
|
2020-09-24 05:36:56 +00:00
|
|
|
* Thu Sep 24 2020 Adrian Reber <adrian@lisas.de> - 4.3.0-9
|
|
|
|
- Rebuilt for protobuf 3.13
|
|
|
|
|
2020-07-24 10:24:48 +00:00
|
|
|
* Fri Jul 24 2020 Nicolas Chauvet <kwizart@gmail.com> - 4.3.0-8
|
|
|
|
- Rebuilt
|
2020-08-02 00:30:04 +00:00
|
|
|
- Fix cmake build
|
|
|
|
- Disable LTO on ppc64le
|
|
|
|
- Add undefine __cmake_in_source_build to allow build on Fedora < 33
|
2020-07-24 10:24:48 +00:00
|
|
|
|
2020-07-11 01:42:02 +00:00
|
|
|
* Sat Jul 11 2020 Jiri Vanek <jvanek@redhat.com> - 4.3.0-7
|
|
|
|
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
|
|
|
|
|
2020-06-26 02:07:59 +00:00
|
|
|
* Fri Jun 26 2020 Orion Poplawski <orion@nwra.com> - 4.3.0-6
|
|
|
|
- Rebuild for hdf5 1.10.6
|
|
|
|
|
2020-06-23 12:26:26 +00:00
|
|
|
* Tue Jun 23 2020 Adrian Reber <adrian@lisas.de> - 4.3.0-5
|
|
|
|
- Rebuilt for protobuf 3.12
|
|
|
|
|
2020-06-22 00:08:53 +00:00
|
|
|
* Sun Jun 21 2020 Sérgio Basto <sergio@serjux.com> - 4.3.0-4
|
|
|
|
- Readd flake8 build requirement
|
|
|
|
- Fix build because pangox has been retired for F33 so we need remove the BR
|
|
|
|
gtkglext
|
|
|
|
- Also remove all gtk stuff (we have to choose between gtk or qt when build opencv)
|
|
|
|
https://answers.opencv.org/question/215066/gtk-or-qt-when-build-opencv/
|
|
|
|
- Doxygen requires gtk2, disabling for now
|
|
|
|
|
|
|
|
* Sun Jun 14 2020 Adrian Reber <adrian@lisas.de>
|
2020-06-21 15:23:48 +00:00
|
|
|
- Rebuilt for protobuf 3.12
|
|
|
|
|
2020-06-01 02:09:03 +00:00
|
|
|
* Tue Jun 02 2020 Orion Poplawski <orion@nwra.com> - 4.3.0-3
|
|
|
|
- Run tests
|
|
|
|
|
2020-06-01 02:09:03 +00:00
|
|
|
* Tue Jun 02 2020 Orion Poplawski <orion@nwra.com> - 4.3.0-2
|
|
|
|
- Add upstream patches for VTK 9.0 support (bz#1840977)
|
|
|
|
|
2020-06-04 15:25:00 +00:00
|
|
|
* Thu May 28 2020 Nicolas Chauvet <kwizart@gmail.com> - 4.3.0-1
|
2020-05-28 15:11:38 +00:00
|
|
|
- Update to 4.3.0
|
|
|
|
|
2020-05-28 14:34:44 +00:00
|
|
|
* Thu May 28 2020 Charalampos Stratakis <cstratak@redhat.com> - 4.2.0-9
|
|
|
|
- Remove flake8 build requirement
|
|
|
|
|
2020-05-26 00:54:55 +00:00
|
|
|
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 4.2.0-8
|
|
|
|
- Rebuilt for Python 3.9
|
|
|
|
|
2020-05-21 10:00:17 +00:00
|
|
|
* Thu May 21 2020 Sandro Mani <manisandro@gmail.com> - 4.2.0-7
|
|
|
|
- Rebuild (gdal)
|
|
|
|
|
2020-05-08 10:15:06 +00:00
|
|
|
* Fri May 08 2020 Nicolas Chauvet <kwizart@gmail.com> - 4.2.0-6
|
|
|
|
- Drop compat symlink for includes - rhbz#1830266
|
|
|
|
|
2020-03-26 08:11:45 +00:00
|
|
|
* Thu Mar 26 2020 Nicolas Chauvet <kwizart@gmail.com> - 4.2.0-5
|
|
|
|
- Add without_compat_opencv_pc with conditional - rhbz#1816439
|
|
|
|
|
2020-03-03 16:24:28 +00:00
|
|
|
* Tue Mar 03 2020 Sandro Mani <manisandro@gmail.com> - 4.2.0-4
|
|
|
|
- Rebuild (gdal)
|
|
|
|
|
2020-01-29 20:15:14 +00:00
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2020-01-29 07:34:31 +00:00
|
|
|
* Wed Jan 29 2020 Nicolas Chauvet <kwizart@gmail.com> - 4.2.0-2
|
|
|
|
- Backport patch for ppc64le
|
|
|
|
|
2019-12-31 10:24:14 +00:00
|
|
|
* Tue Dec 31 2019 Nicolas Chauvet <kwizart@gmail.com> - 4.2.0-1
|
|
|
|
- Update to 4.2.0
|
|
|
|
|
2019-12-28 19:19:49 +00:00
|
|
|
* Sat Dec 28 2019 Sandro Mani <manisandro@gmail.com> - 4.1.2-3
|
|
|
|
- Rebuild (tesseract)
|
|
|
|
|
2019-12-19 03:19:45 +00:00
|
|
|
* Thu Dec 19 2019 Orion Poplawski <orion@nwra.com> - 4.1.2-2
|
|
|
|
- Rebuild for protobuf 3.11
|
|
|
|
|
2019-10-18 10:34:36 +00:00
|
|
|
* Thu Oct 17 2019 Nicolas Chauvet <kwizart@gmail.com> - 4.1.2-1.1
|
|
|
|
- Fix include path
|
|
|
|
- Drop CPU baseline to SSE2 for x86
|
|
|
|
- Add missing directory ownership
|
|
|
|
- Add symlinks for compatibility with older versions
|
2019-10-18 12:50:56 +00:00
|
|
|
- Restore deprecated headers for compat
|
2019-10-18 10:34:36 +00:00
|
|
|
|
2019-10-13 22:57:58 +00:00
|
|
|
* Sat Oct 12 2019 Nicolas Chauvet <kwizart@gmail.com> - 4.1.2-1
|
|
|
|
- Update to 4.1.2
|
|
|
|
|
2019-09-13 16:09:00 +00:00
|
|
|
* Fri Sep 13 2019 Nicolas Chauvet <kwizart@gmail.com> - 4.1.1-1
|
|
|
|
- Update to 4.1.1
|
|
|
|
|
2019-09-13 17:41:44 +00:00
|
|
|
* Fri Sep 13 2019 Sérgio Basto <sergio@serjux.com> - 4.1.0-1
|
|
|
|
- Update opencv to 4.1.0
|
|
|
|
|
2019-09-13 20:20:23 +00:00
|
|
|
* Fri Sep 13 2019 Christopher N. Hesse <raymanfx@gmail.com> - 4.1.0-0
|
|
|
|
- Enable vulkan compute backend
|
|
|
|
|
2019-09-13 21:31:32 +00:00
|
|
|
* Fri Sep 13 2019 Sérgio Basto <sergio@serjux.com> - 3.4.6-9
|
|
|
|
- Reenable pylint and vtk, they are working now.
|
2019-09-11 22:42:01 +00:00
|
|
|
* Wed Sep 11 2019 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.4.6-8
|
|
|
|
- F-32: remove vtk gcdm dependency for now because they have broken dependency
|
|
|
|
(bug 1751406)
|
|
|
|
|
2019-08-19 08:21:18 +00:00
|
|
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 3.4.6-7
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
2019-07-25 23:24:55 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.6-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-06-28 02:48:18 +00:00
|
|
|
* Thu Jun 27 2019 Jerry James <loganjerry@gmail.com> - 3.4.6-5
|
|
|
|
- Rebuild for coin-or package updates
|
|
|
|
|
2019-06-26 21:08:14 +00:00
|
|
|
* Tue Jun 25 2019 Sérgio Basto <sergio@serjux.com> - 3.4.6-4
|
|
|
|
- cmake: use relative PATH on OPENCV_CONFIG_INSTALL_PATH, fixes rhbz #1721876
|
|
|
|
- cmake: don't set ENABLE_PKG_CONFIG
|
|
|
|
|
2019-06-12 19:11:30 +00:00
|
|
|
* Wed Jun 12 2019 Sérgio Basto <sergio@serjux.com> - 3.4.6-3
|
|
|
|
- Remove Obsoletes/Provides libopencv_java.so and use OPENCV_JAR_INSTALL_PATH
|
|
|
|
|
2019-06-10 19:52:37 +00:00
|
|
|
* Sun Jun 09 2019 Sérgio Basto <sergio@serjux.com> - 3.4.6-2
|
|
|
|
- Fix cmakes location
|
2019-06-12 19:11:30 +00:00
|
|
|
- add BR: python3-beautifulsoup4
|
2019-06-10 19:52:37 +00:00
|
|
|
|
2019-06-08 01:23:51 +00:00
|
|
|
* Thu May 23 2019 Sérgio Basto <sergio@serjux.com> - 3.4.6-1
|
|
|
|
- Update to 3.4.6
|
|
|
|
|
2019-05-20 18:05:15 +00:00
|
|
|
* Mon May 20 2019 Sérgio Basto <sergio@serjux.com> - 3.4.4-10
|
|
|
|
- Try improve Java Bindings
|
|
|
|
|
2019-05-12 15:05:50 +00:00
|
|
|
* Sun May 12 2019 Sérgio Basto <sergio@serjux.com> - 3.4.4-9
|
|
|
|
- Enable Java Bindings (contribution of Ian Wallace)
|
2019-05-13 03:16:08 +00:00
|
|
|
- Obsoletes python2-opencv to fix upgrade path
|
2019-05-12 15:05:50 +00:00
|
|
|
|
2019-04-10 16:29:20 +00:00
|
|
|
* Wed Apr 10 2019 Richard Shaw <hobbes1069@gmail.com> - 3.4.4-8
|
|
|
|
- Rebuild for OpenEXR 2.3.0.
|
|
|
|
|
2019-03-18 19:47:58 +00:00
|
|
|
* Mon Mar 18 2019 Orion Poplawski <orion@nwra.com>
|
|
|
|
- Rebuild for vtk 8.2
|
|
|
|
|
2019-03-03 00:55:15 +00:00
|
|
|
* Sun Mar 03 2019 Sérgio Basto <sergio@serjux.com> - 3.4.4-6
|
|
|
|
- Reenable build with gdcm
|
2019-03-03 04:49:24 +00:00
|
|
|
- Opencl is fixed for ppc64le on F30
|
2019-03-03 00:55:15 +00:00
|
|
|
|
2019-02-21 10:45:28 +00:00
|
|
|
* Thu Feb 21 2019 Josef Ridky <jridky@redhat.com> - 3.4.4-5
|
|
|
|
- build without gdcm to fix FTBFS in F30+ (#1676289)
|
|
|
|
|
2019-02-01 17:21:35 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.4-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2019-01-15 11:32:02 +00:00
|
|
|
* Tue Jan 15 2019 Miro Hrončok <mhroncok@redhat.com> - 3.4.4-3
|
|
|
|
- Subpackage python2-opencv has been removed
|
|
|
|
See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
|
|
|
|
|
2018-12-03 17:10:52 +00:00
|
|
|
* Mon Dec 03 2018 Sérgio Basto <sergio@serjux.com> - 3.4.4-2
|
|
|
|
- Add the correct and upstreamed fix for support_YV12_too, pull request 13351
|
|
|
|
which is merged
|
|
|
|
|
2018-12-02 19:14:48 +00:00
|
|
|
* Sat Dec 01 2018 Sérgio Basto <sergio@serjux.com> - 3.4.4-1
|
|
|
|
- Update to 3.4.4
|
|
|
|
|
2018-11-21 16:16:18 +00:00
|
|
|
* Wed Nov 21 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.4.3-7
|
|
|
|
- Rebuild for protobuf 3.6
|
|
|
|
|
2018-11-13 22:01:52 +00:00
|
|
|
* Tue Nov 13 2018 Sandro Mani <manisandro@gmail.com> - 3.4.3-6
|
|
|
|
- Rebuild (tesseract)
|
|
|
|
|
2018-10-30 12:48:13 +00:00
|
|
|
* Tue Oct 30 2018 Sérgio Basto <sergio@serjux.com> - 3.4.3-5
|
|
|
|
- Enable vtk should work with vtk-8.1.1
|
|
|
|
- Add BR python Flake8
|
|
|
|
|
2018-10-23 14:43:07 +00:00
|
|
|
* Tue Oct 23 2018 Felix Kaechele <heffer@fedoraproject.org> - 3.4.3-4
|
|
|
|
- enable building of dnn
|
|
|
|
|
2018-10-13 19:12:30 +00:00
|
|
|
* Sat Oct 13 2018 Jerry James <loganjerry@gmail.com> - 3.4.3-3
|
|
|
|
- Rebuild for tbb 2019_U1
|
|
|
|
|
2018-09-30 16:27:42 +00:00
|
|
|
* Sun Sep 30 2018 Sérgio Basto <sergio@serjux.com> - 3.4.3-2
|
|
|
|
- Use GLVND libraries for OpenGL and GLX, setting OpenGL_GL_PREFERENCE=GLVND
|
|
|
|
|
2018-09-27 00:04:38 +00:00
|
|
|
* Wed Sep 26 2018 Sérgio Basto <sergio@serjux.com> - 3.4.3-1
|
|
|
|
- Update to 3.4.3
|
2018-09-27 01:24:29 +00:00
|
|
|
- Fix build on arm and s390x
|
2018-09-27 00:04:38 +00:00
|
|
|
|
2018-09-26 19:17:16 +00:00
|
|
|
* Wed Sep 26 2018 Sérgio Basto <sergio@serjux.com> - 3.4.2-1
|
|
|
|
- Update to 3.4.2
|
|
|
|
|
2018-07-13 15:04:32 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.1-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-07-12 02:53:41 +00:00
|
|
|
* Wed Jul 11 2018 Sérgio Basto <sergio@serjux.com> - 3.4.1-5
|
|
|
|
- Small fix to build with Pyhton-3.7
|
|
|
|
|
2018-06-19 08:48:56 +00:00
|
|
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 3.4.1-4
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
2018-03-26 21:12:47 +00:00
|
|
|
* Mon Mar 26 2018 Iryna Shcherbina <ishcherb@redhat.com> - 3.4.1-3
|
|
|
|
- Update Python 2 dependency declarations to new packaging standards
|
|
|
|
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
|
|
|
|
2018-03-08 19:47:33 +00:00
|
|
|
* Thu Mar 08 2018 Sérgio Basto <sergio@serjux.com> - 3.4.1-2
|
|
|
|
- Enable VA
|
|
|
|
- Do not use -f on rm because it silences errors
|
|
|
|
- Opencv sub-package don't need ldconfig because don't have any so
|
|
|
|
|
2018-03-02 08:59:17 +00:00
|
|
|
* Thu Mar 01 2018 Josef Ridky <jridky@redhat.com> - 3.4.1-1
|
2018-03-01 11:08:40 +00:00
|
|
|
- Spec clean up (remove Group tag, add ldconfig scriptlets, escape macros in comments)
|
|
|
|
- Remove unused patch
|
|
|
|
- Add gcc and gcc-c++ requirements
|
2018-03-02 08:59:17 +00:00
|
|
|
- Rebase to version 3.4.1
|
2018-03-01 11:08:40 +00:00
|
|
|
|
2018-02-18 02:24:27 +00:00
|
|
|
* Sun Feb 18 2018 Sérgio Basto <sergio@serjux.com> - 3.3.1-7
|
|
|
|
- Rebuild for gdcm-2.8
|
|
|
|
|
2018-02-09 08:05:19 +00:00
|
|
|
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.3.1-6
|
|
|
|
- Escape macros in %%changelog
|
|
|
|
|
2018-02-08 09:25:52 +00:00
|
|
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.1-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-01-26 17:13:15 +00:00
|
|
|
* Fri Jan 26 2018 Sérgio Basto <sergio@serjux.com> - 3.3.1-4
|
2018-01-26 17:23:55 +00:00
|
|
|
- Enable Pylint
|
|
|
|
- Enable Clp (COIN-OR Linear Program Solver)
|
|
|
|
- Enable VA (Video Acceleration API for Linux)
|
|
|
|
- Enable OpenMP
|
2018-01-26 17:13:15 +00:00
|
|
|
- Provides and obsoletes for opencv-devel-docs
|
|
|
|
- BuildRequires perl-local do generate documentation without errors
|
|
|
|
|
2018-01-25 00:57:36 +00:00
|
|
|
* Thu Jan 25 2018 Sérgio Basto <sergio@serjux.com> - 3.3.1-3
|
|
|
|
- Rename sub-package opencv-python3 to python3-opencv and other minor fixes in
|
|
|
|
python packaging
|
|
|
|
- Generate documentation
|
|
|
|
- Rename sub-package devel-docs to doc
|
|
|
|
- Cleanup some comments from opencv 2.4 packaging
|
|
|
|
|
2018-01-24 22:35:54 +00:00
|
|
|
* Wed Jan 24 2018 Troy Dawson <tdawson@redhat.com> - 3.3.1-2
|
|
|
|
- Update conditionals
|
|
|
|
|
2017-11-15 10:10:59 +00:00
|
|
|
* Tue Nov 14 2017 Sérgio Basto <sergio@serjux.com> - 3.3.1-1
|
|
|
|
- Update to 3.3.1
|
|
|
|
- Fix WARNING: Option ENABLE_SSE='OFF' is deprecated and should not be used anymore
|
|
|
|
- Behaviour of this option is not backward compatible
|
|
|
|
- Refer to 'CPU_BASELINE'/'CPU_DISPATCH' CMake options documentation
|
|
|
|
- Fix WARNING: Option ENABLE_SSE2='OFF' is deprecated and should not be used anymore
|
|
|
|
- Behaviour of this option is not backward compatible
|
|
|
|
- Refer to 'CPU_BASELINE'/'CPU_DISPATCH' CMake options documentation
|
|
|
|
- Update opencv to 3.3.0
|
|
|
|
- Patch3 is already in source code
|
|
|
|
- Fix WARNING: Option ENABLE_SSE3='OFF' is deprecated and should not be used anymore
|
|
|
|
- Enable openblas
|
|
|
|
- Add conditonal to build with_gdcm
|
|
|
|
- Disable "Intel ITT support" because source is in 3rdparty/ directory
|
|
|
|
|
2017-10-28 00:30:04 +00:00
|
|
|
* Sat Oct 28 2017 Sérgio Basto <sergio@serjux.com> - 3.2.0-13
|
|
|
|
- Require python3-numpy instead numpy for opencv-python3 (#1504555)
|
|
|
|
|
2017-09-02 22:12:22 +00:00
|
|
|
* Sat Sep 02 2017 Sérgio Basto <sergio@serjux.com> - 3.2.0-12
|
|
|
|
- Fix 2 rpmlint errors
|
|
|
|
|
2017-09-02 18:31:58 +00:00
|
|
|
* Sat Sep 02 2017 Sérgio Basto <sergio@serjux.com> - 3.2.0-11
|
|
|
|
- Enable libv4l1 to fix open a video (#1487816)
|
|
|
|
|
2017-08-28 23:47:40 +00:00
|
|
|
* Mon Aug 28 2017 Sérgio Basto <sergio@serjux.com> - 3.2.0-10
|
|
|
|
- Better conditionals to enable openni only available in ix86, x86_64 and arm
|
|
|
|
|
2017-08-22 00:24:12 +00:00
|
|
|
* Sun Aug 20 2017 Sérgio Basto <sergio@serjux.com> - 3.2.0-9
|
|
|
|
- Enable openni.
|
|
|
|
- Enable eigen3 except in ppc64le because fails to build in OpenCL headers.
|
|
|
|
- Documented why is not enabled atlas, openblas and vtk.
|
|
|
|
|
2017-08-20 21:03:00 +00:00
|
|
|
* Sun Aug 20 2017 Sérgio Basto <sergio@serjux.com> - 3.2.0-8
|
|
|
|
- Reenable gstreamer
|
|
|
|
- Remove architecture checks for tbb and enable it, inspired on (#1262788)
|
|
|
|
|
2017-08-20 14:39:06 +00:00
|
|
|
* Sun Aug 20 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 3.2.0-7
|
|
|
|
- Add Provides for the old name without %%_isa
|
|
|
|
|
2017-08-19 13:39:03 +00:00
|
|
|
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 3.2.0-6
|
|
|
|
- Python 2 binary package renamed to python2-opencv
|
|
|
|
See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
|
|
|
|
|
2017-08-03 04:30:37 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.0-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-27 01:45:51 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-06-13 16:09:14 +00:00
|
|
|
* Tue Jun 13 2017 Orion Poplawski <orion@cora.nwra.com> - 3.2.0-3
|
|
|
|
- Rebuild for protobuf 3.3.1
|
|
|
|
|
2017-05-15 19:47:44 +00:00
|
|
|
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
|
|
|
|
|
2017-02-28 11:59:32 +00:00
|
|
|
* Mon Feb 27 2017 Josef Ridky <jridky@redhat.com> - 3.2.0-1
|
|
|
|
- Rebase to the latest version (3.2.0) - #1408880
|
|
|
|
- Remove unused BuildRequires and patches
|
|
|
|
- Remove copyrighted lena.jpg images and SIFT/SURF from tarball, due to legal concerns.
|
|
|
|
- Disable dnn module from opencv_contrib, due missing BuildRequired package in Fedora (protobuf-cpp)
|
|
|
|
- Disable tracking module from opencv_contrib, due disabling dnn module (is required by this module)
|
|
|
|
- Disable CAROTENE in compilation (caused error on arm and ppc64le)
|
|
|
|
- Fix syntax error in opencv_contrib test file (opencv-3.2.0-test-file-fix.patch)
|
|
|
|
|
2017-02-21 23:31:29 +00:00
|
|
|
* Tue Feb 21 2017 Sandro Mani <manisandro@gmail.com> - 3.1.0-15
|
|
|
|
- Rebuild (tesseract)
|
|
|
|
|
2017-02-11 00:50:06 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.0-14
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2017-02-01 18:26:46 +00:00
|
|
|
* Wed Feb 01 2017 Sandro Mani <manisandro@gmail.com> - 3.1.0-13
|
|
|
|
- Rebuild (libwebp)
|
|
|
|
|
2017-01-26 18:03:32 +00:00
|
|
|
* Thu Jan 26 2017 Orion Poplawski <orion@cora.nwra.com> - 3.1.0-12
|
|
|
|
- Rebuild for protobuf 3.2.0
|
|
|
|
|
2016-12-19 17:20:36 +00:00
|
|
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 3.1.0-11
|
|
|
|
- Rebuild for Python 3.6
|
|
|
|
|
2016-12-03 14:23:17 +00:00
|
|
|
* Sat Dec 03 2016 Rex Dieter <rdieter@fedoraproject.org> - 3.1.0-10
|
|
|
|
- rebuild (jasper)
|
|
|
|
|
2016-11-19 15:50:55 +00:00
|
|
|
* Sat Nov 19 2016 Orion Poplawski <orion@cora.nwra.com> - 3.1.0-9
|
|
|
|
- Rebuild for protobuf 3.1.0
|
|
|
|
|
2016-08-05 09:19:43 +00:00
|
|
|
* Tue Jul 26 2016 Nicolas Chauvet <kwizart@gmail.com> - 3.1.0-8
|
|
|
|
- Clean uneeded symbols until fixed upstream
|
|
|
|
|
2016-07-19 08:07:21 +00:00
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.0-7
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
|
2016-05-27 14:42:38 +00:00
|
|
|
* Fri May 27 2016 Till Maas <opensource@till.name> - 3.1.0-6
|
|
|
|
- Define %%srcname for python subpackages
|
|
|
|
- Fix whitespace
|
|
|
|
|
2016-05-09 23:32:54 +00:00
|
|
|
* Mon May 09 2016 Sérgio Basto <sergio@serjux.com> - 3.1.0-5
|
|
|
|
- Don't clean unneeded symbols (as recommended by fedora-review), fix undefined
|
|
|
|
symbol: cvLoadImage in Unknown on line 0 on php-facedetect package.
|
|
|
|
|
2016-05-07 02:38:20 +00:00
|
|
|
* Sat May 07 2016 Sérgio Basto <sergio@serjux.com> - 3.1.0-4
|
2016-05-04 14:00:33 +00:00
|
|
|
- Put all idefs and ifarchs outside the scope of rpm conditional builds, rather
|
2016-05-09 23:32:54 +00:00
|
|
|
than vice versa, as had organized some time ago, it seems to me more correct.
|
2016-05-07 02:38:20 +00:00
|
|
|
- Remove SIFT/SURF from source tarball in opencv_contrib, due to legal concerns
|
|
|
|
- Redo and readd OpenCV-2.4.4-pillow.patch .
|
|
|
|
- Add OpenCV-3.1-pillow.patch to apply only opencv_contrib .
|
2018-02-09 08:05:19 +00:00
|
|
|
- Add the %%python_provide macro (Packaging:Python guidelines).
|
2016-05-04 14:00:33 +00:00
|
|
|
|
2016-04-24 04:05:19 +00:00
|
|
|
* Fri Apr 22 2016 Sérgio Basto <sergio@serjux.com> - 3.1.0-3
|
|
|
|
- Use always ON and OFF instead 0 and 1 in cmake command.
|
|
|
|
- Remove BUILD_TEST and TBB_LIB_DIR variables not used by cmake.
|
|
|
|
- Add BRs: tesseract-devel, protobuf-devel, glog-devel, doxygen,
|
|
|
|
gflags-devel, SFML-devel, libucil-devel, qt5-qtbase-devel, mesa-libGL-devel,
|
|
|
|
mesa-libGLU-devel and hdf5-devel.
|
|
|
|
- Remove BR: vtk-devel because VTK support is disabled. Incompatible
|
|
|
|
combination: OpenCV + Qt5 and VTK ver.6.2.0 + Qt4
|
|
|
|
- Enable build with Qt5.
|
|
|
|
- Enable build with OpenGL.
|
|
|
|
- Enable build with UniCap.
|
|
|
|
- Also requires opencv-contrib when install opencv-devel (#1329790).
|
|
|
|
|
2016-04-22 03:34:46 +00:00
|
|
|
* Wed Apr 20 2016 Sérgio Basto <sergio@serjux.com> - 3.1.0-2
|
|
|
|
- Add BR:libwebp-devel .
|
|
|
|
- Merge from 2.4.12.3 package:
|
|
|
|
Add aarch64 and ppc64le to list of architectures where TBB is supported (#1262788).
|
|
|
|
Use bcond tags to easily enable or disable modules.
|
|
|
|
Fix unused-direct-shlib-dependency in cmake with global optflags.
|
|
|
|
Added README.md with references to online documentation.
|
|
|
|
Investigation on the documentation, added a few notes.
|
|
|
|
- Update to 3.1.0 (Fri Mar 25 2016 Pavel Kajaba <pkajaba@redhat.com> - 3.1.0-1)
|
|
|
|
- Added opencv_contrib (Thu Jul 09 2015 Sérgio Basto <sergio@serjux.com> -
|
|
|
|
3.0.0-2)
|
|
|
|
- Update to 3.0.0 (Fri Jun 05 2015 Jozef Mlich <jmlich@redhat.com> - 3.0.0-1)
|
|
|
|
|
2016-03-02 03:45:15 +00:00
|
|
|
* Tue Mar 01 2016 Yaakov Selkowitz <yselkowi@redhat.com> - 2.4.12.3-3
|
|
|
|
- Fix FTBFS with GCC 6 (#1307821)
|
2016-03-02 02:31:32 +00:00
|
|
|
|
2016-02-04 11:25:57 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.12.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-12-03 00:45:57 +00:00
|
|
|
* Wed Dec 02 2015 Sérgio Basto <sergio@serjux.com> - 2.4.12.3-1
|
|
|
|
- Update opencv to 2.4.12.3 (#1271460).
|
|
|
|
- Add aarch64 and ppc64le to list of architectures where TBB is supported (#1262788).
|
|
|
|
|
2015-07-14 17:58:31 +00:00
|
|
|
* Tue Jul 14 2015 Sérgio Basto <sergio@serjux.com> - 2.4.11-5
|
|
|
|
- Use bcond tags to easily enable or disable modules.
|
|
|
|
- Package review, more cleaning in the spec file.
|
|
|
|
- Fixed unused-direct-shlib-dependency in cmake with global optflags.
|
|
|
|
- Added README.md index.rst with references to online documentation.
|
|
|
|
- Investigation on the documentation, added a few notes.
|
|
|
|
|
2015-07-06 04:45:22 +00:00
|
|
|
* Mon Jul 06 2015 Sérgio Basto <sergio@serjux.com> - 2.4.11-4
|
|
|
|
- Enable-gpu-module, rhbz #1236417, thanks to Rich Mattes.
|
|
|
|
- Deleted the global gst1 because it is no longer needed.
|
|
|
|
|
2015-06-25 23:57:08 +00:00
|
|
|
* Thu Jun 25 2015 Sérgio Basto <sergio@serjux.com> - 2.4.11-3
|
|
|
|
- Fix license tag
|
|
|
|
|
2015-06-17 23:55:52 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.11-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-05-13 15:38:46 +00:00
|
|
|
* Mon May 11 2015 Sérgio Basto <sergio@serjux.com> - 2.4.11-1
|
|
|
|
- Update to 2.4.11 .
|
|
|
|
- Dropped patches 0, 10, 11, 12, 13 and 14 .
|
|
|
|
|
2015-04-11 16:08:09 +00:00
|
|
|
* Sat Apr 11 2015 Rex Dieter <rdieter@fedoraproject.org> 2.4.9-6
|
|
|
|
- rebuild (gcc5)
|
|
|
|
|
2015-02-23 13:43:48 +00:00
|
|
|
* Mon Feb 23 2015 Rex Dieter <rdieter@fedoraproject.org> 2.4.9-5
|
|
|
|
- rebuild (gcc5)
|
|
|
|
|
2014-11-25 19:52:02 +00:00
|
|
|
* Tue Nov 25 2014 Rex Dieter <rdieter@fedoraproject.org> 2.4.9-4
|
|
|
|
- rebuild (openexr)
|
|
|
|
|
2014-08-17 13:49:23 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.9-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-07-25 12:09:56 +00:00
|
|
|
* Fri Jul 25 2014 Rex Dieter <rdieter@fedoraproject.org> 2.4.9-2
|
|
|
|
- backport support for GStreamer 1 (#1123078)
|
|
|
|
|
2014-07-03 11:45:27 +00:00
|
|
|
* Thu Jul 03 2014 Nicolas Chauvet <kwizart@gmail.com> - 2.4.9-1
|
|
|
|
- Update to 2.4.9
|
|
|
|
|
2014-06-07 16:33:55 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.7-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-04-27 01:41:58 +00:00
|
|
|
* Sat Apr 26 2014 Rex Dieter <rdieter@fedoraproject.org> 2.4.7-6
|
|
|
|
- revert pkgcmake2 patch (#1070428)
|
|
|
|
|
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
|
|
|
|
|
2014-01-17 01:26:42 +00:00
|
|
|
* 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)
|
|
|
|
|
2013-11-18 20:29:23 +00:00
|
|
|
* 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
|
2015-06-27 01:06:10 +00:00
|
|
|
- Fix tbb-devel architecture conditionals
|
2013-03-23 16:59:16 +00:00
|
|
|
|
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
|
|
|
|
|
2013-01-21 14:51:15 +00:00
|
|
|
* 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
|
|
|
|
|
2012-11-04 12:35:20 +00:00
|
|
|
* 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
|
|
|
|
|
2012-07-20 06:49:04 +00:00
|
|
|
* 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
|
2015-06-27 01:06:10 +00:00
|
|
|
Re-enable using --with tbb,openni,eigen2,eigen3
|
2012-06-04 21:55:18 +00:00
|
|
|
|
|
|
|
* 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
|
|
|
|
|
2012-01-13 11:38:35 +00:00
|
|
|
* 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
|
2011-08-21 10:04:06 +00:00
|
|
|
- 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
|
|
|
|
2011-05-26 13:06:14 +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
|
|
|
|
2011-02-09 03:08:58 +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
|
|
|
|
|
2011-02-03 17:01:15 +00:00
|
|
|
* 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
|
|
|
|
2010-08-26 14:03:10 +00:00
|
|
|
* Wed Aug 25 2010 Rex Dieter <rdieter@fedoraproject.org> - 2.1.0-5
|
|
|
|
- -devel: include OpenCVConfig.cmake (#627359)
|
|
|
|
|
2010-07-22 13:30:24 +00:00
|
|
|
* 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
|
|
|
|
|
2010-07-22 02:45:55 +00:00
|
|
|
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 2.1.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
|
|
|
|
2010-06-25 16:50:54 +00:00
|
|
|
* 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
|
|
|
|
|
2010-05-06 15:08:46 +00:00
|
|
|
* Fri Apr 23 2010 Nicolas Chauvet <kwizart@fedoraproject.org> - 2.1.0-1
|
|
|
|
- Update to 2.1.0
|
2010-06-25 16:50:54 +00:00
|
|
|
- Update libdir patch
|
2010-05-06 15:08:46 +00:00
|
|
|
|
2010-04-13 17:44:28 +00:00
|
|
|
* Tue Apr 13 2010 Karel Klic <kklic@redhat.com> - 2.0.0-10
|
|
|
|
- Fix nonstandard executable permissions
|
|
|
|
|
2013-07-29 15:13:53 +00:00
|
|
|
* 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
|
|
|
|
|
2010-03-09 09:08:59 +00:00
|
|
|
* 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
|
|
|
|
|
2010-02-27 21:47:58 +00:00
|
|
|
* Sat Feb 27 2010 Haïkel Guémar <karlthered@gmail.com> - 2.0.0-7
|
|
|
|
- replaced BR unicap-devel by libucil-devel (unicap split)
|
|
|
|
|
2010-02-27 13:08:49 +00:00
|
|
|
* 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
|
|
|
|
|
2010-02-16 12:23:24 +00:00
|
|
|
* Tue Feb 16 2010 Karel Klic <kklic@redhat.com> - 2.0.0-5
|
|
|
|
- Set CXXFLAXS without -match=i386 for i386 architecture #565074
|
|
|
|
|
2010-01-08 22:03:27 +00:00
|
|
|
* Sat Jan 09 2010 Rakesh Pandit <rakesh@fedoraproject.org> - 2.0.0-4
|
|
|
|
- Updated opencv-samples-Makefile (Thanks Scott Tsai) #553697
|
|
|
|
|
2010-01-06 10:33:51 +00:00
|
|
|
* Wed Jan 06 2010 Karel Klic <kklic@redhat.com> - 2.0.0-3
|
|
|
|
- Fixed spec file issues detected by rpmlint
|
|
|
|
|
2009-12-06 11:11:41 +00:00
|
|
|
* Sun Dec 06 2009 Haïkel Guémar <karlthered@gmail.com> - 2.0.0-2
|
2010-02-27 13:08:49 +00:00
|
|
|
- Fix autotools scripts (missing LBP features) - #544167
|
2009-12-06 11:11:41 +00:00
|
|
|
|
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)
|
2010-01-06 10:33:51 +00:00
|
|
|
- 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
|
2009-09-10 12:32:22 +00:00
|
|
|
- fix build on s390x where we don't have libraw1394 and devel
|
|
|
|
|
2013-07-29 15:13:53 +00:00
|
|
|
* Thu Jul 30 2009 Haïkel Guémar <karlthered@gmail.com> - 1.1.0.0.6.pre1
|
2009-07-30 13:14:06 +00:00
|
|
|
- Fix typo I introduced that prevented build on i386/i586
|
|
|
|
|
2013-07-29 15:13:53 +00:00
|
|
|
* Thu Jul 30 2009 Haïkel Guémar <karlthered@gmail.com> - 1.1.0.0.5.pre1
|
2009-12-06 11:11:41 +00:00
|
|
|
- Added 1394 libs and unicap support
|
2009-07-30 11:22:15 +00:00
|
|
|
|
2009-07-25 20:46:47 +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
|
|
|
|
|
2009-07-16 10:56:36 +00:00
|
|
|
* 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
|
|
|
|
2009-02-26 08:27:49 +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
|
|
|
|
|
2008-12-19 14:24:37 +00:00
|
|
|
* 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
|
|
|
|
|
2008-05-11 06:04:04 +00:00
|
|
|
* 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.
|
|
|
|
|
2007-03-22 05:30:02 +00:00
|
|
|
* 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.
|
|
|
|
|
2007-03-22 04:03:04 +00:00
|
|
|
* 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
|
|
|
|
2006-09-21 15:52:42 +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.
|
|
|
|
|
2006-09-21 14:44:10 +00:00
|
|
|
* 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.
|
|
|
|
|
2006-09-21 10:06:22 +00:00
|
|
|
* 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.
|
|
|
|
|
2006-03-08 13:15:09 +00:00
|
|
|
* 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.
|
|
|
|
|
2006-03-08 01:39:23 +00:00
|
|
|
* 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
|
|
|
|
|
2006-03-05 19:45:57 +00:00
|
|
|
* 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.
|