;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2017, 2018, 2021 Efraim Flashner ;;; ;;; 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 cobol) #:use-module (gnu packages) #:use-module (guix build-system gnu) #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix download) #:use-module (gnu packages dbm) #:use-module (gnu packages multiprecision) #:use-module (gnu packages ncurses) #:use-module (gnu packages perl) #:use-module (gnu packages web) #:use-module (gnu packages xml)) (define-public gnucobol (package (name "gnucobol") (version "3.1.2") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/gnucobol/gnucobol-" version ".tar.xz")) (sha256 (base32 "0x15ybfm63g7c9340fc6712h9v59spnbyaz4rf85pmnp3zbhaw2r")))) (arguments '(#:configure-flags (list (string-append "LDFLAGS=-Wl,-rpath=" (assoc-ref %outputs "out") "/lib") (string-append "JSON_C_CFLAGS=-I" (assoc-ref %build-inputs "json-c") "/include/json-c")) #:phases (modify-phases %standard-phases (add-after 'unpack 'place-cobol85-test-suite (lambda* (#:key inputs #:allow-other-keys) (let ((newcob (assoc-ref inputs "newcob"))) (copy-file newcob "tests/cobol85/newcob.val.Z")))) (add-before 'check 'set-TERM ;; Some tests expect a known terminal (lambda _ (setenv "TERM" "xterm-256color")))) #:test-target "checkall")) (native-inputs `(("perl" ,perl) ("newcob" ,(origin (method url-fetch) (uri "https://www.itl.nist.gov/div897/ctg/suites/newcob.val.Z") (sha256 (base32 "1yb1plmv4firfnbb119r2vh1hay221w1ya34nyz0qwsxppfr56hy")))))) (inputs (list bdb gmp json-c libxml2 ncurses)) (build-system gnu-build-system) (home-page "https://www.gnu.org/software/gnucobol/") (synopsis "Modern COBOL compiler") (description "GnuCOBOL is a free, modern COBOL compiler. GnuCOBOL implements a substantial part of the COBOL 85, COBOL 2002 and COBOL 2014 standards and X/Open COBOL, as well as many extensions included in other COBOL compilers (IBM COBOL, MicroFocus COBOL, ACUCOBOL-GT and others). GnuCOBOL translates COBOL into C and compiles the translated code using a native C compiler.") (license gpl3+))) 86432f174645163d06a3ef83deaae'>gnu: Rename openexr to openexr-2.Vinicius Monego 2021-10-02gnu: Update gtkmm to 4.2.0, add gtkmm@3, and adjust gtkmm@2.Raghav Gururajan 2021-07-09gnu: lightspark: Update to 0.8.5.Vinicius Monego 2021-07-06gnu: mlt: Rename to mlt-6.Vinicius Monego 2021-06-14gnu: Rename qtbase to qtbase-5.Maxim Cournoyer 2021-05-27gnu: lightspark: Update to 0.8.4.1.Tobias Geerinckx-Rice 2021-05-26gnu: Add lightspark.Vinicius Monego 2021-03-05gnu: pencil2d: Update to 0.6.6.Tobias Geerinckx-Rice 2021-01-31gnu: Add rlottie.Raghav Gururajan 2020-11-28gnu: Add gnash.Vinicius Monego 2020-08-09gnu: pencil2d: Update to 0.6.5.Tobias Geerinckx-Rice 2020-07-12gnu: Remove ".git" from "https://github/…/….git".Ludovic Courtès 2020-01-22gnu: Replace uses of 'libjpeg' with 'libjpeg-turbo'.Marius Bakke 2019-06-06gnu: pencil2d: Update to 0.6.4.Tobias Geerinckx-Rice 2019-04-14gnu: synfig, synfigstudio: Update to 1.2.2.Tobias Geerinckx-Rice 2019-04-14gnu: etl: Update to 1.2.2.Tobias Geerinckx-Rice 2019-03-20gnu: pencil2d: Update to 0.6.3.Tobias Geerinckx-Rice 2019-01-20gnu: Add pencil2d.Pkill -9