Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gdal for openSUSE:Factory checked in at 2022-01-06 15:50:59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gdal (Old) and /work/SRC/openSUSE:Factory/.gdal.new.1896 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gdal" Thu Jan 6 15:50:59 2022 rev:69 rq:943956 version:3.4.1 Changes: -------- --- /work/SRC/openSUSE:Factory/gdal/gdal.changes 2022-01-03 10:50:24.303603093 +0100 +++ /work/SRC/openSUSE:Factory/.gdal.new.1896/gdal.changes 2022-01-06 15:51:15.880970643 +0100 @@ -1,0 +2,13 @@ +Tue Jan 4 15:10:17 UTC 2022 - Bruno Friedmann <br...@ioda-net.ch> + +- Upgrade to version 3.4.1 bugfix release + + Full changelog https://github.com/OSGeo/gdal/blob/v3.4.0/gdal/NEWS + + Explicitly add a call to autogen.sh + + Upstream PCIDSK: fix write heap-buffer-overflow boo#1194263 +- Removed GDALmake.opt.in.patch due to cc1plus: warning: + -I gcore: No such file or directory [-Wmissing-include-dirs] +- Add conditionnal support for hdf4 boo#1192614 on Leap + build -with hdf4_support can be enabled +- Update copyright year + +------------------------------------------------------------------- Old: ---- GDALmake.opt.in.patch gdal-3.3.3.tar.xz gdal-3.3.3.tar.xz.md5 gdalautotest-3.3.3.tar.gz New: ---- gdal-3.4.1.tar.xz gdal-3.4.1.tar.xz.md5 gdalautotest-3.4.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gdal.spec ++++++ --- /var/tmp/diff_new_pack.thYlNt/_old 2022-01-06 15:51:31.524979232 +0100 +++ /var/tmp/diff_new_pack.thYlNt/_new 2022-01-06 15:51:31.528979235 +0100 @@ -1,7 +1,7 @@ # # spec file for package gdal # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -16,7 +16,7 @@ # -%define soversion 29 +%define soversion 30 %define sourcename gdal # Uppercase GDAL is the canonical name for this package in Python %define pypi_package_name GDAL @@ -25,10 +25,11 @@ %bcond_with fgdb_support %bcond_with kml_support %bcond_with sfcgal_support +%bcond_with hdf4_support %bcond_with heif_support %bcond_with tests_support Name: gdal -Version: 3.3.3 +Version: 3.4.1 Release: 0 Summary: GDAL/OGR - a translator library for raster and vector geospatial data formats License: BSD-3-Clause AND MIT AND SUSE-Public-Domain @@ -37,8 +38,6 @@ Source1: https://download.osgeo.org/%{name}/%{version}/%{sourcename}-%{version}.tar.xz.md5 Source2: https://download.osgeo.org/%{name}/%{version}/%{sourcename}autotest-%{version}.tar.gz Patch0: gdal-perl.patch -# Fix occasional parallel build failure -Patch1: GDALmake.opt.in.patch BuildRequires: KEALib-devel BuildRequires: autoconf BuildRequires: automake @@ -113,6 +112,9 @@ %if %{with heif_support} BuildRequires: libheif-devel %endif +%if %{with hdf4_support} +BuildRequires: hdf-devel +%endif %if %{with ecw5_support} BuildRequires: ERDAS-ECW_JPEG_2000_SDK-devel %else @@ -155,6 +157,7 @@ %description -n perl-%{name} Perl bindings for GDAL - Geo::GDAL, Geo::OGR and Geo::OSR modules. +Deprecated - will be removed in 3.5 %package -n python3-%{pypi_package_name} Summary: GDAL Python3 module @@ -199,6 +202,7 @@ # Remove shebang in scripts located in non executable dir find swig/python/gdal-utils/osgeo_utils -iname '*.py' -ls -exec sed -i '/^#!\/usr\/bin\/env python3/d' {} \; +find swig/python/gdal-utils/osgeo_utils -iname '*.py' -ls -exec sed -i '/^#!\/usr\/bin\/env python/d' {} \; # Fix wrong /usr/bin/env python3 find . -iname "*.py" -exec sed -i "s,^#!%{_bindir}/env python3,#!%{_bindir}/python3," {} \; @@ -213,6 +217,7 @@ %endif %build +./autogen.sh %configure \ --prefix=%{_prefix} \ --includedir=%{_includedir}/gdal \ @@ -281,6 +286,9 @@ --with-opencl \ --without-hdf4 \ --with-hdf5 \ +%if %{with hdf4_support} + --with-hdf4 \ +%endif --with-webp \ --disable-rpath \ --enable-lto @@ -381,7 +389,7 @@ %files %license LICENSE.TXT -%doc NEWS PROVENANCE.TXT +%doc NEWS.md PROVENANCE.TXT %{_bindir}/gdal_contour %{_bindir}/gdal_create %{_bindir}/gdal_grid @@ -408,7 +416,6 @@ %{_bindir}/ogrinfo %{_bindir}/ogrlineref %{_bindir}/ogrtindex -%{_bindir}/testepsg %{_datadir}/gdal %{_mandir}/man1/gdal_contour.1%{?ext_man} %{_mandir}/man1/gdal_create.1%{?ext_man} @@ -471,7 +478,7 @@ %files devel %license LICENSE.TXT -%doc NEWS PROVENANCE.TXT +%doc NEWS.md PROVENANCE.TXT %if %{with docs} %doc doc/build/html/ %endif @@ -484,7 +491,7 @@ %files -n perl-%{name} %license LICENSE.TXT -%doc NEWS PROVENANCE.TXT +%doc NEWS.md PROVENANCE.TXT %{perl_vendorarch}/Geo/GDAL.pm %dir %{perl_vendorarch}/Geo/GDAL %{perl_vendorarch}/Geo/GDAL/Const.pm @@ -507,7 +514,7 @@ %files -n python3-%{pypi_package_name} %license LICENSE.TXT -%doc NEWS PROVENANCE.TXT +%doc NEWS.md PROVENANCE.TXT %{python3_sitearch}/* %changelog ++++++ gdal-3.3.3.tar.xz -> gdal-3.4.1.tar.xz ++++++ /work/SRC/openSUSE:Factory/gdal/gdal-3.3.3.tar.xz /work/SRC/openSUSE:Factory/.gdal.new.1896/gdal-3.4.1.tar.xz differ: char 27, line 1 ++++++ gdal-3.3.3.tar.xz.md5 -> gdal-3.4.1.tar.xz.md5 ++++++ --- /work/SRC/openSUSE:Factory/gdal/gdal-3.3.3.tar.xz.md5 2021-11-03 17:26:59.237360895 +0100 +++ /work/SRC/openSUSE:Factory/.gdal.new.1896/gdal-3.4.1.tar.xz.md5 2022-01-06 15:51:15.832970616 +0100 @@ -1 +1 @@ -9e42f3d11e2fb619b522878901bd1b0f gdal-3.3.3.tar.xz +6c42056c81abf84edcb2022b53fb2974 gdal-3.4.1.tar.xz ++++++ gdalautotest-3.3.3.tar.gz -> gdalautotest-3.4.1.tar.gz ++++++ /work/SRC/openSUSE:Factory/gdal/gdalautotest-3.3.3.tar.gz /work/SRC/openSUSE:Factory/.gdal.new.1896/gdalautotest-3.4.1.tar.gz differ: char 16, line 1