Hello community, here is the log from the commit of package multitail for openSUSE:Factory checked in at 2018-02-07 18:42:58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/multitail (Old) and /work/SRC/openSUSE:Factory/.multitail.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "multitail" Wed Feb 7 18:42:58 2018 rev:14 rq:573728 version:6.4.2 Changes: -------- --- /work/SRC/openSUSE:Factory/multitail/multitail.changes 2015-08-23 17:44:53.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.multitail.new/multitail.changes 2018-02-07 18:43:03.303570698 +0100 @@ -1,0 +2,11 @@ +Wed Feb 7 05:45:03 UTC 2018 - [email protected] + +- Update to 6.4.2 + * Marker-line, tabs and allow to map delete as backspace +- use https urls +- cleanup with spec-cleaner +- other spec cleanups + * simplify install + * remove no no longer needed sed and chmod + +------------------------------------------------------------------- Old: ---- multitail-6.4.1.tgz New: ---- multitail-6.4.2.tgz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ multitail.spec ++++++ --- /var/tmp/diff_new_pack.IuD9eE/_old 2018-02-07 18:43:04.095533617 +0100 +++ /var/tmp/diff_new_pack.IuD9eE/_new 2018-02-07 18:43:04.099533430 +0100 @@ -1,7 +1,7 @@ # # spec file for package multitail # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. # Copyright (c) 2010-2012 Pascal Bleser <[email protected]> # # All modifications and additions to the file contributed by third parties @@ -18,19 +18,18 @@ Name: multitail -Version: 6.4.1 +Version: 6.4.2 Release: 0 Summary: Tail Multiple Files License: GPL-2.0+ Group: System/X11/Terminals -Url: http://www.vanheusden.com/multitail/ -Source: http://www.vanheusden.com/multitail/multitail-%{version}.tgz +Url: https://www.vanheusden.com/multitail/ +Source: https://www.vanheusden.com/multitail/%{name}-%{version}.tgz # patch from https://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/app-text/multitail/files/ Patch0: multitail-6.4.1-gentoo.patch Patch3: multitail-fix_missing_proto_do_check_for_mail.patch BuildRequires: ncurses-devel -BuildRequires: pkg-config -BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildRequires: pkgconfig %description MultiTail lets you view one or multiple files like the original @@ -53,38 +52,33 @@ %patch0 -p1 %patch3 -sed -i 's/\r//g' manual.html -chmod 644 manual.html - +sed -i 's/\.new//g' Makefile sed -i 's|%{_sysconfdir}/%{name}|%{_datadir}/%{name}|g' "%{name}.conf" %build export CFLAGS="%{optflags} -I%{_includedir}/ncurses" #as there is no .pc for ncurses in some older releases, specify manually export LDFLAGS="-lpanelw -lncursesw " -make \ +make %{?_smp_mflags} \ PKG_CONFIG="pkg-config" \ UTF8_SUPPORT=yes \ - CONFIG_FILE="%{_sysconfdir}/multitail.conf" + CONFIG_FILE="%{_sysconfdir}/%{name}.conf" %install -install -dm 755 %{buildroot}%{_sysconfdir} -install -m 644 %{name}.conf \ - %{buildroot}%{_sysconfdir}/ - -install -dm 755 %{buildroot}%{_bindir} -install -m 755 %{name} \ - %{buildroot}%{_bindir}/ - -install -dm 755 %{buildroot}%{_mandir}/man1 -install -m 644 %{name}.1 \ - %{buildroot}%{_mandir}/man1 +%make_install + +# docs are shipped already +rm -fr %{buildroot}%{_datadir}/doc/%{name}-%{version} %files -%defattr(-, root, root) %doc *.txt manual*.html %config(noreplace) %{_sysconfdir}/%{name}.conf -%{_bindir}/multitail -%{_mandir}/man1/multitail.1* +%{_bindir}/%{name} +%{_mandir}/man1/%{name}.1%{ext_man} +%dir %{_sysconfdir}/%{name} +%{_sysconfdir}/%{name}/colors-example.pl +%{_sysconfdir}/%{name}/colors-example.sh +%{_sysconfdir}/%{name}/convert-geoip.pl +%{_sysconfdir}/%{name}/convert-simple.pl %changelog ++++++ multitail-6.4.1.tgz -> multitail-6.4.2.tgz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/multitail-6.4.1/makefile.macosx new/multitail-6.4.2/makefile.macosx --- old/multitail-6.4.1/makefile.macosx 2014-05-01 14:54:06.000000000 +0200 +++ new/multitail-6.4.2/makefile.macosx 2015-03-16 11:38:21.000000000 +0100 @@ -6,7 +6,7 @@ LDFLAGS=-lpanel -lncurses -lm $(DEBUG) CFLAGS=-O2 -D$(shell uname) -DVERSION=\"$(VERSION)\" $(DEBUG) -DCONFIG_FILE=\"$(CONFIG_FILE)\" -OBJS=utils.o mt.o error.o my_pty.o term.o scrollback.o help.o mem.o cv.o selbox.o stripstring.o color.o misc.o ui.o exec.o diff.o config.o cmdline.o globals.o history.o +OBJS=utils.o mt.o error.o my_pty.o term.o scrollback.o help.o mem.o cv.o selbox.o stripstring.o color.o misc.o ui.o exec.o diff.o config.o cmdline.o globals.o history.o xclip.o all: multitail diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/multitail-6.4.1/multitail.conf new/multitail-6.4.2/multitail.conf --- old/multitail-6.4.1/multitail.conf 2015-02-10 10:24:56.000000000 +0100 +++ new/multitail-6.4.2/multitail.conf 2015-06-24 15:17:48.000000000 +0200 @@ -271,7 +271,7 @@ cs_re:black,red,blink:BOOT cs_re:black,yellow:DEAD # -# squid +# squid/squid3 colorscheme:squid:http proxy server cs_re:blue:^[^ ]* cs_re_s:yellow:^[^ ]* *[0-9]* *([^ ]*) @@ -960,6 +960,7 @@ scheme:asterisk:/var/log/asterisk/messages scheme:samba:/var/log/samba/ scheme:squid:/var/log/squid/ +scheme:squid:/var/log/squid3/ scheme:syslog,ssh:/var/log/ scheme:vnetbr:bplog.rest scheme:procmail:procmail.log @@ -1191,6 +1192,7 @@ default_convert:apache:/var/log/lighttpd/.*access default_convert:asterisk:/var/log/asterisk/messages default_convert:squid:/var/log/squid/ +default_convert:squid:/var/log/squid3/ default_convert:qmailtimestr:/var/log/qmail/qmail.smtpd.log # # when a buffer (for scrollback) gets too full, some lines must be freed (unless one sets the buffersize to unlimited) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/multitail-6.4.1/utils.c new/multitail-6.4.2/utils.c --- old/multitail-6.4.1/utils.c 2015-01-04 21:29:22.000000000 +0100 +++ new/multitail-6.4.2/utils.c 2015-08-12 15:36:37.000000000 +0200 @@ -353,7 +353,7 @@ if (logname) { strncpy(username, logname, 128); - logname[127] = 0x00; + username[127] = 0x00; } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/multitail-6.4.1/version new/multitail-6.4.2/version --- old/multitail-6.4.1/version 2015-02-12 10:12:37.000000000 +0100 +++ new/multitail-6.4.2/version 2015-09-24 09:08:39.000000000 +0200 @@ -1 +1 @@ -VERSION=6.4.1 +VERSION=6.4.2
