fixing formatting and dependencies

This commit is contained in:
Matthew Stobbs
2025-01-25 18:45:37 -07:00
parent 391e8ee226
commit 66eaed6e4b
33 changed files with 95 additions and 75 deletions

View File

@@ -5,18 +5,16 @@
- ansible.builtin.set_fact:
pkgconfig_neovide: "{{ _neovide | ansible.builtin.combine(pkgconfig.neovide) }}"
- ansible.builtin.include_tasks:
file: "pkgs/{{ pkgdep }}.yml"
loop: "{{ pkgconfig_neovide.local_deps }}"
loop_control:
loop_var: pkgdep
file: pkgs/rust.yml
when: pkgconfig_rust not defined
- name: append to pkgs
when: ansible_system == 'Linux'
set_fact:
ansible.builtin.set_fact:
syspkgs: "{{ syspkgs + pkgconfig_neovide.pkgdeps[ansible_os_family] }}"
srcpkgs: "{{ srcpkgs + [ 'neovide' ] }}"
when: ansible_system == 'Linux'
- name: append neovide to caskpkgs
when: ansible_system == 'Darwin'
set_fact:
ansible.builtin.set_fact:
caskpkgs: "{{ caskpkgs + [ 'neovide' ] }}"
when: ansible_system == 'Darwin'