Update Hyprland to v0.47.1 (incl. dependencies)
This commit is contained in:
parent
ee86257e93
commit
660045acdb
|
@ -79,67 +79,38 @@
|
||||||
- "Aquamarine"
|
- "Aquamarine"
|
||||||
- "hyprgraphics"
|
- "hyprgraphics"
|
||||||
|
|
||||||
- name: Checkout hyprutils repo
|
- name: Checkout required source repositories
|
||||||
ansible.builtin.git:
|
ansible.builtin.git:
|
||||||
repo: 'https://github.com/hyprwm/hyprutils.git'
|
repo: "{{ item.repo }}"
|
||||||
dest: /usr/local/src/hyprutils
|
dest: "{{ item.dest }}"
|
||||||
version: v0.2.6
|
version: "{{ item.version }}"
|
||||||
force: true
|
|
||||||
recursive: true
|
|
||||||
|
|
||||||
- name: Checkout hyprwayland-scanner repo
|
|
||||||
ansible.builtin.git:
|
|
||||||
repo: 'https://github.com/hyprwm/hyprwayland-scanner.git'
|
|
||||||
dest: /usr/local/src/hyprwayland-scanner
|
|
||||||
version: v0.4.2
|
|
||||||
force: true
|
|
||||||
recursive: true
|
|
||||||
|
|
||||||
- name: Checkout hyprlang repo
|
|
||||||
ansible.builtin.git:
|
|
||||||
repo: 'https://github.com/hyprwm/hyprlang.git'
|
|
||||||
dest: /usr/local/src/hyprlang
|
|
||||||
version: v0.6.0
|
|
||||||
force: true
|
|
||||||
recursive: true
|
|
||||||
|
|
||||||
- name: Checkout hyprcursor repo
|
|
||||||
ansible.builtin.git:
|
|
||||||
repo: 'https://github.com/hyprwm/hyprcursor.git'
|
|
||||||
dest: /usr/local/src/hyprcursor
|
|
||||||
version: v0.1.10
|
|
||||||
force: true
|
|
||||||
recursive: true
|
|
||||||
|
|
||||||
- name: Checkout xdg-desktop-portal-hyprland repo
|
|
||||||
ansible.builtin.git:
|
|
||||||
repo: 'https://github.com/hyprwm/xdg-desktop-portal-hyprland.git'
|
|
||||||
dest: /usr/local/src/xdg-desktop-portal-hyprland
|
|
||||||
version: v1.3.9
|
|
||||||
force: true
|
|
||||||
|
|
||||||
- name: Checkout Aquamarine repo
|
|
||||||
ansible.builtin.git:
|
|
||||||
repo: 'https://github.com/hyprwm/aquamarine.git'
|
|
||||||
dest: /usr/local/src/Aquamarine
|
|
||||||
version: v0.5.1
|
|
||||||
force: true
|
|
||||||
recursive: true
|
|
||||||
|
|
||||||
- name: Checkout hyprgraphics repo
|
|
||||||
ansible.builtin.git:
|
|
||||||
repo: 'https://github.com/hyprwm/hyprgraphics.git'
|
|
||||||
dest: /usr/local/src/hyprgraphics
|
|
||||||
version: v0.1.1
|
|
||||||
force: true
|
|
||||||
|
|
||||||
- name: Checkout Hyprland repo
|
|
||||||
ansible.builtin.git:
|
|
||||||
repo: 'https://github.com/hyprwm/Hyprland.git'
|
|
||||||
dest: /usr/local/src/Hyprland
|
|
||||||
version: v0.46.2
|
|
||||||
force: true
|
force: true
|
||||||
recursive: true
|
recursive: true
|
||||||
|
loop:
|
||||||
|
- repo: "https://github.com/hyprwm/hyprutils.git"
|
||||||
|
version: "v0.5.0"
|
||||||
|
dest: "/usr/local/src/hyprutils"
|
||||||
|
- repo: "https://github.com/hyprwm/hyprwayland-scanner.git"
|
||||||
|
version: "v0.4.4"
|
||||||
|
dest: "/usr/local/src/hyprwayland-scanner"
|
||||||
|
- repo: "https://github.com/hyprwm/hyprlang.git"
|
||||||
|
version: "v0.6.0"
|
||||||
|
dest: "/usr/local/src/hyprlang"
|
||||||
|
- repo: "https://github.com/hyprwm/hyprcursor.git"
|
||||||
|
version: "v0.1.11"
|
||||||
|
dest: "/usr/local/src/hyprcursor"
|
||||||
|
- repo: "https://github.com/hyprwm/xdg-desktop-portal-hyprland.git"
|
||||||
|
version: "v1.3.9"
|
||||||
|
dest: "/usr/local/src/xdg-desktop-portal-hyprland"
|
||||||
|
- repo: "https://github.com/hyprwm/aquamarine.git"
|
||||||
|
version: "v0.7.2"
|
||||||
|
dest: "/usr/local/src/Aquamarine"
|
||||||
|
- repo: "https://github.com/hyprwm/hyprgraphics.git"
|
||||||
|
version: "v0.1.1"
|
||||||
|
dest: "/usr/local/src/hyprgraphics"
|
||||||
|
- repo: "https://github.com/hyprwm/Hyprland.git"
|
||||||
|
version: "v0.47.1"
|
||||||
|
dest: "/usr/local/src/Hyprland"
|
||||||
|
|
||||||
- name: Build hyprutils
|
- name: Build hyprutils
|
||||||
ansible.builtin.command:
|
ansible.builtin.command:
|
||||||
|
|
Loading…
Reference in a new issue