Sync from SUSE:SLFO:Main sapcontrol-bash-completion revision f2a6d16d4a731c2a5c52f7e76a47dca1

This commit is contained in:
Adrian Schröter 2024-08-28 11:12:01 +02:00
commit a44d82c0ae
4 changed files with 80 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

BIN
sapcontrol-bash-completion-0.3.0.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,7 @@
-------------------------------------------------------------------
Wed Jan 18 17:11:40 UTC 2023 - abriel@suse.com
- initial version 0.3.0
* add bash completion for the most important/used options of
sapcontrol command
(jsc#PED-2213)

View File

@ -0,0 +1,47 @@
#
# spec file for package sapcontrol-bash-completion
#
# Copyright (c) 2023 SUSE LLC
#
# 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/
#
Name: sapcontrol-bash-completion
Version: 0.3.0
Release: 0
Summary: Bash completion support for sapcontrol
License: GPL-3.0-only
URL: https://github.com/sap-linuxlab/tool.sapcontrol-bash-completion
Source: %{name}-%{version}.tar.gz
Requires: bash-completion
BuildArch: noarch
%description
Bash completion for not all, but the most important options of the sapcontrol command.
%prep
%setup -n %{name}-%{version}
%build
%install
mv readme_short README
mkdir -p %{buildroot}/%{_datadir}/bash-completion/completions
install -m 0644 sapcontrol.completion %{buildroot}%{_datadir}/bash-completion/completions/sapcontrol
%files
%license LICENSE
%doc README
%attr(0755,root,root) %{_datadir}/bash-completion/completions/sapcontrol
%changelog