Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package cvise for openSUSE:Factory checked in at 2022-01-04 19:37:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/cvise (Old) and /work/SRC/openSUSE:Factory/.cvise.new.1896 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "cvise" Tue Jan 4 19:37:54 2022 rev:45 rq:943772 version:2.4.0+git.20220104.21c4e26 Changes: -------- --- /work/SRC/openSUSE:Factory/cvise/cvise.changes 2021-12-21 18:41:42.893932181 +0100 +++ /work/SRC/openSUSE:Factory/.cvise.new.1896/cvise.changes 2022-01-04 19:38:16.453991650 +0100 @@ -1,0 +2,14 @@ +Tue Jan 04 13:49:40 UTC 2022 - mli...@suse.cz + +- Update to version 2.4.0+git.20220104.21c4e26: + * Remove C-Reduce test-case. + * skip non VarDecl for getInitExprFromBase + * Fix topformflat sanity check in lines pass. + * Use repology. + +------------------------------------------------------------------- +Tue Jan 4 09:05:26 UTC 2022 - Martin Li??ka <mli...@suse.cz> + +- Add chardet as a Requirement. + +------------------------------------------------------------------- Old: ---- cvise-2.4.0+git.20211209.2669efd.tar.xz New: ---- cvise-2.4.0+git.20220104.21c4e26.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ cvise.spec ++++++ --- /var/tmp/diff_new_pack.uNzalN/_old 2022-01-04 19:38:16.965992320 +0100 +++ /var/tmp/diff_new_pack.uNzalN/_new 2022-01-04 19:38:16.969992325 +0100 @@ -1,7 +1,7 @@ # # spec file for package cvise # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 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: cvise -Version: 2.4.0+git.20211209.2669efd +Version: 2.4.0+git.20220104.21c4e26 Release: 0 Summary: Super-parallel Python port of the C-Reduce License: BSD-3-Clause @@ -44,6 +44,7 @@ Requires: indent Requires: llvm Requires: python3-Pebble +Requires: python3-chardet Requires: python3-psutil Requires: unifdef ++++++ cvise-2.4.0+git.20211209.2669efd.tar.xz -> cvise-2.4.0+git.20220104.21c4e26.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cvise-2.4.0+git.20211209.2669efd/INSTALL.md new/cvise-2.4.0+git.20220104.21c4e26/INSTALL.md --- old/cvise-2.4.0+git.20211209.2669efd/INSTALL.md 2021-12-09 10:54:58.000000000 +0100 +++ new/cvise-2.4.0+git.20220104.21c4e26/INSTALL.md 2022-01-04 14:46:35.000000000 +0100 @@ -5,6 +5,8 @@ Before compiling C-Vise yourself, you might want to see if your OS comes with a pre-compiled package for C-Vise. +[](https://repology.org/project/cvise/versions) + ### openSUSE Tumbleweed ```shell diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cvise-2.4.0+git.20211209.2669efd/clang_delta/Transformation.cpp new/cvise-2.4.0+git.20220104.21c4e26/clang_delta/Transformation.cpp --- old/cvise-2.4.0+git.20211209.2669efd/clang_delta/Transformation.cpp 2021-12-09 10:54:58.000000000 +0100 +++ new/cvise-2.4.0+git.20220104.21c4e26/clang_delta/Transformation.cpp 2022-01-04 14:46:35.000000000 +0100 @@ -268,7 +268,9 @@ const ValueDecl *OrigDecl = DRE->getDecl(); const VarDecl *VD = dyn_cast<VarDecl>(OrigDecl); - TransAssert(VD && "Bad VarDecl!"); + if (!VD) + return NULL; + const Type * Ty = VD->getType().getTypePtr(); if (Ty->isPointerType()) return NULL; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cvise-2.4.0+git.20211209.2669efd/cvise/passes/lines.py new/cvise-2.4.0+git.20220104.21c4e26/cvise/passes/lines.py --- old/cvise-2.4.0+git.20211209.2669efd/cvise/passes/lines.py 2021-12-09 10:54:58.000000000 +0100 +++ new/cvise-2.4.0+git.20220104.21c4e26/cvise/passes/lines.py 2022-01-04 14:46:35.000000000 +0100 @@ -26,6 +26,7 @@ for line in proc.stdout.splitlines(keepends=True): if not line.isspace(): tmp_file.write(line) + tmp_file.flush() # we need to check that sanity check is still fine if check_sanity: