Switch to emacs 29 on Linux.

This commit is contained in:
Tom Alexander 2023-05-26 21:35:19 -04:00
parent 990add4ddf
commit cb383ead75
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
1 changed files with 18 additions and 1 deletions

View File

@ -1,5 +1,22 @@
- name: Build aur packages
register: buildaur
become_user: "{{ build_user.name }}"
command: "aurutils-sync --no-view {{ item }}"
args:
creates: "/var/cache/pacman/custom/{{ item }}-*.pkg.tar.*"
loop:
- emacs29-git
- name: Update cache
when: buildaur.changed
pacman:
name: []
state: present
update_cache: true
- name: Install packages
package:
name:
- emacs-nativecomp
- aspell-en
- emacs29-git
state: present