unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: elaexuotee--- via Guix-patches via <guix-patches@gnu.org>
To: 41226@debbugs.gnu.org
Subject: [bug#41226] gnu: Add bombadillo.
Date: Wed, 13 May 2020 15:47:30 +0900	[thread overview]
Message-ID: <37V4JZRUKVBGD.29BWHNKXXUE2P@wilsonb.com> (raw)
In-Reply-To: <31A6UJLD6OH4K.216PBSDR1OKVC@wilsonb.com>


[-- Attachment #1.1: Type: text/plain, Size: 83 bytes --]

Looks like the manpage wasn't getting installed. This updated patch fixes that.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0001-gnu-Add-bombadillo.patch --]
[-- Type: text/x-patch, Size: 3263 bytes --]

From 761b80d190b4a8786926910d4dfa9eb8f62e3f58 Mon Sep 17 00:00:00 2001
From: "B. Wilson" <elaexuotee@wilsonb.com>
Date: Wed, 13 May 2020 13:51:19 +0900
Subject: [PATCH] gnu: Add bombadillo.
To: guix-patches@gnu.org

gnu/packages/web-browsers.scm (bombadillo): New variable.
---
 gnu/packages/web-browsers.scm | 40 ++++++++++++++++++++++++++++++++++-
 1 file changed, 39 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm
index 62b7a5bdca..29ae3519fd 100644
--- a/gnu/packages/web-browsers.scm
+++ b/gnu/packages/web-browsers.scm
@@ -11,6 +11,7 @@
 ;;; Copyright © 2019 Clément Lassieur <clement@lassieur.org>
 ;;; Copyright © 2019 Brett Gilio <brettg@gnu.org>
 ;;; Copyright © 2020 Raghav Gururajan <raghavgururajan@disroot.org>
+;;; Copyright © 2020 B. Wilson <elaexuotee@wilsonb.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -66,7 +67,8 @@
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system glib-or-gtk)
   #:use-module (guix build-system python)
-  #:use-module (guix build-system asdf))
+  #:use-module (guix build-system asdf)
+  #:use-module (guix build-system go))
 
 (define-public midori
   (package
@@ -692,3 +694,39 @@ key-bindings and is fully configurable and extensible in Common Lisp.")
 
 (define-public sbcl-next
   (deprecated-package "sbcl-next" next))
+
+(define-public bombadillo
+  (package
+    (name "bombadillo")
+    (version "2.2.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://tildegit.org/sloum/bombadillo/"
+                                  "archive/" version ".tar.gz"))
+              (sha256
+               (base32
+                "0g4zjg717zvva85h1sxw2zqzlrkbaw8h2w8zs2vk9krgn1q5wyh3"))))
+    (build-system go-build-system)
+    (native-inputs `(("gzip" ,gzip)))
+    (arguments `(#:import-path "tildegit.org/sloum/bombadillo"
+                 #:phases
+                  (modify-phases %standard-phases
+                    (add-after 'install 'install-man
+                      (lambda _
+                        (let* ((manpage (string-append "src/tildegit.org"
+                                                       "/sloum/bombadillo"
+                                                       "/bombadillo.1"))
+                               (zmanpage (string-append manpage ".gz"))
+                               (mandir (string-append %output
+                                                      "/share/man/man1")))
+                          (invoke "gzip" manpage)
+                          (install-file zmanpage mandir)
+                          #t))))))
+    (home-page "http://bombadillo.colorfield.space")
+    (synopsis "Terminal browser for the gopher, gemini, and finger protocols")
+    (description "Bombadillo is a non-web browser for the terminal with
+vim-like key bindings, a document pager, configurable settings, and robust
+command selection.  The following protocols are supported as first-class
+citizens: gopher, gemini, finger, and local. There is also support for telnet,
+http, and https via third-party applications.")
+    (license license:gpl3+)))
-- 
2.26.2


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

  reply	other threads:[~2020-05-13  6:48 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-13  4:55 [bug#41226] gnu: Add bombadillo elaexuotee--- via Guix-patches via
2020-05-13  6:47 ` elaexuotee--- via Guix-patches via [this message]
2020-05-13  7:26 ` elaexuotee--- via Guix-patches via
2020-05-13 18:56   ` Efraim Flashner
2020-05-15  2:37     ` elaexuotee--- via Guix-patches via
2020-05-17 13:51       ` bug#41226: " Efraim Flashner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=37V4JZRUKVBGD.29BWHNKXXUE2P@wilsonb.com \
    --to=guix-patches@gnu.org \
    --cc=41226@debbugs.gnu.org \
    --cc=elaexuotee@wilsonb.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).