Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 11 Nov 2013 15:38:55 +0000 (UTC)
From:      Veniamin Gvozdikov <vg@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r333514 - in head/sysutils/py-salt: . files
Message-ID:  <201311111538.rABFctON007152@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: vg
Date: Mon Nov 11 15:38:54 2013
New Revision: 333514
URL: http://svnweb.freebsd.org/changeset/ports/333514

Log:
  - Added pach which fixed md5sum to md5
  
  PR:		ports/183766
  Submitted by:	Michael Gmelin <freebsd@grem.de>
  Approved by:	maintainer

Added:
  head/sysutils/py-salt/files/patch-salt__client____init__.py   (contents, props changed)
Modified:
  head/sysutils/py-salt/Makefile

Modified: head/sysutils/py-salt/Makefile
==============================================================================
--- head/sysutils/py-salt/Makefile	Mon Nov 11 15:31:16 2013	(r333513)
+++ head/sysutils/py-salt/Makefile	Mon Nov 11 15:38:54 2013	(r333514)
@@ -3,7 +3,7 @@
 
 PORTNAME=	salt
 PORTVERSION=	0.17.1
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	sysutils python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}

Added: head/sysutils/py-salt/files/patch-salt__client____init__.py
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/py-salt/files/patch-salt__client____init__.py	Mon Nov 11 15:38:54 2013	(r333514)
@@ -0,0 +1,11 @@
+--- salt/client/ssh/__init__.py.orig	2013-10-17 19:28:12.000000000 +0200
++++ salt/client/ssh/__init__.py	2013-11-07 23:22:40.228990613 +0100
+@@ -80,7 +80,7 @@
+          fi
+          if [ -f /tmp/.salt/salt-thin.tgz ]
+          then
+-             [ $({{2}}sum /tmp/.salt/salt-thin.tgz | cut -f1 -d' ') = {{3}} ] && {{0}} tar xzvf /tmp/.salt/salt-thin.tgz -C /tmp/.salt
++             [ $({{2}} -q /tmp/.salt/salt-thin.tgz) = {{3}} ] && {{0}} tar xzvf /tmp/.salt/salt-thin.tgz -C /tmp/.salt
+          else
+              install -m 0700 -d /tmp/.salt
+              echo "{1}"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311111538.rABFctON007152>