search for: which_dependencies

Displaying 2 results from an estimated 2 matches for "which_dependencies".

2013 Jun 06
1
[supermin PATCH] RFC: Add a --names-only flag.
...ing (** Output directory. *) val packages : string list diff --git a/src/supermin_debian.ml b/src/supermin_debian.ml index 08e7d7c..3759f9a 100644 --- a/src/supermin_debian.ml +++ b/src/supermin_debian.ml @@ -51,13 +51,16 @@ let get_installed_pkgs () = * 'apt-get install'. *) let which_dependencies = "-i" (*let which_dependencies = "--no-suggests --no-conflicts --no-breaks --no-replaces --no-enhances"*) -let rec debian_resolve_dependencies_and_download names = +let rec debian_resolve_dependencies_and_download names mode = + let which_dependencies = + if mode == PkgN...
2014 Feb 25
2
[PATCH supermin v4] Supermin 5 rewrite.
...ot;-i" means only Depends and Pre-depends - * are installed, which is stricter (fewer packages) than ordinary - * 'apt-get install'. Otherwise, enable everything, then selectively - * disable what you don't want, to make it behave more like - * 'apt-get install'. - *) -let which_dependencies = "-i" -(*let which_dependencies = "--no-suggests --no-conflicts --no-breaks --no-replaces --no-enhances"*) - -let rec debian_resolve_dependencies_and_download names mode = - let which_dependencies = - if mode == PkgNames then which_dependencies ^ " --recurse" -...