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 mail2-relais-roc.national.inria.fr (mail2-relais-roc.national.inria.fr [192.134.164.83]) by sympa.inria.fr (Postfix) with ESMTPS id 54E787F89E for ; Mon, 31 Mar 2014 03:22:39 +0200 (CEST) Received-SPF: None (mail2-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=mail2-smtp-roc.national.inria.fr; envelope-from="berenger@riken.jp"; x-sender="berenger@riken.jp"; x-conformance=sidf_compatible Received-SPF: Pass (mail2-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=mail2-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 (mail2-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=mail2-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: AqwBAATDOFOGoCGhnGdsb2JhbABZg0HDbYEuDgEBAQEBCAsJCRQogiYBAQQ4QBELIRYECwkDAgECAUUTCAEBh3UN0SATBI4cahaEIgEDiVCOfpQmgU4 X-IPAS-Result: AqwBAATDOFOGoCGhnGdsb2JhbABZg0HDbYEuDgEBAQEBCAsJCRQogiYBAQQ4QBELIRYECwkDAgECAUUTCAEBh3UN0SATBI4cahaEIgEDiVCOfpQmgU4 X-IronPort-AV: E=Sophos;i="4.97,761,1389740400"; d="scan'208";a="65464398" Received: from postman1.riken.jp (HELO postman.riken.jp) ([134.160.33.161]) by mail2-smtp-roc.national.inria.fr with ESMTP; 31 Mar 2014 03:22:37 +0200 Received: from postman.riken.jp (postman1.riken.jp [127.0.0.1]) by postman.riken.jp (Postfix) with SMTP id 6980D2588002 for ; Mon, 31 Mar 2014 10:22:34 +0900 (JST) Received: from watson.prg.gsc.riken.jp (ipm04.gsc.riken.go.jp [134.160.83.74]) by postman.riken.jp (Postfix) with ESMTPA id 2BC7832A0092 for ; Mon, 31 Mar 2014 10:22:34 +0900 (JST) Message-ID: <5338C35A.5020805@riken.jp> Date: Mon, 31 Mar 2014 10:22:34 +0900 From: Francois Berenger User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: caml-list@inria.fr References: <532F8D40.4030007@riken.jp> <20140324083301.GE10374@annexia.org> <532FF7C6.8010608@riken.jp> <20140324110120.GM3162@annexia.org> <20140324110207.GA18751@annexia.org> <877g7c3e7f.fsf@mid.deneb.enyo.de> In-Reply-To: <877g7c3e7f.fsf@mid.deneb.enyo.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-PMX-Version: 6.0.0.2142326, Antispam-Engine: 2.7.2.2107409, Antispam-Data: 2014.3.31.11515 Subject: Re: [Caml-list] Anybody interested in creating binary RPMs for each official release of the compiler? For the record, I created a shell script using fpm to create an RPM package from a source install of the compiler. Drawbacks: - it needs root access on the computer where you create the package for the make install step - it needs fpm Maybe, if the ocaml source distribution 'make install' target was obeying DESTDIR, we could avoid being root. My example installs everything in /usr/local/ocaml-4.01.0. The script is here: https://github.com/UnixJunkie/create-ocaml-pkg/blob/master/commands.sh Regards, F.