From 934967c15941f745593e4070a16f979676cbf57d Mon Sep 17 00:00:00 2001 From: "Konstantin V. Arkhipov" Date: Sat, 21 Aug 2004 16:59:34 +0000 Subject: closing bug #61161 --- x11-terms/pssh/ChangeLog | 8 ++++++++ x11-terms/pssh/Manifest | 2 ++ x11-terms/pssh/files/digest-pssh-1.0.0 | 1 + x11-terms/pssh/metadata.xml | 8 ++++++++ x11-terms/pssh/pssh-1.0.0.ebuild | 37 ++++++++++++++++++++++++++++++++++ 5 files changed, 56 insertions(+) create mode 100644 x11-terms/pssh/ChangeLog create mode 100644 x11-terms/pssh/Manifest create mode 100644 x11-terms/pssh/files/digest-pssh-1.0.0 create mode 100644 x11-terms/pssh/metadata.xml create mode 100644 x11-terms/pssh/pssh-1.0.0.ebuild (limited to 'x11-terms/pssh') diff --git a/x11-terms/pssh/ChangeLog b/x11-terms/pssh/ChangeLog new file mode 100644 index 000000000000..dc2ee06de25a --- /dev/null +++ b/x11-terms/pssh/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for x11-terms/pssh +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-terms/pssh/ChangeLog,v 1.1 2004/08/21 16:59:34 voxus Exp $ + +*pssh-1.0.0 (21 Jul 2004) + + 21 Jul 2004; Konstantin Arkhipov +clusterssh-2.16.ebuild: + Initial revision, closes #61161. diff --git a/x11-terms/pssh/Manifest b/x11-terms/pssh/Manifest new file mode 100644 index 000000000000..6b154e1b9608 --- /dev/null +++ b/x11-terms/pssh/Manifest @@ -0,0 +1,2 @@ +MD5 cf078ff4fc4af63ca9103ddc0dddd3b2 pssh-1.0.0.ebuild 870 +MD5 b00517bcb01f487a2af7fc68ecc7648b files/digest-pssh-1.0.0 61 diff --git a/x11-terms/pssh/files/digest-pssh-1.0.0 b/x11-terms/pssh/files/digest-pssh-1.0.0 new file mode 100644 index 000000000000..9cc108c52ddc --- /dev/null +++ b/x11-terms/pssh/files/digest-pssh-1.0.0 @@ -0,0 +1 @@ +MD5 101c2f4c22a31b2d826a7a2c27571bd4 pssh-1.0.0.tar.gz 33198 diff --git a/x11-terms/pssh/metadata.xml b/x11-terms/pssh/metadata.xml new file mode 100644 index 000000000000..0af790b9cd6f --- /dev/null +++ b/x11-terms/pssh/metadata.xml @@ -0,0 +1,8 @@ + + + +cluster + + voxus@gentoo.org + + diff --git a/x11-terms/pssh/pssh-1.0.0.ebuild b/x11-terms/pssh/pssh-1.0.0.ebuild new file mode 100644 index 000000000000..eb30a74963c9 --- /dev/null +++ b/x11-terms/pssh/pssh-1.0.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-terms/pssh/pssh-1.0.0.ebuild,v 1.1 2004/08/21 16:59:34 voxus Exp $ + +DESCRIPTION="This package provides parallel versions of the openssh tools." +HOMEPAGE="http://www.theether.org/pssh/" +SRC_URI="http://www.theether.org/pssh/${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" +IUSE="" + +DEPEND=">=dev-lang/python-2.2" + +src_install() { + dodoc AUTHORS COPYING TODO COPYING + +# FIXME: how can i get current python version? + PY_VER=`ls /usr/lib | grep python | sort | tail -n 1` + PY_DIR=/usr/lib/${PY_VER}/site-packages + + cd bin + + for n in `ls`; + do + sed -e "s/python2\.2/${PY_VER/\./\\.}/" $n > $n.v + mv $n.v $n + done; + + dobin {pnuke,prsync,pscp,pslurp,pssh} + + cd .. + + insinto ${PY_DIR} + doins `find lib -type f` +} -- cgit v1.2.3-65-gdbad