From: Julien Lepiller <julien@lepiller.eu>
To: Gabriel Hondet <gabrielhondet@gmail.com>, 34265@debbugs.gnu.org
Subject: [bug#34265] [PATCH 2/9] gnu: sexplib0: Update to 0.12-preview.120.18+252.
Date: Thu, 31 Jan 2019 18:28:35 +0100 [thread overview]
Message-ID: <C0D0C1F5-25F9-482E-904D-1C9295435774@lepiller.eu> (raw)
In-Reply-To: <874l9oycqm.fsf@gmail.com>
Le 31 janvier 2019 17:20:24 GMT+01:00, Gabriel Hondet <gabrielhondet@gmail.com> a écrit :
>
>* gnu/packages/ocaml.scm (sexplib0): Update to 0.12-preview.120.18+252.
>---
> gnu/packages/ocaml.scm | 20 +++++++++++++++-----
> 1 file changed, 15 insertions(+), 5 deletions(-)
>
>diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
>index 986e435f4..5f95591d9 100644
>--- a/gnu/packages/ocaml.scm
>+++ b/gnu/packages/ocaml.scm
>@@ -4903,27 +4903,37 @@ exclusion algorithms are typical examples of
>such systems.")
> (define-public ocaml-sexplib0
> (package
> (name "ocaml-sexplib0")
>- (version "0.11.0")
>+ (version "0.12-preview.120.18+252")
> (home-page "https://github.com/janestreet/sexplib0")
> (source
> (origin
> (method git-fetch)
> (uri (git-reference
> (url (string-append home-page ".git"))
>- (commit (string-append "v" version))))
>+ (commit "7e602a00a9b7c037f3717cc60577a2aad8941830")))
> (file-name (git-file-name name version))
> (sha256
> (base32
>- "07v3ggyss7xhfv14bjk1n87sr42iqwj4cgjiv2lcdfkqk49i2bmi"))))
>+ "0hrxy52nbnrd9l9v66klghsdy7xnbsjk85fb1rdkhcjcr38jnmad"))))
> (build-system dune-build-system)
> (arguments
>- '(#:tests? #f)) ;no tests
>+ '(#:tests? #f ;no tests
>+ #:phases
>+ (modify-phases %standard-phases
>+ (replace 'install
>+ (lambda* (#:key outputs #:allow-other-keys)
>+ (invoke "dune" "install"
>+ (string-append "--libdir="
>+ (assoc-ref outputs "out")
>+ "/lib/ocaml/site-lib")
>+ (string-append "--prefix="
>+ (assoc-ref outputs "out"))))))))
> (synopsis "Library containing the definition of S-expressions and some
> base converters")
> (description "Part of Jane Street's Core library The Core suite of
>libraries is an industrial strength alternative to OCaml's standard
>library
>that was developed by Jane Street, the largest industrial user of
>OCaml.")
>-(license license:expat)))
>+ (license license:expat)))
>
> (define-public ocaml-parsexp
> (package
Hi Gabriel, thanks for these patches!
We usually don't use beta,preview or otherwise unreleased software in guix. The opam website still has 0.11.0 as the latest version. What's the reason behind this change?
Tge libdir thing is worrying. Is it now needed with newer versions of dune? Shouldn't we rather modify the dure-build-system?
These questions apply to other packages in the series, so I'll refrain from pushing anything for now.
next prev parent reply other threads:[~2019-01-31 17:29 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-01-31 16:18 [bug#34265] [PATCH 1/9] gnu: dune: Update to 1.6.3 Gabriel Hondet
2019-01-31 16:20 ` [bug#34265] [PATCH 2/9] gnu: sexplib0: Update to 0.12-preview.120.18+252 Gabriel Hondet
2019-01-31 17:28 ` Julien Lepiller [this message]
2019-01-31 17:49 ` Gabriel Hondet
2019-02-01 8:22 ` Gabriel Hondet
2019-02-01 8:38 ` [bug#34265] [PATCH 1/3] gnu: dune: Update to 1.6.3 Gabriel Hondet
2019-02-01 8:49 ` [bug#34265] [PATCH 2/3] gnu: ocaml-migrate-parsetree: Update to 1.2.0 Gabriel Hondet
2019-02-01 8:50 ` [bug#34265] [PATCH 3/3] gnu: Add ocaml-ppx-inline-test Gabriel Hondet
2019-02-04 21:12 ` bug#34265: [PATCH 2/9] gnu: sexplib0: Update to 0.12-preview.120.18+252 Julien Lepiller
2019-01-31 16:28 ` [bug#34265] [PATCH 3/9] gnu: ocaml-ppx-derivers: Fix libdir install Gabriel Hondet
2019-01-31 16:39 ` [bug#34265] [PATCH 4/9] gnu: ocaml-stdio: " Gabriel Hondet
2019-01-31 16:50 ` [bug#34265] [PATCH 5/9] gnu: ocaml-base: Update to 0.12-preview.120.18+252 Gabriel Hondet
2019-01-31 16:54 ` [bug#34265] [PATCH 6/9] gnu: ocaml-migrate-parsetree: Update to 1.2.0 Gabriel Hondet
2019-01-31 16:56 ` [bug#34265] [PATCH 7/9] gnu: ocaml-compiler-libs: Fix libdir install Gabriel Hondet
2019-01-31 16:58 ` [bug#34265] [PATCH 8/9] gnu: ocaml-ppxlib: Update to 0.5.0 Gabriel Hondet
2019-01-31 17:05 ` [bug#34265] [PATCH 9/9] gnu: Add ocaml-ppx-inline-test Gabriel Hondet
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=C0D0C1F5-25F9-482E-904D-1C9295435774@lepiller.eu \
--to=julien@lepiller.eu \
--cc=34265@debbugs.gnu.org \
--cc=gabrielhondet@gmail.com \
/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).