This is an automated email from the ASF dual-hosted git repository.
ronny pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/couchdb-ci.git
The following commit(s) were added to refs/heads/main by this push:
new 59b8e14 chore: Remove unnecessary packages (#94)
59b8e14 is described below
commit 59b8e14477c5ea53330e848e40d837277feb7ee1
Author: Ronny Berndt <[email protected]>
AuthorDate: Fri Feb 20 00:20:39 2026 +0100
chore: Remove unnecessary packages (#94)
---
bin/yum-dependencies.sh | 10 ++--------
1 file changed, 2 insertions(+), 8 deletions(-)
diff --git a/bin/yum-dependencies.sh b/bin/yum-dependencies.sh
index a121edc..f5e2b16 100755
--- a/bin/yum-dependencies.sh
+++ b/bin/yum-dependencies.sh
@@ -109,15 +109,9 @@ dnf upgrade -y
dnf groupinstall -y 'Development Tools'
# Dependencies for make couch, except erlang and package building stuff.
-# help2man is for docs
-dnf install -y sudo git wget which autoconf autoconf-archive automake
curl-devel libicu-devel \
+dnf install -y sudo git wget which autoconf autoconf-archive automake
libicu-devel \
libtool ncurses-devel nspr-devel zip readline-devel unzip perl \
- createrepo xfsprogs-devel java-21-openjdk-devel rpmdevtools time
-if [[ ${VERSION_ID} -eq 9 ]]; then
- dnf --enablerepo=crb install -y help2man
-elif [[ ${VERSION_ID} -eq 8 ]]; then
- dnf install -y help2man
-fi
+ createrepo java-21-openjdk-devel rpmdevtools time
dnf install -y python3.12 python3.12-pip python3.12-wheel
alternatives --install /usr/bin/python3 python3 /usr/bin/python3.12 99