all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#40875] [PATCH] Add tarsplitter
@ 2020-04-26 16:58 Lars-Dominik Braun
  2020-04-26 18:09 ` bug#40875: " Efraim Flashner
  0 siblings, 1 reply; 2+ messages in thread
From: Lars-Dominik Braun @ 2020-04-26 16:58 UTC (permalink / raw)
  To: 40875

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

Hi,

the attched patch adds the software tarsplitter. I wasn’t sure about the
file compression.scm, but all the file archive related software seems to
be in there too.

Cheers,
Lars


[-- Attachment #2: 0001-gnu-Add-tarsplitter.patch --]
[-- Type: text/x-diff, Size: 2812 bytes --]

From 15496c335e1642339194b58a50b98f3241357d1f Mon Sep 17 00:00:00 2001
From: Lars-Dominik Braun <lars@6xq.net>
Date: Sun, 26 Apr 2020 17:54:54 +0200
Subject: [PATCH] gnu: Add tarsplitter

* gnu/packages/compression.scm (tarsplitter): New variable
---
 gnu/packages/compression.scm | 38 ++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index 33801d201d..e8ddddf696 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -27,6 +27,7 @@
 ;;; Copyright © 2019 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
 ;;; Copyright © 2020 Björn Höfling <bjoern.hoefling@bjoernhoefling.de>
 ;;; Copyright © 2020 Arun Isaac <arunisaac@systemreboot.net>
+;;; Copyright © 2020 Lars-Dominik Braun <lars@6xq.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -52,6 +53,7 @@
   #:use-module (guix build-system cmake)
   #:use-module (guix build-system glib-or-gtk)
   #: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 (gnu packages)
@@ -2131,3 +2133,39 @@ independent.  Supported formats are 7z, ARJ, bzip2, gzip, LHA, lzma, lzop,
 RAR, RPM, DEB, tar, and ZIP.  It cannot perform functions for archives, whose
 archiver is not installed.")
     (license license:gpl2+)))
+
+(define-public tarsplitter
+  (package
+    (name "tarsplitter")
+    (version "2.2.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/AQUAOSOTech/tarsplitter.git")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "17qkg95r97kcrs17b0mcqswx99280ni47j5yx8xa7nl3bdhm6325"))))
+    (build-system go-build-system)
+    (arguments
+     `(#:import-path "github.com/AQUAOSOTech/tarsplitter"
+       #:install-source? #f
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'install 'install-documentation
+           (lambda* (#:key import-path outputs #:allow-other-keys)
+             (let* ((source (string-append "src/" import-path))
+                    (out (assoc-ref outputs "out"))
+                    (doc (string-append out "/share/doc/" ,name "-" ,version)))
+               (with-directory-excursion source
+                 (install-file "README.md" doc))
+               #t))))))
+    (home-page "https://github.com/AQUAOSOTech/tarsplitter")
+    (synopsis
+     "Multithreaded tar utility")
+    (description
+     "Archive huge numbers of files, or spilt massive tar archives into smaller
+      chunks.")
+    (license license:expat)))
+
-- 
2.26.2


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

* bug#40875: [PATCH] Add tarsplitter
  2020-04-26 16:58 [bug#40875] [PATCH] Add tarsplitter Lars-Dominik Braun
@ 2020-04-26 18:09 ` Efraim Flashner
  0 siblings, 0 replies; 2+ messages in thread
From: Efraim Flashner @ 2020-04-26 18:09 UTC (permalink / raw)
  To: Lars-Dominik Braun; +Cc: 40875-done

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

Looks great. And I can't believe you found a go package without any
dependencies! (I joke). Patch pushed.


-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

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

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

end of thread, other threads:[~2020-04-26 18:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-26 16:58 [bug#40875] [PATCH] Add tarsplitter Lars-Dominik Braun
2020-04-26 18:09 ` bug#40875: " Efraim Flashner

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.