Hello community,

here is the log from the commit of package collectl for openSUSE:Factory 
checked in at 2017-05-17 10:54:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/collectl (Old)
 and      /work/SRC/openSUSE:Factory/.collectl.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "collectl"

Wed May 17 10:54:30 2017 rev:28 rq:495209 version:4.1.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/collectl/collectl.changes        2017-03-04 
16:44:53.658543420 +0100
+++ /work/SRC/openSUSE:Factory/.collectl.new/collectl.changes   2017-05-17 
10:54:31.901329018 +0200
@@ -1,0 +2,8 @@
+Tue Apr 11 15:10:05 UTC 2017 - [email protected]
+
+- include colmux
+- Update to 4.1.3
+  + correct use of uninitialized variable on output of distro info
+    on openSUSE 
+
+-------------------------------------------------------------------

Old:
----
  collectl-4.1.2.src.tar.gz

New:
----
  collectl-4.1.3.src.tar.gz

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

Other differences:
------------------
++++++ collectl.spec ++++++
--- /var/tmp/diff_new_pack.zZsOYD/_old  2017-05-17 10:54:32.837197361 +0200
+++ /var/tmp/diff_new_pack.zZsOYD/_new  2017-05-17 10:54:32.837197361 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           collectl
-Version:        4.1.2
+Version:        4.1.3
 Release:        0
 Summary:        Collects data that describes the current system status
 License:        Artistic-1.0 and GPL-2.0+
@@ -43,6 +43,7 @@
 %install
 # Install collectl in /usr/bin and link it in /usr/sbin
 install -m 755 -D collectl %{buildroot}%{_bindir}/collectl
+install -m 755 -D collectl %{buildroot}%{_bindir}/colmux
 mkdir -p %{buildroot}/%{_sbindir}
 ln -s  %{_bindir}/collectl %{buildroot}/%{_sbindir}/collectl
 install -m 644 -D collectl.conf %{buildroot}/%{_sysconfdir}/collectl.conf
@@ -57,6 +58,7 @@
 ln -sf %{_sbindir}/service %{buildroot}%{_sbindir}/rccollectl
 install -m 644 -D %{SOURCE2} 
%{buildroot}%{_localstatedir}/adm/fillup-templates/sysconfig.collectl
 install -m 644 -D man1/collectl.1 %{buildroot}%{_mandir}/man1/collectl.1
+install -m 644 -D man1/colmux.1 %{buildroot}%{_mandir}/man1/colmux.1
 
 %post
 %fillup_only
@@ -79,9 +81,11 @@
 %{_localstatedir}/adm/fillup-templates/sysconfig.collectl
 %config(noreplace) %{_sysconfdir}/collectl.conf
 %{_bindir}/collectl
+%{_bindir}/colmux
 %{_sbindir}/collectl
 %{_sbindir}/rccollectl
 %{_datadir}/collectl
 %{_mandir}/man1/collectl.1.gz
+%{_mandir}/man1/colmux.1.gz
 
 %changelog

++++++ collectl-4.1.2.src.tar.gz -> collectl-4.1.3.src.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/collectl-4.1.2/RELEASE-collectl 
new/collectl-4.1.3/RELEASE-collectl
--- old/collectl-4.1.2/RELEASE-collectl 2017-02-27 21:46:01.000000000 +0100
+++ new/collectl-4.1.3/RELEASE-collectl 2017-04-10 20:38:40.000000000 +0200
@@ -27,6 +27,9 @@
 
 COLLECTL CHANGES
 
+4.1.3   Apr 10, 2017
+  - throws 'unit var' building distro on openSUSE
+
 4.1.2   Feb 27, 2017
   - incorrectly requiring a + with --rawdskfilt to be at beginning
   - when added support for 64bit IB counters it looks like I was only
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/collectl-4.1.2/collectl new/collectl-4.1.3/collectl
--- old/collectl-4.1.2/collectl 2017-02-27 21:46:01.000000000 +0100
+++ new/collectl-4.1.3/collectl 2017-04-10 20:38:40.000000000 +0200
@@ -111,7 +111,7 @@
 $rootFlag=(!$PcFlag && `whoami`=~/root/) ? 1 : 0;
 $SrcArch= $Config{"archname"};
 
-$Version=  '4.1.2-1';
+$Version=  '4.1.3-1';
 $Copyright='Copyright 2003-2017 Hewlett-Packard Development Company, L.P.';
 $License=  "collectl may be copied only under the terms of either the Artistic 
License\n";
 $License.= "or the GNU General Public License, which may be found in the 
source kit";
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/collectl-4.1.2/formatit.ph 
new/collectl-4.1.3/formatit.ph
--- old/collectl-4.1.2/formatit.ph      2017-02-27 21:46:01.000000000 +0100
+++ new/collectl-4.1.3/formatit.ph      2017-04-10 20:38:40.000000000 +0200
@@ -46,8 +46,8 @@
   elsif (-e '/etc/SuSE-release')
   {
     my @temp=split(/\n/, cat('/etc/SuSE-release', 1));
-    $temp[2]=~/(\d+$)/;         # patchlevel
-    $Distro="$temp[0] SP$1";    # append onto release string as SP
+    $Distro="$temp[0]";        # distro/version
+    $Distro.="SP:$1"    if $temp[2]=~/PATCHLEVEL = (\d+$)/;   # if patchlevel 
defined
   }
   elsif (-e '/etc/debian_version')
   {


Reply via email to