Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-git-pw for openSUSE:Factory checked in at 2026-05-11 16:58:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-git-pw (Old) and /work/SRC/openSUSE:Factory/.python-git-pw.new.1966 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-git-pw" Mon May 11 16:58:44 2026 rev:12 rq:1352490 version:2.8.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-git-pw/python-git-pw.changes 2026-04-16 17:26:16.661722371 +0200 +++ /work/SRC/openSUSE:Factory/.python-git-pw.new.1966/python-git-pw.changes 2026-05-11 17:09:55.223843551 +0200 @@ -1,0 +2,9 @@ +Fri May 8 12:18:17 UTC 2026 - John Paul Adrian Glaubitz <[email protected]> + +- Update to 2.8.1 + * readthedocs: Add missing sphinx config key + * readthedocs: Bump OS, Python version + * Fix getting config from git config + * Fix type issue + +------------------------------------------------------------------- Old: ---- git_pw-2.8.0.tar.gz New: ---- git_pw-2.8.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-git-pw.spec ++++++ --- /var/tmp/diff_new_pack.oFScXk/_old 2026-05-11 17:09:56.227884881 +0200 +++ /var/tmp/diff_new_pack.oFScXk/_new 2026-05-11 17:09:56.227884881 +0200 @@ -19,7 +19,7 @@ %define modname git_pw %{?sle15_python_module_pythons} Name: python-git-pw -Version: 2.8.0 +Version: 2.8.1 Release: 0 Summary: A tool for integrating Git with Patchwork License: MIT ++++++ git_pw-2.8.0.tar.gz -> git_pw-2.8.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git_pw-2.8.0/.readthedocs.yaml new/git_pw-2.8.1/.readthedocs.yaml --- old/git_pw-2.8.0/.readthedocs.yaml 2026-04-10 14:58:23.000000000 +0200 +++ new/git_pw-2.8.1/.readthedocs.yaml 2026-04-28 17:17:06.000000000 +0200 @@ -1,14 +1,16 @@ --- version: 2 +sphinx: + configuration: docs/conf.py python: install: - requirements: docs/requirements.txt - method: pip path: . build: - os: "ubuntu-22.04" + os: "ubuntu-24.04" tools: - python: "3.11" + python: "3.14" jobs: post_checkout: - git fetch --unshallow diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git_pw-2.8.0/AUTHORS new/git_pw-2.8.1/AUTHORS --- old/git_pw-2.8.0/AUTHORS 2026-04-10 14:58:28.000000000 +0200 +++ new/git_pw-2.8.1/AUTHORS 2026-04-28 17:17:15.000000000 +0200 @@ -9,4 +9,5 @@ Stephen Finucane <[email protected]> Tom Tromey <[email protected]> Trevor Gamblin <[email protected]> +Yann Sionneau <[email protected]> Yixun Lan <[email protected]> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git_pw-2.8.0/ChangeLog new/git_pw-2.8.1/ChangeLog --- old/git_pw-2.8.0/ChangeLog 2026-04-10 14:58:28.000000000 +0200 +++ new/git_pw-2.8.1/ChangeLog 2026-04-28 17:17:15.000000000 +0200 @@ -1,6 +1,14 @@ CHANGES ======= +2.8.1 +----- + +* Fix type issue +* Fix getting config from git config +* readthedocs: Bump OS, Python version +* readthedocs: Add missing sphinx config key + 2.8.0 ----- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git_pw-2.8.0/PKG-INFO new/git_pw-2.8.1/PKG-INFO --- old/git_pw-2.8.0/PKG-INFO 2026-04-10 14:58:28.252691500 +0200 +++ new/git_pw-2.8.1/PKG-INFO 2026-04-28 17:17:15.855832300 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.4 Name: git-pw -Version: 2.8.0 +Version: 2.8.1 Summary: Git-Patchwork integration tool Author-email: Stephen Finucane <[email protected]> License: MIT diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git_pw-2.8.0/git_pw/shell.py new/git_pw-2.8.1/git_pw/shell.py --- old/git_pw-2.8.0/git_pw/shell.py 2026-04-10 14:58:23.000000000 +0200 +++ new/git_pw-2.8.1/git_pw/shell.py 2026-04-28 17:17:06.000000000 +0200 @@ -16,7 +16,7 @@ @click.group() @click.option( '--debug', - default=False, + default=None, is_flag=True, help="Output more information about what's going on.", ) @@ -65,7 +65,7 @@ ) @click.version_option() def cli( - debug: bool, + debug: bool | None, token: str | None, username: str | None, password: str | None, @@ -95,14 +95,20 @@ For more information on any of the commands, simply pass ``--help`` to the appropriate command. """ - logger.configure_verbosity(debug) + logger.configure_verbosity(debug or CONF.debug) - CONF.debug = debug - CONF.token = token - CONF.username = username - CONF.password = password - CONF.server = server - CONF.project = project + if debug is not None: + CONF.debug = debug + if token is not None: + CONF.token = token + if username is not None: + CONF.username = username + if password is not None: + CONF.password = password + if server is not None: + CONF.server = server + if project is not None: + CONF.project = project @cli.group() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git_pw-2.8.0/git_pw.egg-info/PKG-INFO new/git_pw-2.8.1/git_pw.egg-info/PKG-INFO --- old/git_pw-2.8.0/git_pw.egg-info/PKG-INFO 2026-04-10 14:58:28.000000000 +0200 +++ new/git_pw-2.8.1/git_pw.egg-info/PKG-INFO 2026-04-28 17:17:15.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.4 Name: git-pw -Version: 2.8.0 +Version: 2.8.1 Summary: Git-Patchwork integration tool Author-email: Stephen Finucane <[email protected]> License: MIT diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git_pw-2.8.0/git_pw.egg-info/pbr.json new/git_pw-2.8.1/git_pw.egg-info/pbr.json --- old/git_pw-2.8.0/git_pw.egg-info/pbr.json 2026-04-10 14:58:28.000000000 +0200 +++ new/git_pw-2.8.1/git_pw.egg-info/pbr.json 2026-04-28 17:17:15.000000000 +0200 @@ -1 +1 @@ -{"git_version": "ca8653e", "is_release": false} \ No newline at end of file +{"git_version": "abaff89", "is_release": false} \ No newline at end of file
