Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package opi for openSUSE:Factory checked in 
at 2022-03-01 19:33:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/opi (Old)
 and      /work/SRC/openSUSE:Factory/.opi.new.1958 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "opi"

Tue Mar  1 19:33:14 2022 rev:28 rq:958321 version:2.4.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/opi/opi.changes  2022-01-28 22:13:28.314505736 
+0100
+++ /work/SRC/openSUSE:Factory/.opi.new.1958/opi.changes        2022-03-01 
19:33:15.892139698 +0100
@@ -1,0 +2,6 @@
+Tue Mar  1 17:48:46 UTC 2022 - Dominik Heidler <dheid...@suse.de>
+
+- Version 2.4.5
+- Packman codec changes
+
+-------------------------------------------------------------------

Old:
----
  opi-2.4.4.tar.gz

New:
----
  opi-2.4.5.tar.gz

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

Other differences:
------------------
++++++ opi.spec ++++++
--- /var/tmp/diff_new_pack.9M3wCr/_old  2022-03-01 19:33:16.412139944 +0100
+++ /var/tmp/diff_new_pack.9M3wCr/_new  2022-03-01 19:33:16.416139946 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           opi
-Version:        2.4.4
+Version:        2.4.5
 Release:        0
 Summary:        OBS Package Installer (CLI)
 License:        GPL-3.0-only

++++++ opi-2.4.4.tar.gz -> opi-2.4.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/opi-2.4.4/opi/plugins/packman.py 
new/opi-2.4.5/opi/plugins/packman.py
--- old/opi-2.4.4/opi/plugins/packman.py        2022-01-28 12:08:21.000000000 
+0100
+++ new/opi-2.4.5/opi/plugins/packman.py        2022-03-01 18:46:10.000000000 
+0100
@@ -15,14 +15,17 @@
                opi.add_packman_repo(dup=True)
                opi.install_packman_packages([
                        'ffmpeg',
-                       'gstreamer-plugins-bad',
-                       'gstreamer-plugins-libav',
-                       'gstreamer-plugins-ugly',
                        'libavcodec-full',
                        'vlc-codecs',
+                       'pipewire-aptx',
+                       'gstreamer-plugins-bad-codecs',
+                       'gstreamer-plugins-ugly-codecs',
+                       'gstreamer-plugins-libav',
                ])
 
                opi.install_packages([
                        'gstreamer-plugins-good',
                        'gstreamer-plugins-good-extra',
+                       'gstreamer-plugins-bad',
+                       'gstreamer-plugins-ugly',
                ])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/opi-2.4.4/opi/version.py new/opi-2.4.5/opi/version.py
--- old/opi-2.4.4/opi/version.py        2022-01-28 12:08:21.000000000 +0100
+++ new/opi-2.4.5/opi/version.py        2022-03-01 18:46:10.000000000 +0100
@@ -1 +1 @@
-__version__ = '2.4.4'
+__version__ = '2.4.5'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/opi-2.4.4/opi.changes new/opi-2.4.5/opi.changes
--- old/opi-2.4.4/opi.changes   2022-01-28 12:08:21.000000000 +0100
+++ new/opi-2.4.5/opi.changes   2022-03-01 18:46:10.000000000 +0100
@@ -1,4 +1,12 @@
 -------------------------------------------------------------------
+Tue Mar  1 17:44:14 UTC 2022 - Dominik Heidler <dheid...@suse.de>
+
+- Version 2.4.5
+- Update packman codecs plugin to reflect recent changes
+  that apply to Tumbleweed and releases after 15.4
+  see 
https://lists.opensuse.org/archives/list/fact...@lists.opensuse.org/thread/VMXOWQWC4WW3W6PM7WPZDRMNCV26KKGY/
+
+-------------------------------------------------------------------
 Fri Jan 28 11:07:25 UTC 2022 - Dominik Heidler <dheid...@suse.de>
 
 - Version 2.4.4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/opi-2.4.4/test/01_install_from_packman.py 
new/opi-2.4.5/test/01_install_from_packman.py
--- old/opi-2.4.4/test/01_install_from_packman.py       2022-01-28 
12:08:21.000000000 +0100
+++ new/opi-2.4.5/test/01_install_from_packman.py       2022-03-01 
18:46:10.000000000 +0100
@@ -4,20 +4,20 @@
 import pexpect
 import subprocess
 
-c = pexpect.spawn('./bin/opi gstreamer-plugins-ugly', 
logfile=sys.stdout.buffer, echo=False)
+c = pexpect.spawn('./bin/opi gstreamer-plugins-ugly-codecs', 
logfile=sys.stdout.buffer, echo=False)
 
-c.expect('1. gstreamer-plugins-ugly\r\n')
+c.expect('1. gstreamer-plugins-ugly-codecs\r\n')
 c.sendline('q')
 c.expect('Pick a number')
 c.sendline('1')
 
-c.expect('3. .*Packman Essentials', timeout=10)
-c.sendline('3')
+c.expect('1. .*Packman Essentials', timeout=10)
+c.sendline('1')
 
 c.expect('Do you want to reject the key', timeout=10)
 c.sendline('t')
 
-c.expect('new packages to install', timeout=60)
+c.expect('Overall download size', timeout=60)
 c.expect('Continue', timeout=60)
 c.sendline('y')
 c.interact()
@@ -25,4 +25,4 @@
 c.close()
 assert c.exitstatus == 0, 'Exit code: %i' % c.exitstatus
 
-subprocess.check_call(['rpm', '-qi', 'gstreamer-plugins-ugly'])
+subprocess.check_call(['rpm', '-qi', 'gstreamer-plugins-ugly-codecs'])

Reply via email to