Accepting request 1153994 from Application:Geo
OBS-URL: https://build.opensuse.org/request/show/1153994 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/PDAL?expand=0&rev=4
This commit is contained in:
commit
7bb23936e6
11
PDAL.changes
11
PDAL.changes
@ -1,3 +1,14 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 1 10:53:46 UTC 2024 - Martin Pluskal <mpluskal@suse.com>
|
||||||
|
|
||||||
|
- Fix building on Leap
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 1 07:33:55 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||||
|
|
||||||
|
- BuildRequire proj-devel instead of the long deprecated name
|
||||||
|
libproj-devel.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 3 07:29:11 UTC 2023 - Guillaume GARDET <guillaume.gardet@opensuse.org>
|
Tue Oct 3 07:29:11 UTC 2023 - Guillaume GARDET <guillaume.gardet@opensuse.org>
|
||||||
|
|
||||||
|
13
PDAL.spec
13
PDAL.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package PDAL
|
# spec file for package PDAL
|
||||||
#
|
#
|
||||||
# Copyright (c) 2023 SUSE LLC
|
# Copyright (c) 2024 SUSE LLC
|
||||||
# Copyright (c) 2021 Friedmann Bruno, Ioda-Net Sàrl, Charmoille, Switzerland.
|
# Copyright (c) 2021 Friedmann Bruno, Ioda-Net Sàrl, Charmoille, Switzerland.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
@ -45,7 +45,6 @@ BuildRequires: curl-devel
|
|||||||
BuildRequires: eigen3-devel
|
BuildRequires: eigen3-devel
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: freeglut-devel
|
BuildRequires: freeglut-devel
|
||||||
BuildRequires: gcc-c++
|
|
||||||
BuildRequires: gdal
|
BuildRequires: gdal
|
||||||
BuildRequires: geotiff-devel
|
BuildRequires: geotiff-devel
|
||||||
BuildRequires: gtest
|
BuildRequires: gtest
|
||||||
@ -58,7 +57,7 @@ BuildRequires: libboost_program_options-devel
|
|||||||
BuildRequires: libgdal-devel
|
BuildRequires: libgdal-devel
|
||||||
BuildRequires: libgeos-devel
|
BuildRequires: libgeos-devel
|
||||||
BuildRequires: libopenssl-devel >= 1.1
|
BuildRequires: libopenssl-devel >= 1.1
|
||||||
BuildRequires: libproj-devel
|
BuildRequires: proj-devel
|
||||||
# Needed to have proj.db for tests
|
# Needed to have proj.db for tests
|
||||||
BuildRequires: libpsl5
|
BuildRequires: libpsl5
|
||||||
BuildRequires: libspatialindex-devel
|
BuildRequires: libspatialindex-devel
|
||||||
@ -95,6 +94,11 @@ Provides: bundled(PoissonRecon)
|
|||||||
Provides: bundled(nanoflann)
|
Provides: bundled(nanoflann)
|
||||||
# https://github.com/nlohmann/json bundled in vendor/nlohmann
|
# https://github.com/nlohmann/json bundled in vendor/nlohmann
|
||||||
Provides: bundled(nlohmann)
|
Provides: bundled(nlohmann)
|
||||||
|
%if 0%{?suse_version} < 1550
|
||||||
|
BuildRequires: gcc12-c++
|
||||||
|
%else
|
||||||
|
BuildRequires: gcc-c++ >= 11
|
||||||
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
PDAL is a C++ BSD library for translating and manipulating point cloud data.
|
PDAL is a C++ BSD library for translating and manipulating point cloud data.
|
||||||
@ -179,6 +183,9 @@ find ./doc/ -type f -iname "*.ai" -delete
|
|||||||
# boo#1194109 and upstream https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102059
|
# boo#1194109 and upstream https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102059
|
||||||
%define _lto_cflags %{nil}
|
%define _lto_cflags %{nil}
|
||||||
%endif
|
%endif
|
||||||
|
%if 0%{?suse_version} < 1550
|
||||||
|
export CXX=g++-12
|
||||||
|
%endif
|
||||||
|
|
||||||
%cmake \
|
%cmake \
|
||||||
-DCMAKE_VERBOSE_MAKEFILE=ON \
|
-DCMAKE_VERBOSE_MAKEFILE=ON \
|
||||||
|
Loading…
Reference in New Issue
Block a user