Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package glab for openSUSE:Factory checked in at 2024-12-10 23:50:01 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/glab (Old) and /work/SRC/openSUSE:Factory/.glab.new.29675 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "glab" Tue Dec 10 23:50:01 2024 rev:38 rq:1229919 version:1.50.0 Changes: -------- --- /work/SRC/openSUSE:Factory/glab/glab.changes 2024-11-30 13:28:27.835250056 +0100 +++ /work/SRC/openSUSE:Factory/.glab.new.29675/glab.changes 2024-12-10 23:50:12.397237339 +0100 @@ -1,0 +2,6 @@ +Mon Dec 9 02:06:17 UTC 2024 - Georg Pfuetzenreuter <georg.pfuetzenreu...@suse.com> + +- Add glab-disable_update_check.patch to disable the update check by default + (it is not useful for distribution packages) + +------------------------------------------------------------------- New: ---- glab-disable_update_check.patch BETA DEBUG BEGIN: New: - Add glab-disable_update_check.patch to disable the update check by default (it is not useful for distribution packages) BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ glab.spec ++++++ --- /var/tmp/diff_new_pack.aiF9Ko/_old 2024-12-10 23:50:13.021263352 +0100 +++ /var/tmp/diff_new_pack.aiF9Ko/_new 2024-12-10 23:50:13.021263352 +0100 @@ -28,6 +28,8 @@ URL: https://gitlab.com/gitlab-org/cli Source0: %{name}-%{version}.tar.gz Source1: vendor.tar.gz +# https://sources.debian.org/src/glab/1.49.0-1/debian/patches/0001-Disable-update-check.patch +Patch0: glab-disable_update_check.patch %if 0%{?fedora_version} || 0%{?rhel_version} || 0%{?centos_version} || 0%{?almalinux_version} || 0%{?rocky_version} BuildRequires: golang >= 1.23.0 %else ++++++ glab-disable_update_check.patch ++++++ Description: Disable glab update check Change default for the Debian package to not do update checks by default. Author: Nicolas Schier <nico...@fjasle.eu> Forwarded: not-needed Last-Update: 2023-07-06 --- glab-1.31.0.orig/internal/config/config.yaml.lock +++ glab-1.31.0/internal/config/config.yaml.lock @@ -7,7 +7,7 @@ browser: # Set your desired Markdown renderer style. Available options are [dark, light, notty]. To set a custom style, refer to https://github.com/charmbracelet/glamour#styles glamour_style: dark # Allow glab to automatically check for updates and notify you when there are new updates. -check_update: true +check_update: false # Whether or not to display hyperlink escape characters when listing items like issues or merge requests. Set to TRUE to display hyperlinks in TTYs only. Force hyperlinks by setting FORCE_HYPERLINKS=1 as an environment variable. display_hyperlinks: false # Default GitLab hostname to use. --- glab-1.31.0.orig/internal/config/config_stub.go +++ glab-1.31.0/internal/config/config_stub.go @@ -57,7 +57,7 @@ func rootConfig() *yaml.Node { }, { Kind: yaml.ScalarNode, - Value: "true", + Value: "false", }, { HeadComment: "# Whether or not to display hyperlink escape characters when listing items like issues or merge requests. Set to TRUE to display hyperlinks in TTYs only. Force hyperlinks by setting FORCE_HYPERLINKS=1 as an environment variable.", Description: Reflect changed update check default in help text Author: Georg Pfuetzenreuter --- a/commands/config/config.go 2024-11-28 10:28:19.000000000 +0100 +++ b/commands/config/config.go 2024-12-09 03:14:48.647482334 +0100 @@ -26,7 +26,7 @@ - visual: Takes precedence over 'editor'. If unset, uses the default editor. Override with environment variable $VISUAL. - glamour_style: Your desired Markdown renderer style. Options are dark, light, notty. Custom styles are available using [glamour](https://github.com/charmbracelet/glamour#styles). - glab_pager: Your desired pager command to use, such as 'less -R'. -- check_update: If true, notifies of new versions of glab. Defaults to true. +- check_update: If true, notifies of new versions of glab. Defaults to false on openSUSE. - display_hyperlinks: If true, and using a TTY, outputs hyperlinks for issues and merge request lists. Defaults to false. `, "`"), Aliases: []string{"conf"},