diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-05-05 08:32:38 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-05-05 08:32:38 +0000 |
| commit | 8a7a3a72cdd4a87a365e8bdc9ed8a29443621b12 (patch) | |
| tree | 1ba094b307c97025b7f476d65644418ddc7647f1 /python-sshpass-wrapper.spec | |
| parent | afca402287a6d8eea0f360b011bd7f33f67424ca (diff) | |
automatic import of python-sshpass-wrapperopeneuler20.03
Diffstat (limited to 'python-sshpass-wrapper.spec')
| -rw-r--r-- | python-sshpass-wrapper.spec | 195 |
1 files changed, 195 insertions, 0 deletions
diff --git a/python-sshpass-wrapper.spec b/python-sshpass-wrapper.spec new file mode 100644 index 0000000..e8b48c5 --- /dev/null +++ b/python-sshpass-wrapper.spec @@ -0,0 +1,195 @@ +%global _empty_manifest_terminate_build 0 +Name: python-sshpass-wrapper +Version: 0.0.3 +Release: 1 +Summary: A wrapper for sshpass +License: MIT License +URL: https://github.com/ileler/spw +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/5d/77/600fd29bd4ae231ce330bbe5cb3c223514ab32aaf180f62f575cf95acf3b/sshpass-wrapper-0.0.3.tar.gz +BuildArch: noarch + + +%description +# spw + +A wrapper for `sshpass` + +To install `spw`, use pip: +`pip install sshpass-wrapper` +then, run with `spw` + +``` +Usage:spw [option] command host [parameters] + + option: + + -h or --help: show help info + + -f password-file, default is '~/.spw.pf' + + -o command-option + + -v verbose + + command: + set #set password + get #get password + ssh #wrap sshpass to exec ssh + scp #wrap sshpass to exec scp + + host: + from ssh_config's Host + + example: + spw set localhost password #set localhost's password + - set localhost #remove localhost's password + - get localhost #get localhost's password + - ssh localhost #ssh connect localhost + - ssh localhost arg1 arg2 #ssh connect localhost with args + - -o '-p 22' ssh localhost arg1 arg2 #ssh connect localhost with options and args + - -vo '-p 22' ssh localhost arg1 arg2 #-v show verbose +``` + + + + +%package -n python3-sshpass-wrapper +Summary: A wrapper for sshpass +Provides: python-sshpass-wrapper +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-sshpass-wrapper +# spw + +A wrapper for `sshpass` + +To install `spw`, use pip: +`pip install sshpass-wrapper` +then, run with `spw` + +``` +Usage:spw [option] command host [parameters] + + option: + + -h or --help: show help info + + -f password-file, default is '~/.spw.pf' + + -o command-option + + -v verbose + + command: + set #set password + get #get password + ssh #wrap sshpass to exec ssh + scp #wrap sshpass to exec scp + + host: + from ssh_config's Host + + example: + spw set localhost password #set localhost's password + - set localhost #remove localhost's password + - get localhost #get localhost's password + - ssh localhost #ssh connect localhost + - ssh localhost arg1 arg2 #ssh connect localhost with args + - -o '-p 22' ssh localhost arg1 arg2 #ssh connect localhost with options and args + - -vo '-p 22' ssh localhost arg1 arg2 #-v show verbose +``` + + + + +%package help +Summary: Development documents and examples for sshpass-wrapper +Provides: python3-sshpass-wrapper-doc +%description help +# spw + +A wrapper for `sshpass` + +To install `spw`, use pip: +`pip install sshpass-wrapper` +then, run with `spw` + +``` +Usage:spw [option] command host [parameters] + + option: + + -h or --help: show help info + + -f password-file, default is '~/.spw.pf' + + -o command-option + + -v verbose + + command: + set #set password + get #get password + ssh #wrap sshpass to exec ssh + scp #wrap sshpass to exec scp + + host: + from ssh_config's Host + + example: + spw set localhost password #set localhost's password + - set localhost #remove localhost's password + - get localhost #get localhost's password + - ssh localhost #ssh connect localhost + - ssh localhost arg1 arg2 #ssh connect localhost with args + - -o '-p 22' ssh localhost arg1 arg2 #ssh connect localhost with options and args + - -vo '-p 22' ssh localhost arg1 arg2 #-v show verbose +``` + + + + +%prep +%autosetup -n sshpass-wrapper-0.0.3 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-sshpass-wrapper -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 0.0.3-1 +- Package Spec generated |
