Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-datrie for openSUSE:Factory checked in at 2024-05-29 19:35:46 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-datrie (Old) and /work/SRC/openSUSE:Factory/.python-datrie.new.24587 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-datrie" Wed May 29 19:35:46 2024 rev:12 rq:1177374 version:0.8.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-datrie/python-datrie.changes 2024-02-29 21:49:56.457070899 +0100 +++ /work/SRC/openSUSE:Factory/.python-datrie.new.24587/python-datrie.changes 2024-05-29 19:36:04.468972297 +0200 @@ -1,0 +2,6 @@ +Tue May 28 08:57:59 UTC 2024 - John Paul Adrian Glaubitz <[email protected]> + +- Cherry-pick upstream patch to fix build with GCC 14 + * https://github.com/pytries/datrie/pull/99.patch + +------------------------------------------------------------------- New: ---- 99.patch BETA DEBUG BEGIN: New:- Cherry-pick upstream patch to fix build with GCC 14 * https://github.com/pytries/datrie/pull/99.patch BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-datrie.spec ++++++ --- /var/tmp/diff_new_pack.dJRkqT/_old 2024-05-29 19:36:05.973026768 +0200 +++ /var/tmp/diff_new_pack.dJRkqT/_new 2024-05-29 19:36:05.973026768 +0200 @@ -24,6 +24,8 @@ URL: https://github.com/kmike/datrie Source: https://files.pythonhosted.org/packages/source/d/datrie/datrie-%{version}.tar.gz Patch0: datrie-bigendian.patch +# PATCH-FIX-UPSTREAM - Fix AlphaMap definition in cdatrie.pxd +Patch1: https://github.com/pytries/datrie/pull/99.patch BuildRequires: %{python_module Cython >= 0.26.1} BuildRequires: %{python_module devel} BuildRequires: %{python_module hypothesis} ++++++ 99.patch ++++++ >From 12ffaa89e589a47d0b29b32997cb3623d231d920 Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" <[email protected]> Date: Thu, 1 Feb 2024 15:14:00 -0500 Subject: [PATCH] Fix AlphaMap definition in cdatrie.pxd Fixes failure to compile on GCC with `-Werror=incompatible-pointer-types`. --- src/cdatrie.pxd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cdatrie.pxd b/src/cdatrie.pxd index b80ce99..e609d1c 100644 --- a/src/cdatrie.pxd +++ b/src/cdatrie.pxd @@ -9,7 +9,7 @@ cdef extern from "../libdatrie/datrie/triedefs.h": cdef extern from "../libdatrie/datrie/alpha-map.h": - struct AlphaMap: + ctypedef struct AlphaMap: pass AlphaMap * alpha_map_new()
