Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package opi for openSUSE:Factory checked in at 2026-06-11 17:28:51 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/opi (Old) and /work/SRC/openSUSE:Factory/.opi.new.1981 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "opi" Thu Jun 11 17:28:51 2026 rev:79 rq:1358677 version:5.13.0 Changes: -------- --- /work/SRC/openSUSE:Factory/opi/opi.changes 2026-03-14 22:22:47.994136449 +0100 +++ /work/SRC/openSUSE:Factory/.opi.new.1981/opi.changes 2026-06-11 17:30:11.333445650 +0200 @@ -1,0 +2,6 @@ +Thu Jun 11 08:54:10 UTC 2026 - Dominik Heidler <[email protected]> + +- Version 5.13.0 + * Add Tolaria plugin + +------------------------------------------------------------------- Old: ---- opi-5.12.0.tar.gz New: ---- opi-5.13.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ opi.spec ++++++ --- /var/tmp/diff_new_pack.0A1SCr/_old 2026-06-11 17:30:12.289485748 +0200 +++ /var/tmp/diff_new_pack.0A1SCr/_new 2026-06-11 17:30:12.297486084 +0200 @@ -20,7 +20,7 @@ %define pythons %{use_python} Name: opi -Version: 5.12.0 +Version: 5.13.0 Release: 0 Summary: OBS Package Installer (CLI) License: GPL-3.0-only ++++++ opi-5.12.0.tar.gz -> opi-5.13.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/opi-5.12.0/opi/plugins/tolaria.py new/opi-5.13.0/opi/plugins/tolaria.py --- old/opi-5.12.0/opi/plugins/tolaria.py 1970-01-01 01:00:00.000000000 +0100 +++ new/opi-5.13.0/opi/plugins/tolaria.py 2026-06-11 10:54:02.000000000 +0200 @@ -0,0 +1,22 @@ +import opi +from opi.plugins import BasePlugin +from opi import github + +class Tolaria(BasePlugin): + main_query = 'tolaria' + description = 'Personal knowledge and life management app' + queries = [main_query] + + @classmethod + def run(cls, query): + github.install_rpm_release( + 'refactoringhq', + 'tolaria', + filters=[ + lambda a: ( + a['name'].startswith('Tolaria-') + and a['name'].endswith('.x86_64.rpm') + ) + ], + allow_unsigned=True + ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/opi-5.12.0/opi/version.py new/opi-5.13.0/opi/version.py --- old/opi-5.12.0/opi/version.py 2026-03-13 15:50:07.000000000 +0100 +++ new/opi-5.13.0/opi/version.py 2026-06-11 10:54:02.000000000 +0200 @@ -1 +1 @@ -__version__ = '5.12.0' +__version__ = '5.13.0' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/opi-5.12.0/opi.changes new/opi-5.13.0/opi.changes --- old/opi-5.12.0/opi.changes 2026-03-13 15:50:07.000000000 +0100 +++ new/opi-5.13.0/opi.changes 2026-06-11 10:54:02.000000000 +0200 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Thu Jun 11 08:54:00 UTC 2026 - Dominik Heidler <[email protected]> + +- Version 5.13.0 + * Add Tolaria plugin + +------------------------------------------------------------------- Fri Mar 13 14:49:59 UTC 2026 - Dominik Heidler <[email protected]> - Version 5.12.0
