From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50282) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gWbul-0004EB-OV for guix-patches@gnu.org; Tue, 11 Dec 2018 01:53:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gWbui-0000ut-On for guix-patches@gnu.org; Tue, 11 Dec 2018 01:53:07 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:38416) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gWbui-0000uj-L8 for guix-patches@gnu.org; Tue, 11 Dec 2018 01:53:04 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gWbui-0006eR-Iq for guix-patches@gnu.org; Tue, 11 Dec 2018 01:53:04 -0500 Subject: [bug#33698] [PATCH v2 1/2] gnu: Add emacs-sesman. Resent-Message-ID: From: Arun Isaac Date: Tue, 11 Dec 2018 12:21:45 +0530 Message-Id: <20181211065147.18404-2-arunisaac@systemreboot.net> In-Reply-To: <20181211065147.18404-1-arunisaac@systemreboot.net> References: <20181211065147.18404-1-arunisaac@systemreboot.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: mthl@gnu.org Cc: 33698@debbugs.gnu.org From: Mathieu Lirzin * gnu/packages/emacs.scm (emacs-sesman): New variable. Signed-off-by: Arun Isaac --- gnu/packages/emacs.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 13588bf01..a7fbd7657 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -12729,3 +12729,29 @@ Emacs.") rooms. It also provides an API which allows Emacs to seamlessly create RPC channels with users and other software.") (license license:gpl3+)))) + +(define-public emacs-sesman + (package + (name "emacs-sesman") + (version "0.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vspinu/sesman.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0r32f8ma9ddczxrrdz0nadp14j3zmk10q1ch02gb82synkx3xdra")))) + (build-system emacs-build-system) + (arguments + `(#:tests? #t + #:test-command '("make" "test"))) + (home-page "https://github.com/vspinu/sesman") + (synopsis "Session manager for Emacs based IDEs") + (description "Sesman provides facilities for session management and +interactive session association with the current contexts (project, directory, +buffers). While sesman can be used to manage arbitrary sessions, it primary +targets the Emacs based IDEs (CIDER, ESS, Geiser, Robe, SLIME etc.)") + (license license:gpl3+))) -- 2.19.2