From 124f2fe6f8703914b2051d932168d53b611e0592 Mon Sep 17 00:00:00 2001 From: Chris Darroch Date: Tue, 27 Dec 2022 12:49:28 -0800 Subject: [PATCH] rpm/build_rpms.bsh: drop unused package installs Since the original introduction of the rpm/build_rpms.bsh script in commit 4a7162777913489e7c70a3da3235dcd3eeec553b of PR #332 it has installed a number of packages, including make, curl, tar, and bison. Then in commit a4c9db890e19a6b70451db99b8db622e5af8997a of PR #480 the perl-Digest-SHA package was added as an install target as well. However, we no longer need to install any of these, either because the are already installed by our CentOS and Rocky Linux Dockerfiles in our git-lfs/build-dockers project, or because they are simply unused at present, so we remove these packages now. --- rpm/build_rpms.bsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpm/build_rpms.bsh b/rpm/build_rpms.bsh index 4d2382e0..961a8fc5 100755 --- a/rpm/build_rpms.bsh +++ b/rpm/build_rpms.bsh @@ -38,7 +38,7 @@ set -vx SPEC=${CURDIR}/SPECS/git-lfs.spec -$SUDO yum install -y make curl rpm-build tar bison perl-Digest-SHA +$SUDO yum install -y rpm-build mkdir -p ${CURDIR}/{BUILD,BUILDROOT,SOURCES,RPMS,SRPMS}