Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package opi for openSUSE:Factory checked in 
at 2023-04-03 17:46:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/opi (Old)
 and      /work/SRC/openSUSE:Factory/.opi.new.9019 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "opi"

Mon Apr  3 17:46:38 2023 rev:42 rq:1076984 version:2.17.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/opi/opi.changes  2023-02-19 18:19:18.557613449 
+0100
+++ /work/SRC/openSUSE:Factory/.opi.new.9019/opi.changes        2023-04-03 
17:46:45.261457928 +0200
@@ -1,0 +2,14 @@
+Mon Apr  3 12:49:44 UTC 2023 - Dominik Heidler <dheid...@suse.de>
+
+- Version 2.17.0
+- Codecs: Don't force ffmpeg>=5 on leap 15.5
+- Use new checkout version in ci.yaml
+
+-------------------------------------------------------------------
+Mon Apr  3 10:24:05 UTC 2023 - Dominik Heidler <dheid...@suse.de>
+
+- Version 2.16.0
+- dotnet: Install dotnet-sdk-7.0 (#124)
+- Add jami p2p messenger plugin (#121)
+
+-------------------------------------------------------------------

Old:
----
  opi-2.15.0.tar.gz

New:
----
  opi-2.17.0.tar.gz

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

Other differences:
------------------
++++++ opi.spec ++++++
--- /var/tmp/diff_new_pack.lRECMu/_old  2023-04-03 17:46:46.926006311 +0200
+++ /var/tmp/diff_new_pack.lRECMu/_new  2023-04-03 17:46:46.978274740 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           opi
-Version:        2.15.0
+Version:        2.17.0
 Release:        0
 Summary:        OBS Package Installer (CLI)
 License:        GPL-3.0-only

++++++ opi-2.15.0.tar.gz -> opi-2.17.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/opi-2.15.0/.github/workflows/ci.yaml 
new/opi-2.17.0/.github/workflows/ci.yaml
--- old/opi-2.15.0/.github/workflows/ci.yaml    2023-02-18 23:42:35.000000000 
+0100
+++ new/opi-2.17.0/.github/workflows/ci.yaml    2023-04-03 14:49:36.000000000 
+0200
@@ -16,7 +16,7 @@
     # Steps represent a sequence of tasks that will be executed as part of the 
job
     steps:
       # Checks-out your repository under $GITHUB_WORKSPACE, so your job can 
access it
-      - uses: actions/checkout@v2
+      - uses: actions/checkout@v3
 
       # Runs a single command using the runners shell
       - name: Run testsuite
@@ -25,7 +25,7 @@
     runs-on: ubuntu-latest
     steps:
       # Checks-out your repository under $GITHUB_WORKSPACE, so your job can 
access it
-      - uses: actions/checkout@v2
+      - uses: actions/checkout@v3
 
       # Runs a single command using the runners shell
       - name: Run testsuite
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/opi-2.15.0/opi/plugins/dotnet.py 
new/opi-2.17.0/opi/plugins/dotnet.py
--- old/opi-2.15.0/opi/plugins/dotnet.py        2023-02-18 23:42:35.000000000 
+0100
+++ new/opi-2.17.0/opi/plugins/dotnet.py        2023-04-03 14:49:36.000000000 
+0200
@@ -19,5 +19,5 @@
                        gpgkey = 
'https://packages.microsoft.com/keys/microsoft.asc'
                )
 
-               opi.install_packages(['dotnet-sdk-6.0'])
+               opi.install_packages(['dotnet-sdk-7.0'])
                opi.ask_keep_repo('dotnet')
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/opi-2.15.0/opi/plugins/jami.py 
new/opi-2.17.0/opi/plugins/jami.py
--- old/opi-2.15.0/opi/plugins/jami.py  1970-01-01 01:00:00.000000000 +0100
+++ new/opi-2.17.0/opi/plugins/jami.py  2023-04-03 14:49:36.000000000 +0200
@@ -0,0 +1,38 @@
+import opi
+from opi.plugins import BasePlugin
+
+class Jami(BasePlugin):
+       main_query = "jami"
+       description = "Jami p2p messenger."
+       queries = [main_query, 'jami-qt', 'jami-gnome', 'jami-daemon']
+
+       @classmethod
+       def run(cls, query):
+               if not opi.ask_yes_or_no("Do you want to install jami from jami 
repository?", 'y'):
+                       return
+
+               print("Which version do you want to install?")
+               option = opi.ask_for_option(options=[
+                       'jami',
+                       'jami-qt',
+                       'jami-gnome',
+                       'jami-daemon',
+               ])
+
+               print('You have chosen %s' % option)
+
+               if opi.get_distribution().startswith('openSUSE:Leap'):
+                       repourl = 
'https://dl.jami.net/nightly/opensuse-leap_%s/' % opi.get_version()
+               else:
+                       repourl = 
'https://dl.jami.net/nightly/opensuse-tumbleweed/'
+
+               opi.add_repo(
+                       filename = 'jami',
+                       name = 'jami',
+                       url = repourl,
+                       gpgkey = 'https://dl.jami.net/jami.pub.key',
+                       gpgcheck = False
+               )
+
+               opi.install_packages([option])
+               opi.ask_keep_repo('jami')
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/opi-2.15.0/opi/plugins/packman.py 
new/opi-2.17.0/opi/plugins/packman.py
--- old/opi-2.15.0/opi/plugins/packman.py       2023-02-18 23:42:35.000000000 
+0100
+++ new/opi-2.17.0/opi/plugins/packman.py       2023-04-03 14:49:36.000000000 
+0200
@@ -22,7 +22,7 @@
                        'gstreamer-plugins-libav',
                        'libfdk-aac2',
                ]
-               if opi.get_version() != '15.4':
+               if opi.get_version() not in ('15.4', '15.5'):
                        packman_packages.append('pipewire-aptx')
                        packman_packages.append('ffmpeg>=5')
                opi.install_packman_packages(packman_packages)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/opi-2.15.0/opi/version.py 
new/opi-2.17.0/opi/version.py
--- old/opi-2.15.0/opi/version.py       2023-02-18 23:42:35.000000000 +0100
+++ new/opi-2.17.0/opi/version.py       2023-04-03 14:49:36.000000000 +0200
@@ -1 +1 @@
-__version__ = '2.15.0'
+__version__ = '2.17.0'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/opi-2.15.0/opi.changes new/opi-2.17.0/opi.changes
--- old/opi-2.15.0/opi.changes  2023-02-18 23:42:35.000000000 +0100
+++ new/opi-2.17.0/opi.changes  2023-04-03 14:49:36.000000000 +0200
@@ -1,4 +1,18 @@
 -------------------------------------------------------------------
+Mon Apr  3 12:49:29 UTC 2023 - Dominik Heidler <dheid...@suse.de>
+
+- Version 2.17.0
+- Codecs: Don't force ffmpeg>=5 on leap 15.5
+- Use new checkout version in ci.yaml
+
+-------------------------------------------------------------------
+Mon Apr  3 10:23:42 UTC 2023 - Dominik Heidler <dheid...@suse.de>
+
+- Version 2.16.0
+- dotnet: Install dotnet-sdk-7.0 (#124)
+- Add jami p2p messenger plugin (#121)
+
+-------------------------------------------------------------------
 Sat Feb 18 22:42:32 UTC 2023 - Dominik Heidler <dheid...@suse.de>
 
 - Version 2.15.0

Reply via email to