From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34350) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1doEKt-0002Hl-Oy for guix-patches@gnu.org; Sat, 02 Sep 2017 15:44:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1doEKo-0003K3-UR for guix-patches@gnu.org; Sat, 02 Sep 2017 15:44:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:35273) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1doEKo-0003Je-QY for guix-patches@gnu.org; Sat, 02 Sep 2017 15:44:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1doEKo-0006kg-K1 for guix-patches@gnu.org; Sat, 02 Sep 2017 15:44:02 -0400 Subject: bug#28126: [PATCH 1/1] gnu: Add emacs-browse-at-remote. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: Alex Kost References: <87mv6yxdqj.fsf@gmail.com> <87a82yxdib.fsf@gmail.com> Date: Sat, 02 Sep 2017 22:43:20 +0300 In-Reply-To: <87a82yxdib.fsf@gmail.com> (Oleg Pykhalov's message of "Thu, 17 Aug 2017 21:20:12 +0300") Message-ID: <87mv6cubs7.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain 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: 28126-done@debbugs.gnu.org Oleg Pykhalov (2017-08-17 21:20 +0300) wrote: >>>From 32a917cb337dbb25010d687f21b3d305eb01a852 Mon Sep 17 00:00:00 2001 > From: Oleg Pykhalov > Date: Thu, 17 Aug 2017 20:35:43 +0300 > Subject: [PATCH 1/1] gnu: Add emacs-browse-at-remote. > > * gnu/packages/emacs.scm (emacs-browse-at-remote): New variable. > --- > gnu/packages/emacs.scm | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 51 insertions(+) > > diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm > index 1728b5b92..faa131812 100644 > --- a/gnu/packages/emacs.scm > +++ b/gnu/packages/emacs.scm > @@ -5380,3 +5380,54 @@ enables you to easily define search engines, bind them to keybindings, and > query them from the comfort of your editor.") > (home-page "https://github.com/hrs/engine-mode") > (license license:gpl3+))) > + > +(define-public emacs-browse-at-remote > + (let ((commit "b5cff7971ca8bbb966e3acd9b7e5c4c007f94215") > + (revision "1")) > + (package > + (name "emacs-browse-at-remote") > + (version (string-append "0.9.0-" revision "." > + (string-take commit 7))) > + (source (origin > + (method git-fetch) > + (uri (git-reference > + (url "https://github.com/rmuslimov/browse-at-remote.git") > + (commit commit))) > + (file-name (string-append name "-" version "-checkout")) > + (sha256 > + (base32 > + "16ms9703m15dfxg6ap4mdw7msf8z5rzsdhba51dwivfpjxg7n52c")))) > + (build-system emacs-build-system) > + (propagated-inputs > + `(("emacs-f" ,emacs-f) > + ("emacs-s" ,emacs-s) > + ("emacs-dash" ,emacs-dash))) This package does not require "dash", so I removed it from here... > + (arguments > + `(#:phases > + (modify-phases %standard-phases > + (add-before 'install 'check > + (lambda* (#:key inputs #:allow-other-keys) > + (zero? (system* "emacs" "--batch" "-L" "." > + "-L" (string-append > + (assoc-ref inputs "emacs-f") > + "/share/emacs/site-lisp/guix.d/f-" > + ,(package-version emacs-f)) > + "-L" (string-append > + (assoc-ref inputs "emacs-s") > + "/share/emacs/site-lisp/guix.d/s-" > + ,(package-version emacs-s)) > + "-L" (string-append > + (assoc-ref inputs "emacs-dash") > + "/share/emacs/site-lisp/guix.d/dash-" > + ,(package-version emacs-dash)) ... and here. > + "-l" "test/api-basic-test.el" > + "-f" "ert-run-tests-batch-and-exit"))))))) Wow, you even made the phase to run tests! To be honest, I wouldn't bother about it :-) (but don't tell it anyone) > + (home-page "https://github.com/rmuslimov/browse-at-remote") > + (synopsis > + "Open github/gitlab/bitbucket/stash page from Emacs") > + (description > + "Easily open target page on github/gitlab (or bitbucket) from Emacs by > +calling @code{browse-at-remote} function. Support dired buffers and opens > +them in tree mode at destination. > +") > + (license license:gpl3+)))) I have adjusted the description a bit and committed: http://git.savannah.gnu.org/cgit/guix.git/commit/?id=eaf4ba6ef3319ca6b4eeb5cf5021768f7b438934 Thank you! -- Alex