Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package cvise for openSUSE:Factory checked 
in at 2021-09-17 23:26:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/cvise (Old)
 and      /work/SRC/openSUSE:Factory/.cvise.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "cvise"

Fri Sep 17 23:26:11 2021 rev:38 rq:919745 version:2.3.0+git.20210917.064adbb

Changes:
--------
--- /work/SRC/openSUSE:Factory/cvise/cvise.changes      2021-08-20 
16:58:19.870831846 +0200
+++ /work/SRC/openSUSE:Factory/.cvise.new.1899/cvise.changes    2021-09-17 
23:26:34.777269785 +0200
@@ -1,0 +2,7 @@
+Fri Sep 17 13:04:50 UTC 2021 - mli...@suse.cz
+
+- Update to version 2.3.0+git.20210917.064adbb:
+  * Print filename when reducing multiple files.
+  * Fix typo in README.md.
+
+-------------------------------------------------------------------

Old:
----
  cvise-2.3.0+git.20210819.0f98784.tar.xz

New:
----
  cvise-2.3.0+git.20210917.064adbb.tar.xz

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

Other differences:
------------------
++++++ cvise.spec ++++++
--- /var/tmp/diff_new_pack.4Zwpqu/_old  2021-09-17 23:26:35.249270205 +0200
+++ /var/tmp/diff_new_pack.4Zwpqu/_new  2021-09-17 23:26:35.253270209 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           cvise
-Version:        2.3.0+git.20210819.0f98784
+Version:        2.3.0+git.20210917.064adbb
 Release:        0
 Summary:        Super-parallel Python port of the C-Reduce
 License:        BSD-3-Clause

++++++ cvise-2.3.0+git.20210819.0f98784.tar.xz -> 
cvise-2.3.0+git.20210917.064adbb.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cvise-2.3.0+git.20210819.0f98784/README.md 
new/cvise-2.3.0+git.20210917.064adbb/README.md
--- old/cvise-2.3.0+git.20210819.0f98784/README.md      2021-08-19 
17:03:54.000000000 +0200
+++ new/cvise-2.3.0+git.20210917.064adbb/README.md      2021-09-17 
15:03:27.000000000 +0200
@@ -24,12 +24,12 @@
 the same behavior as original [delta](http://delta.tigris.org/) tool
 (but in super-parallel way).
 
-*NOTE:* C-Vise happens to do a pretty good job reducing the size of
+*NOTE*: C-Vise happens to do a pretty good job reducing the size of
 programs in languages other than C/C++, such as JavaScript and Rust.
 If you need to reduce programs in some other language, please give it
 a try.
 
-*NOTE:*: Binary pass group (`--pass-group=binary`) contains an experimental 
pass
+*NOTE*: Binary pass group (`--pass-group=binary`) contains an experimental pass
 that can reduce GCC's `.gcda` files.
 
 ## Speed Comparison
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/cvise-2.3.0+git.20210819.0f98784/cvise/utils/testing.py 
new/cvise-2.3.0+git.20210917.064adbb/cvise/utils/testing.py
--- old/cvise-2.3.0+git.20210819.0f98784/cvise/utils/testing.py 2021-08-19 
17:03:54.000000000 +0200
+++ new/cvise-2.3.0+git.20210917.064adbb/cvise/utils/testing.py 2021-09-17 
15:03:27.000000000 +0200
@@ -558,6 +558,12 @@
         self.pass_statistic.add_success(self.current_pass)
 
         pct = 100 - (self.total_file_size * 100.0 / self.orig_total_file_size)
-        msg = f'({round(pct, 1)}%, {self.total_file_size} bytes'
-        msg += f', {self.total_line_count} lines)' if self.total_line_count 
else ')'
-        logging.info(msg)
+        notes = []
+        notes.append(f'{round(pct, 1)}%')
+        notes.append(f'{self.total_file_size} bytes')
+        if self.total_line_count:
+            notes.append(f'{self.total_line_count} lines')
+        if len(self.test_cases) > 1:
+            notes.append(test_env.test_case)
+
+        logging.info('(' + ', '.join(notes) + ')')

Reply via email to