SHA256
1
0
forked from pool/laszip

Accepting request 714512 from Application:Geo

- update to version 3.4.1
  * 1024 AC_BUFFER_SIZE to 4096 for propagate_carry() overflow
  * Fix two small memory leaks
  * FastAC now properly BSD-licensed.
  * writer: sanity check for consistent legacy and extended classification
  * reader: zero the legacy classification whenever extended classification
    is larger than 31
  * bug fix when writing 4,294,967,296 or more points uncompressed to LAS
  * fix for LASzip v4 decompression of WavePacket part of PRDF 9 and 10
  * upped to 3.2 r9 for bug fix in multi-channel NIR decompression
  * fix for v4 decompression of WavePacket part of PRDF 9 and 10
- build fix: use -fPIC instead of -fPIE for library

OBS-URL: https://build.opensuse.org/request/show/714512
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/laszip?expand=0&rev=5
This commit is contained in:
Dominique Leuenberger 2019-07-15 20:43:57 +00:00 committed by Git OBS Bridge
commit 613cd6c688
6 changed files with 27 additions and 11 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a1cc9ea5adfcad43b9c8afbaff20bcd573a85c90dd83d5c8e17e4ff8d8d4548e
size 218578

View File

@ -1 +0,0 @@
MD5 (laszip-src-3.2.9.tar.gz) = 178a79737788e099b70a70c10c61b01e

3
laszip-src-3.4.1.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5d9b0ffaf8b7319c2fa216da3f3f878bb8f4e5b4b14d2c154d441a351da2be37
size 219421

View File

@ -0,0 +1 @@
5d9b0ffaf8b7319c2fa216da3f3f878bb8f4e5b4b14d2c154d441a351da2be37 laszip-src-3.4.1.tar.gz

View File

@ -1,3 +1,19 @@
-------------------------------------------------------------------
Wed Jul 10 18:51:45 UTC 2019 - Dirk Stoecker <opensuse@dstoecker.de>
- update to version 3.4.1
* 1024 AC_BUFFER_SIZE to 4096 for propagate_carry() overflow
* Fix two small memory leaks
* FastAC now properly BSD-licensed.
* writer: sanity check for consistent legacy and extended classification
* reader: zero the legacy classification whenever extended classification
is larger than 31
* bug fix when writing 4,294,967,296 or more points uncompressed to LAS
* fix for LASzip v4 decompression of WavePacket part of PRDF 9 and 10
* upped to 3.2 r9 for bug fix in multi-channel NIR decompression
* fix for v4 decompression of WavePacket part of PRDF 9 and 10
- build fix: use -fPIC instead of -fPIE for library
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 19 06:51:01 UTC 2019 - Bruno Friedmann <bruno@ioda-net.ch> Tue Feb 19 06:51:01 UTC 2019 - Bruno Friedmann <bruno@ioda-net.ch>

View File

@ -21,14 +21,14 @@
%define sover 8 %define sover 8
Name: laszip Name: laszip
Version: 3.2.9 Version: 3.4.1
Release: 0 Release: 0
Summary: Compression library supporting ASPRS LAS format data Summary: Compression library supporting ASPRS LAS format data
License: LGPL-2.1-or-later License: LGPL-2.1-or-later
Group: Development/Libraries/C and C++ Group: Development/Libraries/C and C++
Url: http://www.laszip.org/ Url: https://laszip.org/
Source0: https://github.com/LASzip/LASzip/releases/download/%{version}/laszip-src-%{version}.tar.gz Source0: https://github.com/LASzip/LASzip/releases/download/%{version}/laszip-src-%{version}.tar.gz
Source1: https://github.com/LASzip/LASzip/releases/download/%{version}/laszip-src-%{version}.tar.gz.md5 Source1: https://github.com/LASzip/LASzip/releases/download/%{version}/laszip-src-%{version}.tar.gz.sha256sum
BuildRequires: cmake BuildRequires: cmake
BuildRequires: gcc-c++ BuildRequires: gcc-c++
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -84,10 +84,10 @@ data.
%build %build
# laszip need dlopen,dlsym,dlclose # laszip need dlopen,dlsym,dlclose
%cmake \ %cmake \
-DCMAKE_C_FLAGS="%{optflags} -fno-strict-aliasing -fPIE -pie" \ -DCMAKE_C_FLAGS="%{optflags} -fno-strict-aliasing -fPIC" \
-DCMAKE_C_FLAGS_RELWITHDEBINFO="%{optflags} -fno-strict-aliasing -fPIE -pie" \ -DCMAKE_C_FLAGS_RELWITHDEBINFO="%{optflags} -fno-strict-aliasing -fPIC" \
-DCMAKE_CXX_FLAGS="%{optflags} -fno-strict-aliasing -fPIE -pie" \ -DCMAKE_CXX_FLAGS="%{optflags} -fno-strict-aliasing -fPIC" \
-DCMAKE_CXX_FLAGS_RELWITHDEBINFO="%{optflags} -fno-strict-aliasing -fPIE -pie" \ -DCMAKE_CXX_FLAGS_RELWITHDEBINFO="%{optflags} -fno-strict-aliasing -fPIC" \
-DCMAKE_SHARED_LINKER_FLAGS="-Wl,--as-needed -Wl,--no-undefined -Wl,-z,now -Wl,--no-as-needed -ldl" -DCMAKE_SHARED_LINKER_FLAGS="-Wl,--as-needed -Wl,--no-undefined -Wl,-z,now -Wl,--no-as-needed -ldl"
make V=1 %{?_smp_mflags} make V=1 %{?_smp_mflags}