;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2012 Nikita Karetnikov ;;; Copyright © 2014 Mark H Weaver ;;; ;;; 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")))) (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+))) lue=''/>
AgeCommit message (Expand)Author
2021-05-29gnu: nyacc: Update to 1.04.0....* gnu/packages/mes.scm (nyacc): Update to 1.04.0. Ricardo Wurmus
2021-03-29gnu: nyacc: Update to 1.03.6....* gnu/packages/mes.scm (nyacc): Update to 1.03.6. Signed-off-by: Christopher Baines <mail@cbaines.net> Xinglu Chen
2021-03-14gnu: mes: Remove aarch64-linux from supported-systems....* gnu/packages/mes.scm (mes)[supported-systems]: Remove aarch64-linux. Thinko: mes only builds on aarch64-linux using --system=armhf-linux. Jan (janneke) Nieuwenhuizen
2021-03-14gnu: mescc-tools: Build for armhf-linux and aarch64-linux too....* gnu/packages/mes.scm (mescc-tools)[supported-systems]: New field, overriding the v0.5.2 version. Jan (janneke) Nieuwenhuizen
2021-03-14gnu: mes: Update to 0.23....* gnu/packages/mes.scm (mes)[source]: Update to 0.23. [supported-systems]: Add aarch64-linux, armhf-linux. (mes-rb5)[version,source,supported-systems]: Revert to v0.22. Jan (janneke) Nieuwenhuizen
2021-03-14gnu: mes: Update to nyacc-1.00.2....* gnu/packages/mes.scm (mes)[propagated-inputs]: Use nyacc-1.00.2. Jan (janneke) Nieuwenhuizen
2021-03-14gnu: Add nyacc-1.00.2....* gnu/packages/mes.scm (nyacc-1.00.2): New variable. Jan (janneke) Nieuwenhuizen
2021-03-14gnu: mescc-tools: Update to 0.7.0....* gnu/packages/mes.scm (mescc-tools)[source]: Update to 0.7.0. [arguments]: Add patch-prefix phase to remove hardcoded "/usr/bin". Jan (janneke) Nieuwenhuizen
2020-10-03gnu: nyacc: Use versioned Guile site directory....This is a follow-up to commit 4e896da45d7be42ff1ad0b2be741b168573e6f0e. * gnu/packages/mes.scm (nyacc)[source]: Add snippet. Ricardo Wurmus
2020-09-25gnu: nyacc: Add 1.03.0....* gnu/packages/mes.scm (nyacc): Rename to... (nyacc-0.99): ... this. (nyacc): New variable. (mes)[propagated-inputs]: Replace NYACC with NYACC-0.99. (mes-rb5)[native-inputs]: Likewise. * gnu/packages/commencement.scm (mes-boot)[native-inputs]: Likewise. (tcc-boot0)[native-inputs]: Likewise. Ludovic Courtès