From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38651) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cxjpp-0000fS-HB for guix-patches@gnu.org; Mon, 10 Apr 2017 20:39:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cxjpm-0002VS-DB for guix-patches@gnu.org; Mon, 10 Apr 2017 20:39:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:43549) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cxjpm-0002VO-9D for guix-patches@gnu.org; Mon, 10 Apr 2017 20:39:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1cxjpm-000818-13 for guix-patches@gnu.org; Mon, 10 Apr 2017 20:39:02 -0400 Subject: bug#26438: [PATCH] Add fabric, python-paramiko: Update to 1.17.4. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38114) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cxjkt-0008SK-Ml for guix-patches@gnu.org; Mon, 10 Apr 2017 20:34:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cxjkq-0000YW-Hp for guix-patches@gnu.org; Mon, 10 Apr 2017 20:33:59 -0400 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:45745) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cxjkq-0000Xc-0s for guix-patches@gnu.org; Mon, 10 Apr 2017 20:33:56 -0400 Received: from compute6.internal (compute6.nyi.internal [10.202.2.46]) by mailout.nyi.internal (Postfix) with ESMTP id 25F5A20899 for ; Mon, 10 Apr 2017 20:33:54 -0400 (EDT) Received: from Tink (ppp118-209-32-31.lns20.mel4.internode.on.net [118.209.32.31]) by mail.messagingengine.com (Postfix) with ESMTPA id 2FAEB246E4 for ; Mon, 10 Apr 2017 20:33:52 -0400 (EDT) From: Ben Sturmfels Date: Tue, 11 Apr 2017 10:33:42 +1000 Message-ID: <87a87nwzo9.fsf@sturm.com.au> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 26438@debbugs.gnu.org --=-=-= Content-Type: text/plain Hi Folks, Here's my first attempt at a Guix package - a tool called Fabric which is used for for web app deployment. Couple of notes: 1. I found that I needed to upgrade python-paramiko to minimum 1.17.4 to avoid an incompatibility between python-paramiko and newer python-pycrypto. I'm not sure what the implications are of this. Technically only the Python 2 version needs to be upgraded, since Fabric is Python 2 only, but I've upgraded both for consistency. 2. I've disabled tests for now as they fail when the package attempts to download the "test-require" dependency "fudge". What's the normal way to stop the Python package doing it's own dependency downloading? Happy to also package "python2-fudge", but that didn't fix the downloading issue. Cheers, Ben -- Ben Sturmfels Sturm - Software Engineering www.sturm.com.au (03) 9024 2467 --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-Add-fabric-python-paramiko-Update-to-1.17.4.patch >From 521b29606ca4e1a34c9db89fbc22201eea581370 Mon Sep 17 00:00:00 2001 From: Ben Sturmfels Date: Tue, 11 Apr 2017 00:06:20 +1000 Subject: [PATCH] gnu: Add fabric, python-paramiko: Update to 1.17.4. * gnu/packages/python.scm (python-paramiko): Update to 1.17.4. * gnu/packages/admin.scm (fabric): New variable. --- gnu/packages/admin.scm | 34 ++++++++++++++++++++++++++++++++++ gnu/packages/python.scm | 4 ++-- 2 files changed, 36 insertions(+), 2 deletions(-) diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index f19bf5a48..d4eaabadd 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -2048,3 +2048,37 @@ environments to get useful results. Therefore, Intel GPU Tools includes low-level tools and tests specifically for development and testing of the Intel DRM Driver.") (license license:expat))) + +(define-public fabric + (package + (name "fabric") + (version "1.13.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "Fabric" version)) + (sha256 + (base32 + "1z17hw0yiqp1blq217zxkg2jzkv8qd79saqhscgsw14mwlcqpwd0")))) + (build-system python-build-system) + (arguments + `(#:tests? #f ; Tests attempt to download Python "fudge" package. + #:python ,python-2)) ; Python 2 only. + (propagated-inputs + ;; Required upgrading python-paramiko 1.17.4 to fix an incompatibility + ;; between python-paramiko and newer python-pycrypto. Without this, the + ;; `fab` command fails with "ValueError: CTR mode needs counter + ;; parameter, not IV". See: + ;; https://github.com/paramiko/paramiko/pull/714#issuecomment-281191548. + `(("python2-paramiko" ,python2-paramiko))) + (home-page "http://fabfile.org") + (synopsis "Simple Pythonic remote execution and deployment tool") + (description + "Fabric is designed to upload files and run shell commands on a number of +servers in parallel or serially. These commands are grouped in tasks (which +are regular Python functions) and specified in a \"fabfile\". + +It is similar to Capistrano, except it's implemented in Python and doesn't +expect you to be deploying Rails applications. Fabric is a simple, Pythonic +tool for remote execution and deployment.") + (license license:bsd-2))) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 0746af24a..231c62929 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -529,14 +529,14 @@ John the Ripper).") (define-public python-paramiko (package (name "python-paramiko") - (version "1.16.0") + (version "1.17.4") (source (origin (method url-fetch) (uri (pypi-uri "paramiko" version)) (sha256 (base32 - "14k8z7ndc3zk5xivnm4d8lncchx475ll5izpf8vmfbq7rp9yp5rj")))) + "1rs2qcmskcmq66q6g5al08wa41l9am0fad5r719m8wf91msyylqw")))) (build-system python-build-system) (arguments '(;; FIXME: One test fails with "EOFError not raised by connect". -- 2.12.2 --=-=-=--