opam-bundle
opam-bundle copied to clipboard
A tool that creates stand-alone source bundles from opam packages
This PR impose bundled opam to use mccs solver. This is because of more descriptive error message when there is a lack on some system dependencies.
This PR fixes filter creation, in order to take correct constraint about pinned package's version. This avoids choosing package from repository and further inconsistent dependencies' resolution.
It will be really great if `opam-bundle` would perform some checks about correctness of specified ocaml or opam version before bundle construction.
It would be nice if any valid opam package can be bundled. Currently, only opam packages in the opam-repository are supported...
Hi, thanks for sharing opam-bundle, it is very helpful! I have a stupid question: suppose I have opam-bundled my software, and all the dependencies come from the default opam repository....
The code seems to be missing a `not`: https://github.com/AltGr/opam-bundle/blob/63476616262b54076a6920da8969f206be1a84f1/src/opamBundleMain.ml#L94-L96
I'd like to bundle all of the dependencies of my local opam file, without actually including that package, to generate a bundle that can be cached by CI and used...
I hope each execution of opam-bundle is independant, so that we can run many in parallel.
for example, by trying to bundle all packages available in opam. This can be done by a script.
I'd like to use opam-bundle to distribute some command line tools to non OCaml users. It works quite well for that purpose, but I consider it wasteful to bundle and...