Hello community,

here is the log from the commit of package gsequencer for openSUSE:Factory 
checked in at 2018-01-30 15:44:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gsequencer (Old)
 and      /work/SRC/openSUSE:Factory/.gsequencer.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gsequencer"

Tue Jan 30 15:44:48 2018 rev:7 rq:570873 version:1.4.15

Changes:
--------
--- /work/SRC/openSUSE:Factory/gsequencer/gsequencer.changes    2018-01-23 
13:53:37.931812449 +0100
+++ /work/SRC/openSUSE:Factory/.gsequencer.new/gsequencer.changes       
2018-01-30 15:44:52.485285410 +0100
@@ -1,0 +2,12 @@
+Mon Jan 29 20:16:53 UTC 2018 - jkraehem...@gmail.com
+
+- Removed libpulse-mainloop-glib0 because it is already provided.
+
+-------------------------------------------------------------------
+Sun Jan 28 11:56:08 UTC 2018 - jkraehem...@gmail.com
+
+- New upstream v1.4.15 replaced pa_main_loop_new() by
+  pa_glib_main_loop_new().
+- Added libpulse-mainloop-glib0 dependency to spec.
+
+-------------------------------------------------------------------

Old:
----
  gsequencer-1.4.14.tar.gz

New:
----
  gsequencer-1.4.15.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ gsequencer.spec ++++++
--- /var/tmp/diff_new_pack.kVliiy/_old  2018-01-30 15:44:54.113209412 +0100
+++ /var/tmp/diff_new_pack.kVliiy/_new  2018-01-30 15:44:54.117209225 +0100
@@ -18,7 +18,7 @@
 %define libagssonumber 1
 %define libgsequencersonumber 0
 Name:           gsequencer
-Version:        1.4.14
+Version:        1.4.15
 Release:        0
 Summary:        Audio processing engine
 License:        GPL-3.0+ AND AGPL-3.0+ AND GFDL-1.3

