From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59301) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dj9l0-0008EE-64 for guix-patches@gnu.org; Sat, 19 Aug 2017 15:50:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dj9kx-0000Ti-3y for guix-patches@gnu.org; Sat, 19 Aug 2017 15:50:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:37172) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dj9kx-0000TZ-05 for guix-patches@gnu.org; Sat, 19 Aug 2017 15:50:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dj9kw-0001lL-LU for guix-patches@gnu.org; Sat, 19 Aug 2017 15:50:02 -0400 Subject: [bug#28151] [PATCH] gnu: Add honcho. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59249) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dj9kL-00082W-8L for guix-patches@gnu.org; Sat, 19 Aug 2017 15:49:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dj9kI-0000G5-6T for guix-patches@gnu.org; Sat, 19 Aug 2017 15:49:25 -0400 Received: from dd5424.kasserver.com ([85.13.138.252]:44929) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dj9kH-0000F3-Vi for guix-patches@gnu.org; Sat, 19 Aug 2017 15:49:22 -0400 Received: from localhost (193-83-111-109.hdsl.highway.telekom.at [193.83.111.109]) by dd5424.kasserver.com (Postfix) with ESMTPA id 08644B58187D for ; Sat, 19 Aug 2017 21:49:18 +0200 (CEST) From: Stefan =?UTF-8?Q?Reich=C3=B6r?= Date: Sat, 19 Aug 2017 21:49:18 +0200 Message-ID: <87valj72yp.fsf@xsteve.at> MIME-Version: 1.0 Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-Add-honcho.patch 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: 28151@debbugs.gnu.org >From fd43ad462227e46d34c48c5a7ae41009f0d20d45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Reich=C3=B6r?= Date: Sat, 19 Aug 2017 21:46:38 +0200 Subject: [PATCH] gnu: Add honcho. * gnu/packages/python.scm (python-honcho): New variable. --- gnu/packages/python.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 6da5ad8..afa7ca5 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -5226,6 +5226,31 @@ cluster without needing to write any wrapper code yourself.") (define-public python2-gridmap (package-with-python2 python-gridmap)) +(define-public python-honcho + (package + (name "python-honcho") + (version "1.0.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "honcho" version)) + (sha256 + (base32 "0vpadk37y27m98x9lk151k96vp319w7jv8f6hdr7fdz3s8m412f1")))) + (build-system python-build-system) + (propagated-inputs + `(("python-jinja2" ,python-jinja2))) + (home-page "https://github.com/nickstenning/honcho") + (synopsis "Manage Procfile-based applications") + (description + "A Procfile is a file which describes how to run an application +consisting of serveral processes. honcho starts all listed processes. +The output of all running processes is collected by honcho and +displayed.") + (license license:expat))) + +(define-public python2-honcho + (package-with-python2 python-honcho)) + (define-public python-pexpect (package (name "python-pexpect") -- 2.7.4