From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Vong Subject: Re: gnu: Add emacs-rudel. Date: Wed, 28 Sep 2016 01:02:11 +0800 Message-ID: <87twd16zu4.fsf@gmail.com> References: <87wphxz4v6.fsf@we.make.ritual.n0.is> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34846) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bovlu-0008VG-Sb for guix-devel@gnu.org; Tue, 27 Sep 2016 13:02:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bovlp-0004PM-MJ for guix-devel@gnu.org; Tue, 27 Sep 2016 13:02:21 -0400 Received: from mail-pa0-x242.google.com ([2607:f8b0:400e:c03::242]:34710) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bovlp-0004P0-FJ for guix-devel@gnu.org; Tue, 27 Sep 2016 13:02:17 -0400 Received: by mail-pa0-x242.google.com with SMTP id r9so284217paz.1 for ; Tue, 27 Sep 2016 10:02:17 -0700 (PDT) In-Reply-To: <87wphxz4v6.fsf@we.make.ritual.n0.is> (ng0's message of "Tue, 27 Sep 2016 16:26:05 +0000") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: ng0 Cc: guix-devel@gnu.org Hello, ng0 writes: > From b298b54bb732651daf7f7bb6a48e4749a4e391ed Mon Sep 17 00:00:00 2001 > From: ng0 > Date: Tue, 27 Sep 2016 16:24:29 +0000 > Subject: [PATCH] gnu: Add emacs-rudel. > > * gnu/packages/emacs.scm (emacs-rudel): New variabel. > --- > gnu/packages/emacs.scm | 29 ++++++++++++++++++++++++++++- > 1 file changed, 28 insertions(+), 1 deletion(-) > > diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm > index 57fe8a9..e0df7c9 100644 > --- a/gnu/packages/emacs.scm > +++ b/gnu/packages/emacs.scm > @@ -12,7 +12,7 @@ > ;;; Copyright =C2=A9 2016 David Thompson > ;;; Copyright =C2=A9 2016 Matthew Jordan > ;;; Copyright =C2=A9 2016 Roel Janssen > -;;; Copyright =C2=A9 2016 ng0 > +;;; Copyright =C2=A9 2016 ng0 > ;;; Copyright =C2=A9 2016 Alex Griffin > ;;; Copyright =C2=A9 2016 Nicolas Goaziou > ;;; Copyright =C2=A9 2016 Alex Vong > @@ -2222,6 +2222,33 @@ perspective only its buffers are available by defa= ult.") > ;; the Expat license. > (license license:gpl3+))) >=20=20 > +(define-public emacs-rudel > + (package > + (name "emacs-rudel") > + (version "0.3.1") > + (source > + (origin > + (method url-fetch) > + (uri (string-append "http://elpa.gnu.org/packages/rudel-" > + version ".tar")) > + (sha256 > + (base32 > + "0glqa68g509p0s2vcc0i8kzlddnc9brd9jqhnm5rzxz4i050cvnz")))) > + (build-system emacs-build-system) > + (home-page "http://rudel.sourceforge.net/") Should https be used? > + (synopsis "Collaborative editing framework") > + (description > + "Rudel is a collaborative editing environment for GNU Emacs. Its p= urpose is to > +share buffers with other users in order to edit the contents of those bu= ffers > +collaboratively. Rudel supports multiple backends to enable communicati= on with other > +collaborative editors using different protocols, though currently Obby (= for use with > +the Gobby editor) is the only fully-functional one. > +Rudel mostly works in the background to change the behavior of the set o= f Emacs > +buffers for which it has been activated. The user interface consists of= a set of key > +bindings, a menu entry and some visual status indicators, which are adde= d to the text, > +header line and/or mode line of buffers for which Rudel has been activat= ed.") > + (license license:gpl3+))) > + I think the lines are overly long here. > (define-public emacs-hydra > (package > (name "emacs-hydra") > --=20 > 2.10.0 Otherwise, the patch looks good and does build. Some unrelated stuff to all: Right now, I only have free time on Tuesday and weekend, so I may not reply to email immediately. Cheers, Alex