Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package geos for openSUSE:Factory checked in at 2023-03-30 22:51:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/geos (Old) and /work/SRC/openSUSE:Factory/.geos.new.31432 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "geos" Thu Mar 30 22:51:19 2023 rev:23 rq:1075604 version:3.11.2 Changes: -------- --- /work/SRC/openSUSE:Factory/geos/geos.changes 2023-03-17 17:05:16.994003077 +0100 +++ /work/SRC/openSUSE:Factory/.geos.new.31432/geos.changes 2023-03-30 22:51:22.736610727 +0200 @@ -1,0 +2,10 @@ +Thu Mar 30 17:23:30 UTC 2023 - Martin Pluskal <mplus...@suse.com> + +- Disable testuite on i586 + +------------------------------------------------------------------- +Wed Mar 29 15:59:27 UTC 2023 - Bjørn Lie <bjorn....@gmail.com> + +- Add geos-add-missing-include.patch: Add missing #include <cstdint> + +------------------------------------------------------------------- @@ -36 +46 @@ - - OffsetCurve + OffsetCurve New: ---- geos-add-missing-include.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ geos.spec ++++++ --- /var/tmp/diff_new_pack.y4Bwls/_old 2023-03-30 22:51:23.200613210 +0200 +++ /var/tmp/diff_new_pack.y4Bwls/_new 2023-03-30 22:51:23.204613232 +0200 @@ -25,6 +25,8 @@ Group: Development/Libraries/C and C++ URL: https://libgeos.org Source0: https://download.osgeo.org/%{name}/%{name}-%{version}.tar.bz2 +# PATCH-FIX-UPSTREAM geos-add-missing-include.patch -- Add missing #include <cstdint> +Patch0: geos-add-missing-include.patch BuildRequires: cmake BuildRequires: gcc-c++ BuildRequires: pkgconfig @@ -76,7 +78,7 @@ use GEOS. %prep -%autosetup +%autosetup -p1 %build %cmake @@ -85,7 +87,10 @@ %check # path needs to be exported otherwise unit tests will fail export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:%{buildroot}%{_libdir} +# disable tests for i586 as they fail +%ifnarch %ix86 %ctest +%endif %install %cmake_install ++++++ geos-add-missing-include.patch ++++++ diff -Nur geos-3.11.2-orig/include/geos/shape/fractal/HilbertEncoder.h geos-3.11.2/include/geos/shape/fractal/HilbertEncoder.h --- geos-3.11.2-orig/include/geos/shape/fractal/HilbertEncoder.h 2023-03-17 00:57:01.000000000 +0100 +++ geos-3.11.2/include/geos/shape/fractal/HilbertEncoder.h 2023-03-29 17:57:48.640180182 +0200 @@ -18,6 +18,7 @@ #include <geos/export.h> #include <string> #include <vector> +#include <cstdint> // Forward declarations namespace geos { diff -Nur geos-3.11.2-orig/tests/unit/capi/GEOSMakeValidTest.cpp geos-3.11.2/tests/unit/capi/GEOSMakeValidTest.cpp --- geos-3.11.2-orig/tests/unit/capi/GEOSMakeValidTest.cpp 2023-03-17 00:57:01.000000000 +0100 +++ geos-3.11.2/tests/unit/capi/GEOSMakeValidTest.cpp 2023-03-29 18:38:55.141543602 +0200 @@ -11,6 +11,7 @@ #include <cstring> #include "capi_test_utils.h" +#include <cstdint> namespace tut { //