From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57384) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dvVpl-0007G2-MO for guix-patches@gnu.org; Fri, 22 Sep 2017 17:50:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dvVpi-0003OQ-KV for guix-patches@gnu.org; Fri, 22 Sep 2017 17:50:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:44627) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dvVpi-0003Nv-H7 for guix-patches@gnu.org; Fri, 22 Sep 2017 17:50:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dvVpi-0007Vv-7k for guix-patches@gnu.org; Fri, 22 Sep 2017 17:50:02 -0400 Subject: [bug#28558] [PATCH] gnu: Add atool. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57284) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dvVp1-0006tI-Jk for guix-patches@gnu.org; Fri, 22 Sep 2017 17:49:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dvVoy-00031x-Hp for guix-patches@gnu.org; Fri, 22 Sep 2017 17:49:19 -0400 Received: from dd5424.kasserver.com ([85.13.138.252]:60322) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dvVoy-00031f-Ax for guix-patches@gnu.org; Fri, 22 Sep 2017 17:49:16 -0400 From: Stefan =?UTF-8?Q?Reich=C3=B6r?= Date: Fri, 22 Sep 2017 23:49:14 +0200 Message-ID: <150611695436.21286.7179341499419388884.stgit@sandburg> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 28558@debbugs.gnu.org * gnu/packages/compression.scm (atool): New variable. --- gnu/packages/compression.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index 7eeeaf3..76cca5f 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -17,6 +17,7 @@ ;;; Copyright =C2=A9 2017 ng0 ;;; Copyright =C2=A9 2017 Manolis Fragkiskos Ragkousis ;;; Copyright =C2=A9 2017 Theodoros Foradis +;;; Copyright =C2=A9 2017 Stefan Reich=C3=B6r ;;; ;;; This file is part of GNU Guix. ;;; @@ -1572,3 +1573,29 @@ zip archives. Files can be added from data buffer= s, files, or compressed data copied directly from other zip archives. Changes made without closing t= he archive can be reverted.") (license license:bsd-3))) + +(define-public atool + (package + (name "atool") + (version "0.39.0") + (source + (origin + (method url-fetch) + (uri (string-append + "http://savannah.nongnu.org/download/atool/atool-" + version ".tar.gz")) + (sha256 + (base32 + "0fvhzip2v08jgnlfpyj6rapan39xlsl1ksgq4lp8gfsai2ah1xma")))) + (inputs + `(("perl" ,perl))) + (build-system gnu-build-system) + (synopsis "Universal tool to manage file archives of various types"= ) + (description "The main command is @command{aunpack} which extracts f= iles +from an archive. The other commands provided are @command{apack} (to cr= eate +archives), @command{als} (to list files in archives), and @command{acat}= (to +extract files to standard out). As @command{atool} invokes external pro= grams +to handle the archives, not all commands may be supported for a certain = type +of archives.") + (home-page "http://www.nongnu.org/atool/") + (license license:gpl2+)))