Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package bonnie++ for openSUSE:Factory checked in at 2023-02-16 16:57:01 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/bonnie++ (Old) and /work/SRC/openSUSE:Factory/.bonnie++.new.22824 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "bonnie++" Thu Feb 16 16:57:01 2023 rev:27 rq:1066127 version:2.00a Changes: -------- --- /work/SRC/openSUSE:Factory/bonnie++/bonnie++.changes 2021-07-01 07:05:45.343420240 +0200 +++ /work/SRC/openSUSE:Factory/.bonnie++.new.22824/bonnie++.changes 2023-02-16 16:57:07.844403909 +0100 @@ -1,0 +2,6 @@ +Wed Feb 15 15:34:39 UTC 2023 - Avinesh Kumar <avinesh.ku...@suse.com> + +- Update to 2.00a: + * Fixed an error in assigning colors in bon_csv2html. + +------------------------------------------------------------------- Old: ---- bonnie++-1.98.tgz New: ---- bonnie++-2.00a.tgz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ bonnie++.spec ++++++ --- /var/tmp/diff_new_pack.k3zCYD/_old 2023-02-16 16:57:08.388273354 +0100 +++ /var/tmp/diff_new_pack.k3zCYD/_new 2023-02-16 16:57:08.392273371 +0100 @@ -1,7 +1,7 @@ # # spec file for package bonnie++ # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: bonnie++ -Version: 1.98 +Version: 2.00a Release: 0 Summary: A Bonnie-Like File System Benchmark License: MIT ++++++ bonnie++-1.98.tgz -> bonnie++-2.00a.tgz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bonnie++-1.98/Makefile new/bonnie++-2.00a/Makefile --- old/bonnie++-1.98/Makefile 2018-12-26 05:14:28.000000000 +0100 +++ new/bonnie++-2.00a/Makefile 2020-09-22 14:37:01.000000000 +0200 @@ -5,14 +5,14 @@ SCRIPTS=bon_csv2txt -prefix=/home/rjc/debian/bonnie++-1.98/debian/bonnie++/usr +prefix=/home/etbe/debian/bonnie++/debian/bonnie++/usr eprefix=${prefix} #MORE_WARNINGS=-Weffc++ WFLAGS=-Wall -W -Wshadow -Wpointer-arith -Wwrite-strings -pedantic -ffor-scope -Wcast-align -Wsign-compare -Wpointer-arith -Wwrite-strings -Wformat-security -Wswitch-enum -Winit-self $(MORE_WARNINGS) CFLAGS=-O2 -DNDEBUG $(WFLAGS) $(MORECFLAGS) CXX=g++ $(CFLAGS) LINK=g++ -THREAD_LFLAGS=-lpthread +THREAD_LFLAGS=-pthread INSTALL=/usr/bin/install -c INSTALL_PROGRAM=${INSTALL} @@ -58,9 +58,9 @@ ${INSTALL} $(SCRIPTS) $(eprefix)/bin install: install-bin - mkdir -p /home/rjc/debian/bonnie++-1.98/debian/bonnie++/usr/share/man/man1 /home/rjc/debian/bonnie++-1.98/debian/bonnie++/usr/share/man/man8 - ${INSTALL} -m 644 $(MAN1) /home/rjc/debian/bonnie++-1.98/debian/bonnie++/usr/share/man/man1 - ${INSTALL} -m 644 $(MAN8) /home/rjc/debian/bonnie++-1.98/debian/bonnie++/usr/share/man/man8 + mkdir -p /home/etbe/debian/bonnie++/debian/bonnie++/usr/share/man/man1 /home/etbe/debian/bonnie++/debian/bonnie++/usr/share/man/man8 + ${INSTALL} -m 644 $(MAN1) /home/etbe/debian/bonnie++/debian/bonnie++/usr/share/man/man1 + ${INSTALL} -m 644 $(MAN8) /home/etbe/debian/bonnie++/debian/bonnie++/usr/share/man/man8 %.o: %.cpp $(CXX) -c $< diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bonnie++-1.98/bon_csv2html.cpp new/bonnie++-2.00a/bon_csv2html.cpp --- old/bonnie++-1.98/bon_csv2html.cpp 2018-09-13 16:54:36.000000000 +0200 +++ new/bonnie++-2.00a/bon_csv2html.cpp 2020-09-22 14:36:14.000000000 +0200 @@ -36,7 +36,7 @@ typedef enum { eNoCols, eSpeed, eCPU, eLatency } VALS_TYPE; const VALS_TYPE vals[MAX_ITEMS] = - { eNoCols,eNoCols,eNoCols,eNoCols,eNoCols,eNoCols,eNoCols,eSpeed,eCPU,eSpeed,eCPU,eSpeed,eCPU,eSpeed,eCPU,eSpeed,eCPU,eSpeed,eCPU, + { eNoCols,eNoCols,eNoCols,eNoCols,eNoCols,eNoCols,eNoCols,eNoCols,eNoCols,eSpeed,eCPU,eSpeed,eCPU,eSpeed,eCPU,eSpeed,eCPU,eSpeed,eCPU,eSpeed,eCPU, eNoCols,eNoCols,eNoCols,eNoCols,eNoCols,eSpeed,eCPU,eSpeed,eCPU,eSpeed,eCPU,eSpeed,eCPU,eSpeed,eCPU,eSpeed,eCPU, eLatency,eLatency,eLatency,eLatency,eLatency,eLatency,eLatency,eLatency,eLatency,eLatency,eLatency,eLatency }; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bonnie++-1.98/bon_csv2txt new/bonnie++-2.00a/bon_csv2txt --- old/bonnie++-1.98/bon_csv2txt 2018-12-26 05:14:28.000000000 +0100 +++ new/bonnie++-2.00a/bon_csv2txt 2020-09-22 14:37:01.000000000 +0200 @@ -23,7 +23,7 @@ sub IOHeader { - my $version = '1.98'; + my $version = '2.00'; printf(STDOUT "Version %9s ------Sequential Output------ --Sequential Input- --Random-\n", $version); print " -Per Chr- --Block-- -Rewrite- -Per Chr- --Block-- --Seeks--\n"; print "Name:Size etc /sec %CP /sec %CP /sec %CP /sec %CP /sec %CP /sec %CP\n"; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bonnie++-1.98/bonnie++.spec new/bonnie++-2.00a/bonnie++.spec --- old/bonnie++-1.98/bonnie++.spec 2018-12-26 05:14:28.000000000 +0100 +++ new/bonnie++-2.00a/bonnie++.spec 2020-09-22 14:37:01.000000000 +0200 @@ -1,6 +1,6 @@ Summary: A program for benchmarking hard drives and filesystems Name: bonnie++ -Version: 1.98 +Version: 2.00 Release: 1 Copyright: GPL Group: Utilities/Benchmarking diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bonnie++-1.98/bonnie.h new/bonnie++-2.00a/bonnie.h --- old/bonnie++-1.98/bonnie.h 2018-12-26 05:14:28.000000000 +0100 +++ new/bonnie++-2.00a/bonnie.h 2020-09-22 14:37:01.000000000 +0200 @@ -3,7 +3,7 @@ using namespace std; -#define BON_VERSION "1.98" +#define BON_VERSION "2.00" #define CSV_VERSION "1.98" #include "port.h" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bonnie++-1.98/configure new/bonnie++-2.00a/configure --- old/bonnie++-1.98/configure 2018-09-13 15:07:36.000000000 +0200 +++ new/bonnie++-2.00a/configure 2020-09-22 13:36:27.000000000 +0200 @@ -2145,7 +2145,7 @@ ac_config_headers="$ac_config_headers conf.h" -version="1.98" +version="2.00" csv_version="1.98" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bonnie++-1.98/configure.in new/bonnie++-2.00a/configure.in --- old/bonnie++-1.98/configure.in 2018-09-13 15:07:36.000000000 +0200 +++ new/bonnie++-2.00a/configure.in 2020-09-22 14:36:55.000000000 +0200 @@ -2,7 +2,7 @@ AC_INIT(bonnie++.cpp) AC_CONFIG_HEADER(conf.h) AC_SUBST(version) -version="1.98" +version="2.00a" AC_SUBST(csv_version) csv_version="1.98" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bonnie++-1.98/debian/changelog new/bonnie++-2.00a/debian/changelog --- old/bonnie++-1.98/debian/changelog 2018-12-26 05:14:28.000000000 +0100 +++ new/bonnie++-2.00a/debian/changelog 2020-09-22 14:37:01.000000000 +0200 @@ -1,3 +1,16 @@ +bonnie++ (2.00a) unstable; urgency=medium + + * Missed the patch in the previous ver, so had to do another. + + -- Russell Coker <russ...@coker.com.au> Tue, 22 Sep 2020 22:37:01 +1000 + +bonnie++ (2.00) unstable; urgency=medium + + * Fixed an error in assigning colors in bon_csv2html. + * Called it version 2.00 because it's time. + + -- Russell Coker <russ...@coker.com.au> Tue, 22 Sep 2020 21:35:02 +1000 + bonnie++ (1.98) unstable; urgency=medium * Fixed macros in bon_csv2html.cpp that had lower case due to excessive diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bonnie++-1.98/debian/control new/bonnie++-2.00a/debian/control --- old/bonnie++-1.98/debian/control 2017-09-09 11:46:50.000000000 +0200 +++ new/bonnie++-2.00a/debian/control 2020-02-02 09:54:36.000000000 +0100 @@ -5,6 +5,9 @@ Standards-Version: 3.5.6 Build-Depends: debhelper (>= 10) XS-Testsuite: autopkgtest +Homepage: https://doc.coker.com.au/projects/bonnie/ +Vcs-Git: https://salsa.debian.org/etbe/bonnie.git +Vcs-Browser: https://salsa.debian.org/etbe/bonnie Package: bonnie++ Architecture: any diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bonnie++-1.98/sun/pkginfo new/bonnie++-2.00a/sun/pkginfo --- old/bonnie++-1.98/sun/pkginfo 2018-12-26 05:14:28.000000000 +0100 +++ new/bonnie++-2.00a/sun/pkginfo 2020-09-22 14:37:01.000000000 +0200 @@ -1,6 +1,6 @@ PKG=bonnie++ ARCH=sparc -VERSION=1.98 +VERSION=2.00 CATEGORY=application NAME=Bonnie++ DESC=Hard drive benchmark suite