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-05-08 22:07:35 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/cvise (Old) and /work/SRC/openSUSE:Factory/.cvise.new.2988 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "cvise" Sat May 8 22:07:35 2021 rev:35 rq:891437 version:2.3.0+git.20210419.e9a7b94 Changes: -------- --- /work/SRC/openSUSE:Factory/cvise/cvise.changes 2021-04-25 21:29:08.464554486 +0200 +++ /work/SRC/openSUSE:Factory/.cvise.new.2988/cvise.changes 2021-05-08 22:08:46.077391735 +0200 @@ -1,0 +2,11 @@ +Sat May 08 06:33:02 UTC 2021 - mli...@suse.cz + +- Update to version 2.3.0+git.20210419.e9a7b94: + * Simplify bool option definition. + +------------------------------------------------------------------- +Sat May 8 06:24:58 UTC 2021 - Martin Li??ka <mli...@suse.cz> + +- Use non-version dependencies to LLVM and clang. + +------------------------------------------------------------------- Old: ---- cvise-2.3.0+git.20210419.7c7526b.tar.xz New: ---- cvise-2.3.0+git.20210419.e9a7b94.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ cvise.spec ++++++ --- /var/tmp/diff_new_pack.ujs6Aw/_old 2021-05-08 22:08:46.601389466 +0200 +++ /var/tmp/diff_new_pack.ujs6Aw/_new 2021-05-08 22:08:46.605389449 +0200 @@ -17,17 +17,19 @@ Name: cvise -Version: 2.3.0+git.20210419.7c7526b +Version: 2.3.0+git.20210419.e9a7b94 Release: 0 Summary: Super-parallel Python port of the C-Reduce License: BSD-3-Clause URL: https://github.com/marxin/cvise Source: %{name}-%{version}.tar.xz BuildRequires: astyle +BuildRequires: clang-devel BuildRequires: cmake BuildRequires: flex BuildRequires: gcc-c++ BuildRequires: indent +BuildRequires: llvm-devel BuildRequires: ncurses-devel BuildRequires: ninja BuildRequires: python3-Pebble @@ -36,24 +38,12 @@ BuildRequires: python3-pytest-flake8 BuildRequires: unifdef Requires: astyle +Requires: clang Requires: indent +Requires: llvm Requires: python3-Pebble Requires: python3-psutil Requires: unifdef -%if %{?suse_version} > 1500 -BuildRequires: clang12-devel -BuildRequires: llvm12-devel -%else -BuildRequires: clang9-devel -BuildRequires: llvm9-devel -%endif -%if %{?suse_version} > 1500 -Requires: clang12 -Requires: llvm12 -%else -Requires: clang9 -Requires: llvm9 -%endif %description ++++++ cvise-2.3.0+git.20210419.7c7526b.tar.xz -> cvise-2.3.0+git.20210419.e9a7b94.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cvise-2.3.0+git.20210419.7c7526b/cvise.py new/cvise-2.3.0+git.20210419.e9a7b94/cvise.py --- old/cvise-2.3.0+git.20210419.7c7526b/cvise.py 2021-04-19 14:22:37.000000000 +0200 +++ new/cvise-2.3.0+git.20210419.e9a7b94/cvise.py 2021-04-19 15:23:43.000000000 +0200 @@ -154,26 +154,26 @@ parser = argparse.ArgumentParser(description='C-Vise', formatter_class=argparse.RawDescriptionHelpFormatter, epilog=EPILOG_TEXT) parser.add_argument('--n', '-n', type=int, default=core_count, help='Number of cores to use; C-Vise tries to automatically pick a good setting but its choice may be too low or high for your situation') - parser.add_argument('--tidy', action='store_true', default=False, help='Do not make a backup copy of each file to reduce as file.orig') - parser.add_argument('--shaddap', action='store_true', default=False, help='Suppress output about non-fatal internal errors') - parser.add_argument('--die-on-pass-bug', action='store_true', default=False, help='Terminate C-Vise if a pass encounters an otherwise non-fatal problem') - parser.add_argument('--sllooww', action='store_true', default=False, help='Try harder to reduce, but perhaps take a long time to do so') + parser.add_argument('--tidy', action='store_true', help='Do not make a backup copy of each file to reduce as file.orig') + parser.add_argument('--shaddap', action='store_true', help='Suppress output about non-fatal internal errors') + parser.add_argument('--die-on-pass-bug', action='store_true', help='Terminate C-Vise if a pass encounters an otherwise non-fatal problem') + parser.add_argument('--sllooww', action='store_true', help='Try harder to reduce, but perhaps take a long time to do so') parser.add_argument('--also-interesting', metavar='EXIT_CODE', type=int, help='A process exit code (somewhere in the range 64-113 would be usual) that, when returned by the interestingness test, will cause C-Vise to save a copy of the variant') - parser.add_argument('--debug', action='store_true', default=False, help='Print debug information (alias for --log-level=DEBUG)') + parser.add_argument('--debug', action='store_true', help='Print debug information (alias for --log-level=DEBUG)') parser.add_argument('--log-level', type=str, choices=['INFO', 'DEBUG', 'WARNING', 'ERROR'], default='INFO', help='Define the verbosity of the logged events') parser.add_argument('--log-file', type=str, help='Log events into LOG_FILE instead of stderr. New events are appended to the end of the file') - parser.add_argument('--no-give-up', action='store_true', default=False, help="Don't give up on a pass that hasn't made progress for {} iterations".format(testing.TestManager.GIVEUP_CONSTANT)) - parser.add_argument('--print-diff', action='store_true', default=False, help='Show changes made by transformations, for debugging') - parser.add_argument('--save-temps', action='store_true', default=False, help="Don't delete /tmp/cvise-xxxxxx directories on termination") - parser.add_argument('--skip-initial-passes', action='store_true', default=False, help='Skip initial passes (useful if input is already partially reduced)') - parser.add_argument('--skip-interestingness-test-check', '-s', action='store_true', default=False, help='Skip initial interestingness test check') + parser.add_argument('--no-give-up', action='store_true', help="Don't give up on a pass that hasn't made progress for {} iterations".format(testing.TestManager.GIVEUP_CONSTANT)) + parser.add_argument('--print-diff', action='store_true', help='Show changes made by transformations, for debugging') + parser.add_argument('--save-temps', action='store_true', help="Don't delete /tmp/cvise-xxxxxx directories on termination") + parser.add_argument('--skip-initial-passes', action='store_true', help='Skip initial passes (useful if input is already partially reduced)') + parser.add_argument('--skip-interestingness-test-check', '-s', action='store_true', help='Skip initial interestingness test check') parser.add_argument('--remove-pass', help='Remove all instances of the specified passes from the schedule (comma-separated)') parser.add_argument('--start-with-pass', help='Start with the specified pass') - parser.add_argument('--no-timing', action='store_true', default=False, help='Do not print timestamps about reduction progress') - parser.add_argument('--timestamp', action='store_true', default=False, help='Print timestamps instead of relative time from a reduction start') + parser.add_argument('--no-timing', action='store_true', help='Do not print timestamps about reduction progress') + parser.add_argument('--timestamp', action='store_true', help='Print timestamps instead of relative time from a reduction start') parser.add_argument('--timeout', type=int, nargs='?', default=300, help='Interestingness test timeout in seconds') - parser.add_argument('--no-cache', action='store_true', default=False, help="Don't cache behavior of passes") - parser.add_argument('--skip-key-off', action='store_true', default=False, help="Disable skipping the rest of the current pass when 's' is pressed") + parser.add_argument('--no-cache', action='store_true', help="Don't cache behavior of passes") + parser.add_argument('--skip-key-off', action='store_true', help="Disable skipping the rest of the current pass when 's' is pressed") parser.add_argument('--max-improvement', metavar='BYTES', type=int, help='Largest improvement in file size from a single transformation that C-Vise should accept (useful only to slow C-Vise down)') passes_group = parser.add_mutually_exclusive_group() passes_group.add_argument('--pass-group', type=str, choices=get_available_pass_groups(), help='Set of passes used during the reduction')