Test conversion of opam sources into lock dir package specifications $ . ./helpers.sh $ mkrepo $ mkpkg testpkg < url { > src: "http://caml.inria.fr/pub/distrib/ocaml-3.11/ocaml-3.11.1.tar.gz" > checksum: "md5=069aa55d40e548280f92af693f6c625a" > } > EOF $ solve testpkg Solution for dune.lock: - testpkg.0.0.1 $ showpkg() { > local f=dune.lock/testpkg.pkg > [ -e $f ] && cat $f > } $ showpkg (version 0.0.1) (source (fetch (url http://caml.inria.fr/pub/distrib/ocaml-3.11/ocaml-3.11.1.tar.gz) (checksum md5=069aa55d40e548280f92af693f6c625a))) $ mkdir testpkgsources $ mkpkg testpkg < url { > src: "file://$PWD/testpkgsources" > } > EOF $ rm -rf dune.lock $ solve testpkg 2>&1 | sed -E 's#.*.sandbox/[^/]+#.sandbox/$SANDBOX#g' | sed '/File "/q' Solution for dune.lock: - testpkg.0.0.1 $ showpkg | sed -e "s#$PWD##" (version 0.0.1) (source (fetch (url file:///testpkgsources))) (dev) Unsupported backends: $ rm -rf dune.lock $ mkpkg testpkg < url { > src: "hg+http://no-support.com/foo" > checksum: "md5=069aa55d40e548280f92af693f6c625a" > } > EOF $ solve testpkg 2>&1 Solution for dune.lock: - testpkg.0.0.1 $ showpkg (version 0.0.1) (source (fetch (url hg+http://no-support.com/foo) (checksum md5=069aa55d40e548280f92af693f6c625a))) git+http $ rm -rf dune.lock $ mkpkg testpkg < url { > src: "git+http://github.com/foo" > checksum: "md5=069aa55d40e548280f92af693f6c625a" > } > EOF $ solve testpkg 2>&1 Solution for dune.lock: - testpkg.0.0.1 $ showpkg (version 0.0.1) (source (fetch (url git+http://github.com/foo) (checksum md5=069aa55d40e548280f92af693f6c625a))) git+file $ rm -rf dune.lock $ mkpkg testpkg < url { > src: "git+file://here" > checksum: "md5=069aa55d40e548280f92af693f6c625a" > } > EOF $ solve testpkg 2>&1 Solution for dune.lock: - testpkg.0.0.1 $ showpkg (version 0.0.1) (source (fetch (url git+file://here) (checksum md5=069aa55d40e548280f92af693f6c625a))) git+foobar $ rm -rf dune.lock $ mkpkg testpkg < url { > src: "git+foobar://random-thing-here" > checksum: "md5=069aa55d40e548280f92af693f6c625a" > } > EOF $ solve testpkg 2>&1 Solution for dune.lock: - testpkg.0.0.1 $ showpkg (version 0.0.1) (source (fetch (url git+foobar://random-thing-here) (checksum md5=069aa55d40e548280f92af693f6c625a))) file+git $ rm -rf dune.lock $ mkpkg testpkg < url { > src: "file+git://random-thing-here" > checksum: "md5=069aa55d40e548280f92af693f6c625a" > } > EOF $ solve testpkg 2>&1 Solution for dune.lock: - testpkg.0.0.1 $ showpkg (version 0.0.1)