Compare commits

...

14 Commits

Author SHA1 Message Date
github-actions[bot]
62c980e78f Update CHANGELOG.md 2025-01-04 18:34:05 +00:00
CanbiZ
a1fe451fe2
Fix gpg key pf2tools & 5etools (#1242)
* Update pf2etools-install.sh

* Fix GPG 5F
2025-01-04 19:33:48 +01:00
CanbiZ
ba97af3b9f
Fix Deadsnake Repository 2025-01-04 19:29:24 +01:00
CanbiZ
859f3dffc3
Update homeassistant-core-install.sh 2025-01-04 19:14:54 +01:00
CanbiZ
84b15641fb
fix libtiff6 2025-01-04 19:05:46 +01:00
CanbiZ
a99bdb9e97
Update homeassistant-core-install.sh 2025-01-04 19:04:23 +01:00
CanbiZ
6035469047
idention 2025-01-04 18:45:50 +01:00
CanbiZ
982a19cf28
fix space in apt-get 2025-01-04 18:41:00 +01:00
CanbiZ
e3299a67ec
add missing " 2025-01-04 18:39:43 +01:00
CanbiZ
6f557aa394
Update homeassistant-core-install.sh 2025-01-04 18:25:15 +01:00
community-scripts-pr-app[bot]
38f4a98e4f
Update CHANGELOG.md (#1237) 2025-01-04 18:19:45 +01:00
CanbiZ
5967a7f496
Homar: Fix missing curl dependency (#1238) 2025-01-04 18:17:19 +01:00
CanbiZ
67cdc35d02
Homeassistan Core: Fix Python3 and add missing dependencies (#1236) 2025-01-04 18:14:16 +01:00
community-scripts-pr-app[bot]
71c04d9e12
Update CHANGELOG.md (#1229)
Some checks are pending
Create Changelog Pull Request / update-changelog-pull-request (push) Waiting to run
Shellcheck / Shellcheck (push) Waiting to run
2025-01-04 12:57:29 +01:00
5 changed files with 53 additions and 1 deletions

View File

@ -22,6 +22,9 @@ Do not break established syntax in this file, as it is automatically updated by
### 🚀 Updated Scripts ### 🚀 Updated Scripts
- Fix gpg key pf2tools & 5etools [@MickLesk](https://github.com/MickLesk) ([#1242](https://github.com/community-scripts/ProxmoxVE/pull/1242))
- 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)) - 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)) - 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)) - Pf2eTools & 5eTools: Fixing npm build [@TheRealVira](https://github.com/TheRealVira) ([#1213](https://github.com/community-scripts/ProxmoxVE/pull/1213))
@ -30,6 +33,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)) - 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 ## 2025-01-03
### Changed ### Changed

View File

@ -20,6 +20,8 @@ $STD apt-get install -y \
mc \ mc \
sudo \ sudo \
git \ git \
gpg \
ca-certificates \
apache2 apache2
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"

View File

@ -19,6 +19,7 @@ msg_info "Installing Dependencies"
$STD apt-get install -y \ $STD apt-get install -y \
sudo \ sudo \
mc \ mc \
curl \
ca-certificates \ ca-certificates \
gnupg \ gnupg \
make \ make \

View File

@ -14,9 +14,49 @@ network_check
update_os update_os
msg_info "Installing Dependencies (Patience)" 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 \
gnupg \
ca-certificates \
bluez \
libtiff6 \
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_ok "Installed Dependencies"
msg_info "Setup Python3"
curl -fsSL https://ppa.launchpadcontent.net/deadsnakes/ppa/ubuntu/dists/focal/Release.gpg | 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" msg_info "Installing UV"
$STD pip install uv $STD pip install uv
msg_ok "Installed UV" msg_ok "Installed UV"

View File

@ -20,6 +20,8 @@ $STD apt-get install -y \
mc \ mc \
sudo \ sudo \
apache2 \ apache2 \
gpg \
ca-certificates \
git git
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"