Use full locale names in langpack descriptions (#1651375)
This commit is contained in:
parent
46d12a81bf
commit
64db3acbd3
18
convnames.py
Executable file
18
convnames.py
Executable file
@ -0,0 +1,18 @@
|
|||||||
|
#!/usr/bin/python3
|
||||||
|
# This code is called by glibc.spec via lua to generate the mapping
|
||||||
|
# from language code to language name. The code uses langtable to
|
||||||
|
# do the mapping. The information in langtable is a harmonization
|
||||||
|
# of CLDR and glibc lang_name data.
|
||||||
|
import sys
|
||||||
|
try:
|
||||||
|
import langtable
|
||||||
|
except ImportError:
|
||||||
|
# if the import fails, don't translate anything
|
||||||
|
langtable = None
|
||||||
|
|
||||||
|
for lang in sys.argv[1:]:
|
||||||
|
if langtable:
|
||||||
|
name = langtable.language_name(languageId=lang, languageIdQuery='en')
|
||||||
|
print(name or lang)
|
||||||
|
else:
|
||||||
|
print(lang)
|
40
glibc.spec
40
glibc.spec
@ -87,7 +87,7 @@
|
|||||||
Summary: The GNU libc libraries
|
Summary: The GNU libc libraries
|
||||||
Name: glibc
|
Name: glibc
|
||||||
Version: %{glibcversion}
|
Version: %{glibcversion}
|
||||||
Release: 9%{?dist}
|
Release: 10%{?dist}
|
||||||
|
|
||||||
# In general, GPLv2+ is used by programs, LGPLv2+ is used for
|
# In general, GPLv2+ is used by programs, LGPLv2+ is used for
|
||||||
# libraries.
|
# libraries.
|
||||||
@ -125,9 +125,13 @@ Source3: glibc-bench-compare
|
|||||||
# SUPPORTED file is used below to generate the list of locale
|
# SUPPORTED file is used below to generate the list of locale
|
||||||
# packages, using a Lua snippet.
|
# packages, using a Lua snippet.
|
||||||
Source11: SUPPORTED
|
Source11: SUPPORTED
|
||||||
|
|
||||||
# Include in the source RPM for reference.
|
# Include in the source RPM for reference.
|
||||||
Source12: ChangeLog.old
|
Source12: ChangeLog.old
|
||||||
|
# Provide ISO language code to name translation using Python's
|
||||||
|
# langtable. The langtable data is maintained by the Fedora
|
||||||
|
# i18n team and is a harmonization of CLDR and glibc lang_name
|
||||||
|
# data in a more accessible API (also used by Anaconda).
|
||||||
|
Source13: convnames.py
|
||||||
|
|
||||||
##############################################################################
|
##############################################################################
|
||||||
# Patches:
|
# Patches:
|
||||||
@ -212,6 +216,7 @@ BuildRequires: systemd
|
|||||||
# distributions, python3 does not actually install /usr/bin/python3,
|
# distributions, python3 does not actually install /usr/bin/python3,
|
||||||
# so we also depend on python3-devel.
|
# so we also depend on python3-devel.
|
||||||
BuildRequires: python3 python3-devel
|
BuildRequires: python3 python3-devel
|
||||||
|
BuildRequires: python3dist(langtable)
|
||||||
|
|
||||||
# This GCC version is needed for -fstack-clash-protection support.
|
# This GCC version is needed for -fstack-clash-protection support.
|
||||||
BuildRequires: gcc >= 7.2.1-6
|
BuildRequires: gcc >= 7.2.1-6
|
||||||
@ -455,6 +460,25 @@ do
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- Compute the language names
|
||||||
|
local langnames = {}
|
||||||
|
local python3 = io.open('/usr/bin/python3', 'r')
|
||||||
|
if python3 then
|
||||||
|
python3:close()
|
||||||
|
local args = table.concat(languages, ' ')
|
||||||
|
local file = io.popen(rpm.expand("%{SOURCE13}") .. ' ' .. args)
|
||||||
|
while true do
|
||||||
|
line = file:read()
|
||||||
|
if line == nil then break end
|
||||||
|
langnames[#langnames + 1] = line
|
||||||
|
end
|
||||||
|
file:close()
|
||||||
|
else
|
||||||
|
for i = 1, #languages do
|
||||||
|
langnames[#langnames + 1] = languages[i]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
-- Compute the Supplements: list for a language, based on the regions.
|
-- Compute the Supplements: list for a language, based on the regions.
|
||||||
local function compute_supplements(lang)
|
local function compute_supplements(lang)
|
||||||
result = "langpacks-core-" .. lang
|
result = "langpacks-core-" .. lang
|
||||||
@ -468,13 +492,13 @@ local function compute_supplements(lang)
|
|||||||
end
|
end
|
||||||
|
|
||||||
-- Emit the definition of a language pack package.
|
-- Emit the definition of a language pack package.
|
||||||
local function lang_package(lang)
|
local function lang_package(lang, langname)
|
||||||
local suppl = compute_supplements(lang)
|
local suppl = compute_supplements(lang)
|
||||||
print(rpm.expand([[
|
print(rpm.expand([[
|
||||||
|
|
||||||
%package langpack-]]..lang..[[
|
%package langpack-]]..lang..[[
|
||||||
|
|
||||||
Summary: Locale data for ]]..lang..[[
|
Summary: Locale data for ]]..langname..[[
|
||||||
|
|
||||||
Provides: glibc-langpack = %{version}-%{release}
|
Provides: glibc-langpack = %{version}-%{release}
|
||||||
Requires: %{name} = %{version}-%{release}
|
Requires: %{name} = %{version}-%{release}
|
||||||
@ -483,7 +507,7 @@ Supplements: (glibc and (]]..suppl..[[))
|
|||||||
%description langpack-]]..lang..[[
|
%description langpack-]]..lang..[[
|
||||||
|
|
||||||
The glibc-langpack-]]..lang..[[ package includes the basic information required
|
The glibc-langpack-]]..lang..[[ package includes the basic information required
|
||||||
to support the ]]..lang..[[ language in your applications.
|
to support the ]]..langname..[[ language in your applications.
|
||||||
%ifnarch %{auxarches}
|
%ifnarch %{auxarches}
|
||||||
%files -f langpack-]]..lang..[[.filelist langpack-]]..lang..[[
|
%files -f langpack-]]..lang..[[.filelist langpack-]]..lang..[[
|
||||||
|
|
||||||
@ -492,7 +516,7 @@ to support the ]]..lang..[[ language in your applications.
|
|||||||
end
|
end
|
||||||
|
|
||||||
for i = 1, #languages do
|
for i = 1, #languages do
|
||||||
lang_package(languages[i])
|
lang_package(languages[i], langnames[i])
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2011,6 +2035,9 @@ fi
|
|||||||
%files -f compat-libpthread-nonshared.filelist -n compat-libpthread-nonshared
|
%files -f compat-libpthread-nonshared.filelist -n compat-libpthread-nonshared
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Sep 27 2019 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.30.9000-10
|
||||||
|
- Use full locale names in langpack descriptions (#1651375)
|
||||||
|
|
||||||
* Thu Sep 26 2019 Patsy Franklin <patsy@redhat.com> - 2.30.9000-9
|
* Thu Sep 26 2019 Patsy Franklin <patsy@redhat.com> - 2.30.9000-9
|
||||||
- Auto-sync with upstream branch master,
|
- Auto-sync with upstream branch master,
|
||||||
commit 464cd3a9d5f505d92bae9a941bb75b0d91ac14ee.
|
commit 464cd3a9d5f505d92bae9a941bb75b0d91ac14ee.
|
||||||
@ -2048,7 +2075,6 @@ fi
|
|||||||
- Fix three GNU license URLs, along with trailing-newline issues.
|
- Fix three GNU license URLs, along with trailing-newline issues.
|
||||||
- Prefer https to http for gnu.org and fsf.org URLs
|
- Prefer https to http for gnu.org and fsf.org URLs
|
||||||
|
|
||||||
|
|
||||||
* Fri Sep 06 2019 Patsy Franklin <patsy@redhat.com> - 2.30.9000-6
|
* Fri Sep 06 2019 Patsy Franklin <patsy@redhat.com> - 2.30.9000-6
|
||||||
- Auto-sync with upstream branch master,
|
- Auto-sync with upstream branch master,
|
||||||
commit 1b7f04070bd94f259e2ed24d6fb76309d64fb164.
|
commit 1b7f04070bd94f259e2ed24d6fb76309d64fb164.
|
||||||
|
Loading…
Reference in New Issue
Block a user