wok rev 25278
updated reptyr (0.7.0 -> 0.9.0)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Jul 18 14:55:21 2022 +0100 (2022-07-18) |
parents | 2f18a0e99af7 |
children | e8c82c47df01 |
files | reptyr/description.txt reptyr/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/reptyr/description.txt Mon Jul 18 14:55:21 2022 +0100 1.3 @@ -0,0 +1,5 @@ 1.4 +Reptyr is a utility for taking an existing running program and attaching 1.5 +it to a new terminal. 1.6 +Started a long-running process over ssh, but have to leave and don't want 1.7 +to interrupt it? Just start a screen, use reptyr to grab it, and then kill 1.8 +the ssh session and head on home.
2.1 --- a/reptyr/receipt Mon Jul 18 14:37:03 2022 +0100 2.2 +++ b/reptyr/receipt Mon Jul 18 14:55:21 2022 +0100 2.3 @@ -1,13 +1,14 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="reptyr" 2.7 -VERSION="0.7.0" 2.8 +VERSION="0.9.0" 2.9 CATEGORY="system-tools" 2.10 -SHORT_DESC="Reparent a running program to a new terminal" 2.11 +SHORT_DESC="Reparent a running program to a new terminal." 2.12 MAINTAINER="pascal.bellard@slitaz.org" 2.13 LICENSE="MIT" 2.14 +WEB_SITE="https://github.com/nelhage/reptyr" 2.15 + 2.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.17 -WEB_SITE="https://github.com/nelhage/reptyr" 2.18 WGET_URL="$WEB_SITE/archive/$TARBALL" 2.19 2.20 DEPENDS="" 2.21 @@ -22,17 +23,14 @@ 2.22 # Rules to configure and make the package. 2.23 compile_rules() 2.24 { 2.25 - sed -i 's|/usr/local|/usr|' Makefile 2.26 sed -i 's|PTRACE_GETREGSET|0x4204|;s|PTRACE_SETREGSET|0x4205|' \ 2.27 platform/linux/linux_ptrace.c 2.28 - make && 2.29 - make DESTDIR=$DESTDIR install 2.30 + make PREFIX=/usr && 2.31 + make install PREFIX=/usr DESTDIR=$DESTDIR 2.32 } 2.33 2.34 # Rules to gen a SliTaz package suitable for Tazpkg. 2.35 genpkg_rules() 2.36 { 2.37 - mkdir -p $fs/usr 2.38 - cp -a $install/usr/bin $fs/usr 2.39 + cook_copy_folders bin 2.40 } 2.41 -