++++++ gsequencer-1.4.14.tar.gz -> gsequencer-1.4.15.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gsequencer-1.4.14/ChangeLog 
new/gsequencer-1.4.15/ChangeLog
--- old/gsequencer-1.4.14/ChangeLog     2018-01-22 13:24:48.000000000 +0100
+++ new/gsequencer-1.4.15/ChangeLog     2018-01-26 03:22:44.000000000 +0100
@@ -1,3 +1,9 @@
+ags (1.4.15)
+
+       [ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
+       * replaced pa_mainloop_new() by pa_glib_main_loop_new()
+       * minor changes
+
 ags (1.4.14)
 
        [ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/gsequencer-1.4.14/ags/X/ags_xorg_application_context.c 
new/gsequencer-1.4.15/ags/X/ags_xorg_application_context.c
--- old/gsequencer-1.4.14/ags/X/ags_xorg_application_context.c  2018-01-19 
16:12:03.000000000 +0100
+++ new/gsequencer-1.4.15/ags/X/ags_xorg_application_context.c  2018-01-26 
03:22:44.000000000 +0100
@@ -1692,7 +1692,7 @@
   if(has_pulse){
     ags_pulse_server_connect_client(pulse_server);
 
-    ags_pulse_server_start_poll(pulse_server);
+    //    ags_pulse_server_start_poll(pulse_server);
   }
 
   if(has_jack){
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gsequencer-1.4.14/ags/audio/pulse/ags_pulse_client.c 
new/gsequencer-1.4.15/ags/audio/pulse/ags_pulse_client.c
--- old/gsequencer-1.4.14/ags/audio/pulse/ags_pulse_client.c    2017-12-21 
01:30:44.000000000 +0100
+++ new/gsequencer-1.4.15/ags/audio/pulse/ags_pulse_client.c    2018-01-26 
03:22:44.000000000 +0100
@@ -19,18 +19,7 @@
 
 #include <ags/audio/pulse/ags_pulse_client.h>
 
-#include <ags/util/ags_id_generator.h>
-
-#include <ags/object/ags_application_context.h>
-#include <ags/object/ags_distributed_manager.h>
-#include <ags/object/ags_main_loop.h>
-#include <ags/object/ags_connectable.h>
-#include <ags/object/ags_distributed_manager.h>
-#include <ags/object/ags_soundcard.h>
-#include <ags/object/ags_sequencer.h>
-
-#include <ags/thread/ags_mutex_manager.h>
-#include <ags/thread/ags_task_thread.h>
+#include <ags/libags.h>
 
 #include <ags/audio/ags_sound_provider.h>
 #include <ags/audio/ags_channel.h>
@@ -666,6 +655,7 @@
     pa_context_set_state_callback(pulse_client->context,
                                  ags_pulse_client_state_callback,
                                  pulse_client);
+#if 0
     ready = FALSE;
     
     while(!ready){
@@ -682,6 +672,7 @@
       }
     }
 #endif
+#endif
   }
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gsequencer-1.4.14/ags/audio/pulse/ags_pulse_devout.c 
new/gsequencer-1.4.15/ags/audio/pulse/ags_pulse_devout.c
--- old/gsequencer-1.4.14/ags/audio/pulse/ags_pulse_devout.c    2017-12-21 
01:30:44.000000000 +0100
+++ new/gsequencer-1.4.15/ags/audio/pulse/ags_pulse_devout.c    2018-01-26 
03:22:44.000000000 +0100
@@ -19,16 +19,7 @@
 
 #include <ags/audio/pulse/ags_pulse_devout.h>
 
-#include <ags/lib/ags_time.h>
-
-#include <ags/object/ags_application_context.h>
-#include <ags/object/ags_config.h>
-#include <ags/object/ags_main_loop.h>
-#include <ags/object/ags_connectable.h>
-#include <ags/object/ags_soundcard.h>
-
-#include <ags/thread/ags_mutex_manager.h>
-#include <ags/thread/ags_task_thread.h>
+#include <ags/libags.h>
 
 #include <ags/audio/ags_sound_provider.h>
 #include <ags/audio/ags_channel.h>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gsequencer-1.4.14/ags/audio/pulse/ags_pulse_port.c 
new/gsequencer-1.4.15/ags/audio/pulse/ags_pulse_port.c
--- old/gsequencer-1.4.14/ags/audio/pulse/ags_pulse_port.c      2018-01-19 
16:12:03.000000000 +0100
+++ new/gsequencer-1.4.15/ags/audio/pulse/ags_pulse_port.c      2018-01-26 
03:22:44.000000000 +0100
@@ -930,7 +930,7 @@
   }
 
   g_atomic_int_and(&(AGS_THREAD(audio_loop)->flags),
-                  (~(AGS_THREAD_TIMING)));
+                  (~(AGS_THREAD_TIMING)));
 
   /*  */
   pthread_mutex_lock(mutex);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gsequencer-1.4.14/ags/audio/pulse/ags_pulse_server.c 
new/gsequencer-1.4.15/ags/audio/pulse/ags_pulse_server.c
--- old/gsequencer-1.4.14/ags/audio/pulse/ags_pulse_server.c    2017-12-21 
01:30:44.000000000 +0100
+++ new/gsequencer-1.4.15/ags/audio/pulse/ags_pulse_server.c    2018-01-26 
03:22:44.000000000 +0100
@@ -21,15 +21,7 @@
 #include <ags/audio/pulse/ags_pulse_client.h>
 #include <ags/audio/pulse/ags_pulse_port.h>
 
-#include <ags/object/ags_application_context.h>
-#include <ags/object/ags_distributed_manager.h>
-#include <ags/object/ags_connectable.h>
-#include <ags/object/ags_distributed_manager.h>
-#include <ags/object/ags_soundcard.h>
-#include <ags/object/ags_sequencer.h>
-
-#include <ags/thread/ags_mutex_manager.h>
-#include <ags/thread/ags_thread-posix.h>
+#include <ags/libags.h>
 
 #include <ags/audio/pulse/ags_pulse_devout.h>
 #include <ags/audio/pulse/ags_pulse_devin.h>
