* build(deps): bump github.com/theupdateframework/go-tuf/v2 * Include `dnf5` commands * Add GPG key instructions to appropriate sections * Update docs language to remove possible confusion around 'where you log in' * Change conditional in promptForHostname to better reflect prompter changes * Shorten language on Authenticate with a GitHub host. * Update language on docstring for `gh auth login` * Change prompts for `gh auth login` to reflect change from GHE to Other * Sentence case 'Other' option in hostname prompt * build(deps): bump github.com/henvic/httpretty from 0.1.3 to 0.1.4 * Add documentation explaining how to use `hostname` for `gh auth login` * Replace "GitHub Enterprise Server" with "other" in `gh auth login` prompt * fix tenant-awareness for trusted-root command * Fix test * Update pkg/cmd/extension/manager.go * Update comment formatting * Use new HasActiveToken method in trustedroot.go * Add HasActiveToken method to AuthConfig interface * Add HasActiveToken to AuthConfig. * Improve error presentation * Improve the suggested command for creating an issue when an extension doesn't have a binary for your platform * Update pkg/cmd/attestation/trustedroot/trustedroot_test.go * build(deps): bump github.com/cpuguy83/go-md2man/v2 from 2.0.4 to 2.0.5 * enforce auth for tenancy * disable auth check for att trusted-root cmd * better error for att verify custom issuer mismatch * Enhance gh repo create docs, fix random cmd link OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/gh?expand=0&rev=142
112 lines
3.3 KiB
RPMSpec
112 lines
3.3 KiB
RPMSpec
#
|
|
# spec file for package gh
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
# Copyright (c) 2024 Andreas Stieger <Andreas.Stieger@gmx.de>
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define goflags "-buildmode=pie -trimpath -mod=vendor -modcacherw"
|
|
%define sname cli
|
|
Name: gh
|
|
Version: 2.58.0
|
|
Release: 0
|
|
Summary: The official CLI for GitHub
|
|
License: MIT
|
|
URL: https://cli.github.com/
|
|
Source0: %{sname}-%{version}.tar.zst
|
|
Source1: vendor.tar.gz
|
|
BuildRequires: fish
|
|
BuildRequires: git-core
|
|
BuildRequires: zstd
|
|
BuildRequires: golang(API) >= 1.23
|
|
# This is needed for some tests
|
|
BuildRequires: openssh-clients
|
|
BuildRequires: openssh-common
|
|
BuildRequires: zsh
|
|
Requires: git-core
|
|
|
|
%description
|
|
Official CLI client for GitHub written in Go
|
|
|
|
%package bash-completion
|
|
Summary: Bash Completion for %{name}
|
|
Requires: %{name} = %{version}
|
|
Requires: bash-completion
|
|
Supplements: (gh and bash-completion)
|
|
BuildArch: noarch
|
|
|
|
%description bash-completion
|
|
Bash command line completion support for %{name}.
|
|
|
|
%package zsh-completion
|
|
Summary: ZSH Completion for %{name}
|
|
Requires: %{name} = %{version}
|
|
Supplements: (gh and zsh)
|
|
BuildArch: noarch
|
|
|
|
%description zsh-completion
|
|
ZSH command line completion support for %{name}.
|
|
|
|
%package fish-completion
|
|
Summary: Fish completion for %{name}
|
|
Requires: %{name} = %{version}
|
|
Supplements: (gh and fish)
|
|
BuildArch: noarch
|
|
|
|
%description fish-completion
|
|
Fish command line completion support for %{name}.
|
|
|
|
%prep
|
|
%autosetup -n %{sname}-%{version} -a 1
|
|
# Upstream decided to tweak Makefile for easier cross-compiling. But the tweak
|
|
# overrides variables so we need to remove them to pass GOFLAGS.
|
|
sed -i 's/GOOS= GOARCH= GOARM= GOFLAGS= CGO_ENABLED=//g' Makefile
|
|
|
|
%build
|
|
export GOFLAGS="-buildmode=pie -trimpath -mod=vendor -modcacherw -ldflags=-linkmode=external"
|
|
%make_build GH_VERSION="v%{version}" bin/gh manpages
|
|
|
|
%install
|
|
bin/gh completion -s bash | install -Dm644 /dev/stdin \
|
|
%{buildroot}%{_datadir}/bash-completion/completions/gh
|
|
bin/gh completion -s zsh | install -Dm644 /dev/stdin \
|
|
%{buildroot}%{_datadir}/zsh/site-functions/_gh
|
|
bin/gh completion -s fish | install -Dm644 /dev/stdin \
|
|
%{buildroot}%{_datadir}/fish/vendor_completions.d/gh.fish
|
|
|
|
install -Dm755 bin/gh %{buildroot}%{_bindir}/gh
|
|
install -d %{buildroot}%{_mandir}/man1/
|
|
cp share/man/man1/* %{buildroot}%{_mandir}/man1
|
|
|
|
%check
|
|
GOFLAGS=%{goflags} make test
|
|
|
|
%files
|
|
%doc README.md
|
|
%license LICENSE
|
|
%{_bindir}/gh
|
|
%{_mandir}/man1/*
|
|
|
|
%files bash-completion
|
|
%{_datadir}/bash-completion/completions/gh
|
|
|
|
%files zsh-completion
|
|
%{_datadir}/zsh/site-functions/_gh
|
|
|
|
%files fish-completion
|
|
%{_datadir}/fish/vendor_completions.d/gh.fish
|
|
|
|
%changelog
|