2018-03-06 20:05:43 -05:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
|
;;; Copyright © 2018 Danny Milosavljevic <dannym@scratchpost.org>
|
2020-11-08 12:52:42 -05:00
|
|
|
|
;;; Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
2021-07-18 05:03:29 -04:00
|
|
|
|
;;; Copyright © 2021 Efraim Flashner <efraim@flashner.co.il>
|
2018-03-06 20:05:43 -05: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 ada)
|
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
|
|
|
#:use-module (guix build-system gnu)
|
|
|
|
|
#:use-module (guix build-system python)
|
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix download)
|
|
|
|
|
#:use-module (guix git-download)
|
|
|
|
|
#:use-module (gnu packages)
|
2020-11-08 12:52:42 -05:00
|
|
|
|
#:use-module (gnu packages base)
|
2018-03-06 20:05:43 -05:00
|
|
|
|
#:use-module (gnu packages check)
|
|
|
|
|
#:use-module (gnu packages compression)
|
gnu: Separate Python core packages from the rest.
* gnu/packages/python.scm: Move hundreds of package definitions from here...
* gnu/packages/python-xyz.scm: ...to this new module.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/android.scm,
gnu/packages/audio.scm,
gnu/packages/backup.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/calendar.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/cluster.scm,
gnu/packages/compression.scm,
gnu/packages/connman.scm,
gnu/packages/crypto.scm,
gnu/packages/cups.scm,
gnu/packages/databases.scm,
gnu/packages/dav.scm,
gnu/packages/direct-connect.scm,
gnu/packages/disk.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/docker.scm,
gnu/packages/ebook.scm,
gnu/packages/elf.scm,
gnu/packages/emacs.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/enlightenment.scm,
gnu/packages/finance.scm,
gnu/packages/fltk.scm,
gnu/packages/fontutils.scm,
gnu/packages/freedesktop.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/geo.scm,
gnu/packages/gl.scm,
gnu/packages/glib.scm,
gnu/packages/gnome.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/gtk.scm,
gnu/packages/ham-radio.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/irc.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/kde-frameworks.scm,
gnu/packages/key-mon.scm,
gnu/packages/libffi.scm,
gnu/packages/libreoffice.scm,
gnu/packages/libusb.scm,
gnu/packages/lirc.scm,
gnu/packages/logging.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/mate.scm,
gnu/packages/maths.scm,
gnu/packages/medical.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mp3.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/nutrition.scm,
gnu/packages/openldap.scm,
gnu/packages/openstack.scm,
gnu/packages/package-management.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/photo.scm,
gnu/packages/polkit.scm,
gnu/packages/protobuf.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/qt.scm,
gnu/packages/rdf.scm,
gnu/packages/ruby.scm,
gnu/packages/search.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/simulation.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/storage.scm,
gnu/packages/sync.scm,
gnu/packages/terminals.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tls.scm,
gnu/packages/tor.scm,
gnu/packages/tryton.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/virtualization.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wicd.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xorg.scm: Update module references.
2019-01-15 08:21:30 -05:00
|
|
|
|
#:use-module (gnu packages python)
|
2020-11-08 12:52:42 -05:00
|
|
|
|
#:use-module (gnu packages python-xyz)
|
|
|
|
|
#:use-module (ice-9 match))
|
|
|
|
|
|
|
|
|
|
(define-public ada/ed
|
|
|
|
|
(package
|
|
|
|
|
(name "ada-ed")
|
|
|
|
|
(version "1.11.2")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
;; The HOME-PAGE sources, mirrored by one of the original authors.
|
|
|
|
|
(url "https://github.com/daveshields/AdaEd")
|
|
|
|
|
(commit "57daecfb7ccadfd9aaf13b4d54f51065affbe599")))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "1k97a8nqsvbsadizrmhhypcx758sxqkai8wq3ckk853qxvzaasd8"))
|
|
|
|
|
(file-name (git-file-name name version))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(supported-systems (list "i686-linux" "x86_64-linux"
|
2021-07-18 05:03:29 -04:00
|
|
|
|
"armhf-linux" "aarch64-linux"
|
|
|
|
|
"powerpc-linux"))
|
2020-11-08 12:52:42 -05:00
|
|
|
|
(outputs (list "out" "debug"))
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:system
|
|
|
|
|
,@(match (%current-system)
|
|
|
|
|
;; This package predates 64-bit PCs: a ‘64-bit’ adaexec segfaults.
|
|
|
|
|
;; Force a 32-bit build targeting a similar architecture.
|
2021-07-18 05:03:29 -04:00
|
|
|
|
("aarch64-linux"
|
2020-11-08 12:52:42 -05:00
|
|
|
|
`("armhf-linux"))
|
2021-07-18 05:03:29 -04:00
|
|
|
|
("x86_64-linux"
|
|
|
|
|
`("i686-linux"))
|
2020-11-08 12:52:42 -05:00
|
|
|
|
(_
|
2021-07-18 05:03:29 -04:00
|
|
|
|
(list (%current-system))))
|
2020-11-08 12:52:42 -05:00
|
|
|
|
#:make-flags
|
|
|
|
|
(let ((out (assoc-ref %outputs "out")))
|
|
|
|
|
(list (string-append
|
|
|
|
|
"CFLAGS=-g" ; compile with :debug symbols
|
|
|
|
|
" -DOP_SYS='\"GNU\"'" ; sic; quoting gets mangled somewhere
|
|
|
|
|
" -DSYSTEM_V" ; closest to modern GNU
|
|
|
|
|
" -DWORDSIZE32"
|
|
|
|
|
" -DALIGN4") ; suffices on both x86 and ARM
|
|
|
|
|
"LFLAGS=" ; don't link against -lg
|
|
|
|
|
(string-append "BINDIR=" out "/bin")
|
|
|
|
|
(string-append "LIBDIR=" out "/lib")
|
|
|
|
|
(string-append "MANDIR=" out "/share/man")))
|
|
|
|
|
#:modules ((guix build gnu-build-system)
|
|
|
|
|
(guix build utils)
|
|
|
|
|
(srfi srfi-26))
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'patch-sources
|
|
|
|
|
(lambda _
|
|
|
|
|
;; Rename the custom (and incompatible) getline() implementation.
|
|
|
|
|
(substitute* "adalex.c"
|
|
|
|
|
(("getline") "adaed_getline"))
|
|
|
|
|
;; Work around ‘error: initializer element is not constant’ by not
|
|
|
|
|
;; initialising MSGFILE.
|
|
|
|
|
(substitute* "vars.ch"
|
|
|
|
|
(("INIT\\(stdout\\)") ""))
|
|
|
|
|
#t))
|
|
|
|
|
(delete 'configure) ; no configure script
|
|
|
|
|
(add-before 'build 'find-build-scripts
|
|
|
|
|
(lambda _
|
|
|
|
|
(setenv "PATH" (string-append ".:" (getenv "PATH")))
|
|
|
|
|
#t))
|
|
|
|
|
(add-after 'build 'build-predef
|
|
|
|
|
(lambda* (#:key make-flags #:allow-other-keys)
|
|
|
|
|
;; These aren't otherwise compiled until the ‘install’ phase.
|
|
|
|
|
(apply invoke "make" "predef" make-flags)
|
|
|
|
|
#t))
|
|
|
|
|
(delete 'check) ; no test suite; run our own below
|
|
|
|
|
(add-before 'install 'create-output-directories
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
|
(mkdir-p (string-append out "/share/man/manl"))
|
|
|
|
|
#t)))
|
|
|
|
|
(add-after 'install 'check
|
|
|
|
|
;; Run most of the included demos as our own ‘test suite’.
|
|
|
|
|
(lambda* (#:key outputs tests? #:allow-other-keys)
|
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
|
(when tests?
|
|
|
|
|
(setenv "ADAED" (string-append out "/lib"))
|
|
|
|
|
(setenv "PATH" (string-append out "/bin:" (getenv "PATH")))
|
|
|
|
|
(with-directory-excursion "demos" ; won't run outside of it
|
|
|
|
|
(for-each
|
|
|
|
|
delete-file
|
|
|
|
|
'("runc" ; ‘invalid data. Please make it a positive no.’
|
|
|
|
|
"rund" ; deadlocks by design
|
|
|
|
|
"rune" ; ‘dining2.ada: No such file or directory’
|
|
|
|
|
"rung")) ; ‘mathlib cannot be used as a library’ (!)
|
|
|
|
|
(for-each (lambda (script)
|
|
|
|
|
(format #t "\n=== Invoking ~a ===\n" script)
|
|
|
|
|
(invoke script))
|
|
|
|
|
(find-files "." "^run")))))))
|
|
|
|
|
(add-after 'install 'clean-up-output
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
|
(with-directory-excursion out
|
|
|
|
|
;; These needn't be executable.
|
|
|
|
|
(for-each (cut chmod <> #o644)
|
|
|
|
|
(append (find-files "lib" "\\....$")
|
|
|
|
|
(find-files "share" ".")))
|
|
|
|
|
#t)))))))
|
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list sed))
|
2020-11-08 12:52:42 -05:00
|
|
|
|
(home-page (string-append "https://web.archive.org/web/20140902150609/"
|
|
|
|
|
"http://www2.informatik.uni-stuttgart.de/iste/ps/"
|
|
|
|
|
"ada-software/html/dos_ada.html"))
|
|
|
|
|
(synopsis "Ada 83 interpreter")
|
|
|
|
|
(description "Ada/Ed is a translator-interpreter for Ada 83. It's intended
|
|
|
|
|
primarily as a teaching tool and lacks the capacity, performance, and robustness
|
|
|
|
|
of other contemporary or modern-day Ada compilers.
|
|
|
|
|
|
|
|
|
|
Ada/Ed was the first Ada compiler to pass the @acronym{ACVC, Ada Compiler
|
|
|
|
|
Validation Suite} version 1.7 but fails many newer tests and is not a validated
|
|
|
|
|
Ada system. Being an interpreter, it does not implement most representation
|
|
|
|
|
clauses, and thus does not support systems programming close to the machine
|
|
|
|
|
level.")
|
|
|
|
|
(license license:gpl2+)))
|