Hello community, here is the log from the commit of package lxterminal for openSUSE:Factory checked in at 2018-01-13 21:49:08 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/lxterminal (Old) and /work/SRC/openSUSE:Factory/.lxterminal.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "lxterminal" Sat Jan 13 21:49:08 2018 rev:30 rq:563868 version:0.3.1 Changes: -------- --- /work/SRC/openSUSE:Factory/lxterminal/lxterminal.changes 2017-01-12 15:56:09.824718389 +0100 +++ /work/SRC/openSUSE:Factory/.lxterminal.new/lxterminal.changes 2018-01-13 21:49:09.145865054 +0100 @@ -1,0 +2,9 @@ +Wed Jan 10 16:32:25 UTC 2018 - [email protected] + +- new upstream version 0.3.1: + * Fix CVE-2016-10369, a Denial-of-Service vulnerability. (boo#1038127) + * Fix bug that prevents changing tab name, which is introduced since 0.3.0. + * The keyboard shortcut can be changed by pressing key combinations. +- added lxterminal-0.3.1-return-value-unixterminal.patch to fix compiler warnings + +------------------------------------------------------------------- Old: ---- lxterminal-0.3.0.tar.xz New: ---- lxterminal-0.3.1-return-value-unixterminal.patch lxterminal-0.3.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ lxterminal.spec ++++++ --- /var/tmp/diff_new_pack.Hlkgkv/_old 2018-01-13 21:49:09.829833165 +0100 +++ /var/tmp/diff_new_pack.Hlkgkv/_new 2018-01-13 21:49:09.833832978 +0100 @@ -1,7 +1,7 @@ # # spec file for package lxterminal # -# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2018 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,45 +17,46 @@ Name: lxterminal -Version: 0.3.0 +Version: 0.3.1 Release: 0 Summary: Lightweight LXDE Terminal License: GPL-2.0 Group: System/GUI/LXDE Url: http://www.lxde.org/ -Source0: %name-%version.tar.xz +Source0: %{name}-%{version}.tar.xz # PATCH-FEATURE-OPENSUSE lxterminal-0.1.8-disable-f10.patch [email protected] # disable f10 shortcut because yast use it -Patch0: %name-0.1.8-disable-f10.patch -BuildRoot: %{_tmppath}/%{name}-%{version}-build +Patch0: %{name}-0.1.8-disable-f10.patch +Patch1: lxterminal-0.3.1-return-value-unixterminal.patch BuildRequires: docbook-utils BuildRequires: docbook-xsl-stylesheets BuildRequires: fdupes BuildRequires: gtk2-devel BuildRequires: intltool BuildRequires: libxslt-devel -BuildRequires: pkg-config +BuildRequires: pkgconfig BuildRequires: update-desktop-files BuildRequires: vte2-devel -Recommends: %name-lang +Recommends: %{name}-lang %description LXTerminal is a lightweight Terminal Emulator. This package even if DE independent is part of the LXDE project. - %lang_package + %prep %setup -q %patch0 -p1 +%patch1 -p1 %build %configure --enable-man -%__make %{?jobs:-j%jobs} V=1 +make %{?_smp_mflags} V=1 %install -%makeinstall +%make_install %suse_update_desktop_file %{name} System %find_lang %{name} %fdupes -s %{buildroot} @@ -67,7 +68,6 @@ %desktop_database_postun %files -%defattr(-,root,root,0755) %doc COPYING %{_bindir}/%{name} %{_datadir}/applications/lxterminal.desktop @@ -75,8 +75,8 @@ %{_datadir}/lxterminal/lxterminal.conf %{_datadir}/lxterminal/*.ui %{_datadir}/icons/hicolor/128x128/apps/lxterminal.png -%{_mandir}/man1/lxterminal.1.gz +%{_mandir}/man1/lxterminal.1%{ext_man} -%files lang -f %name.lang +%files lang -f %{name}.lang %changelog ++++++ lxterminal-0.3.1-return-value-unixterminal.patch ++++++ >From fa3542ae702884c59dc2a1df9da22b9b939d5db8 Mon Sep 17 00:00:00 2001 From: Mamoru TASAKA <[email protected]> Date: Wed, 8 Nov 2017 15:00:05 +0900 Subject: [PATCH] Properly set return value for lxterminal_socket_initialize Fixes #40 #41 --- src/unixsocket.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unixsocket.c b/src/unixsocket.c index b813f52..1874399 100644 --- a/src/unixsocket.c +++ b/src/unixsocket.c @@ -263,5 +263,5 @@ static gboolean handle_request(GIOChannel* gio, GIOCondition condition, ClientIn } gboolean lxterminal_socket_initialize(LXTermWindow* lxtermwin, gint argc, gchar** argv) { - init(lxtermwin, argc, argv); + return init(lxtermwin, argc, argv); } ++++++ lxterminal-0.3.0.tar.xz -> lxterminal-0.3.1.tar.xz ++++++ ++++ 33762 lines of diff (skipped)
