From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:54017) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gdGHo-00021o-8A for guix-patches@gnu.org; Sat, 29 Dec 2018 10:12:29 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gdGHZ-0007id-0h for guix-patches@gnu.org; Sat, 29 Dec 2018 10:12:24 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:38763) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gdGHY-0007i8-Eu for guix-patches@gnu.org; Sat, 29 Dec 2018 10:12:08 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gdGHY-0001iv-8b for guix-patches@gnu.org; Sat, 29 Dec 2018 10:12:08 -0500 Subject: [bug#33909] [PATCH 3/7] gnu: Add emacs-treepy. Resent-Message-ID: Received: from eggs.gnu.org ([208.118.235.92]:53135) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gdGGz-0001Km-QA for guix-patches@gnu.org; Sat, 29 Dec 2018 10:11:38 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gdG8y-00057f-M3 for guix-patches@gnu.org; Sat, 29 Dec 2018 10:03:19 -0500 Received: from mail1.fsfe.org ([217.69.89.151]:43586) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gdG8y-000571-Ek for guix-patches@gnu.org; Sat, 29 Dec 2018 10:03:16 -0500 From: Jelle Licht Date: Sat, 29 Dec 2018 16:02:57 +0100 Message-Id: <20181229150301.30567-4-jlicht@fsfe.org> In-Reply-To: <20181229150301.30567-1-jlicht@fsfe.org> References: <20181229150301.30567-1-jlicht@fsfe.org> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable 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: 33909@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-treepy): New variable. --- gnu/packages/emacs.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 0e1a525ab..2e441d41a 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -627,6 +627,28 @@ these arguments. The prototypical use is for the co= mmand to call an external process, passing on the arguments as command line arguments.") (license license:gpl3+))) =20 +(define-public emacs-treepy + (package + (name "emacs-treepy") + (version "0.1.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/volrath/treepy.el.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "04zwm6gx9pxfvgfkizx6pvb1ql8pqxjyzqp8flz0432x0gq5nlxk"))= )) + (build-system emacs-build-system) + (home-page + "https://github.com/volrath/treepy.el") + (synopsis "Tree traversal tools") + (description + "Generic tools for recursive and iterative tree traversal based on +clojure.walk and clojure.zip respectively.") + (license license:gpl3+))) + (define-public emacs-ghub (package (name "emacs-ghub") --=20 2.20.1