Hello community, here is the log from the commit of package mlterm for openSUSE:Factory checked in at 2016-03-26 15:27:46 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/mlterm (Old) and /work/SRC/openSUSE:Factory/.mlterm.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mlterm" Changes: -------- --- /work/SRC/openSUSE:Factory/mlterm/mlterm.changes 2015-12-17 15:54:57.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.mlterm.new/mlterm.changes 2016-03-26 15:27:49.000000000 +0100 @@ -1,0 +2,16 @@ +Wed Mar 23 11:02:00 UTC 2016 - [email protected] + +- Update to version 3.7.0 + * Support OSC 1337. (See http://www.iterm2.com/images.html) + * Add 'mlfc' tool which automatically generates ~/.mlterm/aafont and ~/.mlterm/font-fb. + * Change the format of ~/.mlterm/*font is changed as follows. + [Charset] = [Font name];[Size],[Font name];[Size],[Font name];... + -> [Charset] = [Font name] + * Drop XT_CBLINK (CSI?12h/CSI?12l) support. + * Simplify font configuration of OSC 5379. ('mlcc font USASCII <Font name>' is available.) + * "CSI 38;2;r;g;b m" and "CSI 48;2;r;g;b m" shows high colors instead of + approximate vt 256 colors. "vt_color_mode" / --vtcolor(=256/high/true) option + changes the behavior. +- Add mlterm-noreturn.patch to fix signature of non-returning function. + +------------------------------------------------------------------- Old: ---- mlterm-3.6.1.tar.gz New: ---- mlterm-3.7.0.tar.gz mlterm-noreturn.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ mlterm.spec ++++++ --- /var/tmp/diff_new_pack.3c66lR/_old 2016-03-26 15:27:50.000000000 +0100 +++ /var/tmp/diff_new_pack.3c66lR/_new 2016-03-26 15:27:50.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package mlterm # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2016 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 @@ -17,7 +17,7 @@ Name: mlterm -Version: 3.6.1 +Version: 3.7.0 Release: 0 Summary: Multilingual Terminal Emulator for X License: BSD-3-Clause @@ -32,6 +32,7 @@ Source10: %{name}.desktop Source11: %{name}.png Patch0: etc.patch +Patch1: mlterm-noreturn.patch BuildRequires: coreutils BuildRequires: fribidi-devel BuildRequires: gcc-c++ @@ -122,6 +123,8 @@ %prep %setup -q %patch0 +%patch1 -p1 + rm -rf doc/{en,ja}/*win32 %build @@ -198,9 +201,9 @@ %{_libdir}/mlterm/libind_malayalam.so %{_libdir}/mlterm/libind_oriya.so %{_libdir}/mlterm/libind_punjabi.so -%{_libdir}/mlterm/libind_roman.so %{_libdir}/mlterm/libind_tamil.so %{_libdir}/mlterm/libind_telugu.so +%{_libdir}/mlterm/libotl.so %{_libdir}/mlterm/mlterm/mlimgloader %dir %{_libdir}/mkf/ %{_libdir}/mkf/*.so ++++++ mlterm-3.6.1.tar.gz -> mlterm-3.7.0.tar.gz ++++++ ++++ 38629 lines of diff (skipped) ++++++ mlterm-noreturn.patch ++++++ Index: mlterm-3.7.0/xwindow/x_font_manager.c =================================================================== --- mlterm-3.7.0.orig/xwindow/x_font_manager.c +++ mlterm-3.7.0/xwindow/x_font_manager.c @@ -101,7 +101,7 @@ change_font_cache( return 1 ; } -static int +static void adjust_font_size( u_int * font_size )
