Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-cchardet for openSUSE:Factory 
checked in at 2026-06-27 18:03:42
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-cchardet (Old)
 and      /work/SRC/openSUSE:Factory/.python-cchardet.new.11887 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-cchardet"

Sat Jun 27 18:03:42 2026 rev:12 rq:1361711 version:2.1.19

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-cchardet/python-cchardet.changes  
2025-10-18 14:36:43.459681943 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-cchardet.new.11887/python-cchardet.changes   
    2026-06-27 18:04:07.748009968 +0200
@@ -1,0 +2,7 @@
+Thu Jun 25 08:16:08 UTC 2026 - Matej Cepl <[email protected]>
+
+- Update opensuse-build.patch to explicitly link against libstdc++
+  fixing build failure under Python 3.14 (undefined symbol
+  _ZTVN10__cxxabiv117__class_type_infoE)
+
+-------------------------------------------------------------------

New:
----
  opensuse-build.patch

----------(New B)----------
  New:
- Update opensuse-build.patch to explicitly link against libstdc++
  fixing build failure under Python 3.14 (undefined symbol
----------(New E)----------

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

Other differences:
------------------
++++++ python-cchardet.spec ++++++
--- /var/tmp/diff_new_pack.hZ8oD7/_old  2026-06-27 18:04:08.572037591 +0200
+++ /var/tmp/diff_new_pack.hZ8oD7/_new  2026-06-27 18:04:08.576037726 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-cchardet
 #
-# Copyright (c) 2025 SUSE LLC and contributors
+# Copyright (c) 2026 SUSE LLC and contributors
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -31,6 +31,9 @@
 License:        GPL-2.0-or-later OR LGPL-2.1-or-later OR MPL-1.1
 URL:            https://github.com/faust-streaming/cChardet
 Source:         
https://files.pythonhosted.org/packages/source/f/faust-cchardet/%{modname}-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM opensuse-build.patch gh#faust-streaming/cChardet#36 
[email protected]
+# fixes to make the package building with 3.14
+Patch0:         opensuse-build.patch
 BuildRequires:  %{python_module Cython}
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module pip}

++++++ opensuse-build.patch ++++++
---
 setup.py |    8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

Index: faust-cchardet-2.1.19/setup.py
===================================================================
--- faust-cchardet-2.1.19.orig/setup.py 2023-08-09 16:55:15.000000000 +0200
+++ faust-cchardet-2.1.19/setup.py      2026-06-25 10:15:03.922636726 +0200
@@ -4,7 +4,7 @@
 import os
 import codecs
 import re
-from distutils.command.build_ext import build_ext
+from setuptools.command.build_ext import build_ext
 from distutils import sysconfig
 
 try:
@@ -37,6 +37,7 @@
 ext_args = {
     "include_dirs": uchardet_dir.split(os.pathsep),
     "library_dirs": uchardet_dir.split(os.pathsep),
+    "libraries": ["stdc++"],
 }
 
 
@@ -76,12 +77,9 @@
     description="cChardet is high speed universal character encoding 
detector.",
     long_description="\n\n".join((read("README.rst"), read("CHANGES.rst"))),
     version=version,
-    license="Mozilla Public License",
+    license="MPL-1.1 OR GPL-2.0-or-later or LGPL-2.1-or-later",
     classifiers=[
         "Development Status :: 6 - Mature",
-        "License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)",
-        "License :: OSI Approved :: GNU General Public License (GPL)",
-        "License :: OSI Approved :: GNU Library or Lesser General Public 
License (LGPL)",
         "Programming Language :: Cython",
         "Programming Language :: Python",
         "Programming Language :: Python :: Implementation :: CPython",

Reply via email to