[arch-commits] Commit in pssh/repos/community-any (8 files)

Jaroslav Lichtblau jlichtblau at archlinux.org
Sun Jan 17 11:12:46 UTC 2016


    Date: Sunday, January 17, 2016 @ 12:12:46
  Author: jlichtblau
Revision: 157077

archrelease: copy trunk to community-any

Added:
  pssh/repos/community-any/Imports-are-absolute-by-default-in-Python3.patch
    (from rev 157076, pssh/trunk/Imports-are-absolute-by-default-in-Python3.patch)
  pssh/repos/community-any/PKGBUILD
    (from rev 157076, pssh/trunk/PKGBUILD)
  pssh/repos/community-any/pssh-typeerror-str-does-not-support-the-buffer-interface.patch
    (from rev 157076, pssh/trunk/pssh-typeerror-str-does-not-support-the-buffer-interface.patch)
  pssh/repos/community-any/pssh-valueerror-the-fd-4-must-be-in-non-blocking-mode.patch
    (from rev 157076, pssh/trunk/pssh-valueerror-the-fd-4-must-be-in-non-blocking-mode.patch)
  pssh/repos/community-any/pssh.changelog
    (from rev 157076, pssh/trunk/pssh.changelog)
Deleted:
  pssh/repos/community-any/Imports-are-absolute-by-default-in-Python3.patch
  pssh/repos/community-any/PKGBUILD
  pssh/repos/community-any/pssh.changelog

----------------------------------------------------------------+
 Imports-are-absolute-by-default-in-Python3.patch               |   52 ++---
 PKGBUILD                                                       |   90 +++++-----
 pssh-typeerror-str-does-not-support-the-buffer-interface.patch |    5 
 pssh-valueerror-the-fd-4-must-be-in-non-blocking-mode.patch    |    6 
 pssh.changelog                                                 |   55 +++---
 5 files changed, 116 insertions(+), 92 deletions(-)

Deleted: Imports-are-absolute-by-default-in-Python3.patch
===================================================================
--- Imports-are-absolute-by-default-in-Python3.patch	2016-01-17 11:12:32 UTC (rev 157076)
+++ Imports-are-absolute-by-default-in-Python3.patch	2016-01-17 11:12:46 UTC (rev 157077)
@@ -1,26 +0,0 @@
-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-any/Imports-are-absolute-by-default-in-Python3.patch (from rev 157076, pssh/trunk/Imports-are-absolute-by-default-in-Python3.patch)
===================================================================
--- Imports-are-absolute-by-default-in-Python3.patch	                        (rev 0)
+++ Imports-are-absolute-by-default-in-Python3.patch	2016-01-17 11:12:46 UTC (rev 157077)
@@ -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
+

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2016-01-17 11:12:32 UTC (rev 157076)
+++ PKGBUILD	2016-01-17 11:12:46 UTC (rev 157077)
@@ -1,40 +0,0 @@
-# $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-any/PKGBUILD (from rev 157076, pssh/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2016-01-17 11:12:46 UTC (rev 157077)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau <svetlemodry at archlinux.org>
+# Contributor: Elis Hughes <elishughes at googlemail.com>
+
+pkgname=pssh
+pkgver=2.3.1
+pkgrel=7
+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')
+makedepends=('patch')
+changelog=$pkgname.changelog
+source=(http://parallel-ssh.googlecode.com/files/$pkgname-$pkgver.tar.gz
+        Imports-are-absolute-by-default-in-Python3.patch
+        pssh-typeerror-str-does-not-support-the-buffer-interface.patch
+        pssh-valueerror-the-fd-4-must-be-in-non-blocking-mode.patch)
+sha256sums=('539f8d8363b722712310f3296f189d1ae8c690898eca93627fc89a9cb311f6b4'
+            '12257c60e7db3d152f0b3307d0cd0263a95bddfc856aa570908a0491a1a03c56'
+            '6b4574810b09f4ca855b81a036643aa27613ea69e1cd92755b9b9f155985d332'
+            '40b01fd5c2aa59542a5d1bf65a41b861733f71305a9799c1d1ca6661f228a891')
+
+prepare() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+# fix FS#28626 (merged upstream)
+  patch -Np1 -i ../Imports-are-absolute-by-default-in-Python3.patch
+# fix FS#41255
+  patch -Np0 -i ../pssh-typeerror-str-does-not-support-the-buffer-interface.patch
+# fix FS#46571
+  patch -Np0 -i ../pssh-valueerror-the-fd-4-must-be-in-non-blocking-mode.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-any/pssh-typeerror-str-does-not-support-the-buffer-interface.patch (from rev 157076, pssh/trunk/pssh-typeerror-str-does-not-support-the-buffer-interface.patch)
===================================================================
--- pssh-typeerror-str-does-not-support-the-buffer-interface.patch	                        (rev 0)
+++ pssh-typeerror-str-does-not-support-the-buffer-interface.patch	2016-01-17 11:12:46 UTC (rev 157077)
@@ -0,0 +1,5 @@
+--- psshlib/askpass_server.py.orig	2012-02-02 17:13:09.000000000 +0100
++++ psshlib/askpass_server.py	2016-01-17 11:43:37.006779012 +0100
+@@ -72 +72 @@
+-            bytes_written = conn.send(buffer)
++            bytes_written = conn.send(buffer.encode())

Copied: pssh/repos/community-any/pssh-valueerror-the-fd-4-must-be-in-non-blocking-mode.patch (from rev 157076, pssh/trunk/pssh-valueerror-the-fd-4-must-be-in-non-blocking-mode.patch)
===================================================================
--- pssh-valueerror-the-fd-4-must-be-in-non-blocking-mode.patch	                        (rev 0)
+++ pssh-valueerror-the-fd-4-must-be-in-non-blocking-mode.patch	2016-01-17 11:12:46 UTC (rev 157077)
@@ -0,0 +1,6 @@
+--- psshlib/manager.py.orig	2012-02-02 17:13:09.000000000 +0100
++++ psshlib/manager.py	2016-01-17 11:52:13.764088460 +0100
+@@ -4,0 +5 @@
++import fcntl
+@@ -211,0 +213 @@
++        fcntl.fcntl(wakeup_writefd, fcntl.F_SETFL, os.O_NONBLOCK)

Deleted: pssh.changelog
===================================================================
--- pssh.changelog	2016-01-17 11:12:32 UTC (rev 157076)
+++ pssh.changelog	2016-01-17 11:12:46 UTC (rev 157077)
@@ -1,26 +0,0 @@
-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

Copied: pssh/repos/community-any/pssh.changelog (from rev 157076, pssh/trunk/pssh.changelog)
===================================================================
--- pssh.changelog	                        (rev 0)
+++ pssh.changelog	2016-01-17 11:12:46 UTC (rev 157077)
@@ -0,0 +1,29 @@
+2016-01-17 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+	* pssh 2.3.1-7 FS#46571 and FS#41255 fixes
+
+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