Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Detect available packages from homebrew #4548

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/state/opamSysInteract.ml
Original file line number Diff line number Diff line change
Expand Up @@ -618,6 +618,11 @@ let packages_status ?(env=OpamVariable.Map.empty) config packages =
in
compute_sets sys_installed
| Homebrew ->
let sys_available =
run_query_command "brew" ["formulae"]
|> List.map OpamSysPkg.of_string
|> OpamSysPkg.Set.of_list
in
(* accept 'pkgname' and 'pkgname@version'
exampe output
>openssl@1.1
Expand All @@ -641,7 +646,7 @@ let packages_status ?(env=OpamVariable.Map.empty) config packages =
|> List.map OpamSysPkg.of_string
|> OpamSysPkg.Set.of_list
in
compute_sets sys_installed
compute_sets ~sys_available sys_installed
| Macports ->
let variants_map, packages =
OpamSysPkg.(Set.fold (fun spkg (map, set) ->
Expand Down