From 5b4386228f8a1d53dfc65a7dbe52f72f71d6572a Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 17:25:26 +0100 Subject: [PATCH] package created using the webbuild interface [release 0.5-1mamba;Sun Jun 01 2014] --- README.md | 2 ++ reptyr.spec | 45 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 reptyr.spec diff --git a/README.md b/README.md index 1b206ef..d69fa14 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # reptyr +reptyr is a utility for taking an existing running program and attaching it to a new terminal. Started a long-running process over ssh, but have to leave and don't want to interrupt it? Just start a screen, use reptyr to grab it, and then kill the ssh session and head on home. + diff --git a/reptyr.spec b/reptyr.spec new file mode 100644 index 0000000..ee40776 --- /dev/null +++ b/reptyr.spec @@ -0,0 +1,45 @@ +Name: reptyr +Version: 0.5 +Release: 1mamba +Summary: A utility for taking an existing running program and attaching it to a new terminal +Group: System/Tools +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/nelhage/reptyr +## GITSOURCE https://github.com/nelhage/reptyr.git reptyr-0.5 +Source: https://github.com/nelhage/reptyr.git/reptyr-%{version}/reptyr-%{version}.tar.bz2 +License: BSD +## AUTOBUILDREQ-BEGIN +## note: run 'autospec -u -a6 reptyr' to get the list of build requirements. +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +reptyr is a utility for taking an existing running program and attaching it to a new terminal. Started a long-running process over ssh, but have to leave and don't want to interrupt it? Just start a screen, use reptyr to grab it, and then kill the ssh session and head on home. + +%debug_package + +%prep +%setup -q + +%build +%make PREFIX=%{_prefix} + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall PREFIX=%{_prefix} + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_bindir}/reptyr +%{_mandir}/fr/man1/reptyr.1* +%{_mandir}/man1/reptyr.1* +%doc COPYING + +%changelog +* Sun Jun 01 2014 Silvan Calarco 0.5-1mamba +- package created using the webbuild interface