[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#71492] [PATCH 1/6] gnu: coq-autosubst: Update to 1.8-0.6ba0acc.
From: |
Jean-Pierre De Jesus DIAZ |
Subject: |
[bug#71492] [PATCH 1/6] gnu: coq-autosubst: Update to 1.8-0.6ba0acc. |
Date: |
Wed, 12 Jun 2024 10:57:08 +0200 |
* gnu/packages/coq.scm (coq-autosubst): Update to 1.8-0.6ba0acc.
Change-Id: Ib705c92b5605c6b679224f471ff12c018842c006
---
gnu/packages/coq.scm | 56 ++++++++++++++++++++++++--------------------
1 file changed, 30 insertions(+), 26 deletions(-)
diff --git a/gnu/packages/coq.scm b/gnu/packages/coq.scm
index 11d6b034f1..81f99bd368 100644
--- a/gnu/packages/coq.scm
+++ b/gnu/packages/coq.scm
@@ -518,31 +518,35 @@ (define-public coq-interval
(license license:cecill-c)))
(define-public coq-autosubst
- (package
- (name "coq-autosubst")
- (version "1.8")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/coq-community/autosubst")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
"0qk72r6cqxwhqqkl2kmryhw365w3l2016qii1q1sk3md7zq46jcz"))))
- (build-system gnu-build-system)
- (arguments
- `(#:tests? #f
- #:make-flags (list (string-append "COQLIBINSTALL="
- (assoc-ref %outputs "out")
- "/lib/coq/user-contrib"))
- #:phases
- (modify-phases %standard-phases
- (delete 'configure))))
- (native-inputs
- (list coq))
- (home-page "https://www.ps.uni-saarland.de/autosubst/")
- (synopsis "Coq library for parallel de Bruijn substitutions")
- (description "Formalizing syntactic theories with variable binders is
+ ;; Latest tag does not build with Coq >=8.19, recent commits contain a fix
+ ;; of the problem.
+ (let ((revision "0")
+ (commit "6ba0acccef68c75f6cca8928706c726754d69791"))
+ (package
+ (name "coq-autosubst")
+ (version (git-version "1.8" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/coq-community/autosubst")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
"0k62ygj3zqcs17nhyalcxgwbs8as3f9kdxx6b6a0d44j0iqqnw0l"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:tests? #f
+ #:make-flags (list (string-append "COQLIBINSTALL="
+ (assoc-ref %outputs "out")
+ "/lib/coq/user-contrib"))
+ #:phases
+ (modify-phases %standard-phases
+ (delete 'configure))))
+ (native-inputs
+ (list coq))
+ (home-page "https://www.ps.uni-saarland.de/autosubst/")
+ (synopsis "Coq library for parallel de Bruijn substitutions")
+ (description "Formalizing syntactic theories with variable binders is
not easy. Autosubst is a library for the Coq proof assistant to
automate this process. Given an inductive definition of syntactic objects in
de Bruijn representation augmented with binding annotations, Autosubst
@@ -553,7 +557,7 @@ (define-public coq-autosubst
work on a decision procedure for the equational theory of an extension of the
sigma-calculus by Abadi et al. The library is completely written in Coq and
uses Ltac to synthesize the substitution operation.")
- (license license:bsd-3)))
+ (license license:bsd-3))))
(define-public coq-equations
(package
--
2.45.1
- [bug#71492] [PATCH 0/6] coq: Update various packages., Jean-Pierre De Jesus DIAZ, 2024/06/11
- [bug#71492] [PATCH 3/6] gnu: coq-gappa: Update to 1.5.5., Jean-Pierre De Jesus DIAZ, 2024/06/12
- [bug#71492] [PATCH 2/6] gnu: coq-coquelicot: Update to 3.4.1., Jean-Pierre De Jesus DIAZ, 2024/06/12
- [bug#71492] [PATCH 1/6] gnu: coq-autosubst: Update to 1.8-0.6ba0acc.,
Jean-Pierre De Jesus DIAZ <=
- [bug#71492] [PATCH 6/6] gnu: coq-stdpp: Update to 1.10.0., Jean-Pierre De Jesus DIAZ, 2024/06/12
- [bug#71492] [PATCH 4/6] gnu: coq-interval: Update to 4.10.0., Jean-Pierre De Jesus DIAZ, 2024/06/12
- [bug#71492] [PATCH 5/6] gnu: coq-mathcomp: Update to 1.19.0., Jean-Pierre De Jesus DIAZ, 2024/06/12
- [bug#71492] [PATCH 0/6] coq: Update various packages., Arnaud Daby-Seesaram, 2024/06/12
- [bug#71492] New release?, Andreas Enge, 2024/06/14
- [bug#71492] [PATCH v2] gnu: coq-autosubst: Fix Coq 8.19 compatibility., Jean-Pierre De Jesus DIAZ, 2024/06/17
- [bug#71492] New release?, Jean-Pierre De Jesus Diaz, 2024/06/17