Drop Debian Bullseye (#382)
This commit is contained in:
parent
1292ab7372
commit
f52ff8259e
5 changed files with 8 additions and 7 deletions
5
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
5
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
|
@ -13,7 +13,7 @@ body:
|
||||||
attributes:
|
attributes:
|
||||||
label: OS Version
|
label: OS Version
|
||||||
description: Please Insert the output of `lsb_release -d`
|
description: Please Insert the output of `lsb_release -d`
|
||||||
placeholder: Debian GNU/Linux 11 (bullseye)
|
placeholder: Debian GNU/Linux 12 (bookworm)
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: input
|
- type: input
|
||||||
|
@ -21,7 +21,7 @@ body:
|
||||||
attributes:
|
attributes:
|
||||||
label: System Information
|
label: System Information
|
||||||
description: Please Insert the output of `uname -a`
|
description: Please Insert the output of `uname -a`
|
||||||
placeholder: 'Linux ha-su-deb 5.10.0-9-amd64 #1 SMP Debian 5.10.70-1 (2021-09-30) x86_64 GNU/Linux'
|
placeholder: 'Linux ha 6.1.0-26-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.112-1 (2024-09-30) x86_64 GNU/Linux'
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: textarea
|
- type: textarea
|
||||||
|
@ -59,6 +59,7 @@ body:
|
||||||
- raspberrypi3-64
|
- raspberrypi3-64
|
||||||
- raspberrypi4
|
- raspberrypi4
|
||||||
- raspberrypi4-64
|
- raspberrypi4-64
|
||||||
|
- raspberrypi5-64
|
||||||
- tinker
|
- tinker
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
|
|
2
.github/workflows/build-deb-pr.yml
vendored
2
.github/workflows/build-deb-pr.yml
vendored
|
@ -12,7 +12,7 @@ jobs:
|
||||||
uses: actions/checkout@v4.2.0
|
uses: actions/checkout@v4.2.0
|
||||||
- name: Build Debian Package in Docker
|
- name: Build Debian Package in Docker
|
||||||
run: |
|
run: |
|
||||||
docker run --rm -v $(pwd):/tmp debian:bullseye-slim bash -c \
|
docker run --rm -v $(pwd):/tmp debian:bookworm-slim bash -c \
|
||||||
"cd /tmp \
|
"cd /tmp \
|
||||||
&& chmod 555 homeassistant-supervised/DEBIAN/p* \
|
&& chmod 555 homeassistant-supervised/DEBIAN/p* \
|
||||||
&& dpkg-deb --build --root-owner-group homeassistant-supervised"
|
&& dpkg-deb --build --root-owner-group homeassistant-supervised"
|
||||||
|
|
2
.github/workflows/build-deb.yml
vendored
2
.github/workflows/build-deb.yml
vendored
|
@ -14,7 +14,7 @@ jobs:
|
||||||
uses: actions/checkout@v4.2.0
|
uses: actions/checkout@v4.2.0
|
||||||
- name: Build Debian Package in Docker
|
- name: Build Debian Package in Docker
|
||||||
run: |
|
run: |
|
||||||
docker run --rm -v $(pwd):/tmp debian:bullseye-slim bash -c \
|
docker run --rm -v $(pwd):/tmp debian:bookworm-slim bash -c \
|
||||||
"cd /tmp \
|
"cd /tmp \
|
||||||
&& chmod 555 homeassistant-supervised/DEBIAN/p* \
|
&& chmod 555 homeassistant-supervised/DEBIAN/p* \
|
||||||
&& dpkg-deb --build --root-owner-group homeassistant-supervised"
|
&& dpkg-deb --build --root-owner-group homeassistant-supervised"
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
Package: homeassistant-supervised
|
Package: homeassistant-supervised
|
||||||
Section: base
|
Section: base
|
||||||
Version: 1.8.0
|
Version: 2.0.0
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Pre-Depends: curl, bash, docker-ce, dbus, network-manager, apparmor, jq, systemd, os-agent, systemd-journal-remote, systemd-resolved | systemd (>=247.3-7+deb11)
|
Pre-Depends: curl, bash, docker-ce, dbus, network-manager, apparmor, jq, systemd, os-agent, systemd-journal-remote, systemd-resolved
|
||||||
Depends: bluez, cifs-utils, nfs-common
|
Depends: bluez, cifs-utils, nfs-common
|
||||||
Maintainer: Matheson Steplock <https://mathesonsteplock.ca/>
|
Maintainer: Matheson Steplock <https://mathesonsteplock.ca/>
|
||||||
Homepage: https://www.home-assistant.io/
|
Homepage: https://www.home-assistant.io/
|
||||||
|
|
|
@ -12,7 +12,7 @@ warn ""
|
||||||
|
|
||||||
# Check if we are running on a supported OS
|
# Check if we are running on a supported OS
|
||||||
BYPASS_OS_CHECK=${BYPASS_OS_CHECK:-false}
|
BYPASS_OS_CHECK=${BYPASS_OS_CHECK:-false}
|
||||||
supported_os=("Debian GNU/Linux 11 (bullseye)" "Debian GNU/Linux 12 (bookworm)")
|
supported_os=("Debian GNU/Linux 12 (bookworm)")
|
||||||
|
|
||||||
CURRENT_OS=$(lsb_release -d | awk -F"\t" '{print $2}')
|
CURRENT_OS=$(lsb_release -d | awk -F"\t" '{print $2}')
|
||||||
os_supported=false
|
os_supported=false
|
||||||
|
|
Loading…
Reference in a new issue