unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Brett Gilio <brettg@gnu.org>
To: 38965@debbugs.gnu.org
Subject: [bug#38965] [PATCH 03/12] gnu: coq: Update to 8.10.2.
Date: Mon, 06 Jan 2020 02:26:51 -0600	[thread overview]
Message-ID: <87v9ppvvlg.fsf@gnu.org> (raw)
In-Reply-To: <874kx9xa9u.fsf@gnu.org>

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: [PATCH 03/12] gnu: coq: Update to 8.10.2. --]
[-- Type: text/x-patch, Size: 2065 bytes --]

From 23e916aebde29a97a00d1813d007fb6475449548 Mon Sep 17 00:00:00 2001
From: Brett Gilio <brettg@gnu.org>
Date: Mon, 6 Jan 2020 01:32:09 -0600
Subject: [PATCH 03/12] gnu: coq: Update to 8.10.2.
To: guix-patches@gnu.org

* gnu/packages/coq.scm (coq): Update to 8.10.2.
[inputs]: Replace lablgtk with ocaml-lablgtk3.
[arguments]: Remove remove-lablgtk-references phase, as it no longer appears
to be necessary.
---
 gnu/packages/coq.scm | 14 ++++----------
 1 file changed, 4 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/coq.scm b/gnu/packages/coq.scm
index 13ecd6c0ff..ce65ed82c8 100644
--- a/gnu/packages/coq.scm
+++ b/gnu/packages/coq.scm
@@ -44,7 +44,7 @@
 (define-public coq
   (package
     (name "coq")
-    (version "8.9.1")
+    (version "8.10.2")
     (source
      (origin
        (method git-fetch)
@@ -53,7 +53,8 @@
              (commit (string-append "V" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1p4z967s18wkblayv12ygqsrqlyk5ax1pz40yf4kag8pva6gblhk"))))
+        (base32
+         "0ji2rzd70b3hcwfw97qk7rv3m2977ylqnq82l1555dp3njr8nm3q"))))
     (native-search-paths
      (list (search-path-specification
             (variable "COQPATH")
@@ -61,7 +62,7 @@
     (build-system ocaml-build-system)
     (outputs '("out" "ide"))
     (inputs
-     `(("lablgtk" ,lablgtk)
+     `(("lablgtk" ,ocaml-lablgtk3)
        ("python" ,python-2)
        ("camlp5" ,camlp5)
        ("ocaml-num" ,ocaml-num)))
@@ -74,13 +75,6 @@
            (lambda _
              (for-each make-file-writable (find-files "."))
              #t))
-         (add-after 'unpack 'remove-lablgtk-references
-           (lambda _
-             ;; This is not used anywhere, but creates a reference to lablgtk in
-             ;; every binary
-             (substitute* '("config/coq_config.mli" "configure.ml")
-               ((".*coqideincl.*") ""))
-             #t))
          (replace 'configure
            (lambda* (#:key outputs #:allow-other-keys)
              (let* ((out (assoc-ref outputs "out"))
-- 
2.24.1

  parent reply	other threads:[~2020-01-06  8:27 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-06  8:24 [bug#38965] [PATCH 00/12] gnu: coq: Update to 8.10.2 Brett Gilio
2020-01-06  8:25 ` [bug#38965] [PATCH 01/12] gnu: Add ocaml-cairo2 Brett Gilio
2020-01-06  8:26 ` [bug#38965] [PATCH 02/12] gnu: Add ocaml-lablgtk3 Brett Gilio
2020-01-06  8:26 ` Brett Gilio [this message]
2020-01-06  8:27 ` [bug#38965] [PATCH 04/12] gnu: coq: Reword several comments Brett Gilio
2020-01-06  8:27 ` [bug#38965] [PATCH 05/12] gnu: coq-flocq: Update to 3.2.0 Brett Gilio
2020-01-06  8:27 ` [bug#38965] [PATCH 06/12] gnu: coq-flocq: Use HTTPS home page URI Brett Gilio
2020-01-06  8:27 ` [bug#38965] [PATCH 07/12] gnu: coq-gappa: Update to 1.4.2 Brett Gilio
2020-01-06  8:27 ` [bug#38965] [PATCH 08/12] gnu: coq-gappa: Use HTTPS home page URI Brett Gilio
2020-01-06  8:28 ` [bug#38965] [PATCH 09/12] gnu: coq-coquelicot: Update to 3.0.3 Brett Gilio
2020-01-06  8:28 ` [bug#38965] [PATCH 10/12] gnu: coq-coquelicot: Truncate home-page Brett Gilio
2020-01-06  8:28 ` [bug#38965] [PATCH 11/12] gnu: coq-interval: Update to 3.4.1 Brett Gilio
2020-01-06  8:28 ` [bug#38965] [PATCH 12/12] gnu: coq-equations: Update to 1.2.1 Brett Gilio
2020-01-06 14:00 ` [bug#38965] [PATCH 00/12] gnu: coq: Update to 8.10.2 Julien Lepiller
2020-01-07  2:04   ` Brett Gilio
2020-01-07  2:34     ` Julien Lepiller
2020-01-07  2:38       ` Brett Gilio
2020-01-07  3:15         ` bug#38965: " Brett Gilio

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87v9ppvvlg.fsf@gnu.org \
    --to=brettg@gnu.org \
    --cc=38965@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).