cache-apt-pkgs-action/lib.sh

41 lines
1.3 KiB
Bash
Raw Normal View History

#!/bin/bash
# Sort these packages by name and split on commas.
function normalize_package_list {
2022-07-14 21:44:35 -07:00
local stripped=$(echo "${1}" | sed 's/,//g')
# Remove extraneous spaces at the middle, beginning, and end.
local trimmed="$(echo "${stripped}" | sed 's/\s\+/ /g; s/^\s\+//g; s/\s\+$//g')"
local sorted="$(echo ${trimmed} | tr ' ' '\n' | sort | tr '\n' ' ')"
echo "${sorted}"
}
# Gets a package list of dependencies as newline delimited pairs
# <name>:<version>\n<name:version>...
2022-07-19 20:02:22 -07:00
function get_dep_packages {
echo $(apt-fast install --dry-run --yes "${1}" | \
2022-07-19 20:02:22 -07:00
grep "^Inst" | sort | awk '{print $2 $3}' | \
tr '(' ':' | grep -v "${1}:")
}
# Split fully qualified package into name and version
function get_package_name_ver {
2022-07-19 20:02:22 -07:00
IFS=\: read name ver <<< "${1}"
# If version not found in the fully qualified package value.
if test -z "${ver}"; then
ver="$(grep "Version:" <<< "$(apt-cache show ${name})" | awk '{print $2}')"
fi
echo "${name}" "${ver}"
}
2022-06-30 07:13:58 -07:00
function log { echo "$(date +%H:%M:%S)" "${@}"; }
function log_empty_line { echo ""; }
# Writes the manifest to a specified file.
function write_manifest {
log "Writing ${1} packages manifest to ${3}..."
# 0:-1 to remove trailing comma, delimit by newline and sort
echo "${2:0:-1}" | tr ',' '\n' | sort > ${3}
log "done"
2022-07-19 21:08:41 -07:00
}