GNU bug report logs -
#39355
[PATCH] gnu: Add lf.
Previous Next
Reported by: Pkill -9 <pkill9 <at> runbox.com>
Date: Thu, 30 Jan 2020 11:30:02 UTC
Severity: normal
Tags: patch
Done: Leo Famulari <leo <at> famulari.name>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 39355 in the body.
You can then email your comments to 39355 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
bug-guix <at> gnu.org
:
bug#39355
; Package
guix
.
(Thu, 30 Jan 2020 11:30:03 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Pkill -9 <pkill9 <at> runbox.com>
:
New bug report received and forwarded. Copy sent to
bug-guix <at> gnu.org
.
(Thu, 30 Jan 2020 11:30:03 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/disk.scm (lf): New variable.
---
gnu/packages/disk.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm
index a28033c0af..dfe6dfb54a 100644
--- a/gnu/packages/disk.scm
+++ b/gnu/packages/disk.scm
@@ -62,11 +62,14 @@
#:use-module (gnu packages sphinx)
#:use-module (gnu packages sqlite)
#:use-module (gnu packages swig)
+ #:use-module (gnu packages terminals)
+ #:use-module (gnu packages textutils)
#:use-module (gnu packages vim)
#:use-module (gnu packages w3m)
#:use-module (gnu packages web)
#:use-module (gnu packages xml)
#:use-module (guix build-system gnu)
+ #:use-module (guix build-system go)
#:use-module (guix build-system python)
#:use-module (guix build-system trivial)
#:use-module (guix build-system scons)
@@ -822,3 +825,31 @@ on your file system and offers to remove it. @command{rmlint} can find:
@item files with broken user and/or group ID.
@end itemize\n")
(license license:gpl3+)))
+
+(define-public lf
+ (package
+ (name "lf")
+ (version "13")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/gokcehan/lf.git")
+ (commit (string-append "r" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1ld3q75v8rvp169w5p85z1vznqs9bhck6bm2f6fykxx16hmpb6ga"))))
+ (build-system go-build-system)
+ (native-inputs
+ `(("go-github.com-mattn-go-runewidth" ,go-github.com-mattn-go-runewidth)
+ ("go-github.com-nsf-termbox-go" ,go-github.com-nsf-termbox-go)))
+ (arguments
+ `(#:unpack-path "github.com/gokcehan/lf"
+ #:import-path "github.com/gokcehan/lf"))
+ (home-page "https://github.com/gokcehan/lf")
+ (synopsis "Console file browser similar to Ranger")
+ (description "lf (as in \"list files\") is a terminal file manager
+written in Go. It is heavily inspired by ranger with some missing and
+extra features. Some of the missing features are deliberately omitted
+since they are better handled by external tools.")
+ (license license:expat)))
--
2.25.0
Reply sent
to
Leo Famulari <leo <at> famulari.name>
:
You have taken responsibility.
(Sun, 02 Feb 2020 21:20:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Pkill -9 <pkill9 <at> runbox.com>
:
bug acknowledged by developer.
(Sun, 02 Feb 2020 21:20:03 GMT)
Full text and
rfc822 format available.
Message #10 received at 39355-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
On Thu, Jan 30, 2020 at 11:28:16AM +0000, Pkill -9 wrote:
> * gnu/packages/disk.scm (lf): New variable.
Thanks! I removed the superfluous #:unpack-path and pushed as
d441a6455051d70d7ff0d951c7e68318499b1739
> ---
> gnu/packages/disk.scm | 31 +++++++++++++++++++++++++++++++
> 1 file changed, 31 insertions(+)
>
> diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm
> index a28033c0af..dfe6dfb54a 100644
> --- a/gnu/packages/disk.scm
> +++ b/gnu/packages/disk.scm
> @@ -62,11 +62,14 @@
> #:use-module (gnu packages sphinx)
> #:use-module (gnu packages sqlite)
> #:use-module (gnu packages swig)
> + #:use-module (gnu packages terminals)
> + #:use-module (gnu packages textutils)
> #:use-module (gnu packages vim)
> #:use-module (gnu packages w3m)
> #:use-module (gnu packages web)
> #:use-module (gnu packages xml)
> #:use-module (guix build-system gnu)
> + #:use-module (guix build-system go)
> #:use-module (guix build-system python)
> #:use-module (guix build-system trivial)
> #:use-module (guix build-system scons)
> @@ -822,3 +825,31 @@ on your file system and offers to remove it. @command{rmlint} can find:
> @item files with broken user and/or group ID.
> @end itemize\n")
> (license license:gpl3+)))
> +
> +(define-public lf
> + (package
> + (name "lf")
> + (version "13")
> + (source (origin
> + (method git-fetch)
> + (uri (git-reference
> + (url "https://github.com/gokcehan/lf.git")
> + (commit (string-append "r" version))))
> + (file-name (git-file-name name version))
> + (sha256
> + (base32
> + "1ld3q75v8rvp169w5p85z1vznqs9bhck6bm2f6fykxx16hmpb6ga"))))
> + (build-system go-build-system)
> + (native-inputs
> + `(("go-github.com-mattn-go-runewidth" ,go-github.com-mattn-go-runewidth)
> + ("go-github.com-nsf-termbox-go" ,go-github.com-nsf-termbox-go)))
> + (arguments
> + `(#:unpack-path "github.com/gokcehan/lf"
> + #:import-path "github.com/gokcehan/lf"))
> + (home-page "https://github.com/gokcehan/lf")
> + (synopsis "Console file browser similar to Ranger")
> + (description "lf (as in \"list files\") is a terminal file manager
> +written in Go. It is heavily inspired by ranger with some missing and
> +extra features. Some of the missing features are deliberately omitted
> +since they are better handled by external tools.")
> + (license license:expat)))
> --
> 2.25.0
>
>
>
>
[signature.asc (application/pgp-signature, inline)]
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Mon, 02 Mar 2020 12:24:05 GMT)
Full text and
rfc822 format available.
This bug report was last modified 5 years and 170 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.