Skip to content

Commit

Permalink
Merge branch 'community-scripts:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
quantumryuu authored Jan 4, 2025
2 parents 1ed3e8b + 6f557aa commit 67272be
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ Do not break established syntax in this file, as it is automatically updated by

### 🚀 Updated Scripts

- Homarr: Fix missing curl dependency [@MickLesk](https://github.com/MickLesk) ([#1238](https://github.com/community-scripts/ProxmoxVE/pull/1238))
- Homeassistan Core: Fix Python3 and add missing dependencies [@MickLesk](https://github.com/MickLesk) ([#1236](https://github.com/community-scripts/ProxmoxVE/pull/1236))
- Fix: Update Python for HomeAssistant [@MickLesk](https://github.com/MickLesk) ([#1227](https://github.com/community-scripts/ProxmoxVE/pull/1227))
- OneDev: Add git-lfs [@MickLesk](https://github.com/MickLesk) ([#1225](https://github.com/community-scripts/ProxmoxVE/pull/1225))
- Pf2eTools & 5eTools: Fixing npm build [@TheRealVira](https://github.com/TheRealVira) ([#1213](https://github.com/community-scripts/ProxmoxVE/pull/1213))
Expand All @@ -30,6 +32,10 @@ Do not break established syntax in this file, as it is automatically updated by

- Bump next from 15.0.2 to 15.1.3 in /frontend [@dependabot[bot]](https://github.com/dependabot[bot]) ([#1212](https://github.com/community-scripts/ProxmoxVE/pull/1212))

### 🧰 Maintenance

- [GitHub Action] Add filename case check [@quantumryuu](https://github.com/quantumryuu) ([#1228](https://github.com/community-scripts/ProxmoxVE/pull/1228))

## 2025-01-03

### Changed
Expand Down
1 change: 1 addition & 0 deletions install/homarr-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ msg_info "Installing Dependencies"
$STD apt-get install -y \
sudo \
mc \
curl \
ca-certificates \
gnupg \
make \
Expand Down
40 changes: 39 additions & 1 deletion install/homeassistant-core-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,47 @@ network_check
update_os

msg_info "Installing Dependencies (Patience)"
$STD apt-get install -y git curl sudo mc bluez libffi-dev libssl-dev libjpeg-dev zlib1g-dev autoconf build-essential libopenjp2-7 libturbojpeg0-dev ffmpeg liblapack3 liblapack-dev dbus-broker libpcap-dev libavdevice-dev libavformat-dev libavcodec-dev libavutil-dev libavfilter-dev libmariadb-dev-compat libatlas-base-dev pip python3.13-dev
$STD apt-get install -y \
curl \
git \
sudo \
mc \
bluez \
libtiff \
tzdata \
libffi-dev \
libssl-dev \
libjpeg-dev \
zlib1g-dev \
autoconf \
build-essential \
libopenjp2-7 \
libturbojpeg0-dev \
ffmpeg \
liblapack3 \
liblapack-dev \
dbus-broker \
libpcap-dev \
libavdevice-dev \
libavformat-dev \
libavcodec-dev \
libavutil-dev \
libavfilter-dev \
libmariadb-dev-compat \
libatlas-base-dev
msg_ok "Installed Dependencies"

msg_info "Setup Python3"
curl -fsSL https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x6A755776 | sudo gpg --dearmor -o /usr/share/keyrings/deadsnakes-archive.gpg
echo "deb [signed-by=/usr/share/keyrings/deadsnakes-archive.gpg] http://ppa.launchpad.net/deadsnakes/ppa/ubuntu focal main" | sudo tee /etc/apt/sources.list.d/deadsnakes-ppa.list
$STD apt-get update
$STD apt get install -y \
python3 \
python3-pip \
python3-dev \
python3-venv
msg_ok "Setup Python3
msg_info "Installing UV"
$STD pip install uv
msg_ok "Installed UV"
Expand Down

0 comments on commit 67272be

Please sign in to comment.