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-08-27 11:50:15 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/cvise (Old) and /work/SRC/openSUSE:Factory/.cvise.new.2083 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "cvise" Sat Aug 27 11:50:15 2022 rev:50 rq:999469 version:2.4.0+git.20220826.b11db4d Changes: -------- --- /work/SRC/openSUSE:Factory/cvise/cvise.changes 2022-08-25 15:09:07.133218240 +0200 +++ /work/SRC/openSUSE:Factory/.cvise.new.2083/cvise.changes 2022-08-27 11:50:19.593873554 +0200 @@ -1,0 +2,9 @@ +Fri Aug 26 19:17:59 UTC 2022 - mli...@suse.cz + +- Update to version 2.4.0+git.20220826.b11db4d: + * Run flake8 directly due to broken pytest-flake8. + * Add new line. + * List tested LLVM versions in Installation page. +- Remove extra removal of pytest-flake8 in spec file. + +------------------------------------------------------------------- Old: ---- cvise-2.4.0+git.20220809.f32223a.tar.xz New: ---- cvise-2.4.0+git.20220826.b11db4d.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ cvise.spec ++++++ --- /var/tmp/diff_new_pack.SJja0E/_old 2022-08-27 11:50:20.165874783 +0200 +++ /var/tmp/diff_new_pack.SJja0E/_new 2022-08-27 11:50:20.165874783 +0200 @@ -17,7 +17,7 @@ Name: cvise -Version: 2.4.0+git.20220809.f32223a +Version: 2.4.0+git.20220826.b11db4d Release: 0 Summary: Super-parallel Python port of the C-Reduce License: BSD-3-Clause @@ -62,7 +62,6 @@ %prep %setup -q %autopatch -p1 -sed -i '/addopts/ s/--flake8//' setup.cfg %build %define __builder ninja ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.SJja0E/_old 2022-08-27 11:50:20.217874895 +0200 +++ /var/tmp/diff_new_pack.SJja0E/_new 2022-08-27 11:50:20.217874895 +0200 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/marxin/cvise</param> - <param name="changesrevision">fbbfc2757736be38ac38eb26c20bf6b36dd8fc6c</param></service></servicedata> + <param name="changesrevision">b11db4d948cbbc8d54c8156f66def6a65e90ea81</param></service></servicedata> (No newline at EOF) ++++++ cvise-2.4.0+git.20220809.f32223a.tar.xz -> cvise-2.4.0+git.20220826.b11db4d.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cvise-2.4.0+git.20220809.f32223a/.github/workflows/build.yml new/cvise-2.4.0+git.20220826.b11db4d/.github/workflows/build.yml --- old/cvise-2.4.0+git.20220809.f32223a/.github/workflows/build.yml 2022-08-09 19:58:34.000000000 +0200 +++ new/cvise-2.4.0+git.20220826.b11db4d/.github/workflows/build.yml 2022-08-26 20:23:41.000000000 +0200 @@ -37,7 +37,6 @@ steps: - run: zypper -n install binutils clang${{ matrix.llvm }}-devel cmake flex gcc-c++ llvm${{ matrix.llvm }}-devel python3-Pebble python3-pytest unifdef python3-psutil curl git python3-chardet - python3-pytest-flake8 python3-flake8 python3-flake8-builtins python3-flake8-bugbear @@ -55,6 +54,8 @@ cd objdir cmake .. -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} -DCMAKE_CXX_FLAGS=${{ matrix.extra-flags }} make -j`nproc` VERBOSE=1 + - name: flake8 + run: flake8 - name: test run: | cd objdir diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cvise-2.4.0+git.20220809.f32223a/INSTALL.md new/cvise-2.4.0+git.20220826.b11db4d/INSTALL.md --- old/cvise-2.4.0+git.20220809.f32223a/INSTALL.md 2022-08-09 19:58:34.000000000 +0200 +++ new/cvise-2.4.0+git.20220826.b11db4d/INSTALL.md 2022-08-26 20:23:41.000000000 +0200 @@ -77,9 +77,11 @@ * [LLVM/Clang 9.0.0 or later](http://llvm.org/releases/download.html) (No need to compile it: the appropriate "pre-built binaries" package is - all you need. For example, the openSUSE Tumbleweed provides them + all you need). For example, the openSUSE Tumbleweed provides them by `llvm-devel` and `clang-devel` packages. + Tested LLVM versions: ``9.0.0`` - ``15.0.0`` + * [Python 3.6+](https://www.python.org/downloads/) * [Pebble](https://pypi.org/project/Pebble/) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cvise-2.4.0+git.20220809.f32223a/setup.cfg new/cvise-2.4.0+git.20220826.b11db4d/setup.cfg --- old/cvise-2.4.0+git.20220809.f32223a/setup.cfg 2022-08-09 19:58:34.000000000 +0200 +++ new/cvise-2.4.0+git.20220826.b11db4d/setup.cfg 2022-08-26 20:23:41.000000000 +0200 @@ -4,4 +4,4 @@ exclude = objdir [tool:pytest] -addopts = -vv -Wdefault --flake8 +addopts = -vv -Wdefault