public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/python-oslo-i18n] rawhide: 6.9.0
@ 2026-07-10 16:10 Gwyn Ciesla
  0 siblings, 0 replies; 2+ messages in thread
From: Gwyn Ciesla @ 2026-07-10 16:10 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/python-oslo-i18n
Branch : rawhide
Commit : abe9d05591599846163180fb88cff354874be7ad
Author : Gwyn Ciesla <gwync@protonmail.com>
Date   : 2026-07-10T11:10:43-05:00
Stats  : +1/-0 in 1 file(s)
URL    : https://src.fedoraproject.org/rpms/python-oslo-i18n/c/abe9d05591599846163180fb88cff354874be7ad?branch=rawhide

Log:
6.9.0

---
diff --git a/sources b/sources
index b4beaff..3cd2294 100644
--- a/sources
+++ b/sources
@@ -1,2 +1,3 @@
 SHA512 (oslo_i18n-6.9.0.tar.gz) = 2855e5e23463dc0d31e181a458d2018dbe80d163959c35a377fca88f5135690acbb36bff331b22d85015d8b03f290764aba13c9967c93f506c117f9900745fe9
 SHA512 (oslo_i18n-6.9.0.tar.gz.asc) = 536efa4d022ec6cd067faee4eadf746d0e84b6908f0a8b0cd369878f73291bf18ef77a746f7465ecb8da8d91b853be7e1eba39cff8ebb2a96f253e55fa28b585
+SHA512 (0x30566c450e41d7c91e442dfb231f942f608ddeff.txt) = 8a8ec343aa8a03aef957efde28c50454ddb911382c912189783ba0f49cd1b6f15fbe2506d30a167468f944ea970fdefe8eec4d2be2c5683c37be000babfb802d

^ permalink raw reply related	[flat|nested] 2+ messages in thread
* [rpms/python-oslo-i18n] rawhide: 6.9.0
@ 2026-07-10 16:10 Gwyn Ciesla
  0 siblings, 0 replies; 2+ messages in thread
From: Gwyn Ciesla @ 2026-07-10 16:10 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/python-oslo-i18n
Branch : rawhide
Commit : 3f118d377f1dfbabfce5b8ec6f72c12af0b08102
Author : Gwyn Ciesla <gwync@protonmail.com>
Date   : 2026-07-10T11:09:35-05:00
Stats  : +5/-41 in 4 file(s)
URL    : https://src.fedoraproject.org/rpms/python-oslo-i18n/c/3f118d377f1dfbabfce5b8ec6f72c12af0b08102?branch=rawhide

Log:
6.9.0

---
diff --git a/.gitignore b/.gitignore
index 1c7b7dd..0bfbd36 100644
--- a/.gitignore
+++ b/.gitignore
@@ -52,3 +52,5 @@
 /0x30566c450e41d7c91e442dfb231f942f608ddeff.txt
 /oslo_i18n-6.8.0.tar.gz
 /oslo_i18n-6.8.0.tar.gz.asc
+/oslo_i18n-6.9.0.tar.gz
+/oslo_i18n-6.9.0.tar.gz.asc