@@ -318,8 +310,8 @@
   pulse_server->application_context = NULL;
 
 #ifdef AGS_WITH_PULSE
-  pulse_server->main_loop = pa_mainloop_new();
-  pulse_server->main_loop_api = pa_mainloop_get_api(pulse_server->main_loop);
+  pulse_server->main_loop = pa_glib_mainloop_new(NULL);
+  pulse_server->main_loop_api = 
pa_glib_mainloop_get_api(pulse_server->main_loop);
 #else
   pulse_server->main_loop = NULL;
   pulse_server->main_loop_api = NULL;
@@ -1265,7 +1257,7 @@
 ags_pulse_server_start_poll(AgsPulseServer *pulse_server)
 {
   pthread_create(pulse_server->thread, NULL,
-                ags_pulse_server_do_poll_loop, pulse_server);
+                ags_pulse_server_do_poll_loop, pulse_server);
 }
 
 /**
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gsequencer-1.4.14/ags/audio/pulse/ags_pulse_server.h 
new/gsequencer-1.4.15/ags/audio/pulse/ags_pulse_server.h
--- old/gsequencer-1.4.14/ags/audio/pulse/ags_pulse_server.h    2017-11-06 
00:08:57.000000000 +0100
+++ new/gsequencer-1.4.15/ags/audio/pulse/ags_pulse_server.h    2018-01-26 
03:22:44.000000000 +0100
@@ -29,6 +29,7 @@
 #include <pulse/pulseaudio.h>
 #include <pulse/stream.h>
 #include <pulse/error.h>
+#include <pulse/glib-mainloop.h>
 #endif
 
 #include <pthread.h>
@@ -62,7 +63,7 @@
   GObject *application_context;
 
 #ifdef AGS_WITH_PULSE
-  pa_mainloop *main_loop;
+  pa_glib_mainloop *main_loop;
   pa_mainloop_api *main_loop_api;
 #else
   gpointer main_loop;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gsequencer-1.4.14/configure 
new/gsequencer-1.4.15/configure
--- old/gsequencer-1.4.14/configure     2018-01-22 13:25:24.000000000 +0100
+++ new/gsequencer-1.4.15/configure     2018-01-26 03:23:13.000000000 +0100
@@ -1,8 +1,8 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for gsequencer 1.4.14.
+# Generated by GNU Autoconf 2.69 for gsequencer 1.4.15.
 #
-# Report bugs to <jkraehemann-gu...@users.alioth.debian.org>.
+# Report bugs to <jkraehem...@gmail.com>.
 #
 #
 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@@ -275,10 +275,10 @@
     $as_echo "$0: be upgraded to zsh 4.3.4 or later."
   else
     $as_echo "$0: Please tell bug-autoc...@gnu.org and
-$0: jkraehemann-gu...@users.alioth.debian.org about your
-$0: system, including any error possibly output before this
-$0: message. Then install a modern shell, or manually run
-$0: the script under such a shell if you do have one."
+$0: jkraehem...@gmail.com about your system, including any
+$0: error possibly output before this message. Then install
+$0: a modern shell, or manually run the script under such a
+$0: shell if you do have one."
   fi
   exit 1
 fi
@@ -590,9 +590,9 @@
 # Identity of this package.
 PACKAGE_NAME='gsequencer'
 PACKAGE_TARNAME='gsequencer'
-PACKAGE_VERSION='1.4.14'
-PACKAGE_STRING='gsequencer 1.4.14'
-PACKAGE_BUGREPORT='jkraehemann-gu...@users.alioth.debian.org'
+PACKAGE_VERSION='1.4.15'
+PACKAGE_STRING='gsequencer 1.4.15'
+PACKAGE_BUGREPORT='jkraehem...@gmail.com'
 PACKAGE_URL=''
 
 ac_unique_file="ags/config.h.in"
@@ -1473,7 +1473,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures gsequencer 1.4.14 to adapt to many kinds of systems.
+\`configure' configures gsequencer 1.4.15 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1548,7 +1548,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of gsequencer 1.4.14:";;
+     short | recursive ) echo "Configuration of gsequencer 1.4.15:";;
    esac
   cat <<\_ACEOF
 
@@ -1678,7 +1678,7 @@
 Use these variables to override the choices made by `configure' or to help
 it to find libraries and programs with nonstandard names/locations.
 
-Report bugs to <jkraehemann-gu...@users.alioth.debian.org>.
+Report bugs to <jkraehem...@gmail.com>.
 _ACEOF
 ac_status=$?
 fi
@@ -1741,7 +1741,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-gsequencer configure 1.4.14
+gsequencer configure 1.4.15
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2140,9 +2140,9 @@
 $as_echo "$as_me: WARNING: $2:     section \"Present But Cannot Be Compiled\"" 
>&2;}
     { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the 
compiler's result" >&5
 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
-( $as_echo "## -------------------------------------------------------- ##
-## Report this to jkraehemann-gu...@users.alioth.debian.org ##
-## -------------------------------------------------------- ##"
+( $as_echo "## ------------------------------------ ##
+## Report this to jkraehem...@gmail.com ##
+## ------------------------------------ ##"
      ) | sed "s/^/$as_me: WARNING:     /" >&2
     ;;
 esac
@@ -2218,7 +2218,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by gsequencer $as_me 1.4.14, which was
+It was created by gsequencer $as_me 1.4.15, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -3085,7 +3085,7 @@
 
 # Define the identity of the package.
  PACKAGE='gsequencer'
- VERSION='1.4.14'
+ VERSION='1.4.15'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -16964,12 +16964,12 @@
     pkg_cv_PULSE_CFLAGS="$PULSE_CFLAGS"
  elif test -n "$PKG_CONFIG"; then
     if test -n "$PKG_CONFIG" && \
-    { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists 
--print-errors \"libpulse\""; } >&5
-  ($PKG_CONFIG --exists --print-errors "libpulse") 2>&5
+    { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists 
--print-errors \"libpulse-mainloop-glib\""; } >&5
+  ($PKG_CONFIG --exists --print-errors "libpulse-mainloop-glib") 2>&5
   ac_status=$?
   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
   test $ac_status = 0; }; then
-  pkg_cv_PULSE_CFLAGS=`$PKG_CONFIG --cflags "libpulse" 2>/dev/null`
+  pkg_cv_PULSE_CFLAGS=`$PKG_CONFIG --cflags "libpulse-mainloop-glib" 
2>/dev/null`
                      test "x$?" != "x0" && pkg_failed=yes
 else
   pkg_failed=yes
@@ -16981,12 +16981,12 @@
     pkg_cv_PULSE_LIBS="$PULSE_LIBS"
  elif test -n "$PKG_CONFIG"; then
     if test -n "$PKG_CONFIG" && \
-    { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists 
--print-errors \"libpulse\""; } >&5
-  ($PKG_CONFIG --exists --print-errors "libpulse") 2>&5
+    { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists 
--print-errors \"libpulse-mainloop-glib\""; } >&5
+  ($PKG_CONFIG --exists --print-errors "libpulse-mainloop-glib") 2>&5
   ac_status=$?
   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
   test $ac_status = 0; }; then
-  pkg_cv_PULSE_LIBS=`$PKG_CONFIG --libs "libpulse" 2>/dev/null`
+  pkg_cv_PULSE_LIBS=`$PKG_CONFIG --libs "libpulse-mainloop-glib" 2>/dev/null`
                      test "x$?" != "x0" && pkg_failed=yes
 else
   pkg_failed=yes
@@ -17007,14 +17007,14 @@
         _pkg_short_errors_supported=no
 fi
         if test $_pkg_short_errors_supported = yes; then
-               PULSE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors 
--cflags --libs "libpulse" 2>&1`
+               PULSE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors 
--cflags --libs "libpulse-mainloop-glib" 2>&1`
         else
-               PULSE_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs 
"libpulse" 2>&1`
+               PULSE_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs 
"libpulse-mainloop-glib" 2>&1`
         fi
        # Put the nasty error message in config.log where it belongs
        echo "$PULSE_PKG_ERRORS" >&5
 
-       as_fn_error $? "Package requirements (libpulse) were not met:
+       as_fn_error $? "Package requirements (libpulse-mainloop-glib) were not 
met:
 
 $PULSE_PKG_ERRORS
 
@@ -19597,7 +19597,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by gsequencer $as_me 1.4.14, which was
+This file was extended by gsequencer $as_me 1.4.15, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -19657,13 +19657,13 @@
 Configuration commands:
 $config_commands
 
-Report bugs to <jkraehemann-gu...@users.alioth.debian.org>."
+Report bugs to <jkraehem...@gmail.com>."
 
 _ACEOF
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-gsequencer config.status 1.4.14
+gsequencer config.status 1.4.15
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gsequencer-1.4.14/configure.ac 
new/gsequencer-1.4.15/configure.ac
--- old/gsequencer-1.4.14/configure.ac  2018-01-22 13:25:10.000000000 +0100
+++ new/gsequencer-1.4.15/configure.ac  2018-01-26 03:22:44.000000000 +0100
@@ -6,7 +6,7 @@
 # Process this file with autoconf to produce a configure script.
 
 AC_PREREQ([2.69])
-AC_INIT([gsequencer],[1.4.14],[jkraehemann-gu...@users.alioth.debian.org])
+AC_INIT([gsequencer],[1.4.15],[jkraehem...@gmail.com])
 AM_INIT_AUTOMAKE([subdir-objects])
 AC_CONFIG_SRCDIR([ags/config.h.in])
 AC_CONFIG_HEADERS([ags/config.h])
@@ -179,7 +179,7 @@
 AS_IF([test "x$enable_pulse" != xno],
       [AC_DEFINE([AGS_WITH_PULSE], [1], [PULSE enabled])
 
-      PKG_CHECK_MODULES([PULSE], [libpulse])
+      PKG_CHECK_MODULES([PULSE], [libpulse-mainloop-glib])
       AC_SUBST(PULSE_CFLAGS)
       AC_SUBST(PULSE_LIBS)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gsequencer-1.4.14/docs/reference/libags/Makefile.in 
new/gsequencer-1.4.15/docs/reference/libags/Makefile.in
--- old/gsequencer-1.4.14/docs/reference/libags/Makefile.in     2018-01-22 
13:25:27.000000000 +0100
+++ new/gsequencer-1.4.15/docs/reference/libags/Makefile.in     2018-01-26 
03:23:12.000000000 +0100
@@ -712,9 +712,9 @@
              exit 1;; \
          esac; \
        done; \
-       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 
docs/reference/libags/Makefile'; \
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign 
docs/reference/libags/Makefile'; \
        $(am__cd) $(top_srcdir) && \
-         $(AUTOMAKE) --gnu docs/reference/libags/Makefile
+         $(AUTOMAKE) --foreign docs/reference/libags/Makefile
 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
        @case '$?' in \
          *config.status*) \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/gsequencer-1.4.14/docs/reference/libags-audio/Makefile.in 
new/gsequencer-1.4.15/docs/reference/libags-audio/Makefile.in
--- old/gsequencer-1.4.14/docs/reference/libags-audio/Makefile.in       
2018-01-22 13:25:27.000000000 +0100
+++ new/gsequencer-1.4.15/docs/reference/libags-audio/Makefile.in       
2018-01-26 03:23:12.000000000 +0100
@@ -713,9 +713,9 @@
              exit 1;; \
          esac; \
        done; \
-       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 
docs/reference/libags-audio/Makefile'; \
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign 
docs/reference/libags-audio/Makefile'; \
        $(am__cd) $(top_srcdir) && \
-         $(AUTOMAKE) --gnu docs/reference/libags-audio/Makefile
+         $(AUTOMAKE) --foreign docs/reference/libags-audio/Makefile
 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
        @case '$?' in \
          *config.status*) \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/gsequencer-1.4.14/docs/reference/libags-gui/Makefile.in 
new/gsequencer-1.4.15/docs/reference/libags-gui/Makefile.in
--- old/gsequencer-1.4.14/docs/reference/libags-gui/Makefile.in 2018-01-22 
13:25:27.000000000 +0100
+++ new/gsequencer-1.4.15/docs/reference/libags-gui/Makefile.in 2018-01-26 
03:23:12.000000000 +0100
@@ -710,9 +710,9 @@
              exit 1;; \
          esac; \
        done; \
-       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 
docs/reference/libags-gui/Makefile'; \
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign 
docs/reference/libags-gui/Makefile'; \
        $(am__cd) $(top_srcdir) && \
-         $(AUTOMAKE) --gnu docs/reference/libags-gui/Makefile
+         $(AUTOMAKE) --foreign docs/reference/libags-gui/Makefile
 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
        @case '$?' in \
          *config.status*) \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/gsequencer-1.4.14/docs/reference/libgsequencer/Makefile.in 
new/gsequencer-1.4.15/docs/reference/libgsequencer/Makefile.in
--- old/gsequencer-1.4.14/docs/reference/libgsequencer/Makefile.in      
2018-01-22 13:25:27.000000000 +0100
+++ new/gsequencer-1.4.15/docs/reference/libgsequencer/Makefile.in      
2018-01-26 03:23:12.000000000 +0100
@@ -716,9 +716,9 @@
              exit 1;; \
          esac; \
        done; \
-       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 
docs/reference/libgsequencer/Makefile'; \
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign 
docs/reference/libgsequencer/Makefile'; \
        $(am__cd) $(top_srcdir) && \
-         $(AUTOMAKE) --gnu docs/reference/libgsequencer/Makefile
+         $(AUTOMAKE) --foreign docs/reference/libgsequencer/Makefile
 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
        @case '$?' in \
          *config.status*) \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gsequencer-1.4.14/m4/Makefile.in 
new/gsequencer-1.4.15/m4/Makefile.in
--- old/gsequencer-1.4.14/m4/Makefile.in        2018-01-22 13:25:27.000000000 
+0100
+++ new/gsequencer-1.4.15/m4/Makefile.in        2018-01-26 03:23:12.000000000 
+0100
@@ -335,9 +335,9 @@
              exit 1;; \
          esac; \
        done; \
-       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu m4/Makefile'; \
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign m4/Makefile'; \
        $(am__cd) $(top_srcdir) && \
-         $(AUTOMAKE) --gnu m4/Makefile
+         $(AUTOMAKE) --foreign m4/Makefile
 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
        @case '$?' in \
          *config.status*) \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gsequencer-1.4.14/po/gsequencer.pot 
new/gsequencer-1.4.15/po/gsequencer.pot
--- old/gsequencer-1.4.14/po/gsequencer.pot     2018-01-22 13:25:49.000000000 
+0100
+++ new/gsequencer-1.4.15/po/gsequencer.pot     2018-01-26 03:23:30.000000000 
+0100
@@ -6,9 +6,9 @@
 #, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: gsequencer 1.4.14\n"
+"Project-Id-Version: gsequencer 1.4.15\n"
 "Report-Msgid-Bugs-To: jkraehemann-gu...@users.alioth.debian.org\n"
-"POT-Creation-Date: 2018-01-22 13:25+0100\n"
+"POT-Creation-Date: 2018-01-26 03:23+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <l...@li.org>\n"


Reply via email to