2017-09-14 12:32:36 -04:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2022-10-14 00:54:53 -04:00
|
|
|
;;; Copyright © 2017, 2018, 2021, 2022 Efraim Flashner <efraim@flashner.co.il>
|
2017-09-14 12:32:36 -04:00
|
|
|
;;;
|
|
|
|
;;; 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 cobol)
|
|
|
|
#:use-module (gnu packages)
|
|
|
|
#:use-module (guix build-system gnu)
|
|
|
|
#:use-module (guix licenses)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
2022-10-14 00:54:53 -04:00
|
|
|
#:use-module (guix gexp)
|
gnu: Move dbm databases to new module.
* gnu/packages/databases.scm (gdbm, bdb, bdb-5.3): Move from here...
* gnu/packages/dbm.scm: ...to this new module.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
* gnu/packages/audio.scm,
gnu/packages/avahi.scm,
gnu/packages/backup.scm,
gnu/packages/cobol.scm,
gnu/packages/cyrus-sasl.scm,
gnu/packages/databases.scm,
gnu/packages/finance.scm,
gnu/packages/game-development.scm,
gnu/packages/gnome.scm,
gnu/packages/guile.scm,
gnu/packages/ibus.scm,
gnu/packages/kerberos.scm,
gnu/packages/linux.scm,
gnu/packages/mail.scm,
gnu/packages/man.scm,
gnu/packages/nvi.scm,
gnu/packages/openldap.scm,
gnu/packages/package-management.scm,
gnu/packages/php.scm,
gnu/packages/pulseaudio.scm,
gnu/packages/python.scm,
gnu/packages/rdf.scm,
gnu/packages/ruby.scm,
gnu/packages/sawfish.scm: Update module references.
2019-01-16 08:48:47 -05:00
|
|
|
#:use-module (gnu packages dbm)
|
2017-09-14 12:32:36 -04:00
|
|
|
#:use-module (gnu packages multiprecision)
|
2018-01-25 13:28:20 -05:00
|
|
|
#:use-module (gnu packages ncurses)
|
2021-04-23 03:10:59 -04:00
|
|
|
#:use-module (gnu packages perl)
|
|
|
|
#:use-module (gnu packages web)
|
|
|
|
#:use-module (gnu packages xml))
|
2017-09-14 12:32:36 -04:00
|
|
|
|
|
|
|
(define-public gnucobol
|
|
|
|
(package
|
|
|
|
(name "gnucobol")
|
2021-03-10 00:54:48 -05:00
|
|
|
(version "3.1.2")
|
2017-09-14 12:32:36 -04:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"mirror://gnu/gnucobol/gnucobol-"
|
|
|
|
version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2021-03-10 00:54:48 -05:00
|
|
|
"0x15ybfm63g7c9340fc6712h9v59spnbyaz4rf85pmnp3zbhaw2r"))))
|
2017-09-14 12:32:36 -04:00
|
|
|
(arguments
|
2022-10-14 00:54:53 -04:00
|
|
|
(list
|
|
|
|
#:configure-flags
|
|
|
|
#~(list (string-append "LDFLAGS=-Wl,-rpath="
|
|
|
|
#$output "/lib")
|
|
|
|
(string-append "JSON_C_CFLAGS=-I"
|
|
|
|
(search-input-directory %build-inputs
|
|
|
|
"/include/json-c")))
|
2018-01-25 13:28:20 -05:00
|
|
|
#:phases
|
2022-10-14 00:54:53 -04:00
|
|
|
#~(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"))))
|
2018-01-25 13:28:20 -05:00
|
|
|
#:test-target "checkall"))
|
|
|
|
(native-inputs
|
2021-04-23 03:10:59 -04:00
|
|
|
`(("perl" ,perl)
|
2018-01-25 13:28:20 -05:00
|
|
|
("newcob" ,(origin
|
|
|
|
(method url-fetch)
|
2018-04-08 16:32:27 -04:00
|
|
|
(uri "https://www.itl.nist.gov/div897/ctg/suites/newcob.val.Z")
|
2018-01-25 13:28:20 -05:00
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1yb1plmv4firfnbb119r2vh1hay221w1ya34nyz0qwsxppfr56hy"))))))
|
2021-04-23 03:10:59 -04:00
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list bdb gmp json-c libxml2 ncurses))
|
2017-09-14 12:32:36 -04:00
|
|
|
(build-system gnu-build-system)
|
2021-04-23 03:08:56 -04:00
|
|
|
(home-page "https://www.gnu.org/software/gnucobol/")
|
2021-12-31 00:10:29 -05:00
|
|
|
(synopsis "Modern COBOL compiler")
|
2022-10-14 00:46:07 -04:00
|
|
|
(description
|
|
|
|
"GnuCOBOL is a free, modern COBOL compiler. It implements a substantial
|
|
|
|
part of COBOL 85, X/Open COBOL and newer ISO COBOL standards as well as many
|
|
|
|
extensions from other COBOL compilers (IBM COBOL, MicroFocus COBOL, ACUCOBOL-GT
|
|
|
|
and others).")
|
2017-09-14 12:32:36 -04:00
|
|
|
(license gpl3+)))
|