Hello community, here is the log from the commit of package xournal for openSUSE:Factory checked in at 2015-03-05 15:43:22 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/xournal (Old) and /work/SRC/openSUSE:Factory/.xournal.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xournal" Changes: -------- --- /work/SRC/openSUSE:Factory/xournal/xournal.changes 2015-03-03 11:15:49.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.xournal.new/xournal.changes 2015-03-05 18:17:22.000000000 +0100 @@ -1,0 +2,15 @@ +Tue Mar 3 17:27:02 UTC 2015 - [email protected] + +- Added some patches + * Missing German translation: xournal-german-translation.patch + * Window title format is corrected: xournal-Improve-window-title.patch +- incorrect-fsf-address warning is reported upstream (Bug #151) + +------------------------------------------------------------------- +Tue Mar 3 02:25:00 UTC 2015 - [email protected] + +- Updated to 0.4.8 +- removed outdated patch (now included in xournal) + * xournal-large-pen-cursor.patch + +------------------------------------------------------------------- Old: ---- xournal-0.4.7.tar.gz xournal-large-pen-cursor.patch New: ---- xournal-0.4.8.tar.gz xournal-Improve-window-title.patch xournal-german-translation.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ xournal.spec ++++++ --- /var/tmp/diff_new_pack.1KF6ai/_old 2015-03-05 18:17:23.000000000 +0100 +++ /var/tmp/diff_new_pack.1KF6ai/_new 2015-03-05 18:17:23.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package xournal # -# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 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 @@ -18,7 +18,7 @@ Name: xournal Url: http://math.mit.edu/~auroux/software/xournal/ -Version: 0.4.7 +Version: 0.4.8 Release: 0 Summary: An application for notetaking, sketching, and keeping a journal using a stylus License: GPL-2.0+ @@ -26,13 +26,14 @@ Source: %{name}-%{version}.tar.gz Source1: %{name}.desktop Source2: %{name}.png -Patch0: %{name}-large-pen-cursor.patch -Patch1: %{name}-implicit-funcs.patch +Patch0: %{name}-implicit-funcs.patch +#reported already upstream -> is fixed in git +Patch1: %{name}-german-translation.patch +Patch2: %{name}-Improve-window-title.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: automake BuildRequires: gtk2-devel BuildRequires: libgnomecanvas-devel -#BuildRequires: libgnomeprintui-devel BuildRequires: libpoppler-glib-devel %if 0%{?suse_version} BuildRequires: update-desktop-files @@ -49,6 +50,7 @@ %setup %patch0 -p1 %patch1 -p1 +%patch2 -p1 %build autoreconf -fi @@ -56,16 +58,16 @@ make %{_smp_mflags} %install -make DESTDIR=$RPM_BUILD_ROOT install -install -D -m 0644 %{SOURCE1} $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop -install -D -m 0644 %{SOURCE2} $RPM_BUILD_ROOT%{_datadir}/pixmaps/%{name}.png +make DESTDIR=%{buildroot} install +install -D -m 0644 %{SOURCE1} %{buildroot}/%{_datadir}/applications/%{name}.desktop +install -D -m 0644 %{SOURCE2} %{buildroot}/%{_datadir}/pixmaps/%{name}.png %if 0%{?suse_version} %suse_update_desktop_file %{name} %endif %find_lang %{name} %clean -rm -rf $RPM_BUILD_ROOT +rm -rf %buildroot %files -f %{name}.lang %defattr(-, root, root) ++++++ xournal-0.4.7.tar.gz -> xournal-0.4.8.tar.gz ++++++ ++++ 21011 lines of diff (skipped) ++++++ xournal-Improve-window-title.patch ++++++ >From b0d19f6945477bac922767d12a3c57a6e80cebe3 Mon Sep 17 00:00:00 2001 From: Michael Walter <[email protected]> Date: Wed, 10 Dec 2014 23:05:36 -0800 Subject: [PATCH] Improve window title (file name before program name). --- src/xo-misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xo-misc.c b/src/xo-misc.c index 335759b..25f83c2 100644 --- a/src/xo-misc.c +++ b/src/xo-misc.c @@ -1635,7 +1635,7 @@ void update_file_name(char *filename) return; } p = xo_basename(filename, FALSE); - g_snprintf(tmp, 100, _("Xournal - %s"), p); + g_snprintf(tmp, 100, _("%s - Xournal"), p); gtk_window_set_title(GTK_WINDOW (winMain), tmp); new_mru_entry(filename); -- 1.9.4.msysgit.0 ++++++ xournal-german-translation.patch ++++++ ++++ 1762 lines (skipped) -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
