Hi,
On Ter, 2017-02-28 at 08:47 -0500, Josef Ridky wrote:
> Hi folks,
>
> in Fedora rawhide is now available new version of OpenCV package.
> Some of you will have to rebuild your packages (see affected packages
> section).
>
> This version of OpenCV will be part of Fedora 26+. Previous versions
> of Fedora will not be affected.
> See `What's new` section for more information about this release.
>
> =============================
> = Affected packages
> =============================
>
> OpenImageIO-1.7.11-1.fc26.src.rpm
> YafaRay-3.2.0-0.5.20170221git.fc26.src.rpm
> digikam-5.4.0-2.fc26.src.rpm
> fawkes-1.0.0-5.fc26.src.rpm
> ffmpeg-3.1.6-1.fc24.src.rpm
> frei0r-plugins-1.5-3.fc26.src.rpm
> gmic-1.7.2-2.fc26.src.rpm
> kf5-libkface-16.08.3-1.fc26.src.rpm
> libfreenect-0.5.3-5.fc26.src.rpm
> mlt-6.4.1-5.fc26.src.rpm
> mrpt-1.3.2-11.fc26.src.rpm
> nomacs-3.4-2.fc26.src.rpm
> os-autoinst-4.4-14.20170126gitc29555c.fc26.src.rpm
> php-facedetect-1.1.0-5.fc26.src.rpm
> player-3.0.2-57.fc26.src.rpm
> python-SimpleCV-1.3-7.fc24.src.rpm
> shogun-5.0.0-0.5.fc26.src.rpm
> simarrange-0.0-11.20140729git9500190.fc26.src.rpm
> simon-0.4.1-10.fc25.src.rpm
> siril-0.9.5-3.fc26.src.rpm
>
> (Hope I have not missed any package)
>
> =============================
> = What's new
> =============================
>
> See change log on https://github.com/opencv/opencv/wiki/ChangeLog#ver
> sion32
>
> Additional changes (Fedora related)
>
> - 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)
First, thank you for taking care of this package
gstreamer was disabled, is a typo or is ?
Also we may enable openni, eigen3, tbb, atlas and vtk support, what is
your opinion ? patch in attach at least eigen3 and tbb seems be
more known therefore I think we should / may enable it .
Best regards,
--
Sérgio M. B.
From 8cc6ccdd396ceabf5590c250624abcbdf5edbaf6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=A9rgio=20M=2E=20Basto?= <sergio@xxxxxxxxxx>
Date: Wed, 1 Mar 2017 23:58:25 +0000
Subject: [PATCH] Remove architecture checks for tbb Reenable gstreamer Enable
eigen3 tbb atlas vtk openni ppc ppc64 ppc64p7 ppc64le
---
opencv.spec | 31 ++++++++++++++++++-------------
1 file changed, 18 insertions(+), 13 deletions(-)
diff --git a/opencv.spec b/opencv.spec
index 2d9cb36..9b407d4 100644
--- a/opencv.spec
+++ b/opencv.spec
@@ -1,15 +1,15 @@
#global indice a
%bcond_with ffmpeg
-%bcond_with gstreamer
+%bcond_without gstreamer
%bcond_with eigen2
-%bcond_with eigen3
-%bcond_with openni
-%bcond_with tbb
+%bcond_without eigen3
+%bcond_without openni
+%bcond_without tbb
%bcond_with sse3
%bcond_with cuda
%bcond_with xine
-%bcond_with atlas
-%bcond_with vtk
+%bcond_without atlas
+%bcond_without vtk
%global srcname opencv
%global abiver 3.2
@@ -21,7 +21,7 @@
Name: opencv
Version: 3.2.0
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Collection of algorithms for computer vision
Group: Development/Libraries
# This is normal three clause BSD.
@@ -82,11 +82,9 @@ BuildRequires: openni-devel
BuildRequires: openni-primesense
}
%endif
-%ifarch %{ix86} x86_64 ia64 ppc %{power64} aarch64
-%{?with_tbb:
+%{?with_tbb:
BuildRequires: tbb-devel
}
-%endif
BuildRequires: zlib-devel pkgconfig
BuildRequires: python2-devel
BuildRequires: python3-devel
@@ -110,7 +108,7 @@ BuildRequires: glog-devel
BuildRequires: doxygen
BuildRequires: gflags-devel
BuildRequires: SFML-devel
-BuildRequires: libucil-devel
+BuildRequires: libucil-devel
BuildRequires: qt5-qtbase-devel
BuildRequires: mesa-libGL-devel mesa-libGLU-devel
BuildRequires: hdf5-devel
@@ -119,9 +117,12 @@ BuildRequires: hdf5-devel
#ceres-solver-devel push eigen3-devel and tbb-devel
%{?with_tbb:
%{?with_eigen3:
+%ifnarch ppc %{power64}
BuildRequires: ceres-solver-devel
+%endif
}
}
+#BuildRequires: plantuml
Requires: opencv-core%{_isa} = %{version}-%{release}
@@ -235,9 +236,7 @@ pushd build
%{!?with_sse3:-DENABLE_SSE3=OFF} \
-DCMAKE_BUILD_TYPE=ReleaseWithDebInfo \
-DBUILD_opencv_java=OFF \
-%ifarch %{ix86} x86_64 ia64 ppc %{power64} aarch64
%{?with_tbb: -DWITH_TBB=ON } \
-%endif
%{!?with_gstreamer:-DWITH_GSTREAMER=OFF} \
%{!?with_ffmpeg:-DWITH_FFMPEG=OFF} \
%{?with_cuda: \
@@ -376,6 +375,12 @@ popd
%{_libdir}/libopencv_xphoto.so.%{abiver}*
%changelog
+* Tue Feb 28 2017 Sérgio Basto <sergio@xxxxxxxxxx> - 3.2.0-2
+- Remove architecture checks for tbb
+- Reenable gstreamer
+- Enable eigen3 tbb atlas vtk openni
+- ppc %{power64}
+
* Mon Feb 27 2017 Josef Ridky <jridky@xxxxxxxxxx> - 3.2.0-1
- Rebase to the latest version (3.2.0) - #1408880
- Remove unused BuildRequires and patches
--
2.7.4
_______________________________________________
devel mailing list -- devel@xxxxxxxxxxxxxxxxxxxxxxx
To unsubscribe send an email to devel-leave@xxxxxxxxxxxxxxxxxxxxxxx