[arch-commits] Commit in pssh/repos (4 files)
Jaroslav Lichtblau
jlichtblau at archlinux.org
Sat Sep 19 10:49:06 UTC 2015
Date: Saturday, September 19, 2015 @ 12:49:06
Author: jlichtblau
Revision: 140738
archrelease: copy trunk to community-staging-any
Added:
pssh/repos/community-staging-any/
pssh/repos/community-staging-any/Imports-are-absolute-by-default-in-Python3.patch
(from rev 140737, pssh/trunk/Imports-are-absolute-by-default-in-Python3.patch)
pssh/repos/community-staging-any/PKGBUILD
(from rev 140737, pssh/trunk/PKGBUILD)
pssh/repos/community-staging-any/pssh.changelog
(from rev 140737, pssh/trunk/pssh.changelog)
--------------------------------------------------+
Imports-are-absolute-by-default-in-Python3.patch | 26 +++++++++++++
PKGBUILD | 40 +++++++++++++++++++++
pssh.changelog | 26 +++++++++++++
3 files changed, 92 insertions(+)
Copied: pssh/repos/community-staging-any/Imports-are-absolute-by-default-in-Python3.patch (from rev 140737, pssh/trunk/Imports-are-absolute-by-default-in-Python3.patch)
===================================================================
--- community-staging-any/Imports-are-absolute-by-default-in-Python3.patch (rev 0)
+++ community-staging-any/Imports-are-absolute-by-default-in-Python3.patch 2015-09-19 10:49:06 UTC (rev 140738)
@@ -0,0 +1,26 @@
+From 8afbefc445059be55dfd20785ee81e4533ae3af1 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Rogut=C4=97s=20Sparnuotos?= <rogutes at googlemail.com>
+Date: Sun, 26 Feb 2012 11:05:48 +0200
+Subject: [PATCH] Imports are absolute by default in Python3.
+
+---
+ psshlib/cli.py | 3 ++-
+ 1 files changed, 2 insertions(+), 1 deletions(-)
+
+diff --git a/psshlib/cli.py b/psshlib/cli.py
+index c14b309..c342cde 100644
+--- a/psshlib/cli.py
++++ b/psshlib/cli.py
+@@ -6,7 +6,8 @@ import os
+ import shlex
+ import sys
+ import textwrap
+-import version
++
++from psshlib import version
+
+ _DEFAULT_PARALLELISM = 32
+ _DEFAULT_TIMEOUT = 0 # "infinity" by default
+--
+1.7.9.1
+
Copied: pssh/repos/community-staging-any/PKGBUILD (from rev 140737, pssh/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2015-09-19 10:49:06 UTC (rev 140738)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau <svetlemodry at archlinux.org>
+# Contributor: Elis Hughes <elishughes at googlemail.com>
+
+pkgname=pssh
+pkgver=2.3.1
+pkgrel=6
+pkgdesc="Parallel versions of the openssh tools ssh, scp, rsync, nuke, slurp"
+arch=('any')
+url="http://code.google.com/p/parallel-ssh/"
+license=('BSD')
+depends=('openssh' 'python')
+changelog=$pkgname.changelog
+source=(http://parallel-ssh.googlecode.com/files/$pkgname-$pkgver.tar.gz
+ Imports-are-absolute-by-default-in-Python3.patch)
+sha256sums=('539f8d8363b722712310f3296f189d1ae8c690898eca93627fc89a9cb311f6b4'
+ '12257c60e7db3d152f0b3307d0cd0263a95bddfc856aa570908a0491a1a03c56')
+
+prepare() {
+ cd "${srcdir}"/$pkgname-$pkgver
+
+# fix FS#28626 (merged upstream)
+ patch -Np1 -i ../Imports-are-absolute-by-default-in-Python3.patch
+}
+
+package() {
+ cd "${srcdir}"/$pkgname-$pkgver
+ python setup.py install --root "${pkgdir}"
+
+# fix manpages
+ install -d "${pkgdir}"/usr/share
+ mv "${pkgdir}"/usr/man "${pkgdir}"/usr/share
+
+# fix putty pscp file conflict
+ mv "${pkgdir}"/usr/bin/pscp "${pkgdir}"/usr/bin/psshscp
+ mv "${pkgdir}"/usr/share/man/man1/pscp.1 "${pkgdir}"/usr/share/man/man1/psshscp.1
+
+# license
+ install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/$pkgname/COPYING
+}
Copied: pssh/repos/community-staging-any/pssh.changelog (from rev 140737, pssh/trunk/pssh.changelog)
===================================================================
--- community-staging-any/pssh.changelog (rev 0)
+++ community-staging-any/pssh.changelog 2015-09-19 10:49:06 UTC (rev 140738)
@@ -0,0 +1,26 @@
+2015-09-19 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+ * pssh 2.3.1-6 python 3.5 rebuild
+
+2014-03-17 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+ * pssh 2.3.1-5 python 3.4 rebuild
+
+2012-02-21 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+ * pssh 2.3.1-1
+
+2011-05-08 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+ * pssh 2.2.2-4
+ * FS#23686 and FS#24032 fixed
+
+2011-03-09 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+ * Update to major release 2.2.2
+
+2010-03-04 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+ * Update to major release 2.1.1
+
+2010-02-27 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+ * Update to major release 2.1
+ * Changed to 'any' architecture
+
+2009-12-26 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+ * Package moved to [community]
+ * version 2.0 - 18 votes in AUR
More information about the arch-commits
mailing list