6ebf18f21b
- Update to version 1.28.0: * chore: simpler installation method from binary if Go is available * fix: Change platform generating code * fix: purposely adding the "v" goreleaser strips out * refactor: default check_update true on new install * chore: modify MIT license and inspiration * feat(incident): add `incident close` command * refactor: move issue/close to issuable/close OBS-URL: https://build.opensuse.org/request/show/1079283 OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/glab?expand=0&rev=13
146 lines
4.4 KiB
RPMSpec
146 lines
4.4 KiB
RPMSpec
#
|
|
# spec file for package glab
|
|
#
|
|
# Copyright (c) 2023 SUSE LLC
|
|
# Copyright (c) 2021-2022 Orville Q. Song <orville@anislet.dev>
|
|
#
|
|
# 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 __arch_install_post export NO_BRP_STRIP_DEBUG=true
|
|
|
|
Name: glab
|
|
Version: 1.28.0
|
|
Release: 0
|
|
Summary: An open-source GitLab command line tool
|
|
License: MIT
|
|
Group: Development/Tools/Other
|
|
URL: https://gitlab.com/gitlab-org/cli
|
|
Source0: %{name}-%{version}.tar.gz
|
|
Source1: vendor.tar.gz
|
|
BuildRequires: golang-packaging
|
|
BuildRequires: golang(API) >= 1.18
|
|
Suggests: glab-doc
|
|
|
|
%description
|
|
glab is an open-source GitLab command line tool bringing GitLab's cool features to your command line.
|
|
|
|
%package doc
|
|
Summary: Documentation for GLab
|
|
Group: Documentation/HTML
|
|
BuildArch: noarch
|
|
|
|
%description doc
|
|
glab is an open-source GitLab command line tool bringing GitLab's cool features to your command line.
|
|
|
|
%package bash-completion
|
|
Summary: Bash completion for %{name}
|
|
Group: System/Shells
|
|
Requires: %{name} = %{version}
|
|
Supplements: (%{name} and bash)
|
|
BuildArch: noarch
|
|
|
|
%description bash-completion
|
|
Bash command line completion support for %{name}.
|
|
|
|
%package fish-completion
|
|
Summary: Fish completion for %{name}
|
|
Group: System/Shells
|
|
Requires: %{name} = %{version}
|
|
Supplements: (%{name} and fish)
|
|
BuildArch: noarch
|
|
|
|
%description fish-completion
|
|
Fish command line completion support for %{name}.
|
|
|
|
%package zsh-completion
|
|
Summary: Zsh completion for %{name}
|
|
Group: System/Shells
|
|
Requires: %{name} = %{version}
|
|
Supplements: (%{name} and zsh)
|
|
BuildArch: noarch
|
|
|
|
%description zsh-completion
|
|
Zsh command line completion support for %{name}.
|
|
|
|
%prep
|
|
%setup -q -n %{name}-%{version}
|
|
%setup -a1 %{SOURCE1}
|
|
|
|
%build
|
|
DATE_FMT="+%%Y-%%m-%%dT%%H:%%M:%%SZ"
|
|
BUILD_DATE=$(date -u -d "@${SOURCE_DATE_EPOCH}" "${DATE_FMT}" 2>/dev/null || date -u -r "${SOURCE_DATE_EPOCH}" "${DATE_FMT}" 2>/dev/null || date -u "${DATE_FMT}")
|
|
go build \
|
|
-mod=vendor \
|
|
-buildmode=pie \
|
|
-ldflags "-s -w -X main.version=%{version} -X main.build=$BUILD_DATE -X main.debugMode=false" \
|
|
./cmd/glab
|
|
|
|
# Build HTML docs
|
|
go run ./cmd/gen-docs/docs.go
|
|
|
|
# Build manpages
|
|
go run -v -p 4 -x -mod=vendor ./cmd/gen-docs/docs.go --manpage --path ./share/man/man1
|
|
gzip -r ./share/man/man1
|
|
|
|
# Generate completion files
|
|
go run -v -p 4 -x -mod=vendor ./cmd/glab/ completion -s bash > %{name}.bash
|
|
go run -v -p 4 -x -mod=vendor ./cmd/glab/ completion -s zsh > %{name}.zsh
|
|
go run -v -p 4 -x -mod=vendor ./cmd/glab/ completion -s fish > %{name}.fish
|
|
|
|
%install
|
|
mkdir -p "%{buildroot}/%{_bindir}/"
|
|
install -D -m 0755 %{name} "%{buildroot}/%{_bindir}/%{name}"
|
|
|
|
# Install HTML docs
|
|
mkdir -p "%{buildroot}/%{_docdir}/%{name}/"
|
|
cp -vr ./docs/source/* %{buildroot}%{_docdir}/%{name}/
|
|
find %{buildroot}%{_docdir}/%{name}/ -type f -exec chmod 644 {} "+"
|
|
find %{buildroot}%{_docdir}/%{name}/ -type d -exec chmod 755 {} "+"
|
|
|
|
# Install manpages
|
|
mkdir -p "%{buildroot}/%{_mandir}/man1/"
|
|
cp ./share/man/man1/* %{buildroot}%{_mandir}/man1/
|
|
find %{buildroot}%{_mandir}/man1/ -type f -exec chmod 644 {} "+"
|
|
|
|
# Install completion files
|
|
install -D -m0644 %{name}.zsh %{buildroot}%{_datadir}/zsh/site-functions/_%{name}
|
|
install -D -m0644 %{name}.fish %{buildroot}%{_datadir}/fish/vendor_completions.d/%{name}.fish
|
|
install -D -m0644 %{name}.bash %{buildroot}%{_datadir}/bash-completion/completions/%{name}
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%license LICENSE
|
|
%doc README.md
|
|
%{_mandir}/*/*
|
|
%{_bindir}/%{name}
|
|
|
|
%files doc
|
|
%defattr(-,root,root)
|
|
%{_docdir}/%{name}
|
|
%exclude %{_docdir}/%{name}/README.md
|
|
|
|
%files bash-completion
|
|
%dir %{_datadir}/bash-completion/
|
|
%{_datadir}/bash-completion/completions/
|
|
|
|
%files fish-completion
|
|
%dir %{_datadir}/fish/
|
|
%{_datadir}/fish/vendor_completions.d/
|
|
|
|
%files zsh-completion
|
|
%dir %{_datadir}/zsh/
|
|
%{_datadir}/zsh/site-functions/
|
|
|
|
%changelog
|