all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Tobias Geerinckx-Rice <me@tobias.gr>
To: 29718@debbugs.gnu.org
Subject: [bug#29718] [PATCH] gnu: Add hungrycat.
Date: Fri, 15 Dec 2017 08:29:01 +0100	[thread overview]
Message-ID: <20171215072901.19652-1-me@tobias.gr> (raw)

* gnu/packages/admin.scm (hungrycat): New public variable.
---

Good morning Guix!

‘Patch’ submitted upstream, hopefully making the snippet unnecessary by
the time this is merged.

Kind regards,

T G-R

 gnu/packages/admin.scm | 41 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index e97fa79ac..ee95743dc 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -2333,3 +2333,44 @@ application, collecting the information received.")
         ;; 'src/siphash24.c' is the SipHash reference implementation, which
         ;; bears a CC0 Public Domain Dedication.
     (license license:agpl3+)))
+
+(define-public hungrycat
+  (package
+    (name "hungrycat")
+    (version "0.4")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://github.com/jwilk/hungrycat/"
+                                  "releases/download/" version "/"
+                                  name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0yvmz5apfkw0kwx6bzj8svfln7wic1ivv4brifgg95r8m9aglq5r"))
+              (modules '((guix build utils)))
+              (snippet
+               ;; Makefile.in installs a copy of the hungrycat binary as man
+               ;; page.  Assume this isn't some kind of statement and fix it.
+               ;; Reported as <https://github.com/jwilk/hungrycat/pull/1>
+               '(begin
+                  (substitute* "Makefile.in"
+                    (("install -m644 \\$\\(<\\)")
+                     "install -m644 doc/$(<).1"))
+                  #t))))
+    (build-system gnu-build-system)
+    (native-inputs
+     ;; For tests.
+     `(("python" ,python-wrapper)
+       ("python-nose" ,python-nose)))
+    (arguments
+     `(#:test-target "test"))
+    (synopsis "A single tool that combines @command{cat} & @command{rm}")
+    (description
+     "hungrycat prints the contents of a file to standard output, while
+simultaneously freeing the disk space it occupied.  It is useful if you need
+to process a large file, don't have enough space to store both the input and
+output files, and don't need the input file afterwards.
+While similar in principle to running @command{cat} immediately followed by
+@command{rm}, @command{hungrycat} actually frees blocks as soon as they are
+printed and before the entire file has even been read.")
+    (home-page "https://jwilk.net/software/hungrycat")
+    (license license:expat)))
-- 
2.15.0

             reply	other threads:[~2017-12-15  7:27 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-15  7:29 Tobias Geerinckx-Rice [this message]
2017-12-15 19:05 ` [bug#29718] [PATCH] gnu: Add hungrycat Tobias Geerinckx-Rice
2017-12-22  1:31 ` bug#29718: " Tobias Geerinckx-Rice

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

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

  git send-email \
    --in-reply-to=20171215072901.19652-1-me@tobias.gr \
    --to=me@tobias.gr \
    --cc=29718@debbugs.gnu.org \
    /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 external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.