diff --git a/0001-_gettextutils-deduplicate-Babel-aliases-in-get_avail.patch b/0001-_gettextutils-deduplicate-Babel-aliases-in-get_avail.patch
deleted file mode 100644
index 3c66f7f..0000000
--- a/0001-_gettextutils-deduplicate-Babel-aliases-in-get_avail.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From a18d8136459ba6f600e0e2e5d5fe557a47f74aa6 Mon Sep 17 00:00:00 2001
-From: rpm-build <rpm-build>
-Date: Fri, 5 Jun 2026 09:49:31 +0000
-Subject: [PATCH] _gettextutils: deduplicate Babel aliases in
- get_available_languages
-
-locale.windows_locale.values() and _BABEL_ALIASES share short-form
-codes (e.g. 'it').  If a short code is already present from the
-windows_locale pass, the Babel alias extension appended it again,
-producing duplicates in the returned language list.
-
-Fix by skipping aliases already in language_list.
-
-Closes-Bug: #(TBD)
----
- oslo_i18n/_gettextutils.py | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/oslo_i18n/_gettextutils.py b/oslo_i18n/_gettextutils.py
-index 89793bc..3816355 100644
---- a/oslo_i18n/_gettextutils.py
-+++ b/oslo_i18n/_gettextutils.py
-@@ -119,7 +119,8 @@ def get_available_languages(domain: str) -> list[str]:
-         language for language in locale_identifiers if find(language)
-     )
-     language_list.extend(
--        alias for alias, _ in _BABEL_ALIASES.items() if find(alias)
-+        alias for alias, _ in _BABEL_ALIASES.items()
-+        if find(alias) and alias not in language_list
-     )
-
-     _AVAILABLE_LANGUAGES[domain] = language_list
--- 
-2.54.0
-

diff --git a/python-oslo-i18n.spec b/python-oslo-i18n.spec
index e12af6b..a8fc3df 100644
--- a/python-oslo-i18n.spec
+++ b/python-oslo-i18n.spec
@@ -11,7 +11,7 @@ The oslo.i18n library contain utilities for working with internationalization
 or library.}
 
 Name:           python-oslo-i18n
-Version:        6.8.0
+Version:        6.9.0
 Release:        %autorelease
 Summary:        OpenStack i18n library
 License:        Apache-2.0
@@ -23,8 +23,6 @@ Source101:        https://tarballs.openstack.org/%{pypi_name}/oslo_i18n-%{versio
 Source102:        https://releases.openstack.org/_static/%{sources_gpg_sign}.txt
 %endif
 
-# https://review.opendev.org/c/openstack/oslo.i18n/+/991846
-Patch0:         0001-_gettextutils-deduplicate-Babel-aliases-in-get_avail.patch
 # https://review.opendev.org/c/openstack/oslo.i18n/+/991849
 Patch1:         0001-tests-fix-TypeError-message-for-Python-3.15.patch
 

diff --git a/sources b/sources
index f4475aa..b4beaff 100644
--- a/sources
+++ b/sources
@@ -1,3 +1,2 @@
-SHA512 (0x30566c450e41d7c91e442dfb231f942f608ddeff.txt) = 8a8ec343aa8a03aef957efde28c50454ddb911382c912189783ba0f49cd1b6f15fbe2506d30a167468f944ea970fdefe8eec4d2be2c5683c37be000babfb802d
-SHA512 (oslo_i18n-6.8.0.tar.gz) = 3d4331265db6999dfce9f2ae14cf68667f1b1ec0351cb90f4b08e0e84054f24a6e13c8a66e001c1b61fb9f555d5b11a44f54b66b55778918781358afd22b3153
-SHA512 (oslo_i18n-6.8.0.tar.gz.asc) = 59e18fab80bb5d4ccaa18cb9648d811cc22c9358813487314d846ef28c16d0a4125328900b5c7ddc4e98040c0aca626dee8b163e17f40f7837b51695f4716e9f
+SHA512 (oslo_i18n-6.9.0.tar.gz) = 2855e5e23463dc0d31e181a458d2018dbe80d163959c35a377fca88f5135690acbb36bff331b22d85015d8b03f290764aba13c9967c93f506c117f9900745fe9
+SHA512 (oslo_i18n-6.9.0.tar.gz.asc) = 536efa4d022ec6cd067faee4eadf746d0e84b6908f0a8b0cd369878f73291bf18ef77a746f7465ecb8da8d91b853be7e1eba39cff8ebb2a96f253e55fa28b585

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-07-10 16:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-10 16:10 [rpms/python-oslo-i18n] rawhide: 6.9.0 Gwyn Ciesla
  -- strict thread matches above, loose matches on Subject: below --
2026-07-10 16:10 Gwyn Ciesla

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox