Make the opam file opam 1.2 compatible

This commit is contained in:
Jeremie Dimino 2017-03-01 12:11:54 +00:00
parent c88bf33131
commit 800edaa915
1 changed files with 22 additions and 19 deletions

View File

@ -11,23 +11,26 @@ build: [
["./boot.exe" "-j" jobs] ["./boot.exe" "-j" jobs]
] ]
available: [ ocaml-version >= "4.02.3" ] available: [ ocaml-version >= "4.02.3" ]
descr: "
Fast, portable and opinionated build system
jbuilder is a build system that was designed to simplify the release # CR-soon jdimino: uncomment this when opam 2 is the norm:
of Jane Street packages. It reads metadata from \"jbuild\" files #
following a very simple s-expression syntax. # descr: "
# Fast, portable and opinionated build system
jbuilder is fast, it has very low-overhead and support parallel builds #
on all platforms. It has no system dependencies, all you need to build # jbuilder is a build system that was designed to simplify the release
jbuilder and packages using jbuilder is OCaml. You don't need or make # of Jane Street packages. It reads metadata from \"jbuild\" files
or bash as long as the packages themselves don't use bash explicitely. # following a very simple s-expression syntax.
#
jbuilder supports multi-package development by simply dropping multiple # jbuilder is fast, it has very low-overhead and support parallel builds
repositories into the same directory. # on all platforms. It has no system dependencies, all you need to build
# jbuilder and packages using jbuilder is OCaml. You don't need or make
It also supports multi-context builds, such as building against # or bash as long as the packages themselves don't use bash explicitely.
several opam roots/switches simultaneously. This helps maintaining #
packages across several versions of OCaml and gives cross-compilation # jbuilder supports multi-package development by simply dropping multiple
for free. # repositories into the same directory.
" #
# It also supports multi-context builds, such as building against
# several opam roots/switches simultaneously. This helps maintaining
# packages across several versions of OCaml and gives cross-compilation
# for free.
# "