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.
This commit is contained in:
Chris Darroch 2022-12-27 12:49:28 -08:00
parent 3d23279bb3
commit 124f2fe6f8

@ -38,7 +38,7 @@ set -vx
SPEC=${CURDIR}/SPECS/git-lfs.spec 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} mkdir -p ${CURDIR}/{BUILD,BUILDROOT,SOURCES,RPMS,SRPMS}