14
0
forked from pool/python-PyICU

- Update to 2.13.1:

- change c++11 to c++17 in setup.py as current versions of ICU require it
- 2.13
  - fixed build issues on Windows
  - added wrappers for MeasureUnit(locale, width) and getUnitDisplayName()
  - added wrappers for DateFormatSymbols.getEra|ZodiacNames()
  - added wrappers for DateFormatSymbols.getZoneStrings()
  - added wrappers for LocaleDisplayNames
  - fixed bug dealloc calling wrong destructor on most types (Fredrik Roubert)
  - added support for ICU 75.1
  - added wrappers for LocalizedNumber|Range|Formatter.withoutLocale()
  - added wrappers for UIdentifierType, Char.hasIDType(), Char.getIDTypes()
  - added wrappers for UIdentifierStatus
  - added wrappers for UProperty.IDENTIFIER_TYPE, UProperty.IDENTIFIER_STATUS

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyICU?expand=0&rev=35
This commit is contained in:
2024-06-14 08:31:06 +00:00
committed by Git OBS Bridge
parent 620646aced
commit ead2f03508
5 changed files with 91 additions and 34 deletions

View File

@@ -1,7 +1,7 @@
#
# spec file
# spec file for package python-PyICU
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
%{?sle15_python_module_pythons}
%global modname PyICU
Name: python-%{modname}
Version: 2.12
Version: 2.13.1
Release: 0
Summary: Python Extension Wrapping the ICU C++ API
License: MIT
@@ -50,7 +50,7 @@ Python extension wrapping IBM's International Components for Unicode C++
library (ICU).
%prep
%autosetup -p1 -n %{modname}-%{version}
%autosetup -p1 -n pyicu-%{version}
%build
export CXXFLAGS="%{optflags} -fno-strict-aliasing"