Hello community, here is the log from the commit of package byobu for openSUSE:Factory checked in at 2018-05-29 10:48:21 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/byobu (Old) and /work/SRC/openSUSE:Factory/.byobu.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "byobu" Tue May 29 10:48:21 2018 rev:4 rq:612510 version:5.125 Changes: -------- --- /work/SRC/openSUSE:Factory/byobu/byobu.changes 2018-01-17 21:56:55.775099702 +0100 +++ /work/SRC/openSUSE:Factory/.byobu.new/byobu.changes 2018-05-29 10:48:21.728871573 +0200 @@ -1,0 +2,14 @@ +Sat Mar 31 07:41:54 UTC 2018 - [email protected] + +- update to 5.125: + * usr/share/byobu/profiles/dircolors: LP: #1752352 + - fix blinking symlinks + * usr/lib/byobu/include/select-session.py: + - Fix cull_zombies() so that we properly cull zombies of sessions that + have non-numeric session names + - Allow the dynamic session-creation behaviour to be disabled by + creating ~/.byobu/.reuse-session + * debian/control: + - need sensible-utils + +------------------------------------------------------------------- Old: ---- byobu_5.124.orig.tar.gz byobu_5.124.orig.tar.gz.asc New: ---- byobu_5.125.orig.tar.gz byobu_5.125.orig.tar.gz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ byobu.spec ++++++ --- /var/tmp/diff_new_pack.WB6wkF/_old 2018-05-29 10:48:22.280851208 +0200 +++ /var/tmp/diff_new_pack.WB6wkF/_new 2018-05-29 10:48:22.284851060 +0200 @@ -17,10 +17,10 @@ Name: byobu -Version: 5.124 +Version: 5.125 Release: 0 Summary: Enhanced profile and configuration utilities for GNU Screen and tmux -License: GPL-3.0 +License: GPL-3.0-only Group: System/Console Url: http://byobu.org/ Source: https://launchpad.net/%{name}/trunk/%{version}/+download/%{name}_%{version}.orig.tar.gz @@ -40,6 +40,7 @@ Requires: snack Recommends: pastebinit Recommends: tmux +Recommends: sensible-utils Suggests: %{name}-doc Suggests: screen Suggests: wireless-tools ++++++ byobu_5.124.orig.tar.gz -> byobu_5.125.orig.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/byobu-5.124/ChangeLog new/byobu-5.125/ChangeLog --- old/byobu-5.124/ChangeLog 2017-12-04 14:45:05.000000000 +0100 +++ new/byobu-5.125/ChangeLog 2018-03-16 17:28:28.000000000 +0100 @@ -1,4 +1,23 @@ -byobu (5.124) released; urgency=medium +byobu (5.125) released; urgency=medium + + [ Jean-Baptiste Lallement ] + * usr/share/byobu/profiles/dircolors: LP: #1752352 + - fix blinking symlinks + + [ Chow Loong Jin ] + * usr/lib/byobu/include/select-session.py: + - Fix cull_zombies() so that we properly cull zombies of sessions that + have non-numeric session names + - Allow the dynamic session-creation behaviour to be disabled by + creating ~/.byobu/.reuse-session + + [ Dustin Kirkland ] + * debian/control: + - need sensible-utils + + -- Dustin Kirkland <[email protected]> Mon, 04 Dec 2017 07:46:48 -0600 + +byobu (5.124-0ubuntu1) bionic; urgency=medium [ Dustin Kirkland ] * usr/bin/wifi-status: @@ -22,7 +41,7 @@ * Build-depend on dh-python. * Drop the alternative python2 dependencies. LP: #1735348. - -- Dustin Kirkland <[email protected]> Mon, 25 Sep 2017 10:28:42 -0500 + -- Dustin Kirkland <[email protected]> Mon, 04 Dec 2017 07:46:46 -0600 byobu (5.123-0ubuntu1) artful; urgency=medium diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/byobu-5.124/Makefile.in new/byobu-5.125/Makefile.in --- old/byobu-5.124/Makefile.in 2017-12-04 14:45:06.000000000 +0100 +++ new/byobu-5.125/Makefile.in 2018-03-16 17:28:28.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.15.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2017 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -496,7 +496,7 @@ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir - tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz $(am__post_remove_distdir) dist-bzip2: distdir @@ -522,7 +522,7 @@ @echo WARNING: "Support for shar distribution archives is" \ "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 - shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz + shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz $(am__post_remove_distdir) dist-zip: distdir @@ -540,7 +540,7 @@ distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ - GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ + eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lz*) \ @@ -550,7 +550,7 @@ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ - GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ + eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/byobu-5.124/aclocal.m4 new/byobu-5.125/aclocal.m4 --- old/byobu-5.124/aclocal.m4 2017-12-04 14:45:06.000000000 +0100 +++ new/byobu-5.125/aclocal.m4 2018-03-16 17:28:28.000000000 +0100 @@ -1,6 +1,6 @@ -# generated automatically by aclocal 1.15 -*- Autoconf -*- +# generated automatically by aclocal 1.15.1 -*- Autoconf -*- -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Copyright (C) 1996-2017 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,7 +20,7 @@ If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically 'autoreconf'.])]) -# Copyright (C) 2002-2014 Free Software Foundation, Inc. +# Copyright (C) 2002-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -35,7 +35,7 @@ [am__api_version='1.15' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. -m4_if([$1], [1.15], [], +m4_if([$1], [1.15.1], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) @@ -51,14 +51,14 @@ # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], -[AM_AUTOMAKE_VERSION([1.15])dnl +[AM_AUTOMAKE_VERSION([1.15.1])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -110,7 +110,7 @@ # Do all the work for Automake. -*- Autoconf -*- -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Copyright (C) 1996-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -307,7 +307,7 @@ done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -328,7 +328,7 @@ fi AC_SUBST([install_sh])]) -# Copyright (C) 2003-2014 Free Software Foundation, Inc. +# Copyright (C) 2003-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -349,7 +349,7 @@ # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- -# Copyright (C) 1997-2014 Free Software Foundation, Inc. +# Copyright (C) 1997-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -388,7 +388,7 @@ # Helper functions for option handling. -*- Autoconf -*- -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -419,7 +419,7 @@ # Check to make sure that the build environment is sane. -*- Autoconf -*- -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Copyright (C) 1996-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -500,7 +500,7 @@ rm -f conftest.file ]) -# Copyright (C) 2009-2014 Free Software Foundation, Inc. +# Copyright (C) 2009-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -560,7 +560,7 @@ _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -588,7 +588,7 @@ INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) -# Copyright (C) 2006-2014 Free Software Foundation, Inc. +# Copyright (C) 2006-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -607,7 +607,7 @@ # Check how to create a tarball. -*- Autoconf -*- -# Copyright (C) 2004-2014 Free Software Foundation, Inc. +# Copyright (C) 2004-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/byobu-5.124/etc/byobu/Makefile.in new/byobu-5.125/etc/byobu/Makefile.in --- old/byobu-5.124/etc/byobu/Makefile.in 2017-12-04 14:45:06.000000000 +0100 +++ new/byobu-5.125/etc/byobu/Makefile.in 2018-03-16 17:28:28.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.15.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2017 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/byobu-5.124/etc/profile.d/Makefile.in new/byobu-5.125/etc/profile.d/Makefile.in --- old/byobu-5.124/etc/profile.d/Makefile.in 2017-12-04 14:45:06.000000000 +0100 +++ new/byobu-5.125/etc/profile.d/Makefile.in 2018-03-16 17:28:28.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.15.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2017 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/byobu-5.124/snap/snapcraft.yaml new/byobu-5.125/snap/snapcraft.yaml --- old/byobu-5.124/snap/snapcraft.yaml 2017-10-15 18:58:08.000000000 +0200 +++ new/byobu-5.125/snap/snapcraft.yaml 1970-01-01 01:00:00.000000000 +0100 @@ -1,26 +0,0 @@ -name: byobu -version: 5.124 -summary: text window manager, shell multiplexer, integrated DevOps environment -description: > - Byobu is Ubuntu's powerful text-based window manager, shell multiplexer, and - integrated DevOps environment. - Using Byobu, you can quickly create and move between different windows - over a single SSH connection or TTY terminal, split each of those windows into - multiple panes, monitor dozens of important statistics about your system, - detach and reattach to sessions later while your programs continue to run in - the background. -confinement: classic -grade: stable - -parts: - byobu: - plugin: nil - stage-packages: [byobu] - stage: - - -bin/byobu - snap: - - -bin/byobu - -apps: - byobu: - command: byobu diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/byobu-5.124/usr/bin/Makefile.in new/byobu-5.125/usr/bin/Makefile.in --- old/byobu-5.124/usr/bin/Makefile.in 2017-12-04 14:45:06.000000000 +0100 +++ new/byobu-5.125/usr/bin/Makefile.in 2018-03-16 17:28:28.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.15.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2017 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/byobu-5.124/usr/bin/byobu.in new/byobu-5.125/usr/bin/byobu.in --- old/byobu-5.124/usr/bin/byobu.in 2017-09-25 17:28:42.000000000 +0200 +++ new/byobu-5.125/usr/bin/byobu.in 2017-12-04 14:46:48.000000000 +0100 @@ -18,7 +18,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -VERSION=5.124 +VERSION=5.125 PKG="byobu" # All sorts of things go wrong if you don't own your $HOME dir. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/byobu-5.124/usr/lib/byobu/Makefile.in new/byobu-5.125/usr/lib/byobu/Makefile.in --- old/byobu-5.124/usr/lib/byobu/Makefile.in 2017-12-04 14:45:06.000000000 +0100 +++ new/byobu-5.125/usr/lib/byobu/Makefile.in 2018-03-16 17:28:28.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.15.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2017 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/byobu-5.124/usr/lib/byobu/include/Makefile.in new/byobu-5.125/usr/lib/byobu/include/Makefile.in --- old/byobu-5.124/usr/lib/byobu/include/Makefile.in 2017-12-04 14:45:06.000000000 +0100 +++ new/byobu-5.125/usr/lib/byobu/include/Makefile.in 2018-03-16 17:28:28.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.15.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2017 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/byobu-5.124/usr/lib/byobu/include/select-session.py new/byobu-5.125/usr/lib/byobu/include/select-session.py --- old/byobu-5.124/usr/lib/byobu/include/select-session.py 2017-11-14 04:23:14.000000000 +0100 +++ new/byobu-5.125/usr/lib/byobu/include/select-session.py 2018-03-15 22:26:45.000000000 +0100 @@ -40,6 +40,7 @@ choice = -1 sessions = [] text = [] +reuse_sessions = os.path.exists("%s/.reuse-session" % (BYOBU_CONFIG_DIR)) BYOBU_UPDATE_ENVVARS = ["DISPLAY", "DBUS_SESSION_BUS_ADDRESS", "SESSION_MANAGER", "GPG_AGENT_INFO", "XDG_SESSION_COOKIE", "XDG_SESSION_PATH", "GNOME_KEYRING_CONTROL", "GNOME_KEYRING_PID", "GPG_AGENT_INFO", "SSH_ASKPASS", "SSH_AUTH_SOCK", "SSH_AGENT_PID", "WINDOWID", "UPSTART_JOB", "UPSTART_EVENTS", "UPSTART_SESSION", "UPSTART_INSTANCE"] @@ -102,7 +103,7 @@ # Find the master session to extract the group name. We use # the group number to be extra sure the right session is getting # killed. We don't want to accidentally kill the wrong one - pattern = "^%s:.+\\((group \\w+)\\).*$" % session_name + pattern = "^%s:.+\\((group [^\\)]+)\\).*$" % session_name master = re.search(pattern, output, re.MULTILINE) if not master: return @@ -131,7 +132,11 @@ cull_zombies(session_name) # must use the binary, not the wrapper! if backend == "tmux": - os.execvp("tmux", ["tmux", "-2", "new-session", "-t", session_name, "-s", "_%s-%i" % (session_name, os.getpid())]) + if reuse_sessions: + os.execvp("tmux", ["tmux", "attach", "-t", session_name]) + else: + os.execvp("tmux", ["tmux", "-2", "new-session", "-t", session_name, "-s", "_%s-%i" % (session_name, os.getpid())]) + else: os.execvp("screen", ["screen", "-AOxRR", session_name]) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/byobu-5.124/usr/share/byobu/desktop/Makefile.in new/byobu-5.125/usr/share/byobu/desktop/Makefile.in --- old/byobu-5.124/usr/share/byobu/desktop/Makefile.in 2017-12-04 14:45:06.000000000 +0100 +++ new/byobu-5.125/usr/share/byobu/desktop/Makefile.in 2018-03-16 17:28:28.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.15.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2017 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/byobu-5.124/usr/share/byobu/keybindings/Makefile.in new/byobu-5.125/usr/share/byobu/keybindings/Makefile.in --- old/byobu-5.124/usr/share/byobu/keybindings/Makefile.in 2017-12-04 14:45:06.000000000 +0100 +++ new/byobu-5.125/usr/share/byobu/keybindings/Makefile.in 2018-03-16 17:28:28.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.15.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2017 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/byobu-5.124/usr/share/byobu/pixmaps/Makefile.in new/byobu-5.125/usr/share/byobu/pixmaps/Makefile.in --- old/byobu-5.124/usr/share/byobu/pixmaps/Makefile.in 2017-12-04 14:45:06.000000000 +0100 +++ new/byobu-5.125/usr/share/byobu/pixmaps/Makefile.in 2018-03-16 17:28:28.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.15.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2017 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/byobu-5.124/usr/share/byobu/profiles/Makefile.in new/byobu-5.125/usr/share/byobu/profiles/Makefile.in --- old/byobu-5.124/usr/share/byobu/profiles/Makefile.in 2017-12-04 14:45:06.000000000 +0100 +++ new/byobu-5.125/usr/share/byobu/profiles/Makefile.in 2018-03-16 17:28:29.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.15.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2017 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/byobu-5.124/usr/share/byobu/profiles/dircolors new/byobu-5.125/usr/share/byobu/profiles/dircolors --- old/byobu-5.124/usr/share/byobu/profiles/dircolors 2014-04-09 22:16:51.000000000 +0200 +++ new/byobu-5.125/usr/share/byobu/profiles/dircolors 2018-03-15 22:16:19.000000000 +0100 @@ -71,7 +71,7 @@ #FILE 00 # regular file: use no color at all RESET 0 # reset to "normal" color DIR 38;5;5 # directory -LINK 4;5;37 # symbolic link. (If you set this to 'target' instead of a +LINK 38;5;37 # symbolic link. (If you set this to 'target' instead of a # numerical value, the color is as for the file pointed to.) MULTIHARDLINK 00 # regular file with more than one link FIFO 40;33 # pipe diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/byobu-5.124/usr/share/byobu/status/Makefile.in new/byobu-5.125/usr/share/byobu/status/Makefile.in --- old/byobu-5.124/usr/share/byobu/status/Makefile.in 2017-12-04 14:45:06.000000000 +0100 +++ new/byobu-5.125/usr/share/byobu/status/Makefile.in 2018-03-16 17:28:29.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.15.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2017 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/byobu-5.124/usr/share/byobu/tests/Makefile.in new/byobu-5.125/usr/share/byobu/tests/Makefile.in --- old/byobu-5.124/usr/share/byobu/tests/Makefile.in 2017-12-04 14:45:06.000000000 +0100 +++ new/byobu-5.125/usr/share/byobu/tests/Makefile.in 2018-03-16 17:28:29.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.15.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2017 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/byobu-5.124/usr/share/byobu/windows/Makefile.in new/byobu-5.125/usr/share/byobu/windows/Makefile.in --- old/byobu-5.124/usr/share/byobu/windows/Makefile.in 2017-12-04 14:45:06.000000000 +0100 +++ new/byobu-5.125/usr/share/byobu/windows/Makefile.in 2018-03-16 17:28:29.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.15.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2017 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/byobu-5.124/usr/share/dbus-1/services/Makefile.in new/byobu-5.125/usr/share/dbus-1/services/Makefile.in --- old/byobu-5.124/usr/share/dbus-1/services/Makefile.in 2017-12-04 14:45:06.000000000 +0100 +++ new/byobu-5.125/usr/share/dbus-1/services/Makefile.in 2018-03-16 17:28:29.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.15.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2017 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/byobu-5.124/usr/share/doc/byobu/Makefile.in new/byobu-5.125/usr/share/doc/byobu/Makefile.in --- old/byobu-5.124/usr/share/doc/byobu/Makefile.in 2017-12-04 14:45:06.000000000 +0100 +++ new/byobu-5.125/usr/share/doc/byobu/Makefile.in 2018-03-16 17:28:29.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.15.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2017 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/byobu-5.124/usr/share/man/man1/Makefile.in new/byobu-5.125/usr/share/man/man1/Makefile.in --- old/byobu-5.124/usr/share/man/man1/Makefile.in 2017-12-04 14:45:06.000000000 +0100 +++ new/byobu-5.125/usr/share/man/man1/Makefile.in 2018-03-16 17:28:29.000000000 +0100 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.15.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2017 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it,
