X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mx0.jmt.gr (mx0.jmt.gr [91.143.91.66]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id DAC0CDC00E4 for ; Mon, 15 Sep 2014 10:27:01 +0000 (UTC) Received: from localhost (unknown [172.22.173.227]) by mx0.jmt.gr (Postfix) with ESMTPSA id 889A75BD2 for ; Mon, 15 Sep 2014 10:27:00 +0000 (UTC) Content-Type: text/plain; charset="utf-8" X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Johannes Matheis User-Agent: alot/0.3.6 To: alpine-devel@lists.alpinelinux.org Date: Mon, 15 Sep 2014 10:17:25 +0000 Message-ID: <20140915102659.32288.30293@leto.j.dn42> Subject: [alpine-devel] [PATCH] testing/pssh: new aport Date: Mon, 15 Sep 2014 10:26:59 +0000 https://code.google.com/p/parallel-ssh/ PSSH provides parallel versions of OpenSSH and related tools: pssh, pscp, p= rsync, pnuke, and pslurp --- testing/pssh/APKBUILD | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 testing/pssh/APKBUILD diff --git a/testing/pssh/APKBUILD b/testing/pssh/APKBUILD new file mode 100644 index 0000000..f35b755 --- /dev/null +++ b/testing/pssh/APKBUILD @@ -0,0 +1,46 @@ +# Contributor: Johannes Matheis +# Maintainer: Johannes Matheis +pkgname=3Dpssh +pkgver=3D2.3.1 +pkgrel=3D0 +pkgdesc=3D"PSSH provides parallel versions of OpenSSH and related tools: p= ssh, pscp, prsync, pnuke, and pslurp" +url=3D"https://code.google.com/p/parallel-ssh/" +arch=3D"noarch" +license=3D"BSD" +depends=3D"python" +depends_dev=3D"" +makedepends=3D"python-dev" +install=3D"" +subpackages=3D"$pkgname-doc" +source=3D"https://parallel-ssh.googlecode.com/files/${pkgname}-${pkgver}.t= ar.gz" + +_builddir=3D"${srcdir}"/"${pkgname}"-"${pkgver}" +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + python setup.py build || return 1 +} + +package() { + cd "$_builddir" + python setup.py install --prefix=3D/usr --root=3D"$pkgdir" || return 1 + + install -d "${pkgdir}"/usr/libexec/pssh + mv "${pkgdir}"/usr/bin/pssh-askpass "${pkgdir}"/usr/libexec/pssh + + install -d "${pkgdir}"/usr/share + mv "${pkgdir}"/usr/man "${pkgdir}"/usr/share +} + +md5sums=3D"53e70d53064f658bf8f44880340e8e5c pssh-2.3.1.tar.gz" +sha256sums=3D"539f8d8363b722712310f3296f189d1ae8c690898eca93627fc89a9cb311= f6b4 pssh-2.3.1.tar.gz" +sha512sums=3D"c39e1c2b0a3bc2bd736f1e7d2f402db6a128e81d6a80ce7e97f39e7fae93= f7a20037b43b5725bed5ba911f54e36a9b65c509d858a53c696989b76b1322e7680f pssh-= 2.3.1.tar.gz" -- = 2.0.0 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---