From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39520) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dxb3i-0001L2-7G for guix-patches@gnu.org; Thu, 28 Sep 2017 11:49:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dxb3e-0005n1-3i for guix-patches@gnu.org; Thu, 28 Sep 2017 11:49:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:56498) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dxb3e-0005mp-0h for guix-patches@gnu.org; Thu, 28 Sep 2017 11:49:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dxb3d-0004a9-QW for guix-patches@gnu.org; Thu, 28 Sep 2017 11:49:01 -0400 Subject: bug#28210: [PATCH] gnu: Add emacs-sr-speedbar. In-Reply-To: <871so25a9d.fsf@gmail.com> Resent-To: guix-patches@gnu.org Resent-Message-ID: From: Alex Kost References: <871so25a9d.fsf@gmail.com> <87a82pm6bh.fsf@gmail.com> <874lsnucjm.fsf@gnu.org> <87k21ew8w8.fsf@gmail.com> <8760chae8l.fsf@gmail.com> <87poannbt2.fsf@gmail.com> <87mv5mb1is.fsf@gmail.com> Date: Thu, 28 Sep 2017 18:48:28 +0300 Message-ID: <87d16ag6yb.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 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: Oleg Pykhalov Cc: 28210-done@debbugs.gnu.org Oleg Pykhalov (2017-09-23 05:18 +0300) wrote: > From bdd48b1c3c1fbad28ae269e68a2080890c4d77d4 Mon Sep 17 00:00:00 2001 > From: Oleg Pykhalov > Date: Sat, 23 Sep 2017 05:10:26 +0300 > Subject: [PATCH] gnu: Add emacs-sr-speedbar. > > * gnu/packages/emacs.scm (emacs-sr-speedbar): New variable. > --- > gnu/packages/emacs.scm | 21 +++++++++++++++++++++ > 1 file changed, 21 insertions(+) > > diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm > index 7a6f16c1e..56bd81d80 100644 > --- a/gnu/packages/emacs.scm > +++ b/gnu/packages/emacs.scm > @@ -2079,6 +2079,27 @@ read from small to large monitors by using colors,= a prefix feature, and smart > truncation.") > (license license:gpl2+))) >=20=20 > +(define-public emacs-sr-speedbar > + (package > + (name "emacs-sr-speedbar") > + (version "20140914.2339") > + (source > + (origin > + (method url-fetch) > + (uri (string-append > + "https://github.com/emacsorphanage/sr-speedbar/archive/" > + version ".tar.gz")) > + (file-name (string-append name "-" version ".tar.gz")) > + (sha256 > + (base32 > + "15xwwc6kgvmk4wdhx1j8w6m6ivxvc94028ppgdpa2m51a8c9vjm9")))) > + (build-system emacs-build-system) > + (home-page "https://www.emacswiki.org/emacs/download/sr-speedbar.el") I changed it to . I think it is more "home-pagy" than just the source code. > + (synopsis "Same frame Emacs @code{speedbar}") > + (description "Show the speedbar in the same Emacs frame or in an ext= ra > +window. Customize the inital width of the speedbar.") typo: initial > + (license license:gpl3+))) I have rephrased the description a bit and applied=C2=B9, thank you! Please make sure your patches can be applied to the master branch of the guix git repo. I often have problems with your patches (git complains with: "Patch format detection failed", so I have to make some manual interventions). I don't know, maybe you make your patches on an outdated git checkout or in a separate branch that differs from master a lot. Just a friendly note :-) =C2=B9 http://git.savannah.gnu.org/cgit/guix.git/commit/?id=3D69b498a162e9c= 1fca459bf0737343619e6c7de96 --=20 Alex