aboutsummaryrefslogtreecommitdiff
path: root/update-ipasam-rpm.sh
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-05-06 09:59:41 -0400
committerB. Stack <bgstack15@gmail.com>2022-05-06 09:59:41 -0400
commit47f59a5bad636ff35c2ffd0a94b8ad234f471652 (patch)
tree64e7c65831571ab974ec8abe25d63b06fa19e587 /update-ipasam-rpm.sh
downloadipasam-47f59a5bad636ff35c2ffd0a94b8ad234f471652.tar.gz
ipasam-47f59a5bad636ff35c2ffd0a94b8ad234f471652.tar.bz2
ipasam-47f59a5bad636ff35c2ffd0a94b8ad234f471652.zip
initial commit
Diffstat (limited to 'update-ipasam-rpm.sh')
-rwxr-xr-xupdate-ipasam-rpm.sh59
1 files changed, 59 insertions, 0 deletions
diff --git a/update-ipasam-rpm.sh b/update-ipasam-rpm.sh
new file mode 100755
index 0000000..b292d72
--- /dev/null
+++ b/update-ipasam-rpm.sh
@@ -0,0 +1,59 @@
+#!/bin/sh
+# File: update-ipasam-rpm.sh
+# Location: https://gitlab.com/bgstack15/stackrpms/
+# Author: bgstack15
+# Startdate: 2022-05-05 10:09
+# SPDX-License-Identifier: GPL-3.0
+# Title: Update ipasam rpm
+# Project: update-ipasam-rpm
+# Purpose: Build new ipasam package when ipa-server-trust-ad increments
+# History:
+# Usage:
+# on AlmaLinux 8 system (storage3) in cron.
+# Dependencies:
+# file ~/.config/copr with contents described from https://copr.fedorainfracloud.org/api/
+# plecho from bgscripts
+# Multiple variables in ~/.config/ipasam: mirror_path and spec_url
+
+test -e ~/.config/ipasam && . ~/.config/ipasam
+test -z "${old_ver_file}" && old_ver_file=~/.cache/ipa-server-trust-ad.ver
+old_ver_fd="$( dirname "${old_ver_file}" )"
+# Path to web directory that contains ipa-server-trust-ad rpm files. Have to do it this way because ipa-server-trust-ad package is in different dnf module than what this server uses so it is not visible from dnf.
+test -z "${mirror_path}" && mirror_path="http://www.example.com/mirror/almalinux/8/AppStream/x86_64/os/Packages/"
+test -z "${spec_url}" && spec_url="https://gitlab.com/bgstack15/stackrpms/-/raw/ipasam-bump/ipasam/ipasam.spec"
+test -z "${logfile}" && logfile=~/log/copr-ipasam.log
+test -z "${coprrepo}" && coprrepo=stackrpms
+logfd="$( dirname "${logfile}" )"
+
+test ! -d "${logfd}" && mkdir -p "${logfd}"
+{
+ # compare old to new version
+ # get old version
+ old_ver="$( cat "${old_ver_file}" 2>/dev/null )"
+ # get newest version available
+ page="$( curl "${mirror_path}" --silent )"
+ latest_file="$( echo "${page}" | awk -F'>' '/ipa-server-trust-ad/{print $2}' | awk -F'"' '{print $2}' | sort --version-sort | tail -n1 )"
+ # Awk $5 because package name takes first four columns when splitting with dash
+ latest_ver="$( echo "${latest_file}" | awk -F'-' 'BEGIN{OFS="-"} {print $5}' )"
+ latest_rel="$( echo "${latest_file}" | awk -F'-' '{print $6}' | awk -F'.' '{print $1}' )"
+ echo "${latest_ver}-${latest_rel}"
+ new_ver="${latest_ver}-${latest_rel}"
+ # if not the same, do stuff
+ if test "${new_ver}" != "${old_ver}" ;
+ then
+ echo "Need to do stuff, because new ${new_ver} != ${old_ver}"
+ cd ~/.cache # use cache directory
+ rm ipasam.spec ; wget "${spec_url}"
+ sed -i -r ipasam.spec \
+ -e "/%define samver\>/s/%\(.*$/${latest_ver}/;" \
+ -e "/%define samrel\>/s/%\(.*$/${latest_rel}/;"
+ rpmbuild --nodeps -bs ipasam.spec && {
+ copr build --exclude-chroot 'epel-6-i386' --exclude-chroot 'epel-6-x86_64' --exclude-chroot 'fedora-34-i386' --exclude-chroot 'fedora-35-i386' --exclude-chroot 'fedora-36-i386' --exclude-chroot 'fedora-rawhide-i386' --nowait "${coprrepo}" ~/rpmbuild/SRPMS/ipasam-${new_ver}.src.rpm
+ test ! -d "${old_ver_fd}" && mkdir p "${old_ver_fd}"
+ echo "${new_ver}" > "${old_ver_file}"
+ rm ~/.cache/ipasam.spec
+ }
+ else
+ echo "Current version already: ${new_ver}"
+ fi
+} 2>&1 | /usr/bin/plecho | tee -a "${logfile}"
bgstack15