SHA256
1
0
forked from pool/laszip

- Update to version 3.4.3:

* UTF16 filename support and windows unicode support
  * Fix extra_bytes selective decompression PDAL/PDAL#2799 #62
  * Compatibility mode fix #60

OBS-URL: https://build.opensuse.org/package/show/Application:Geo/laszip?expand=0&rev=16
This commit is contained in:
Martin Pluskal 2020-05-18 07:51:21 +00:00 committed by Git OBS Bridge
parent ac044d672b
commit da8f5229ac
6 changed files with 13 additions and 27 deletions

View File

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

View File

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

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

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

View File

@ -0,0 +1 @@
53f546a7f06fc969b38d1d71cceb1862b4fc2c4a0965191a0eee81a57c7b373d laszip-src-3.4.3.tar.gz

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Mon May 18 07:46:31 UTC 2020 - Martin Pluskal <mpluskal@suse.com>
- Update to version 3.4.3:
* UTF16 filename support and windows unicode support
* Fix extra_bytes selective decompression PDAL/PDAL#2799 #62
* Compatibility mode fix #60
-------------------------------------------------------------------
Tue Mar 24 07:01:31 UTC 2020 - Max Lin <mlin@suse.com>

View File

@ -17,11 +17,9 @@
#
#
%define sover 8
Name: laszip
Version: 3.4.1
Version: 3.4.3
Release: 0
Summary: Compression library supporting ASPRS LAS format data
License: LGPL-2.1-or-later
@ -31,7 +29,6 @@ Source0: https://github.com/LASzip/LASzip/releases/download/%{version}/la
Source1: https://github.com/LASzip/LASzip/releases/download/%{version}/laszip-src-%{version}.tar.gz.sha256sum
BuildRequires: cmake
BuildRequires: gcc-c++
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
A free product of rapidlasso GmbH - quickly turns bulky LAS files into
@ -95,22 +92,13 @@ data.
%install
%cmake_install
# Do not ship any static libraries or .la files
find %{buildroot} -type f \( -name '*.a' -o -name '*.la' \) -delete -print
rm -rf %{buildroot}/usr/lib/debug/
# No more available in 3?
#%%check
#make %%{?_smp_mflags} check
%post -n lib%{name}%{sover} -p /sbin/ldconfig
%postun -n lib%{name}%{sover} -p /sbin/ldconfig
%post -n lib%{name}_api%{sover} -p /sbin/ldconfig
%postun -n lib%{name}_api%{sover} -p /sbin/ldconfig
%files devel
%defattr(-,root,root)
%license COPYING
%doc ChangeLog AUTHORS
%dir %{_includedir}/%{name}
@ -120,23 +108,13 @@ rm -rf %{buildroot}/usr/lib/debug/
%{_libdir}/lib%{name}_api.so
%files -n lib%{name}%{sover}
%defattr(-,root,root)
%doc ChangeLog AUTHORS
%if 0%{?leap_version} >= 420200 || 0%{?suse_version} > 1320
%license COPYING
%else
%doc COPYING
%endif
%{_libdir}/lib%{name}.so.*
%files -n lib%{name}_api%{sover}
%defattr(-,root,root)
%doc ChangeLog AUTHORS
%if 0%{?leap_version} >= 420200 || 0%{?suse_version} > 1320
%license COPYING
%else
%doc COPYING
%endif
%{_libdir}/lib%{name}_api.so.*
%changelog