unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#39986] [PATCH] gnu: emacs-browse-at-remote: Update to 0.14.0.
@ 2020-03-08 18:54 LaFreniere, Joseph
  2020-03-08 19:09 ` Nicolas Goaziou
  0 siblings, 1 reply; 4+ messages in thread
From: LaFreniere, Joseph @ 2020-03-08 18:54 UTC (permalink / raw)
  To: 39986

[-- Attachment #1: Type: text/plain, Size: 50 bytes --]

The patch file is included.

--
Joseph LaFreniere

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-emacs-browse-at-remote-Update-to-0.14.0.patch --]
[-- Type: text/x-patch, Size: 2374 bytes --]

From 785b5c8095a0d4f695f000b244f51bd5f18060ca Mon Sep 17 00:00:00 2001
From: Joseph LaFreniere <joseph@lafreniere.xyz>
Date: Sun, 8 Mar 2020 13:52:20 -0500
Subject: [PATCH] gnu: emacs-browse-at-remote: Update to 0.14.0.

* gnu/packages/emacs-xyz.scm (emacs-browse-at-remote): Update to 0.14.0.
---
 gnu/packages/emacs-xyz.scm | 31 +++++++++++++++++++++++++------
 1 file changed, 25 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index e09ec9b278..18210788d8 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -10785,7 +10785,7 @@ Idris.")
 (define-public emacs-browse-at-remote
   (package
     (name "emacs-browse-at-remote")
-    (version "0.10.0")
+    (version "0.14.0")
     (source
      (origin
        (method git-fetch)
@@ -10794,7 +10794,7 @@ Idris.")
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0vhia7xmszcb3lxrb8wh93a3knjfzj48h8nhj4fh8zj1pjz6args"))))
+        (base32 "0bx4ns0jb0sqrjk1nsspvl3mhz3n12925azf7brlwb1vcgnji09v"))))
     (build-system emacs-build-system)
     (propagated-inputs
      `(("emacs-f" ,emacs-f)
@@ -10805,11 +10805,30 @@ Idris.")
      `(#:tests? #t
        #:test-command '("ert-runner")))
     (home-page "https://github.com/rmuslimov/browse-at-remote")
-    (synopsis "Open github/gitlab/bitbucket/stash page from Emacs")
+    (synopsis "Open a local file's corresponding Git forge page from Emacs")
     (description
-     "This Emacs package allows you to open a target page on
-github/gitlab (or bitbucket) by calling @code{browse-at-remote} command.
-It supports dired buffers and opens them in tree mode at destination.")
+     "This Emacs package allows you to open the web page of a Git forge that
+corresponds to a local checkout of a given file.
+
+The currently supported forges are
+@itemize
+@item Atlassian Bitbucket,
+@item Atlassian Stash,
+@item Fedora Pagure,
+@item GitHub (including gists),
+@item GitLab,
+@item Phabricator,
+@item git.savannah.gnu.org, and
+@item sourcehut.
+@end itemize
+
+The supported types of Emacs buffers include
+@itemize
+@item file buffers,
+@item dired buffers,
+@item magit-mode buffers representing code, and
+@item vc-annotate-mode buffers.
+@end itemize\n")
     (license license:gpl3+)))
 
 (define-public emacs-tiny
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#39986] [PATCH] gnu: emacs-browse-at-remote: Update to 0.14.0.
  2020-03-08 18:54 [bug#39986] [PATCH] gnu: emacs-browse-at-remote: Update to 0.14.0 LaFreniere, Joseph
@ 2020-03-08 19:09 ` Nicolas Goaziou
  2020-03-08 19:39   ` LaFreniere, Joseph
  0 siblings, 1 reply; 4+ messages in thread
From: Nicolas Goaziou @ 2020-03-08 19:09 UTC (permalink / raw)
  To: LaFreniere, Joseph; +Cc: 39986

Hello,

"LaFreniere, Joseph" <joseph@lafreniere.xyz> writes:

> The patch file is included.

Thank you.

> @@ -10805,11 +10805,30 @@ Idris.")
>       `(#:tests? #t

The above can be removed since this is the default value.

> +The supported types of Emacs buffers include
> +@itemize
> +@item file buffers,
> +@item dired buffers,

Dired buffers

> +@item magit-mode buffers representing code, and
> +@item vc-annotate-mode buffers.
> +@end itemize\n")

Nitpick: I think this final newline character can be removed.

Regards,

-- 
Nicolas Goaziou

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#39986] [PATCH] gnu: emacs-browse-at-remote: Update to 0.14.0.
  2020-03-08 19:09 ` Nicolas Goaziou
@ 2020-03-08 19:39   ` LaFreniere, Joseph
  2020-11-21  8:50     ` bug#39986: " Christopher Baines
  0 siblings, 1 reply; 4+ messages in thread
From: LaFreniere, Joseph @ 2020-03-08 19:39 UTC (permalink / raw)
  To: Nicolas Goaziou; +Cc: 39986

[-- Attachment #1: Type: text/plain, Size: 754 bytes --]


Nicolas Goaziou <mail@nicolasgoaziou.fr> writes:
>> @@ -10805,11 +10805,30 @@ Idris.")
>>       `(#:tests? #t
>
> The above can be removed since this is the default value.

Noted.


>
>> +@item magit-mode buffers representing code, and
>> +@item vc-annotate-mode buffers.
>> +@end itemize\n")
>
> Nitpick: I think this final newline character can be removed.

Indeed.  I included it following many of the other package 
definitions in the file, but removing it seems to make no 
difference in the resulting description.

>> +The supported types of Emacs buffers include
>> +@itemize
>> +@item file buffers,
>> +@item dired buffers,
>
> Dired buffers

All three changes have been applied.  Please find the new patch 
file attached.

--
Joseph LaFreniere

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-emacs-browse-at-remote-Update-to-0.14.0.patch --]
[-- Type: text/x-patch, Size: 2495 bytes --]

From b27700a79cbbfef3f87468bc82b1577485ff855d Mon Sep 17 00:00:00 2001
From: Joseph LaFreniere <joseph@lafreniere.xyz>
Date: Sun, 8 Mar 2020 13:52:20 -0500
Subject: [PATCH] gnu: emacs-browse-at-remote: Update to 0.14.0.

* gnu/packages/emacs-xyz.scm (emacs-browse-at-remote): Update to 0.14.0.
---
 gnu/packages/emacs-xyz.scm | 34 ++++++++++++++++++++++++++--------
 1 file changed, 26 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index e09ec9b278..5fc8ed6a4c 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -10785,7 +10785,7 @@ Idris.")
 (define-public emacs-browse-at-remote
   (package
     (name "emacs-browse-at-remote")
-    (version "0.10.0")
+    (version "0.14.0")
     (source
      (origin
        (method git-fetch)
@@ -10794,7 +10794,7 @@ Idris.")
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0vhia7xmszcb3lxrb8wh93a3knjfzj48h8nhj4fh8zj1pjz6args"))))
+        (base32 "0bx4ns0jb0sqrjk1nsspvl3mhz3n12925azf7brlwb1vcgnji09v"))))
     (build-system emacs-build-system)
     (propagated-inputs
      `(("emacs-f" ,emacs-f)
@@ -10802,14 +10802,32 @@ Idris.")
     (native-inputs
      `(("ert-runner" ,emacs-ert-runner)))
     (arguments
-     `(#:tests? #t
-       #:test-command '("ert-runner")))
+     `(#:test-command '("ert-runner")))
     (home-page "https://github.com/rmuslimov/browse-at-remote")
-    (synopsis "Open github/gitlab/bitbucket/stash page from Emacs")
+    (synopsis "Open a local file's corresponding Git forge page from Emacs")
     (description
-     "This Emacs package allows you to open a target page on
-github/gitlab (or bitbucket) by calling @code{browse-at-remote} command.
-It supports dired buffers and opens them in tree mode at destination.")
+     "This Emacs package allows you to open the web page of a Git forge that
+corresponds to a local checkout of a given file.
+
+The currently supported forges are
+@itemize
+@item Atlassian Bitbucket,
+@item Atlassian Stash,
+@item Fedora Pagure,
+@item GitHub (including gists),
+@item GitLab,
+@item Phabricator,
+@item git.savannah.gnu.org, and
+@item sourcehut.
+@end itemize
+
+The supported types of Emacs buffers include
+@itemize
+@item file buffers,
+@item Dired buffers,
+@item magit-mode buffers representing code, and
+@item vc-annotate-mode buffers.
+@end itemize")
     (license license:gpl3+)))
 
 (define-public emacs-tiny
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#39986: [PATCH] gnu: emacs-browse-at-remote: Update to 0.14.0.
  2020-03-08 19:39   ` LaFreniere, Joseph
@ 2020-11-21  8:50     ` Christopher Baines
  0 siblings, 0 replies; 4+ messages in thread
From: Christopher Baines @ 2020-11-21  8:50 UTC (permalink / raw)
  To: 39986-done

[-- Attachment #1: Type: text/plain, Size: 950 bytes --]


LaFreniere, Joseph <joseph@lafreniere.xyz> writes:

> Nicolas Goaziou <mail@nicolasgoaziou.fr> writes:
>>> @@ -10805,11 +10805,30 @@ Idris.")
>>>       `(#:tests? #t
>>
>> The above can be removed since this is the default value.
>
> Noted.
>
>
>>
>>> +@item magit-mode buffers representing code, and
>>> +@item vc-annotate-mode buffers.
>>> +@end itemize\n")
>>
>> Nitpick: I think this final newline character can be removed.
>
> Indeed.  I included it following many of the other package 
> definitions in the file, but removing it seems to make no 
> difference in the resulting description.
>
>>> +The supported types of Emacs buffers include
>>> +@itemize
>>> +@item file buffers,
>>> +@item dired buffers,
>>
>> Dired buffers
>
> All three changes have been applied.  Please find the new patch 
> file attached.

This update to 0.14.0 looks to have happened, so closing. Apologies if
this patch was missed!

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-11-21  8:51 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-08 18:54 [bug#39986] [PATCH] gnu: emacs-browse-at-remote: Update to 0.14.0 LaFreniere, Joseph
2020-03-08 19:09 ` Nicolas Goaziou
2020-03-08 19:39   ` LaFreniere, Joseph
2020-11-21  8:50     ` bug#39986: " Christopher Baines

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).