[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#58310] [PATCH 14/14] gnu: Add coq-mathcomp-analysis.
From: |
Garek Dyszel |
Subject: |
[bug#58310] [PATCH 14/14] gnu: Add coq-mathcomp-analysis. |
Date: |
Wed, 05 Oct 2022 13:51:55 -0400 |
diff --git a/gnu/packages/coq.scm b/gnu/packages/coq.scm
index 184e503dd5..f7b4c504f9 100644
--- a/gnu/packages/coq.scm
+++ b/gnu/packages/coq.scm
@@ -905,3 +905,67 @@ (define-public coq-mathcomp-hierarchy-builder
linking these interfaces to the structures part of the hierarchy.")
(home-page "https://math-comp.github.io/")
(license license:expat)))
+
+(define-public coq-mathcomp-analysis
+ (package
+ (name "coq-mathcomp-analysis")
+ (version "0.5.4")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/math-comp/analysis")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1l1yaxbmqr4li8x7g51q98a6v383dnf94lw1b74ccpwqz9qybz9m"))))
+ (build-system gnu-build-system)
+ (arguments
+ `( ;No rule to make target 'check'. Stop.
+ ;; Makefile.common has no references to tests.
+ ;; There are also no references to tests found after
+ ;; running the following commands in the top
+ ;; directory of the cloned repo:
+ ;; find -type d | grep -i test
+ ;; rg test # where rg is ripgrep
+ ;; Checking the git log, we find: "Add test suite for
+ ;; joins and several fixes".
+ ;;
+ ;; If tests are included, this quote suggests that they
+ ;; would be part of the source files themselves,
+ ;; and the tests would be run as part of the build
+ ;; process.
+ #:tests? #f
+ #:make-flags ,#~(list (string-append "COQBIN="
+ #$(this-package-input "coq-core")
+ "/bin/")
+ (string-append "COQBININSTALL="
+ (assoc-ref %outputs "out") "/bin/")
+ (string-append "DESTDIR="
+ (assoc-ref %outputs "out"))
+ (string-append "COQMF_COQLIB="
+ (assoc-ref %outputs "out")
+ "/lib/ocaml/site-lib/coq")
+ (string-append "COQLIBINSTALL="
+ (assoc-ref %outputs "out")
+ "/lib/coq/user-contrib"))
+ #:phases (modify-phases %standard-phases
+ (delete 'configure)
+ (replace 'build
+ (lambda* (#:key make-flags #:allow-other-keys)
+ (apply invoke "make" "build" make-flags))))))
+ (inputs (list coq
+ coq-stdlib
+ coq-mathcomp
+ coq-mathcomp-finmap
+ coq-mathcomp-hierarchy-builder
+ coq-elpi
+ coq-mathcomp-bigenough
+ coq-core
+ which))
+ (synopsis "Real analysis for the Coq proof assistant")
+ (description
+ "This repository contains an experimental library for real analysis for
+the Coq proof-assistant, using the Mathematical Components library.")
+ (home-page "https://math-comp.github.io/")
+ (license license:cecill-c)))
--
2.37.3
- [bug#58310] [PATCH 01/14] gnu: Add python-pprintpp., (continued)
- [bug#58310] [PATCH 01/14] gnu: Add python-pprintpp., Garek Dyszel, 2022/10/05
- [bug#58310] [PATCH 03/14] gnu: Add python-setuptools-scm-7.* gnu/packages/python-build.scm (python-setuptools-scm-7): New variable., Garek Dyszel, 2022/10/05
- [bug#58310] [PATCH 02/14] gnu: Add python-pluggy-1.0.* gnu/packages/python-xyz.scm (python-pluggy-1.0): New variable., Garek Dyszel, 2022/10/05
- [bug#58310] [PATCH 04/14] gnu: Add python-hatchling-bootstrap., Garek Dyszel, 2022/10/05
- [bug#58310] [PATCH 08/14] gnu: Add python-hatch-fancy-pypi-readme., Garek Dyszel, 2022/10/05
- [bug#58310] [PATCH 07/14] gnu: Add python-pytest-icdiff., Garek Dyszel, 2022/10/05
- [bug#58310] [PATCH 05/14] gnu: Add python-hatch., Garek Dyszel, 2022/10/05
- [bug#58310] [PATCH 06/14] gnu: Add python-hatch-vcs., Garek Dyszel, 2022/10/05
- [bug#58310] [PATCH 10/14] gnu: Add ocaml-atd., Garek Dyszel, 2022/10/05
- [bug#58310] [PATCH 09/14] gnu: python-jsonschema-next: Update to 4.16.0., Garek Dyszel, 2022/10/05
- [bug#58310] [PATCH 14/14] gnu: Add coq-mathcomp-analysis.,
Garek Dyszel <=
- [bug#58310] [PATCH 11/14] gnu: Add ocaml-elpi., Garek Dyszel, 2022/10/05
- [bug#58310] [PATCH 12/14] gnu: Add coq-elpi., Garek Dyszel, 2022/10/05
- [bug#58310] [PATCH 13/14] gnu: Add coq-mathcomp-hierarchy-builder., Garek Dyszel, 2022/10/05
- [bug#58310] Temporary manifest for coq-mathcomp-analysis, Garek Dyszel, 2022/10/18