GNU bug report logs -
#61157
gnu: Add uwufetch.
Previous Next
Reported by: "J. Sims" <jtsims <at> protonmail.com>
Date: Sun, 29 Jan 2023 22:00:01 UTC
Severity: normal
Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
Bug is archived. No further changes may be made.
Full log
Message #8 received at submit <at> debbugs.gnu.org (full text, mbox):
Hello,
"J. Sims via Guix-patches" via <guix-patches <at> gnu.org> writes:
> This is a fun little fetch utility and I thought it might enjoy
> inclusion in Guix.
Thank you. Some comments follow.
> + (build-system gnu-build-system)
> + (arguments
> + (list #:tests? #f ;no tests
Please add a newline character after "list".
> + #:make-flags #~(list (string-append "DESTDIR="
> + #$output)
> + (string-append "ETC_DIR="
> + #$output "/etc")
> + (string-append "CC="
> + #$(cc-for-target)))
Please also add a newline character after "flags". Every flag should fit
into a single line.
> + #:phases (with-imported-modules '((guix build utils))
I don'tthink you need to import modules.
> + #~(modify-phases %standard-phases
> + (delete 'configure)
> + (add-before 'build 'path-source-paths
> + (lambda _
> + (substitute* "uwufetch.c"
> + (("(/usr(/local)?)(.*;)"
> + all _ _ rest)
> + (string-append #$output
> + rest)))))))))
You can move this below "#:phases" to drastically improve indentation.
> + (native-inputs (list git))
Are you sure git is required as a native input? If it is, then this
should be `git-minimal' instead.
> + (synopsis "Cutesie *fetch utility")
I think we should provide better than this synopsis. Maybe, according
to upstream's About,
Meme system info tool based on Nyan/UwU trend
> + (description
> + "UwUFetch is a system information tool in the lineage of @code{neofetch},
> +@code{pfetch}, @{hyfetch}, and the like. It prints ASCII art of your system's
I suggest to use Neofetch instead of @code{neofetch}, Pfetch instead of
@code{pfetch} and HyFetch instead of (mind the typo!) @code{hyfetch}.
> +logo as well as a summary of system information. UwUFetch's unique contribution
> +is the uwu-ification of various words used in the description. For example, Guix
> +become gUwUix.")
Sentences should be separated with two spaces.
> + (license license:gpl3)))
License is actually GPL3+.
Could you send an updated patch?
Regards,
--
Nicolas Goaziou
This bug report was last modified 2 years and 106 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.