Skip to content

Commit

Permalink
Add support for FreeBSD 15.
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxdude42 committed Oct 27, 2024
1 parent e29dce8 commit 3593eb8
Showing 1 changed file with 25 additions and 2 deletions.
27 changes: 25 additions & 2 deletions roles/mythtv-freebsd/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,22 @@
- py37-urlgrabber
- py37-requests
- py37-simplejson
when: ansible_distribution_major_version|int >= 13
when:
- ansible_distribution_major_version|int >= 13
- ansible_distribution_major_version|int < 15

- name: add python essentials (FreeBSD 15 or later)
set_fact:
pkgng_pkg_lst:
- '{{ pkgng_pkg_lst }}'
- python
- py311-lxml
- py311-pymysql
- py311-oauth
- py311-urlgrabber
- py311-requests
- py311-simplejson
when: ansible_distribution_major_version|int >= 15

- name: add perl essentials
set_fact:
Expand Down Expand Up @@ -132,13 +147,21 @@
- v4l_compat
- libv4l
- libva
- libva-glx
- libvdpau
- libdrm
- gnutls
- soundtouch
when: ansible_distribution_major_version|int >= 13

- name: add packages moved to main repository (freebsd13,14)
set_fact:
pkgng_pkg_lst:
- '{{ pkgng_pkg_lst }}'
- libva-glx
when:
- ansible_distribution_major_version|int >= 13
- ansible_distribution_major_version|int < 15

- name: packages from ports
set_fact:
ports_pkg_lst:
Expand Down

0 comments on commit 3593eb8

Please sign in to comment.