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 72E227F860 for ; Wed, 5 Mar 2014 21:00:52 +0100 (CET) Received-SPF: None (mail2-smtp-roc.national.inria.fr: no sender authenticity information available from domain of daniel.buenzli@erratique.ch) identity=pra; client-ip=74.55.86.74; receiver=mail2-smtp-roc.national.inria.fr; envelope-from="daniel.buenzli@erratique.ch"; x-sender="daniel.buenzli@erratique.ch"; x-conformance=sidf_compatible Received-SPF: None (mail2-smtp-roc.national.inria.fr: no sender authenticity information available from domain of daniel.buenzli@erratique.ch) identity=mailfrom; client-ip=74.55.86.74; receiver=mail2-smtp-roc.national.inria.fr; envelope-from="daniel.buenzli@erratique.ch"; x-sender="daniel.buenzli@erratique.ch"; x-conformance=sidf_compatible Received-SPF: None (mail2-smtp-roc.national.inria.fr: no sender authenticity information available from domain of postmaster@smtp.webfaction.com) identity=helo; client-ip=74.55.86.74; receiver=mail2-smtp-roc.national.inria.fr; envelope-from="daniel.buenzli@erratique.ch"; x-sender="postmaster@smtp.webfaction.com"; x-conformance=sidf_compatible X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AlsUAD+CF1NKN1ZKlWdsb2JhbABahXyBIL4JgTAOAQEBAQcNCQkSKoImAQEEI1YQCw4MAiYCAkcCAQ0GG4dxBK4/oCgXgSmMdTMHgm81gRQEnnAXhA8Einw X-IPAS-Result: AlsUAD+CF1NKN1ZKlWdsb2JhbABahXyBIL4JgTAOAQEBAQcNCQkSKoImAQEEI1YQCw4MAiYCAkcCAQ0GG4dxBK4/oCgXgSmMdTMHgm81gRQEnnAXhA8Einw X-IronPort-AV: E=Sophos;i="4.97,594,1389740400"; d="scan'208";a="61460138" Received: from mail6.webfaction.com (HELO smtp.webfaction.com) ([74.55.86.74]) by mail2-smtp-roc.national.inria.fr with ESMTP; 05 Mar 2014 21:00:47 +0100 Received: from [172.20.10.2] (56-227.197-178.cust.bluewin.ch [178.197.227.56]) by smtp.webfaction.com (Postfix) with ESMTP id 2BE53223F87F; Wed, 5 Mar 2014 20:00:44 +0000 (UTC) Date: Wed, 5 Mar 2014 21:00:40 +0100 From: =?utf-8?Q?Daniel_B=C3=BCnzli?= To: David Allsopp Cc: OCaml List Message-ID: <3A42ACD2FA7345B29C464538724DECD5@erratique.ch> In-Reply-To: <000b01cf3885$6f1ef7a0$4d5ce6e0$@metastack.com> References: <000b01cf3885$6f1ef7a0$4d5ce6e0$@metastack.com> X-Mailer: sparrow 1.6.4 (build 1178) MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Subject: Re: [Caml-list] Project hosting for new OCaml projects Le mercredi, 5 mars 2014 =C3=A0 16:13, David Allsopp a =C3=A9crit : > It seems that the following are worth doing: >=20=20 > * Support OASIS (and in so doing, I believe that will migrate its build > system to ocamlbuild) > * Support OPAM (which looks incredibly straightforward - being primarily a > Windows user, the OPAM typhoon has flowed past me thus far) > * Put the SCM online somewhere; submit a pull request for opam-repository; > announce it Since your build system is make and that you already have findlib support I= wouldn't bother with oasis. Rather use an opam file directly for your pack= age metadata and build instructions and put it at the root of your reposito= ry. This allows to robustly support opam pinning workflows which are useful= for asking people to test fixes and making pre-releases.=20=20 Regarding the choice between github and the forge. I'd say if you want to b= e nice to potential contributors prefer github which has a decent user inte= raction. It's not without flaws, the graphs are generally useless, the pull= request mechanism is broken (e.g. it completely muddies history with usele= ss commits) and it's never good to rely on the free as in wine service of a= company. If you already have some kind of web space where you can store an= d push git repos I'd suggest to use github only as a mirror (I can provide = you with the steps to do so if you are interested) so that you can more eas= ily switch to something else in case github becomes problematic --- as sour= ceforge became at one point. Best, Daniel