From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44936) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dva35-0005P4-Ce for guix-patches@gnu.org; Fri, 22 Sep 2017 22:20:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dva30-00027C-Dc for guix-patches@gnu.org; Fri, 22 Sep 2017 22:20:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:44683) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dva30-000275-9O for guix-patches@gnu.org; Fri, 22 Sep 2017 22:20:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dva2z-0007CI-Tt for guix-patches@gnu.org; Fri, 22 Sep 2017 22:20:01 -0400 Subject: [bug#28210] [PATCH] gnu: Add emacs-sr-speedbar. Resent-Message-ID: From: Oleg Pykhalov 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> Date: Sat, 23 Sep 2017 05:18:51 +0300 In-Reply-To: <87poannbt2.fsf@gmail.com> (Alex Kost's message of "Mon, 18 Sep 2017 20:42:17 +0300") Message-ID: <87mv5mb1is.fsf@gmail.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: Alex Kost Cc: 28210@debbugs.gnu.org --=-=-= Content-Type: text/plain Hello Alex, Alex Kost writes: >> We could make our own versioning, couldn't we? Like in (guix-edit >> "emacs-goto-chg"). > > Sorry, I don't understand what you mean here. The problem with an > unversioned source is the following: once the source is updated in > place, its hash is changed and our package could not be built anymore. There are packages with version like a string of 0.0.0 plus revision plus 7 first commit characters. > Well yeah, but there were only 2 minor changes (compilation warnings > fixes) between these 2 years: > > https://github.com/emacsorphanage/sr-speedbar/commits/master Ah, sorry. Should probably check myself. > I vote for using the emacsorphanage source (either git-fetch or using > the latest release are fine for me). Agreed. > Jonas Bernoulli is "tarsius" on github. He is the person who makes a > lot of cool stuff in the Emacs world (like emacsmirror, emacsorphanage > and magit). I wouldn't bother him about making the new release just for > 2 insignificant commits in the repo. Yes, not great idea. > Just for the info, there was an interesting message by tarsius related > to Emacsmirror (orphanage) and Emacswiki: > > https://github.com/melpa/melpa/issues/2342#issuecomment-291922427 Thanks for notice. Here is a new patch. --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-Add-emacs-sr-speedbar.patch >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+))) +(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") + (synopsis "Same frame Emacs @code{speedbar}") + (description "Show the speedbar in the same Emacs frame or in an extra +window. Customize the inital width of the speedbar.") + (license license:gpl3+))) + (define-public emacs-shell-switcher (package (name "emacs-shell-switcher") -- 2.14.1 --=-=-=--