;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2012 Nikita Karetnikov ;;; Copyright © 2014 Mark H Weaver ;;; Copyright © 2020 Marius Bakke ;;; ;;; 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 . (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+))) 9bbca31f'>packages/cdrom.scm
AgeCommit message (Expand)Author
2023-11-19gnu: libmirage: Update to 3.2.7....* gnu/packages/cdrom.scm (libmirage): Update to 3.2.7. Change-Id: Ib4d62bbbcb4bedd2ce86f6d5262df6ed26c76cee Tobias Geerinckx-Rice
2023-10-11gnu: libcue: Update to 2.3.0 [security fixes]....Fixes CVE-2023-43641, see <https://github.blog/2023-10-09-coordinated-disclosure-1-click-rce-on-gnome-cve-2023-43641/> for details. * gnu/packages/cdrom.scm (libcue): Update to 2.3.0. Signed-off-by: John Kehayias <john.kehayias@protonmail.com> Leo Nikkilä
2023-07-23gnu: asunder: Use G-expressions....* gnu/packages/cdrom.scm (asunder)[arguments]: Rewrite as G-expressions and use THIS-PACKAGE-INPUT. Tobias Geerinckx-Rice
2023-07-23gnu: asunder: Update to 3.0.1....* gnu/packages/cdrom.scm (asunder): Update to 3.0.1. [arguments]: Add a new 'fix-tests phase. Tobias Geerinckx-Rice
2023-07-16gnu: libisofs: Update to 1.5.6.pl01....* gnu/packages/cdrom.scm (libisofs): Update to 1.5.6.pl01. Tobias Geerinckx-Rice
2023-07-16gnu: libburn: Update to 1.5.6....* gnu/packages/cdrom.scm (libburn): Update to 1.5.6. Tobias Geerinckx-Rice
2023-07-11gnu: xorriso: Update to 1.5.6.pl02...* gnu/packages/cdrom.scm (xorriso): Update to 1.5.6.pl02 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Andy Tai
2023-04-14Merge branch 'master' into core-updates....Conflicts: gnu/local.mk gnu/packages/build-tools.scm gnu/packages/certs.scm gnu/packages/check.scm gnu/packages/compression.scm gnu/packages/cups.scm gnu/packages/fontutils.scm gnu/packages/gnuzilla.scm gnu/packages/guile.scm gnu/packages/ibus.scm gnu/packages/image-processing.scm gnu/packages/linux.scm gnu/packages/music.scm gnu/packages/nss.scm gnu/packages/pdf.scm gnu/packages/python-xyz.scm gnu/packages/qt.scm gnu/packages/ruby.scm gnu/packages/shells.scm gnu/packages/tex.scm gnu/packages/video.scm gnu/packages/vulkan.scm gnu/packages/web.scm gnu/packages/webkit.scm gnu/packages/wm.scm Maxim Cournoyer
2023-04-05gnu: cdrdao: Update to 1.2.5....This also fixes a hash mismatch in the previous version. * gnu/packages/cdrom.scm (cdrdao): Update to 1.2.5. Andreas Enge
2023-03-23Merge remote-tracking branch 'origin/master' into staging....With resolved conflicts in: gnu/packages/ibus.scm gnu/packages/image.scm gnu/packages/lisp.scm gnu/packages/virtualization.scm Maxim Cournoyer