all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: julien@lepiller.eu
To: 28925@debbugs.gnu.org
Subject: [bug#28925] [PATCH] gnu: youtube-dl: Update to 2017.10.20.
Date: Sat, 21 Oct 2017 18:20:52 +0200	[thread overview]
Message-ID: <20171021162058.27938-2-julien@lepiller.eu> (raw)
In-Reply-To: <20171021162058.27938-1-julien@lepiller.eu>

From: Tobias Geerinckx-Rice <me@tobias.gr>

* gnu/packages/video.scm (youtube-dl): Update to 2017.10.20.
---
 gnu/packages/ocaml.scm | 22 +++++++++++++++-------
 gnu/packages/video.scm |  4 ++--
 2 files changed, 17 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index aa2f00667..8292ece2e 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -401,7 +401,11 @@ syntax of OCaml.")
                   (lambda _
                     (zero? (system* "make" "-j" (number->string
                                                  (parallel-job-count))
-                                    "world.opt")))))))
+                                    "world.opt"))))
+         (add-after 'install 'install-meta
+           (lambda* (#:key outputs #:allow-other-keys)
+             (install-file "etc/META" (string-append (assoc-ref outputs "out")
+                                                     "/lib/ocaml/camlp5/")))))))
     (home-page "http://camlp5.gforge.inria.fr/")
     (synopsis "Pre-processor Pretty Printer for OCaml")
     (description
@@ -445,26 +449,25 @@ written in Objective Caml.")
 (define-public coq
   (package
     (name "coq")
-    (version "8.5pl2")
+    (version "8.7.0")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://coq.inria.fr/distrib/V" version
                                   "/files/" name "-" version ".tar.gz"))
               (sha256
                (base32
-                "0wyywia0darak2zmc5v0ra9rn0b9whwdfiahralm8v5za499s8w3"))))
+                "15wjngjd5pyfqdl5yw92rvdxvy15xcjlpx0rqlkzvcsis1z20xpk"))))
     (native-search-paths
      (list (search-path-specification
             (variable "COQPATH")
             (files (list "lib/coq/user-contrib")))))
-    (build-system gnu-build-system)
+    (build-system ocaml-build-system)
     (native-inputs
      `(("texlive" ,texlive)
-       ("findlib" ,ocaml-findlib)
        ("hevea" ,hevea)))
     (inputs
-     `(("ocaml" ,ocaml)
-       ("lablgtk" ,lablgtk)
+     `(("lablgtk" ,lablgtk)
+       ("python" ,python-2)
        ("camlp5" ,camlp5)))
     (arguments
      `(#:phases
@@ -488,6 +491,11 @@ written in Objective Caml.")
          (add-after 'install 'check
            (lambda _
              (with-directory-excursion "test-suite"
+               ;; These two tests fail.
+               ;; This one fails because the output is not formatted as expected.
+               (delete-file-recursively "coq-makefile/timing")
+               ;; This one fails because we didn't build coqtop.byte.
+               (delete-file-recursively "coq-makefile/findlib-package")
                (zero? (system* "make"))))))))
     (home-page "https://coq.inria.fr")
     (synopsis "Proof assistant for higher-order logic")
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 43e4fc2eb..63824f6c5 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -1116,7 +1116,7 @@ access to mpv's powerful playback capabilities.")
 (define-public youtube-dl
   (package
     (name "youtube-dl")
-    (version "2017.10.15.1")
+    (version "2017.10.20")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://yt-dl.org/downloads/"
@@ -1124,7 +1124,7 @@ access to mpv's powerful playback capabilities.")
                                   version ".tar.gz"))
               (sha256
                (base32
-                "0zr9sx0nxk36si8xbvhlnazb69xzlygrhsxcyiydm0dy5y5ycsns"))))
+                "0npr8b1xg1dylz717kfllw433h1y16251npzch48lchq69bhm4iy"))))
     (build-system python-build-system)
     (arguments
      ;; The problem here is that the directory for the man page and completion
-- 
2.14.2

  reply	other threads:[~2017-10-21 16:23 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-21 16:16 [bug#28925] [PATCH] Update coq and coq libraries Julien Lepiller
2017-10-21 16:20 ` [bug#28925] [PATCH 1/7] gnu: camlp5: install META file julien
2017-10-21 16:20   ` julien [this message]
2017-10-21 17:07     ` [bug#28925] [PATCH] gnu: youtube-dl: Update to 2017.10.20 Julien Lepiller
2017-10-21 16:20   ` [bug#28925] [PATCH 2/7] gnu: Update coq to 8.7.0 julien
2017-10-21 22:18     ` Marius Bakke
2017-10-22  8:22       ` bug#28925: " Julien Lepiller
2017-10-21 16:20   ` [bug#28925] [PATCH 3/7] gnu: Update coq-flocq to 2.6.0 julien
2017-10-21 16:20   ` [bug#28925] [PATCH 4/7] gnu: Update coq-mathcomp to 1.6.2 julien
2017-10-21 16:20   ` [bug#28925] [PATCH 5/7] gnu: Update coq-coquelicot to 3.0.1 julien
2017-10-21 16:20   ` [bug#28925] [PATCH 6/7] gnu: Add coq-bignums julien
2017-10-21 16:20   ` [bug#28925] [PATCH 7/7] gnu: Update coq-interval to 3.3.0 julien
2017-10-24  4:50   ` [bug#28925] [PATCH 1/7] gnu: camlp5: install META file Ludovic Courtès

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

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

  git send-email \
    --in-reply-to=20171021162058.27938-2-julien@lepiller.eu \
    --to=julien@lepiller.eu \
    --cc=28925@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 external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.