From 073b690e45717499b042a42e06630c0a50d2549d Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Tue, 3 Apr 2012 11:19:38 -0600 Subject: [PATCH] - Fix first day of week for lv_LV (#682500) --- glibc-rh682500.patch | 22 ++++++++++++++++++++++ glibc.spec | 8 +++++++- 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 glibc-rh682500.patch diff --git a/glibc-rh682500.patch b/glibc-rh682500.patch new file mode 100644 index 0000000..93dac2d --- /dev/null +++ b/glibc-rh682500.patch @@ -0,0 +1,22 @@ +2012-04-03 Jeff Law + + * locales/lv_LV: Fix first_weekday and first_workday. + +diff -rup c/localedata/locales/lv_LV d/localedata/locales/lv_LV +--- c/localedata/locales/lv_LV 2012-01-01 05:16:32.000000000 -0700 ++++ d/localedata/locales/lv_LV 2012-04-03 11:13:40.590928949 -0600 +@@ -2183,6 +2183,14 @@ t_fmt_ampm "" + date_fmt "/ + / + " ++ ++% Define the first day of the week to be displayed in a calendar. ++% This weekday is relative to the date defined in the keyword. ++first_weekday 2 ++ ++% Define the first workday relative to the keyword ++first_workday 2 ++ + END LC_TIME + + LC_MESSAGES diff --git a/glibc.spec b/glibc.spec index 7b2fd42..a965185 100644 --- a/glibc.spec +++ b/glibc.spec @@ -28,7 +28,7 @@ Summary: The GNU libc libraries Name: glibc Version: %{glibcversion} -Release: 31%{?dist} +Release: 32%{?dist} # GPLv2+ is used in a bunch of programs, LGPLv2+ is used for libraries. # Things that are linked directly into dynamically linked programs # and shared libraries (e.g. crt files, lib*_nonshared.a) have an additional @@ -129,6 +129,8 @@ Patch47 : %{name}-rh806070.patch Patch48 : %{name}-rh804792.patch # Submitted upstream (BZ 13939) Patch49 : %{name}-rh789238-2.patch +# Submitted upstream +Patch50 : %{name}-rh682500.patch Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -397,6 +399,7 @@ rm -rf %{glibcportsdir} %patch47 -p1 %patch48 -p1 %patch49 -p1 +%patch50 -p1 # A lot of programs still misuse memcpy when they have to use # memmove. The memcpy implementation below is not tolerant at @@ -1249,6 +1252,9 @@ rm -f *.filelist* %endif %changelog +* Tue Apr 3 2012 Jeff Law - 2.15-32 + - Fix first day of week for lv_LV (#682500) + * Mon Apr 2 2012 Jeff Law - 2.15-31 - When retrying after main arena failure, always retry in a different arena. (#789238)