commit ea7923988770d8d0e9efbab671cad9a48585a0e7 Author: Georg Date: Sat Dec 18 04:28:02 2021 +0100 Init (openSUSE) Signed-off-by: Georg diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e68db8b --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc/ diff --git a/shmux.spec b/shmux.spec new file mode 100644 index 0000000..82af6f4 --- /dev/null +++ b/shmux.spec @@ -0,0 +1,50 @@ +# +# spec file for package shmux +# +# Copyright (c) 2021 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: shmux +Version: 1.0.3 +Release: 0 +Summary: Shell Multiplexor +License: BSD-3-Clause +URL: https://github.com/shmux/shmux +Source: https://github.com/shmux/shmux/archive/refs/tags/v%{version}.tar.gz +BuildRequires: ncurses-devel + +%description +shmux is program for executing the same command on many hosts in parallel. + +%prep +%setup -q + +%build +%configure +%make_build + +%install +%make_install + +%files +%license LICENSE +%doc README.md CHANGES +%{_bindir}/%{name} +%{_mandir}/man1/%{name}.1%{?ext_man} +%dir %{_datadir}/%{name} +%attr (755,-,-) %{_datadir}/%{name}/mcmd.sh + +%changelog + diff --git a/v1.0.3.tar.gz b/v1.0.3.tar.gz new file mode 100644 index 0000000..71dc44a Binary files /dev/null and b/v1.0.3.tar.gz differ