forked from pool/python-PyICU
Compare commits
16 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 9d478951f4 | |||
| 0d4d3b0bec | |||
| a41b76b679 | |||
| fbb6ed4223 | |||
| 7748f10836 | |||
| a831c51e40 | |||
| 68d8eeb857 | |||
| e4c84832c0 | |||
| 4c205f07d2 | |||
| db51be6913 | |||
| dd7c137803 | |||
| c73e76b491 | |||
| 60fc8f3386 | |||
| 426c7b7374 | |||
| 7179f4959b | |||
| 0ee4c1631c |
@@ -1,29 +0,0 @@
|
|||||||
|
|
||||||
gitlab.pyicu.org/main/pyicu/-/issues/173
|
|
||||||
gitlab.pyicu.org/main/pyicu/-/commit/82fa082
|
|
||||||
|
|
||||||
From 82fa082b149db81c894e0d887c0fff67c3d2826f Mon Sep 17 00:00:00 2001
|
|
||||||
From: Andi Vajda <vajda@pyicu.org>
|
|
||||||
Date: Mon, 5 May 2025 18:55:09 -0700
|
|
||||||
Subject: [PATCH] switch to is_trivially_copyable for sake of g++ 15+
|
|
||||||
|
|
||||||
---
|
|
||||||
arg.h | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/arg.h b/arg.h
|
|
||||||
index 5cabfaf..35a7b62 100644
|
|
||||||
--- a/arg.h
|
|
||||||
+++ b/arg.h
|
|
||||||
@@ -853,7 +853,7 @@ public:
|
|
||||||
};
|
|
||||||
|
|
||||||
#define _IS_POD(T) \
|
|
||||||
- static_assert(std::is_trivial<T>::value); \
|
|
||||||
+ static_assert(std::is_trivially_copyable<T>::value); \
|
|
||||||
static_assert(std::is_standard_layout<T>::value)
|
|
||||||
|
|
||||||
_IS_POD(AnyPythonObject);
|
|
||||||
--
|
|
||||||
GitLab
|
|
||||||
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:561e77eedff17cec6839f26211f7a5ce3c071b776e8a0ec9d1207f46cbce598f
|
|
||||||
size 267721
|
|
||||||
3
pyicu-2.16.tar.gz
Normal file
3
pyicu-2.16.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:42b3a8062e3b23e927ca727e6b5e1730d86c70279834e4887152895d2eb012d9
|
||||||
|
size 268126
|
||||||
@@ -1,3 +1,28 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Nov 7 08:01:07 UTC 2025 - Daniel Garcia <daniel.garcia@suse.com>
|
||||||
|
|
||||||
|
- Update to 2.16
|
||||||
|
* fixed issue #178
|
||||||
|
* added new enums from new unicode release in UBlockCode,
|
||||||
|
UScriptCode
|
||||||
|
* added missing wrappers for ECollationStrength and
|
||||||
|
EComparisonResult
|
||||||
|
* added wrapper for UIndicConjunctBreak
|
||||||
|
* added support for ICU 78.1 (bsc#1253118)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 25 10:46:41 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 2.15.3
|
||||||
|
* switch pl2cpa to new[]
|
||||||
|
* replaced uses of calloc with std::unique_ptr<[]>
|
||||||
|
* changed pl2cpa into template returning std::unique_ptr
|
||||||
|
* switch to is_trivially_copyable for sake of g++ 15+
|
||||||
|
* added wrapper for ES_PUNCTUATION
|
||||||
|
* added wrapper for UProperty.DEPRECATED
|
||||||
|
* drop trainling space from INVALID_CODE wrapper
|
||||||
|
- Drop pyicu-2.15-gcc15.patch, merged upstream
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue May 6 09:30:09 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
Tue May 6 09:30:09 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-PyICU
|
# spec file for package python-PyICU
|
||||||
#
|
#
|
||||||
# Copyright (c) 2025 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC and contributors
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
%global modname PyICU
|
%global modname PyICU
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-%{modname}
|
Name: python-%{modname}
|
||||||
Version: 2.15.2
|
Version: 2.16
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python Extension Wrapping the ICU C++ API
|
Summary: Python Extension Wrapping the ICU C++ API
|
||||||
License: MIT
|
License: MIT
|
||||||
@@ -28,8 +28,6 @@ Source0: https://files.pythonhosted.org/packages/source/p/pyicu/pyicu-%{v
|
|||||||
# PATCH-FEATURE-UPSTREAM remove_six.patch mcepl@suse.com
|
# PATCH-FEATURE-UPSTREAM remove_six.patch mcepl@suse.com
|
||||||
# Remove dependency on six
|
# Remove dependency on six
|
||||||
Patch0: remove_six.patch
|
Patch0: remove_six.patch
|
||||||
# PATCH-FIX-UPSTREAM pyicu-2.15-gcc15.patch
|
|
||||||
Patch1: pyicu-2.15-gcc15.patch
|
|
||||||
BuildRequires: %{python_module devel}
|
BuildRequires: %{python_module devel}
|
||||||
BuildRequires: %{python_module pip}
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
|
|||||||
Reference in New Issue
Block a user