Accepting request 707406 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/707406 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Babel?expand=0&rev=27
This commit is contained in:
commit
82eb8f8fba
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8cba50f48c529ca3fa18cf81fa9403be176d374ac4d60738b839122dfaaa3d23
|
||||
size 7960433
|
3
Babel-2.7.0.tar.gz
Normal file
3
Babel-2.7.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e86135ae101e31e2c8ec20a4e0c5220f4eed12487d5cf3f78be7e98d3a57fc28
|
||||
size 8244870
|
@ -1,3 +1,44 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 4 05:31:14 UTC 2019 - pgajdos@suse.com
|
||||
|
||||
- version update to 2.7.0
|
||||
Possibly incompatible changes
|
||||
* General: Internal uses of ``babel.util.odict`` have been replaced with
|
||||
``collections.OrderedDict`` from The Python standard library.
|
||||
Improvements
|
||||
* CLDR: Upgrade to CLDR 35.1 - Alberto Mardegan, Aarni Koskela (#626, #643)
|
||||
* General: allow anchoring path patterns to the start of a string -
|
||||
Brian Cappello (#600)
|
||||
* General: Bumped version requirement on pytz - @chrisbrake (#592)
|
||||
* Messages: `pybabel compile`: exit with code 1 if errors were encountered
|
||||
- Aarni Koskela (#647)
|
||||
* Messages: Add omit-header to update_catalog - Cédric Krier (#633)
|
||||
* Messages: Catalog update: keep user comments from destination by default
|
||||
- Aarni Koskela (#648)
|
||||
* Messages: Skip empty message when writing mo file - Cédric Krier (#564)
|
||||
* Messages: Small fixes to avoid crashes on badly formatted .po files
|
||||
- Bryn Truscott (#597)
|
||||
* Numbers: `parse_decimal()` `strict` argument and `suggestions`
|
||||
- Charly C (#590)
|
||||
* Numbers: don't repeat suggestions in parse_decimal strict - Serban
|
||||
Constantin (#599)
|
||||
* Numbers: implement currency formatting with long display names
|
||||
- Luke Plant (#585)
|
||||
* Numbers: parse_decimal(): assume spaces are equivalent to non-breaking
|
||||
spaces when not in strict mode - Aarni Koskela (#649)
|
||||
* Performance: Cache locale_identifiers() - Aarni Koskela (#644)
|
||||
Bugfixes
|
||||
* CLDR: Skip alt=... for week data (minDays, firstDay, weekendStart,
|
||||
weekendEnd) - Aarni Koskela (#634)
|
||||
* Dates: Fix wrong weeknumber for 31.12.2018 - BT-sschmid (#621)
|
||||
* Locale: Avoid KeyError trying to get data on WindowsXP - mondeja (#604)
|
||||
* Locale: get_display_name(): Don't attempt to concatenate variant
|
||||
information to None - Aarni Koskela (#645)
|
||||
* Messages: pofile: Add comparison operators to _NormalizedString - Aarni
|
||||
Koskela (#646)
|
||||
* Messages: pofile: don't crash when message.locations can't be sorted
|
||||
- Aarni Koskela (#646)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Jun 24 15:32:48 UTC 2018 - arun@gmx.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-Babel-doc
|
||||
#
|
||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -18,12 +18,12 @@
|
||||
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
Name: python-Babel-doc
|
||||
Version: 2.6.0
|
||||
Version: 2.7.0
|
||||
Release: 0
|
||||
Summary: Internationalization utilities
|
||||
License: BSD-3-Clause
|
||||
Group: Development/Languages/Python
|
||||
URL: http://babel.edgewall.org/
|
||||
URL: http://babel.pocoo.org/
|
||||
Source: https://files.pythonhosted.org/packages/source/B/Babel/Babel-%{version}.tar.gz
|
||||
BuildRequires: python-rpm-macros
|
||||
BuildRequires: python3-Sphinx
|
||||
|
@ -1,3 +1,44 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 4 05:31:14 UTC 2019 - pgajdos@suse.com
|
||||
|
||||
- version update to 2.7.0
|
||||
Possibly incompatible changes
|
||||
* General: Internal uses of ``babel.util.odict`` have been replaced with
|
||||
``collections.OrderedDict`` from The Python standard library.
|
||||
Improvements
|
||||
* CLDR: Upgrade to CLDR 35.1 - Alberto Mardegan, Aarni Koskela (#626, #643)
|
||||
* General: allow anchoring path patterns to the start of a string -
|
||||
Brian Cappello (#600)
|
||||
* General: Bumped version requirement on pytz - @chrisbrake (#592)
|
||||
* Messages: `pybabel compile`: exit with code 1 if errors were encountered
|
||||
- Aarni Koskela (#647)
|
||||
* Messages: Add omit-header to update_catalog - Cédric Krier (#633)
|
||||
* Messages: Catalog update: keep user comments from destination by default
|
||||
- Aarni Koskela (#648)
|
||||
* Messages: Skip empty message when writing mo file - Cédric Krier (#564)
|
||||
* Messages: Small fixes to avoid crashes on badly formatted .po files
|
||||
- Bryn Truscott (#597)
|
||||
* Numbers: `parse_decimal()` `strict` argument and `suggestions`
|
||||
- Charly C (#590)
|
||||
* Numbers: don't repeat suggestions in parse_decimal strict - Serban
|
||||
Constantin (#599)
|
||||
* Numbers: implement currency formatting with long display names
|
||||
- Luke Plant (#585)
|
||||
* Numbers: parse_decimal(): assume spaces are equivalent to non-breaking
|
||||
spaces when not in strict mode - Aarni Koskela (#649)
|
||||
* Performance: Cache locale_identifiers() - Aarni Koskela (#644)
|
||||
Bugfixes
|
||||
* CLDR: Skip alt=... for week data (minDays, firstDay, weekendStart,
|
||||
weekendEnd) - Aarni Koskela (#634)
|
||||
* Dates: Fix wrong weeknumber for 31.12.2018 - BT-sschmid (#621)
|
||||
* Locale: Avoid KeyError trying to get data on WindowsXP - mondeja (#604)
|
||||
* Locale: get_display_name(): Don't attempt to concatenate variant
|
||||
information to None - Aarni Koskela (#645)
|
||||
* Messages: pofile: Add comparison operators to _NormalizedString - Aarni
|
||||
Koskela (#646)
|
||||
* Messages: pofile: don't crash when message.locations can't be sorted
|
||||
- Aarni Koskela (#646)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 4 13:05:10 UTC 2018 - Matej Cepl <mcepl@suse.com>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-Babel
|
||||
#
|
||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# 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 @@
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
%define oldpython python
|
||||
Name: python-Babel
|
||||
Version: 2.6.0
|
||||
Version: 2.7.0
|
||||
Release: 0
|
||||
Summary: Internationalization utilities
|
||||
License: BSD-3-Clause
|
||||
@ -60,13 +60,10 @@ A collection of tools for internationalizing Python applications.
|
||||
%install
|
||||
%python_install
|
||||
%python_clone -a %{buildroot}%{_bindir}/pybabel
|
||||
|
||||
%python_expand %fdupes -s %{buildroot}%{$python_sitelib}
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
%check
|
||||
export TZ=UTC
|
||||
export LC_ALL=C
|
||||
%python_exec %{_bindir}/py.test tests
|
||||
%pytest
|
||||
|
||||
%pre
|
||||
# Since /usr/bin/pybabel became ghosted to be used with update-alternatives, we have to get rid
|
||||
|
Loading…
x
Reference in New Issue
Block a user