Add print statements to tell when certain processes begin and end. Added

priority to hydros repo to install newer devel tools
This commit is contained in:
2025-12-01 16:05:37 -05:00
parent 7041c5f4ad
commit fe5f762047

View File

@@ -1,11 +1,19 @@
#!/usr/bin/env bash #!/usr/bin/env bash
echo "--- Start adding repos and priorities ---"
dnf -y config-manager addrepo --from-repofile=https://git.hydrosaber.com/api/packages/hydros/rpm/f43.repo dnf -y config-manager addrepo --from-repofile=https://git.hydrosaber.com/api/packages/hydros/rpm/f43.repo
dnf -y config-manager --save --setopt="f43.priority=1"
dnf -y config-manager --save --setopt="fedora.priority=10"
echo "--- Setup workspace and packages ---"
dnf -y install rpmdevtools dnf -y install rpmdevtools
rpmdev-setuptree rpmdev-setuptree
dnf -y builddep $1 dnf -y builddep $1
echo "--- Download sources ---"
rpmdev-spectool -g -C ~/rpmbuild/SOURCES $1 rpmdev-spectool -g -C ~/rpmbuild/SOURCES $1
echo "--- Build RPM packages ---"
rpmbuild --nodebuginfo --bb $1 rpmbuild --nodebuginfo --bb $1
echo "--- Done! ---"