From 22664a9aabe113ee8f27e35ee3ee6545680b2551 Mon Sep 17 00:00:00 2001 From: Sandro Mani Date: May 21 2020 09:42:54 +0000 Subject: [PATCH 1/2] Rebuild (gdal) --- diff --git a/cloudcompare.spec b/cloudcompare.spec index 1f82b5c..5cb4cf4 100644 --- a/cloudcompare.spec +++ b/cloudcompare.spec @@ -19,7 +19,7 @@ %global cname CloudCompare Name: cloudcompare Version: 2.9.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: 3D point cloud and mesh processing software # Main part is GPLv2+ @@ -242,6 +242,9 @@ desktop-file-install --dir=%{buildroot}%{_datadir}/applications %{SOURCE4} %doc doc %changelog +* Thu May 21 2020 Sandro Mani - 2.9.1-7 +- Rebuild (gdal) + * Tue Mar 03 2020 Sandro Mani - 2.9.1-6 - Rebuild (gdal) From 400dd7e0c88161dd43a0688c773ccd00d05ba1da Mon Sep 17 00:00:00 2001 From: Miro Hrončok Date: Jun 05 2020 12:40:18 +0000 Subject: [PATCH 2/2] Enable Point Cloud Library (.pcd) files support Resolves https://bugzilla.redhat.com/show_bug.cgi?id=1827531 Contributed by Whistler. --- diff --git a/cloudcompare.spec b/cloudcompare.spec index 5cb4cf4..37c6254 100644 --- a/cloudcompare.spec +++ b/cloudcompare.spec @@ -19,7 +19,7 @@ %global cname CloudCompare Name: cloudcompare Version: 2.9.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: 3D point cloud and mesh processing software # Main part is GPLv2+ @@ -51,6 +51,9 @@ Patch0: %{name}-signed-chars.patch # https://github.com/CloudCompare/CloudCompare/issues/649 Patch1: %{name}-big-endian.patch +# https://github.com/CloudCompare/CloudCompare/pull/661 +Patch2: %{name}-pcl.patch + BuildRequires: boost-devel BuildRequires: desktop-file-utils BuildRequires: cmake >= 3 @@ -59,6 +62,7 @@ BuildRequires: gcc-c++ BuildRequires: laszip-devel BuildRequires: libgomp BuildRequires: liblas-devel +BuildRequires: pcl-devel BuildRequires: pkgconfig(gdal) BuildRequires: pkgconfig(cunit) BuildRequires: pkgconfig(dri) @@ -176,7 +180,7 @@ pushd build -DINSTALL_QHPR_PLUGIN=ON \ -DINSTALL_QKINECT_PLUGIN=OFF \ -DINSTALL_QM3C2_PLUGIN=ON \ - -DINSTALL_QPCL_PLUGIN=OFF \ + -DINSTALL_QPCL_PLUGIN=ON \ -DINSTALL_QPCV_PLUGIN=ON \ -DINSTALL_QPHOTOSCAN_IO_PLUGIN=ON \ -DINSTALL_QPOISSON_RECON_PLUGIN=ON \ @@ -242,6 +246,9 @@ desktop-file-install --dir=%{buildroot}%{_datadir}/applications %{SOURCE4} %doc doc %changelog +* Fri Jun 05 2020 Miro Hrončok - 2.9.1-8 +- Enable Point Cloud Library (.pcd) files support (#1827531) + * Thu May 21 2020 Sandro Mani - 2.9.1-7 - Rebuild (gdal)