diff options
author | Konstantin V. Arkhipov <voxus@gentoo.org> | 2004-08-21 16:59:34 +0000 |
---|---|---|
committer | Konstantin V. Arkhipov <voxus@gentoo.org> | 2004-08-21 16:59:34 +0000 |
commit | 934967c15941f745593e4070a16f979676cbf57d (patch) | |
tree | 35036af1d80d7fa011b29b04e3903d32cabcc2b7 /x11-terms/pssh | |
parent | Fixing a stupid mess I made. This time, there's a new ebuild too! (Manifest r... (diff) | |
download | gentoo-2-934967c15941f745593e4070a16f979676cbf57d.tar.gz gentoo-2-934967c15941f745593e4070a16f979676cbf57d.tar.bz2 gentoo-2-934967c15941f745593e4070a16f979676cbf57d.zip |
closing bug #61161
Diffstat (limited to 'x11-terms/pssh')
-rw-r--r-- | x11-terms/pssh/ChangeLog | 8 | ||||
-rw-r--r-- | x11-terms/pssh/Manifest | 2 | ||||
-rw-r--r-- | x11-terms/pssh/files/digest-pssh-1.0.0 | 1 | ||||
-rw-r--r-- | x11-terms/pssh/metadata.xml | 8 | ||||
-rw-r--r-- | x11-terms/pssh/pssh-1.0.0.ebuild | 37 |
5 files changed, 56 insertions, 0 deletions
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 <voxus@gentoo.org> +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 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>cluster</herd> +<maintainer> + <email>voxus@gentoo.org</email> +</maintainer> +</pkgmetadata> 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` +} |