Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gdal for openSUSE:Factory checked in 
at 2023-09-28 00:25:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gdal (Old)
 and      /work/SRC/openSUSE:Factory/.gdal.new.23327 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gdal"

Thu Sep 28 00:25:05 2023 rev:79 rq:1113618 version:3.7.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/gdal/gdal.changes        2023-05-29 
22:48:09.862427064 +0200
+++ /work/SRC/openSUSE:Factory/.gdal.new.23327/gdal.changes     2023-09-28 
00:33:07.245187441 +0200
@@ -1,0 +2,33 @@
+Mon Sep 25 09:20:37 UTC 2023 - Dirk Stoecker <opens...@dstoecker.de>
+
+- Add Conflicts entry between drivers package and old library version
+
+-------------------------------------------------------------------
+Thu Sep 14 07:53:45 UTC 2023 - Dirk Stoecker <opens...@dstoecker.de>
+
+- Seperate drivers.ini from the library package
+
+-------------------------------------------------------------------
+Mon Aug 21 19:11:24 UTC 2023 - Bruno Friedmann <br...@ioda-net.ch>
+
+- update to bugfix release version 3.7.1
+  * see https://github.com/OSGeo/gdal/blob/v3.7.1/NEWS.md
+- update to feature release version 3.7.0
+  + see https://github.com/OSGeo/gdal/blob/v3.7.0/NEWS.md
+- packaging:
+  * add new buildrequire pkgconfig(libarchive)
+    for new /vsi7z/ and /vsirar/ virtual file systems
+  * handle new delivered files
+    data/gfs.xsd: XML schema for .gfs files (#6655)
+    data/gml_registry.xsd: new file with XML schema of
+    gml_registry.xml (#6716)
+    data/ogrinfo_output.json.schema: validate ogrinfo -json output
+    data/gdalinfo_output.schema.json: validate gdalinfo -json
+    output (fixes #6850)
+    data/grib2_table_4_2_0_21.csv
+    data/grib2_table_4_2_2_6.csv
+    bin/sozip
+  * spec-cleaner
+  * remove limitation for python < 3.11 as Factory has 3.11.4
+
+-------------------------------------------------------------------
@@ -1315 +1347,0 @@
-

Old:
----
  gdal-3.6.3.tar.xz
  gdal-3.6.3.tar.xz.md5
  gdalautotest-3.6.3.tar.gz

New:
----
  gdal-3.7.1.tar.xz
  gdal-3.7.1.tar.xz.md5
  gdalautotest-3.7.1.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ gdal.spec ++++++
--- /var/tmp/diff_new_pack.bjfLxM/_old  2023-09-28 00:33:08.777242741 +0200
+++ /var/tmp/diff_new_pack.bjfLxM/_new  2023-09-28 00:33:08.781242886 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define soversion 32
+%define soversion 33
 %define sourcename gdal
 # Uppercase GDAL is the canonical name for this package in Python
 %define pypi_package_name GDAL
@@ -31,7 +31,7 @@
 %bcond_with deflate_support
 %bcond_with tests_support
 Name:           gdal
-Version:        3.6.3
+Version:        3.7.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
@@ -64,6 +64,8 @@
 BuildRequires:  mysql-devel
 BuildRequires:  pcre2-devel
 BuildRequires:  pkgconfig
+BuildRequires:  python3-base
+BuildRequires:  python3-devel
 BuildRequires:  python3-numpy-devel
 BuildRequires:  python3-setuptools
 %if 0%{?sle_version} == 150300 && 0%{?is_opensuse}
@@ -89,6 +91,7 @@
 BuildRequires:  pkgconfig(freexl)
 BuildRequires:  pkgconfig(json)
 BuildRequires:  pkgconfig(json-c)
+BuildRequires:  pkgconfig(libarchive)
 BuildRequires:  pkgconfig(libgeotiff) >= 1.2.1
 BuildRequires:  pkgconfig(libjpeg)
 BuildRequires:  pkgconfig(liblz4)
@@ -162,6 +165,7 @@
 Development Libraries for the GDAL file format library
 
 %package -n lib%{name}%{soversion}
+Requires:       lib%{name}-drivers >= %{version}
 Summary:        GDAL static libraries
 
 %description -n lib%{name}%{soversion}
@@ -169,6 +173,14 @@
 formats. As a library, it presents a single abstract data model to the calling
 application for all supported formats.
 
+%package -n lib%{name}-drivers
+Summary:        GDAL static libraries drivers files
+# soversion 32 contained the drivers file and thus will cause a conflict
+Conflicts:      lib%{name}32
+
+%description -n lib%{name}-drivers
+Drivers information for library
+
 %package -n python3-%{pypi_package_name}
 Summary:        GDAL Python3 module
 Requires:       %{name} = %{version}-%{release}
@@ -195,7 +207,8 @@
 # Prepare tests
 tar -xf %{S:2}
 # Delete bundled libraries
-rm -rv frmts/zlib
+# keep zlib due to missing frmts/zlib/contrib/infback9 in our package
+# rm -rv frmts/zlib
 rm -rv frmts/png/libpng
 rm -rv frmts/gif/giflib
 rm -rv frmts/jpeg/libjpeg
@@ -331,6 +344,8 @@
 %license LICENSE.TXT
 %{_libdir}/*.so.%{soversion}.*
 %{_libdir}/*.so.%{soversion}
+
+%files -n lib%{name}-drivers
 %dir %{_libdir}/gdalplugins
 %{_libdir}/gdalplugins/drivers.ini
 
@@ -363,6 +378,7 @@
 %{_bindir}/ogrinfo
 %{_bindir}/ogrlineref
 %{_bindir}/ogrtindex
+%{_bindir}/sozip
 %{_datadir}/gdal
 %{_mandir}/man1/gdal_contour.1%{?ext_man}
 %{_mandir}/man1/gdal_create.1%{?ext_man}
@@ -388,6 +404,7 @@
 %{_mandir}/man1/ogrinfo.1%{?ext_man}
 %{_mandir}/man1/ogrlineref.1%{?ext_man}
 %{_mandir}/man1/ogrtindex.1%{?ext_man}
+%{_mandir}/man1/sozip.1%{?ext_man}
 # 20201104 We keep all binaries in gdal and requires python3-GDAL
 %{_bindir}/gdalattachpct.py
 %{_bindir}/gdal2tiles.py

++++++ gdal-3.6.3.tar.xz -> gdal-3.7.1.tar.xz ++++++
/work/SRC/openSUSE:Factory/gdal/gdal-3.6.3.tar.xz 
/work/SRC/openSUSE:Factory/.gdal.new.23327/gdal-3.7.1.tar.xz differ: char 26, 
line 1

++++++ gdal-3.6.3.tar.xz.md5 -> gdal-3.7.1.tar.xz.md5 ++++++
--- /work/SRC/openSUSE:Factory/gdal/gdal-3.6.3.tar.xz.md5       2023-03-19 
00:30:39.356113335 +0100
+++ /work/SRC/openSUSE:Factory/.gdal.new.23327/gdal-3.7.1.tar.xz.md5    
2023-09-28 00:33:07.237187152 +0200
@@ -1 +1 @@
-a6ccbcd5c90bf18dc1bf9b726583c505  gdal-3.6.3.tar.xz
+9f94939c0efca2ca3eafd8cd3255a0f0  gdal-3.7.1.tar.xz

++++++ gdalautotest-3.6.3.tar.gz -> gdalautotest-3.7.1.tar.gz ++++++
/work/SRC/openSUSE:Factory/gdal/gdalautotest-3.6.3.tar.gz 
/work/SRC/openSUSE:Factory/.gdal.new.23327/gdalautotest-3.7.1.tar.gz differ: 
char 13, line 1

Reply via email to