Hello community,

here is the log from the commit of package cacti-spine for openSUSE:Factory 
checked in at 2019-09-30 16:01:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/cacti-spine (Old)
 and      /work/SRC/openSUSE:Factory/.cacti-spine.new.2352 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "cacti-spine"

Mon Sep 30 16:01:04 2019 rev:23 rq:733958 version:1.2.7

Changes:
--------
--- /work/SRC/openSUSE:Factory/cacti-spine/cacti-spine.changes  2019-09-04 
09:12:50.274959035 +0200
+++ /work/SRC/openSUSE:Factory/.cacti-spine.new.2352/cacti-spine.changes        
2019-09-30 16:01:32.968873235 +0200
@@ -1,0 +2,6 @@
+Mon Sep 30 05:57:17 UTC 2019 - David Liedke <lie...@rz.uni-mannheim.de>
+
+-Update to version 1.2.7
+ -issue#113: spine1.2.6 couldn't open directory `m4' 
+
+-------------------------------------------------------------------

Old:
----
  1.2.6.tar.gz

New:
----
  1.2.7.tar.gz

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

Other differences:
------------------
++++++ cacti-spine.spec ++++++
--- /var/tmp/diff_new_pack.ZIqRoh/_old  2019-09-30 16:01:33.764871116 +0200
+++ /var/tmp/diff_new_pack.ZIqRoh/_new  2019-09-30 16:01:33.768871106 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           cacti-spine
-Version:        1.2.6
+Version:        1.2.7
 Release:        0
 Url:            https://github.com/Cacti/spine
 Source:         
https://github.com/Cacti/spine/archive/release/%{version}.tar.gz

++++++ 1.2.6.tar.gz -> 1.2.7.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/spine-release-1.2.6/CHANGELOG 
new/spine-release-1.2.7/CHANGELOG
--- old/spine-release-1.2.6/CHANGELOG   2019-09-02 02:09:08.000000000 +0200
+++ new/spine-release-1.2.7/CHANGELOG   2019-09-29 20:27:22.000000000 +0200
@@ -1,5 +1,10 @@
 The Cacti Group | spine
 
+1.2.7
+-issue#113: When compiling under CentOS, 'm4' directory appears to be missing
+-issue#115: Perform proper initialization and teardown of sockets under Windows
+-issue#117: Spine configuration example shows remote database prefix for local 
database values
+
 1.2.6
 -issue#101: MySQL 8 has retired 'my_bool' type
 -issue#104: Spine should report which threads are outstanding
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/spine-release-1.2.6/bootstrap 
new/spine-release-1.2.7/bootstrap
--- old/spine-release-1.2.6/bootstrap   2019-09-02 02:09:08.000000000 +0200
+++ new/spine-release-1.2.7/bootstrap   2019-09-29 20:27:22.000000000 +0200
@@ -48,9 +48,13 @@
 
 # Prepare a build state
 echo "INFO: Running auto-tools to verify buildability"
+aclocal --install
+libtoolize
+automake --add-missing
 autoreconf --force --install
 [ $? -ne 0 ] && echo "ERROR: 'autoreconf' exited with errors" && exit -1
 
+
 # Provide some meaningful notes
 echo "INFO: Spine bootstrap process completed"
 echo ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/spine-release-1.2.6/configure.ac 
new/spine-release-1.2.7/configure.ac
--- old/spine-release-1.2.6/configure.ac        2019-09-02 02:09:08.000000000 
+0200
+++ new/spine-release-1.2.7/configure.ac        2019-09-29 20:27:22.000000000 
+0200
@@ -1,5 +1,5 @@
 AC_PREREQ(2.53)
-AC_INIT(Spine Poller, 1.2.6, http://www.cacti.net/issues.php)
+AC_INIT(Spine Poller, 1.2.7, http://www.cacti.net/issues.php)
 
 AC_CONFIG_AUX_DIR(config)
 AC_SUBST(ac_aux_dir)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/spine-release-1.2.6/spine.c 
new/spine-release-1.2.7/spine.c
--- old/spine-release-1.2.6/spine.c     2019-09-02 02:09:08.000000000 +0200
+++ new/spine-release-1.2.7/spine.c     2019-09-29 20:27:22.000000000 +0200
@@ -624,6 +624,9 @@
                die("ERROR: Fatal malloc error: spine.c host id's!");
        }
 
+       /* initialize winsock library on Windows */
+       SOCK_STARTUP;
+
        /* mark the spine process as started */
        snprintf(querybuf, BIG_BUFSIZE, "INSERT INTO poller_time (poller_id, 
pid, start_time, end_time) VALUES (%i, %i, NOW(), '0000-00-00 00:00:00')", 
set.poller_id, getpid());
        if (mode == REMOTE) {
@@ -942,6 +945,9 @@
        /* uninstall the spine signal handler */
        uninstall_spine_signal_handler();
 
+       /* clueanup winsock library on Windows */
+       SOCK_CLEANUP;
+
        exit(EXIT_SUCCESS);
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/spine-release-1.2.6/spine.conf.dist 
new/spine-release-1.2.7/spine.conf.dist
--- old/spine-release-1.2.6/spine.conf.dist     2019-09-02 02:09:08.000000000 
+0200
+++ new/spine-release-1.2.7/spine.conf.dist     2019-09-29 20:27:22.000000000 
+0200
@@ -45,9 +45,9 @@
 DB_Pass       cactiuser
 DB_Port       3306
 #DB_UseSSL    0
-#RDB_SSL_Key   
-#RDB_SSL_Cert
-#RDB_SSL_CA
+#DB_SSL_Key
+#DB_SSL_Cert
+#DB_SSL_CA
 
 RDB_Host      localhost
 RDB_Database  cacti
@@ -55,7 +55,7 @@
 RDB_Pass      cactiuser
 RDB_Port      3306
 #RDB_UseSSL    0
-#RDB_SSL_Key   
+#RDB_SSL_Key
 #RDB_SSL_Cert
 #RDB_SSL_CA
 


Reply via email to