From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Original-To: caml-list@sympa.inria.fr Delivered-To: caml-list@sympa.inria.fr Received: from mail1-relais-roc.national.inria.fr (mail1-relais-roc.national.inria.fr [192.134.164.82]) by sympa.inria.fr (Postfix) with ESMTPS id 4B1387ED34 for ; Fri, 13 Jul 2012 05:29:20 +0200 (CEST) Received-SPF: None (mail1-smtp-roc.national.inria.fr: no sender authenticity information available from domain of berenger@riken.jp) identity=pra; client-ip=134.160.33.161; receiver=mail1-smtp-roc.national.inria.fr; envelope-from="berenger@riken.jp"; x-sender="berenger@riken.jp"; x-conformance=sidf_compatible Received-SPF: Pass (mail1-smtp-roc.national.inria.fr: domain of berenger@riken.jp designates 134.160.33.161 as permitted sender) identity=mailfrom; client-ip=134.160.33.161; receiver=mail1-smtp-roc.national.inria.fr; envelope-from="berenger@riken.jp"; x-sender="berenger@riken.jp"; x-conformance=sidf_compatible; x-record-type="v=spf1" Received-SPF: Pass (mail1-smtp-roc.national.inria.fr: domain of postmaster@postman.riken.jp designates 134.160.33.161 as permitted sender) identity=helo; client-ip=134.160.33.161; receiver=mail1-smtp-roc.national.inria.fr; envelope-from="berenger@riken.jp"; x-sender="postmaster@postman.riken.jp"; x-conformance=sidf_compatible; x-record-type="v=spf1" X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AlcBAM6U/0+GoCGhmWdsb2JhbABFhWiyVQEBAQEBCAsLBxQngiABAQUjDwEFUQsSBgICBRoHAgIPAjgOEwgBAReHcqg1knGBIIogglqCCoESA4hJjHGBEoREg1CJTg X-IronPort-AV: E=Sophos;i="4.77,577,1336341600"; d="scan'208";a="166680433" Received: from postman1.riken.jp (HELO postman.riken.jp) ([134.160.33.161]) by mail1-smtp-roc.national.inria.fr with ESMTP; 13 Jul 2012 05:29:18 +0200 Received: from postman.riken.jp (postman1.riken.jp [127.0.0.1]) by postman.riken.jp (Postfix) with SMTP id 3C66932C00FE; Fri, 13 Jul 2012 12:29:15 +0900 (JST) Received: from [172.27.98.103] (rikad98.riken.jp [134.160.214.98]) by postman.riken.jp (Postfix) with ESMTPA id F223C32A008E; Fri, 13 Jul 2012 12:29:14 +0900 (JST) Message-ID: <4FFF960A.80808@riken.jp> Date: Fri, 13 Jul 2012 12:29:14 +0900 From: Francois Berenger User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:13.0) Gecko/20120615 Thunderbird/13.0.1 MIME-Version: 1.0 To: caml-list@inria.fr References: <12E1C9A9EB7E4DA1B609D88D360B797B@erratique.ch> <4FF1B048.6040404@gmail.com> In-Reply-To: <4FF1B048.6040404@gmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-PMX-Version: 5.6.0.2009776, Antispam-Engine: 2.7.2.376379, Antispam-Data: 2012.7.13.31816 Subject: Re: [was: [Caml-list] [ANN] oasis v0.3.0: Architecture for building OCaml libraries and applications] Pb with type_conv & odb On 07/02/2012 11:29 PM, Edgar Friendly wrote: > On 07/02/2012 09:59 AM, Daniel Bünzli wrote: >> >> >> Le lundi, 2 juillet 2012 à 11:18, Sylvain Le Gall a écrit : >> >>> I think Jane Street Core team added the "-w @Aemr-28" flags. They did >>> it in myocamlbuild.ml section not managed by OASIS. The only solution >>> is to change by hand. >> >> Mmmh. I'm a little bit stuck (too lazy to delve into odb.ml, in fact). >> >> Tried to remove the flag manually in >> `~/.odb/install-type_conv/type_conv-108.00.01/myocamlbuild.ml` but it >> seems that when I reissue `odb --unstable type_conv`, odb restarts >> everything from scratch, download included. >> >> There is `--get` that only downloads and extracts the package is there >> a flag like `--no-get` to be able to start from that state in odb ? >> >> Best, >> >> Daniel >> >> > > At the moment, the way to have odb.ml install a package from a local > directory is to add it to your packages file, like this: > > type_conv dir=~/.odb/install-type_conv/type_conv-108.00.01 > > At the moment, odb allows the use of tarballs (http or local) on the > command line, but doesn't properly handle local directories. I'll see > if I can add support for this quickly. Edgar added support for local directories. This allows users who have a locally patched version of some ocaml package to install it without the need to create a tarball. I know at least one user who wanted this. Regards, F.