Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package os-autoinst for openSUSE:Factory 
checked in at 2023-02-18 17:11:03
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/os-autoinst (Old)
 and      /work/SRC/openSUSE:Factory/.os-autoinst.new.22824 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "os-autoinst"

Sat Feb 18 17:11:03 2023 rev:360 rq:1066441 version:4.6.1676641030.f996c8e

Changes:
--------
--- /work/SRC/openSUSE:Factory/os-autoinst/os-autoinst.changes  2023-02-16 
16:56:43.490909975 +0100
+++ /work/SRC/openSUSE:Factory/.os-autoinst.new.22824/os-autoinst.changes       
2023-02-18 17:11:27.687143522 +0100
@@ -1,0 +2,14 @@
+Sat Feb 18 02:36:48 UTC 2023 - ok...@suse.com
+
+- Update to version 4.6.1676641030.f996c8e:
+  * Disable test for OCR feature on archs where we lack dependencies
+  * testapi: Fix 'snd2png' call arguments introduced in 264fcd83
+  * Introduce VNC_EXTRA_VARS variable
+  * Fix retry logic for git clone
+  * Turn off commit signing in git tests
+  * Use proper perl "signatures" in testapi
+  * t: Remove unnecessary uncovered mocking in 03-testapi.t
+  * t: Cleanup temporary file from 03-testapi.t at end of test
+  * testapi: Add signatures for various, now test-covered functions
+
+-------------------------------------------------------------------

Old:
----
  os-autoinst-4.6.1676451610.d3d76e5.obscpio

New:
----
  os-autoinst-4.6.1676641030.f996c8e.obscpio

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

Other differences:
------------------
++++++ os-autoinst-test.spec ++++++
--- /var/tmp/diff_new_pack.Dmg7Qy/_old  2023-02-18 17:11:29.791156807 +0100
+++ /var/tmp/diff_new_pack.Dmg7Qy/_new  2023-02-18 17:11:29.795156832 +0100
@@ -19,7 +19,7 @@
 %define name_ext -test
 %define         short_name os-autoinst
 Name:           %{short_name}%{?name_ext}
-Version:        4.6.1676451610.d3d76e5
+Version:        4.6.1676641030.f996c8e
 Release:        0
 Summary:        test package for os-autoinst
 License:        GPL-2.0-or-later

++++++ os-autoinst.spec ++++++
--- /var/tmp/diff_new_pack.Dmg7Qy/_old  2023-02-18 17:11:29.827157034 +0100
+++ /var/tmp/diff_new_pack.Dmg7Qy/_new  2023-02-18 17:11:29.835157085 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           os-autoinst
-Version:        4.6.1676451610.d3d76e5
+Version:        4.6.1676641030.f996c8e
 Release:        0
 Summary:        OS-level test automation
 License:        GPL-2.0-or-later
@@ -73,12 +73,23 @@
 %else
 %define python_style_requires %{nil}
 %endif
+%ifnarch ppc ppc64 ppc64le s390x
+%bcond_without ocr
+%else
+%bcond_with ocr
+%endif
+%if %{with ocr}
+# The following line is generated from dependencies.yaml
+%define ocr_requires tesseract-ocr tesseract-ocr-traineddata-english
+%else
+%define ocr_requires %{nil}
+%endif
 # The following line is generated from dependencies.yaml
 %define test_base_requires %main_requires cpio icewm perl(Benchmark) 
perl(Devel::Cover) perl(FindBin) perl(Pod::Coverage) perl(Test::Fatal) 
perl(Test::Mock::Time) perl(Test::MockModule) perl(Test::MockObject) 
perl(Test::MockRandom) perl(Test::Mojo) perl(Test::Most) perl(Test::Output) 
perl(Test::Pod) perl(Test::Strict) perl(Test::Warnings) >= 0.029 procps 
python3-setuptools qemu >= 4.0 qemu-tools qemu-x86 xorg-x11-Xvnc xterm 
xterm-console
 # The following line is generated from dependencies.yaml
 %define test_version_only_requires perl(Mojo::IOLoop::ReadWriteProcess) >= 0.28
 # The following line is generated from dependencies.yaml
-%define test_requires %build_requires %spellcheck_requires %test_base_requires 
%yamllint_requires perl(Inline::Python) python3-Pillow-tk tesseract-ocr 
tesseract-ocr-traineddata-english
+%define test_requires %build_requires %ocr_requires %spellcheck_requires 
%test_base_requires %yamllint_requires perl(Inline::Python) python3-Pillow-tk
 # The following line is generated from dependencies.yaml
 %define devel_requires %python_style_requires %test_requires ShellCheck 
perl(Code::TidyAll) perl(Devel::Cover) perl(Devel::Cover::Report::Codecov) 
perl(Perl::Tidy) perl(Template::Toolkit)
 %define s390_zvm_requires /usr/bin/xkbcomp /usr/bin/Xvnc x3270 icewm xterm 
xterm-console xdotool fonts-config mkfontdir mkfontscale
@@ -86,10 +97,12 @@
 # For unbuffered output of Perl testsuite, especially when running it on OBS 
so timestamps in the log are actually useful
 BuildRequires:  expect
 Requires:       %main_requires
+%if %{with ocr}
+Recommends:     tesseract-ocr
+%endif
 Recommends:     dumponlyconsole %s390_zvm_requires
 Recommends:     qemu >= 4.0.0
 Recommends:     qemu-tools
-Recommends:     tesseract-ocr
 # Optional dependency for Python test API support
 Recommends:     perl(Inline::Python)
 # Optional dependency for crop.py
@@ -185,6 +198,10 @@
 rm xt/30-make.t
 # https://progress.opensuse.org/issues/114881
 rm t/27-consoles-vmware.t
+# exclude tests requiring OCR dependencies when those are disabled
+%if %{without ocr}
+rm t/02-test_ocr.t
+%endif
 
 %build
 %define __builder ninja

++++++ os-autoinst-4.6.1676451610.d3d76e5.obscpio -> 
os-autoinst-4.6.1676641030.f996c8e.obscpio ++++++
/work/SRC/openSUSE:Factory/os-autoinst/os-autoinst-4.6.1676451610.d3d76e5.obscpio
 
/work/SRC/openSUSE:Factory/.os-autoinst.new.22824/os-autoinst-4.6.1676641030.f996c8e.obscpio
 differ: char 50, line 1

++++++ os-autoinst.obsinfo ++++++
--- /var/tmp/diff_new_pack.Dmg7Qy/_old  2023-02-18 17:11:29.915157590 +0100
+++ /var/tmp/diff_new_pack.Dmg7Qy/_new  2023-02-18 17:11:29.919157615 +0100
@@ -1,5 +1,5 @@
 name: os-autoinst
-version: 4.6.1676451610.d3d76e5
-mtime: 1676451610
-commit: d3d76e57beb6f45ace755b50d3b5c53c8a263606
+version: 4.6.1676641030.f996c8e
+mtime: 1676641030
+commit: f996c8e238fc1cb63c6c3b30328970dd54b1ea00
 

Reply via email to