aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/cpio.scm
blob: 2f7a7b23632de52567cf6ab464031da95cd7ed17 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
;;; Copyright © 2020 Marius Bakke <marius@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages cpio)
  #:use-module (guix licenses)
  #:use-module (gnu packages)
  #:use-module (gnu packages autotools)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu))

(define-public cpio
  (package
    (name "cpio")
    (version "2.13")
    (source (origin
             (method url-fetch)
             (uri (string-append "mirror://gnu/cpio/cpio-"
                                 version ".tar.bz2"))
             (sha256
              (base32
               "0vbgnhkawdllgnkdn6zn1f56fczwk0518krakz2qbwhxmv2vvdga"))
             (modules '((guix build utils)))
             (snippet
              '(begin
                 ;; Remove superfluous declaration that trips GCC 10.
                 (substitute* "src/global.c"
                   (("char \\*program_name;")
                    ""))))))
    (build-system gnu-build-system)
    (home-page "https://www.gnu.org/software/cpio/")
    (synopsis "Manage cpio and tar file archives")
    (description
     "GNU cpio copies files into or out of cpio or tar archives.  Indeed,
many formats are supported, including legacy formats.  The format is
determined automatically by the program and is handled appropriately.
Furthermore, the location of the archive is not important.  It can be another
file on the drive, a tape, or data on a pipe.")
    (license gpl3+)))
Fix CMAKE_PREFIX_PATH. [source]: Remove patch. * gnu/packages/patches/aws-c-compression-cmake-prefix.patch: Delete file. * gnu/local.mk: Remove it. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Greg Hogan 2021-11-16gnu: aws-c-http: Update to 0.6.7....* gnu/packages/c.scm (aws-c-http): Update to 0.6.7. [arguments]: Fix CMAKE_PREFIX_PATH, disable network tests. [source]: Remove patches. * gnu/packages/patches/aws-c-http-cmake-prefix.patch, gnu/packages/patches/aws-c-http-disable-networking-tests.patch: Delete files. * gnu/local.mk: Remove them. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Greg Hogan 2021-11-16gnu: aws-c-cal: Update to 0.5.12....* gnu/packages/c.scm (aws-c-cal): Update to 0.5.12. [arguments]: Fix CMAKE_PREFIX_PATH. [source]: Remove patch. * gnu/packages/patches/aws-c-cal-cmake-prefix.patch: Delete file. * gnu/local.mk: Remove it. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Greg Hogan 2021-11-16gnu: aws-c-io: Update to 0.10.9....* gnu/packages/c.scm (aws-c-io): Update to 0.10.9. [arguments]: Fix CMAKE_PREFIX_PATH, disable network tests. [source]: Remove patches. * gnu/packages/patches/aws-c-io-cmake-prefix.patch, gnu/packages/patches/aws-c-io-disable-networking-tests.patch: Delete files. * gnu/local.mk: Remove them. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Greg Hogan 2021-11-16gnu: aws-c-common: Update to 0.6.11....* gnu/packages/c.scm (aws-c-common): Update to 0.6.11. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Greg Hogan 2021-11-10gnu: libhx: Update to 4.2....* gnu/packages/c.scm (libhx): Update to 4.2. Tobias Geerinckx-Rice 2021-10-31gnu: aws-c-mqtt: Update to 0.7.8....* gnu/packages/c.scm (aws-c-mqtt): Update to 0.7.8. Tobias Geerinckx-Rice 2021-10-16gnu: Add aws-c-mqtt....* gnu/packages/c.scm (aws-c-mqtt): New variable. * gnu/packages/patches/aws-c-mqtt-cmake-prefix.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Greg Hogan 2021-10-16gnu: Add aws-c-s3....* gnu/packages/c.scm (aws-c-s3): New variable. * gnu/packages/patches/aws-c-s3-cmake-prefix.patch, gnu/packages/patches/aws-c-s3-disable-networking-tests.patch: New files. * gnu/local.mk (dist_patch_DATA): Add them. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Greg Hogan 2021-10-16gnu: Add aws-c-auth....* gnu/packages/c.scm (aws-c-auth): New variable. * gnu/packages/patches/aws-c-auth-cmake-prefix.patch, gnu/packages/patches/aws-c-auth-disable-networking-tests.patch: New files. * gnu/local.mk (dist_patch_DATA): Add them. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Greg Hogan 2021-10-16gnu: Add aws-c-compression....* gnu/packages/c.scm (aws-c-compression): New variable. * gnu/packages/patches/aws-c-compression-cmake-prefix.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Greg Hogan 2021-10-16gnu: Add aws-c-http....* gnu/packages/c.scm (aws-c-http): New variable. * gnu/packages/patches/aws-c-http-cmake-prefix.patch, gnu/packages/patches/aws-c-http-disable-networking-tests.patch: New files. * gnu/local.mk (dist_patch_DATA): Add them. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Greg Hogan 2021-10-16gnu: aws-c-cal: Update to 0.5.11....* gnu/packages/c.scm (aws-c-cal): Update to 0.5.11. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Greg Hogan 2021-10-16gnu: aws-c-io: Update to 0.10.5....* gnu/packages/c.scm (aws-c-io): Update to 0.10.5. * gnu/packages/patches/aws-c-io-disable-networking-tests.patch: Update. * gnu/local.mk: Fix formatting. aws-c-io 0.10.5 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Greg Hogan 2021-10-16gnu: aws-c-common: Update to 0.6.2....* gnu/packages/c.scm (aws-c-common): Update to 0.6.2. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Greg Hogan 2021-10-15gnu: libhx: Update to 4.1....* gnu/packages/patches/libhx-fix-double-free-bug.patch: Remove file. * gnu/local.mk (dist_patch_DATA): Remove it. * gnu/packages/c.scm (libhx): Update to 4.1. [source]: Remove patch. Guillaume Le Vaillant 2021-10-14gnu: aws-checksums: Update to 0.1.12....* gnu/packages/c.scm (aws-checksums): Update to 0.1.12. Tobias Geerinckx-Rice 2021-10-13gnu: libhx: Fix runtime bug....There is a bug in libhx causing pam-mount to crash when trying to mount user directories at login. Upstream has a patch to fix this issue. * gnu/packages/patches/libhx-fix-double-free-bug.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/c.scm (libhx)[source]: Use it. Guillaume Le Vaillant 2021-10-04gnu: sparse: Update to 0.6.4....* gnu/packages/c.scm (sparse): Update to 0.6.4. [arguments]: Don't explicitly return #t from phases. Tobias Geerinckx-Rice 2021-10-03gnu: libhx: Update to 4.0.1....* gnu/packages/c.scm (libhx): Update to 4.0.1. [source, home-page]: Update URL. Tobias Geerinckx-Rice 2021-06-29gnu: Add pcl....* gnu/packages/c.scm (pcl): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> David Dashyan 2021-05-18gnu: PackCC: Update to 1.5.0....* gnu/packages/c.scm (packcc): Update to 1.5.0. [home-page]: Change to version maintained by original author instead of fork. [arguments]: Remove #:tests? and #:make-flags. Adjust phases accordingly. [native-inputs]: Add BATS. Marius Bakke 2021-04-10gnu: aws-c-common: Update to 0.5.3....* gnu/packages/c.scm (aws-c-common): Update to 0.5.3. Tobias Geerinckx-Rice 2021-03-12gnu: aws-c-event-stream: Update to 0.2.7....* gnu/packages/c.scm (aws-c-event-stream): Update to 0.2.7. [arguments]: Build as shared library. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Greg Hogan 2021-03-12gnu: Add aws-c-io....* gnu/packages/c.scm (aws-c-io): New variable. * gnu/packages/patches/aws-c-io-cmake-prefix.patch, gnu/packages/patches/aws-c-io-disable-networking-tests.patch: New files. * gnu/local.mk (dist_patch_DATA): Add them. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Greg Hogan 2021-03-12gnu: Add aws-c-cal....* gnu/packages/c.scm (aws-c-cal): New variable. * gnu/packages/patches/aws-c-cal-cmake-prefix.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Greg Hogan 2021-03-12gnu: aws-checksums: Build as shared library....* gnu/packages/c.scm (aws-checksums)[arguments]: Build as shared library. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Greg Hogan 2021-03-12gnu: aws-c-common: Update to 0.5.2....* gnu/packages/c.scm (aws-c-common): Update to 0.5.2. [arguments]: Build as shared library. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Greg Hogan 2021-03-09gnu: libfastjson: Update to 0.99.9....* gnu/packages/c.scm (libfastjson): Update to 0.99.9. Tobias Geerinckx-Rice 2021-03-06gnu: aws-checksums: Update to 0.1.11....* gnu/packages/c.scm (aws-checksums): Update to 0.1.11. Tobias Geerinckx-Rice