Hello community, here is the log from the commit of package gnome-desktop for openSUSE:Factory checked in at 2020-06-22 17:42:28 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnome-desktop (Old) and /work/SRC/openSUSE:Factory/.gnome-desktop.new.2956 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-desktop" Mon Jun 22 17:42:28 2020 rev:158 rq:814836 version:3.36.3.1 Changes: -------- --- /work/SRC/openSUSE:Factory/gnome-desktop/gnome-desktop.changes 2020-05-02 22:15:14.500272623 +0200 +++ /work/SRC/openSUSE:Factory/.gnome-desktop.new.2956/gnome-desktop.changes 2020-06-22 17:42:47.473247472 +0200 @@ -1,0 +2,12 @@ +Mon Jun 15 12:05:07 UTC 2020 - Bjørn Lie <[email protected]> + +- Update to version 3.36.3.1: + + Bump meson version. +- Changes from version 3.36.3: + + Thumbnails: keep the original file name + + Fix encoding issue when translating locale modifiers + + Update wallclock reftest expectations + + Update Hebrew wallclock expectation + + Updated translations. + +------------------------------------------------------------------- Old: ---- gnome-desktop-3.36.2.tar.xz New: ---- gnome-desktop-3.36.3.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnome-desktop.spec ++++++ --- /var/tmp/diff_new_pack.Xtidct/_old 2020-06-22 17:42:48.633251195 +0200 +++ /var/tmp/diff_new_pack.Xtidct/_new 2020-06-22 17:42:48.637251208 +0200 @@ -17,7 +17,7 @@ Name: gnome-desktop -Version: 3.36.2 +Version: 3.36.3.1 Release: 0 Summary: The GNOME Desktop API Library License: LGPL-2.1-or-later ++++++ gnome-desktop-3.36.2.tar.xz -> gnome-desktop-3.36.3.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-desktop-3.36.2/NEWS new/gnome-desktop-3.36.3.1/NEWS --- old/gnome-desktop-3.36.2/NEWS 2020-04-29 03:53:29.031934000 +0200 +++ new/gnome-desktop-3.36.3.1/NEWS 2020-06-14 23:18:25.478147000 +0200 @@ -1,4 +1,14 @@ =============== +Version 3.36.3 +=============== + +- thumbnails: keep the orignal file name +- Fix encoding issue when translating locale modifiers +- Update wallclock reftest expectations +- Update Hebrew wallclock expectation +- Translation updates + +=============== Version 3.36.2 =============== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-desktop-3.36.2/libgnome-desktop/gnome-desktop-thumbnail-script.c new/gnome-desktop-3.36.3.1/libgnome-desktop/gnome-desktop-thumbnail-script.c --- old/gnome-desktop-3.36.2/libgnome-desktop/gnome-desktop-thumbnail-script.c 2020-04-29 03:53:29.071934200 +0200 +++ new/gnome-desktop-3.36.3.1/libgnome-desktop/gnome-desktop-thumbnail-script.c 2020-06-14 23:18:25.495147200 +0200 @@ -141,21 +141,6 @@ NULL); } -static char * -get_extension (const char *path) -{ - g_autofree char *basename = NULL; - char *p; - - basename = g_path_get_basename (path); - p = strrchr (basename, '.'); - if (g_file_test (path, G_FILE_TEST_IS_DIR) || - !p || - p == basename) /* Leading periods on the basename are ignored. */ - return NULL; - return g_strdup (p + 1); -} - #ifdef ENABLE_SECCOMP static gboolean flatpak_fail (GError **error, @@ -784,8 +769,8 @@ if (exec->sandbox) { char *tmpl; - g_autofree char *ext = NULL; - g_autofree char *infile = NULL; + const char *infile; + g_autofree char *basename = NULL; exec->fd_array = g_array_new (FALSE, TRUE, sizeof (int)); g_array_set_clear_func (exec->fd_array, clear_fd); @@ -799,12 +784,12 @@ goto bail; } exec->outfile = g_build_filename (exec->outdir, "gnome-desktop-thumbnailer.png", NULL); - ext = get_extension (exec->infile); + basename = g_file_get_basename (file); - if (ext) - infile = g_strdup_printf ("gnome-desktop-file-to-thumbnail.%s", ext); + if (basename) + infile = basename; else - infile = g_strdup_printf ("gnome-desktop-file-to-thumbnail"); + infile = "gnome-desktop-file-to-thumbnail"; exec->infile_tmp = g_build_filename (exec->outdir, infile, NULL); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-desktop-3.36.2/libgnome-desktop/gnome-languages.c new/gnome-desktop-3.36.3.1/libgnome-desktop/gnome-languages.c --- old/gnome-desktop-3.36.2/libgnome-desktop/gnome-languages.c 2020-04-29 03:53:29.072934200 +0200 +++ new/gnome-desktop-3.36.3.1/libgnome-desktop/gnome-languages.c 2020-06-14 23:18:25.496147400 +0200 @@ -1021,6 +1021,9 @@ if (gnome_languages_map) return; + bindtextdomain (GETTEXT_PACKAGE, GNOMELOCALEDIR); + bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); + gnome_languages_map = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free); languages_variant_init ("iso_639"); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-desktop-3.36.2/meson.build new/gnome-desktop-3.36.3.1/meson.build --- old/gnome-desktop-3.36.2/meson.build 2020-04-29 03:53:29.078934200 +0200 +++ new/gnome-desktop-3.36.3.1/meson.build 2020-06-14 23:18:25.498147500 +0200 @@ -1,6 +1,6 @@ project('gnome-desktop', 'c', meson_version: '>= 0.49.0', - version: '3.36.2', + version: '3.36.3.1', license: ['GPL2+', 'LGPL2+'] ) @@ -14,7 +14,7 @@ # to 0. When bumping the second version, set the third one to zero. # # A lot easier than libtool, right? -libversion = '19.0.2' +libversion = '19.0.3' soversion = libversion.split('.')[0] gdk_pixbuf_req = '>= 2.36.5' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-desktop-3.36.2/po/he.po new/gnome-desktop-3.36.3.1/po/he.po --- old/gnome-desktop-3.36.2/po/he.po 2020-04-29 03:53:29.088934200 +0200 +++ new/gnome-desktop-3.36.3.1/po/he.po 2020-06-14 23:18:25.503147400 +0200 @@ -10,8 +10,8 @@ msgstr "" "Project-Id-Version: gnome-desktop.HEAD.he\n" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-desktop/issues\n" -"POT-Creation-Date: 2020-03-26 09:36+0000\n" -"PO-Revision-Date: 2020-03-31 00:03+0300\n" +"POT-Creation-Date: 2020-03-31 21:13+0000\n" +"PO-Revision-Date: 2020-05-14 21:34+0300\n" "Last-Translator: Yosef Or Boczko <[email protected]>\n" "Language-Team: Hebrew <[email protected]>\n" "Language: he\n" @@ -19,7 +19,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Gtranslator 3.36.0\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n>2||n==0) ? 1 : 2\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" #: libgnome-desktop/gnome-languages.c:717 msgid "Unspecified" @@ -146,27 +146,23 @@ #. plus day used in 24-hour mode. Please keep the under- #. score to separate the date from the time. #: libgnome-desktop/gnome-wall-clock.c:330 -#| msgid "%a %b %e, %R:%S" msgid "%a %b %-e_%R:%S" -msgstr "%a ה־%-e ב%b_%R:%S" +msgstr "%a %-e ב%b_%R:%S" #: libgnome-desktop/gnome-wall-clock.c:331 -#| msgid "%a %b %e, %R" msgid "%a %b %-e_%R" -msgstr "%a ה־%-e ב%b_%R" +msgstr "%a %-e ב%b_%R" #. Translators: This is the time format with full date #. used in 24-hour mode. Please keep the underscore to #. separate the date from the time. #: libgnome-desktop/gnome-wall-clock.c:336 -#| msgid "%a %b %e, %R:%S" msgid "%b %-e_%R:%S" -msgstr "ה־%-e ב%b_%R:%S" +msgstr "%-e ב%b_%R:%S" #: libgnome-desktop/gnome-wall-clock.c:337 -#| msgid "%a %b %e, %R" msgid "%b %-e_%R" -msgstr "ה־%-e ב%b_%R" +msgstr "%-e ב%b_%R" #. Translators: This is the time format with day used #. in 24-hour mode. @@ -192,27 +188,23 @@ #. plus day used for AM/PM. Please keep the under- #. score to separate the date from the time. #: libgnome-desktop/gnome-wall-clock.c:355 -#| msgid "%a %b %e, %l:%M:%S %p" msgid "%a %b %-e_%l:%M:%S %p" -msgstr "%a ה־%-e ב%b_%l:%M:%S %p" +msgstr "%a %-e ב%b_%l:%M:%S %p" #: libgnome-desktop/gnome-wall-clock.c:356 -#| msgid "%a %b %e, %l:%M %p" msgid "%a %b %-e_%l:%M %p" -msgstr "%a ה־%-e ב%b_%l:%M %p" +msgstr "%a %-e ב%b_%l:%M %p" #. Translators: This is a time format with full date #. used for AM/PM. Please keep the underscore to #. separate the date from the time. #: libgnome-desktop/gnome-wall-clock.c:361 -#| msgid "%a %b %e, %l:%M:%S %p" msgid "%b %-e_%l:%M:%S %p" -msgstr "ה־%-e ב%b_%l:%M:%S %p" +msgstr "%-e ב%b_%l:%M:%S %p" #: libgnome-desktop/gnome-wall-clock.c:362 -#| msgid "%a %b %e, %l:%M %p" msgid "%b %-e_%l:%M %p" -msgstr "ה־%-e ב%b_%l:%M %p" +msgstr "%-e ב%b_%l:%M %p" #. Translators: This is a time format with day used #. for AM/PM. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-desktop-3.36.2/po/zh_TW.po new/gnome-desktop-3.36.3.1/po/zh_TW.po --- old/gnome-desktop-3.36.2/po/zh_TW.po 2020-04-29 03:53:29.098934200 +0200 +++ new/gnome-desktop-3.36.3.1/po/zh_TW.po 2020-06-14 23:18:25.509147600 +0200 @@ -17,7 +17,7 @@ msgstr "" "Project-Id-Version: gnome-desktop 2.91.4\n" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-desktop/issues\n" -"POT-Creation-Date: 2019-11-08 01:19+0000\n" +"POT-Creation-Date: 2020-05-23 23:17+0000\n" "PO-Revision-Date: 2019-11-23 14:45+0800\n" "Last-Translator: pan93412 <[email protected]>\n" "Language-Team: Chinese <[email protected]>\n" @@ -35,63 +35,63 @@ #. TRANSLATORS: Used to distinguish the labels representing the gez_ER #. and gez_ET locales from gez_ER@abegede respective gez_ET@abegede. The #. difference is related to collation. -#: libgnome-desktop/gnome-languages.c:1379 +#: libgnome-desktop/gnome-languages.c:1382 msgid "Abegede" msgstr "Abegede" #. TRANSLATORS: Used to distinguish Cyrillic from Latin written language variants. -#: libgnome-desktop/gnome-languages.c:1381 +#: libgnome-desktop/gnome-languages.c:1384 msgid "Cyrillic" msgstr "西里爾字母" #. TRANSLATORS: Also known as "Nagari", a written variant for many languages #. of the Indian subcontinent. See: #. https://en.wikipedia.org/wiki/Devanagari -#: libgnome-desktop/gnome-languages.c:1385 +#: libgnome-desktop/gnome-languages.c:1388 msgid "Devanagari" msgstr "天城文" #. TRANSLATORS: Used to distinguish the label representing the tt_RU #. locale from tt_RU@iqtelif. It's a special alphabet for Tatar. -#: libgnome-desktop/gnome-languages.c:1388 +#: libgnome-desktop/gnome-languages.c:1391 msgid "IQTElif" msgstr "IQTElif" #. TRANSLATORS: The alphabet/script, not the language. Used to distinguish #. Latin from Cyrillic written language variants. -#: libgnome-desktop/gnome-languages.c:1391 +#: libgnome-desktop/gnome-languages.c:1394 msgid "Latin" msgstr "拉丁文" #. TRANSLATORS: "Saho" is a variant of the Afar language. Used to #. distinguish the label representing the aa_ER locale from aa_ER@saaho. -#: libgnome-desktop/gnome-languages.c:1394 +#: libgnome-desktop/gnome-languages.c:1397 msgid "Saho" msgstr "Saho" #. TRANSLATORS: "Valencia" is a dialect of the Catalan language spoken #. in Valencia. Used to distinguish the label representing the ca_ES #. locale from ca_ES@valencia. -#: libgnome-desktop/gnome-languages.c:1398 +#: libgnome-desktop/gnome-languages.c:1401 msgid "Valencia" msgstr "巴倫西亞語" -#: libgnome-desktop/gnome-rr-config.c:757 +#: libgnome-desktop/gnome-rr-config.c:754 #, c-format msgid "CRTC %d cannot drive output %s" msgstr "CRTC %d 不能驅動輸出裝置 %s" -#: libgnome-desktop/gnome-rr-config.c:764 +#: libgnome-desktop/gnome-rr-config.c:761 #, c-format msgid "output %s does not support mode %dx%d@%dHz" msgstr "輸出裝置 %s 不支援模式 %dx%d@%dHz" -#: libgnome-desktop/gnome-rr-config.c:775 +#: libgnome-desktop/gnome-rr-config.c:772 #, c-format msgid "CRTC %d does not support rotation=%d" msgstr "CRTC %d 不支援 rotation=%d" -#: libgnome-desktop/gnome-rr-config.c:788 +#: libgnome-desktop/gnome-rr-config.c:785 #, c-format msgid "" "output %s does not have the same parameters as another cloned output:\n" @@ -104,22 +104,22 @@ "現有的坐標 = (%d, %d),新的坐標 = (%d, %d)\n" "現有的旋轉 = %d,新的旋轉 = %d" -#: libgnome-desktop/gnome-rr-config.c:803 +#: libgnome-desktop/gnome-rr-config.c:800 #, c-format msgid "cannot clone to output %s" msgstr "不能複製到輸出裝置 %s" -#: libgnome-desktop/gnome-rr-config.c:929 +#: libgnome-desktop/gnome-rr-config.c:926 #, c-format msgid "Trying modes for CRTC %d\n" msgstr "正在嘗試 CRTC %d 的模式\n" -#: libgnome-desktop/gnome-rr-config.c:953 +#: libgnome-desktop/gnome-rr-config.c:950 #, c-format msgid "CRTC %d: trying mode %dx%d@%dHz with output at %dx%d@%dHz (pass %d)\n" msgstr "CRTC %d:正在嘗試模式 %dx%d@%dHz 於輸出裝置 %dx%d@%dHz (通過 %d)\n" -#: libgnome-desktop/gnome-rr-config.c:1000 +#: libgnome-desktop/gnome-rr-config.c:997 #, c-format msgid "" "could not assign CRTCs to outputs:\n" @@ -128,7 +128,7 @@ "無法指派 CRTC 給輸出裝置:\n" "%s" -#: libgnome-desktop/gnome-rr-config.c:1004 +#: libgnome-desktop/gnome-rr-config.c:1001 #, c-format msgid "" "none of the selected modes were compatible with the possible modes:\n" @@ -140,7 +140,7 @@ #. Translators: the "requested", "minimum", and #. * "maximum" words here are not keywords; please #. * translate them as usual. -#: libgnome-desktop/gnome-rr-config.c:1085 +#: libgnome-desktop/gnome-rr-config.c:1082 #, c-format msgid "" "required virtual size does not fit available size: requested=(%d, %d), " @@ -175,7 +175,7 @@ #. in 24-hour mode. #: libgnome-desktop/gnome-wall-clock.c:341 msgid "%a %R:%S" -msgstr "%A %R∶%S" +msgstr "%A %R:%S" #: libgnome-desktop/gnome-wall-clock.c:342 msgid "%a %R" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-desktop-3.36.2/tests/he_IL.utf8.ref.ui new/gnome-desktop-3.36.3.1/tests/he_IL.utf8.ref.ui --- old/gnome-desktop-3.36.2/tests/he_IL.utf8.ref.ui 2020-04-29 03:53:29.099934300 +0200 +++ new/gnome-desktop-3.36.3.1/tests/he_IL.utf8.ref.ui 2020-06-14 23:18:25.510147600 +0200 @@ -9,7 +9,7 @@ <object class="GtkLabel" id="label1"> <property name="visible">True</property> <property name="can_focus">False</property> - <property name="label" translatable="yes">ד' מאי 28 23∶59∶59</property> + <property name="label" translatable="yes">ד' 28 במאי 23∶59∶59</property> </object> </child> </object>
