You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
archzfs/build.sh

374 lines
13 KiB

#!/bin/bash
#
# This script builds the archzfs packages in a clean clean chroot environment.
#
# clean-chroot-manager (https://github.com/graysky2/clean-chroot-manager) is required!
#
args=("$@")
script_name=$(basename $0)
script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
if ! source ${script_dir}/lib.sh; then
echo "!! ERROR !! -- Could not load lib.sh!"
exit 155
fi
source_safe "${script_dir}/conf.sh"
usage() {
echo "${script_name} - A build script for archzfs"
echo
echo "Usage: ${script_name} [options] mode command [command ...]"
echo
echo "Options:"
echo
echo " -h: Show help information."
echo " -n: Dryrun; Output commands, but don't do anything."
echo " -d: Show debug info."
echo " -R: Perform git reset in packages directory for Mode."
echo " -u: Perform an update in the clean chroot."
echo " -U: Update the file sums in conf.sh."
echo " -C: Remove all files that are not package sources."
echo
echo "Modes:"
echo
for ml in "${mode_list[@]}"; do
mn=$(echo ${ml} | cut -f2 -d:)
md=$(echo ${ml} | cut -f3 -d:)
echo -e " ${mn} ${md}"
done
echo
echo "Commands:"
echo
echo " make Build all packages."
echo " test Build test packages."
echo " update Update all git PKGBUILDs using conf.sh variables."
echo " update-test Update all git PKGBUILDs using the testing conf.sh variables."
echo " sign GPG detach sign all compiled packages (default)."
echo " sources Build the package sources. This is done by default when using the make command."
echo
echo "Examples:"
echo
echo " ${script_name} std -C :: Remove all compiled packages for the standard kernels"
echo " ${script_name} std make -u :: Update the chroot and build all of the packages"
echo " ${script_name} lts update :: Update PKGBUILDS only"
echo " ${script_name} std update make -u :: Update PKGBUILDs, update the chroot, and make all of the packages"
echo " ${script_name} lts update-test test -u :: Update PKGBUILDs (use testing versions), update the chroot, and make all of the packages"
exit 155
}
build_sources() {
for pkg in "${pkg_list[@]}"; do
msg "Building source for ${pkg}";
run_cmd "cd \"${script_dir}/packages/${kernel_name}/${pkg}\" && mksrcinfo && mkaurball -f"
done
}
sign_packages() {
files=$(find ${script_dir} -iname "*.pkg.tar.xz")
debug "Found files: ${files}"
msg "Signing the packages with GPG"
for f in ${files}; do
if [[ ! -f "${f}.sig" ]]; then
msg2 "Signing ${f}"
run_cmd_no_output "gpg --batch --yes --detach-sign --use-agent -u ${gpg_sign_key} \"${f}\""
fi
done
}
git_check_repo() {
for pkg in "${pkg_list[@]}"; do
local reponame="spl"
local url="${spl_git_url}"
if [[ ${pkg} =~ ^zfs ]]; then
url="${zfs_git_url}"
reponame="zfs"
fi
local repopath="${script_dir}/packages/${kernel_name}/${pkg}/${reponame}"
debug "GIT URL: ${url}"
debug "GIT REPO: ${repopath}"
if [[ ! -d "${repopath}" ]]; then
msg2 "Cloning repo '${repopath}'"
run_cmd_no_dry_run "git clone --mirror '${url}' '${repopath}'"
if [[ ${run_cmd_return} -ne 0 ]]; then
error "Failure while cloning ${url} repo"
exit 1
fi
else
msg2 "Updating repo '${repopath}'"
run_cmd_no_dry_run "cd ${repopath} && git fetch --all -p"
if [[ ${run_cmd_return} -ne 0 ]]; then
error "Failure while fetching ${url} repo"
exit 1
fi
fi
done
}
git_calc_pkgver() {
for repo in "spl" "zfs"; do
msg2 "Cloning working copy for ${repo}"
local sha=${spl_git_commit}
local kernvers=${kernel_version_full_pkgver}
if [[ ${repo} =~ ^zfs ]]; then
sha=${zfs_git_commit}
fi
pkg=$(eval "echo \${${repo}_pkgname}")
debug "Using package '${pkg}'"
# Checkout the git repo to a work directory
local cmd="/usr/bin/bash -s << EOF 2>/dev/null\\n"
cmd+="[[ -d temp ]] && rm -r temp\\n"
cmd+="mkdir temp && cd temp\\n"
cmd+="git clone ../packages/${kernel_name}/${pkg}/${repo} && cd ${repo}\\n"
cmd+="git checkout -b azb ${sha}\\n"
cmd+="EOF"
run_cmd_no_output_no_dry_run "${cmd}"
# Get the version number past the last tag
msg2 "Calculating PKGVER"
cmd="cd temp/${repo} && "
cmd+="echo \$(git describe --long | sed -r 's/^${repo}-//;s/([^-]*-g)/r\1/;s/-/_/g')_${kernvers}"
run_cmd_no_output_no_dry_run "${cmd}"
if [[ ${repo} =~ ^spl ]]; then
spl_pkgver=${run_cmd_output}
debug "spl_pkgver: ${spl_pkgver}"
elif [[ ${repo} =~ ^zfs ]]; then
zfs_pkgver=${run_cmd_output}
debug "zfs_pkgver: ${zfs_pkgver}"
fi
# Cleanup
msg2 "Removing working directory"
run_cmd_no_output_no_dry_run "rm -vrf temp"
done
}
generate_package_files() {
debug "kernel_version_full: ${kernel_version_full}"
debug "kernel_mod_path: ${kernel_mod_path}"
debug "archzfs_package_group: ${archzfs_package_group}"
debug "header: ${header}"
debug "spl_pkgver: ${spl_pkgver}"
debug "spl_pkgrel: ${spl_pkgrel}"
debug "zfs_pkgver: ${zfs_pkgver}"
debug "zfs_pkgrel: ${zfs_pkgrel}"
debug "spl_makedepends: ${spl_makedepends}"
debug "zfs_makedepends: ${zfs_makedepends}"
debug "zol_version: ${zol_version}"
debug "spl_utils_pkgname: ${spl_utils_pkgname}"
debug "spl_pkgname: ${spl_pkgname}"
debug "zfs_utils_pkgname: ${zfs_utils_pkgname}"
debug "zfs_pkgname: ${zfs_pkgname}"
debug "spl_utils_pkgbuild_path: ${spl_utils_pkgbuild_path}"
debug "spl_pkgbuild_path: ${spl_pkgbuild_path}"
debug "zfs_utils_pkgbuild_path: ${zfs_utils_pkgbuild_path}"
debug "zfs_pkgbuild_path: ${zfs_pkgbuild_path}"
debug "zfs_workdir: ${zfs_workdir}"
debug "zfs_src_target: ${zfs_src_target}"
debug "zfs_src_hash: ${zfs_src_hash}"
debug "spl_workdir: ${spl_workdir}"
debug "spl_src_target: ${spl_src_target}"
debug "spl_src_hash: ${spl_src_hash}"
debug "zfs_bash_completion_hash: ${zfs_bash_completion_hash}"
debug "zfs_initcpio_install_hash: ${zfs_initcpio_install_hash}"
debug "zfs_initcpio_hook_hash: ${zfs_initcpio_hook_hash}"
# Make sure our target directory exists
run_cmd_no_output "[[ -d "${spl_utils_pkgbuild_path}" ]] || mkdir -p ${spl_utils_pkgbuild_path}"
run_cmd_no_output "[[ -d "${spl_pkgbuild_path}" ]] || mkdir -p ${spl_pkgbuild_path}"
run_cmd_no_output "[[ -d "${zfs_utils_pkgbuild_path}" ]] || mkdir -p ${zfs_utils_pkgbuild_path}"
run_cmd_no_output "[[ -d "${zfs_pkgbuild_path}" ]] || mkdir -p ${zfs_pkgbuild_path}"
# Finally, generate the update packages ...
msg2 "Creating spl-utils PKGBUILD"
run_cmd_no_output "source ${script_dir}/src/spl-utils/PKGBUILD.sh"
msg2 "Creating spl PKGBUILD"
run_cmd_no_output "source ${script_dir}/src/spl/PKGBUILD.sh"
msg2 "Creating spl.install"
run_cmd_no_output "source ${script_dir}/src/spl/spl.install.sh"
msg2 "Creating zfs-utils PKGBUILD"
run_cmd_no_output "source ${script_dir}/src/zfs-utils/PKGBUILD.sh"
msg2 "Copying zfs-utils.bash-completion"
run_cmd_no_output "cp ${script_dir}/src/zfs-utils/zfs-utils.bash-completion-r1 ${zfs_utils_pkgbuild_path}/zfs-utils.bash-completion-r1"
msg2 "Copying zfs-utils.initcpio.hook"
run_cmd_no_output "cp ${script_dir}/src/zfs-utils/zfs-utils.initcpio.hook ${zfs_utils_pkgbuild_path}/zfs-utils.initcpio.hook"
msg2 "Copying zfs-utils.initcpio.install"
run_cmd_no_output "cp ${script_dir}/src/zfs-utils/zfs-utils.initcpio.install ${zfs_utils_pkgbuild_path}/zfs-utils.initcpio.install"
msg2 "Creating zfs PKGBUILD"
run_cmd_no_output "source ${script_dir}/src/zfs/PKGBUILD.sh"
msg2 "Creating zfs.install"
run_cmd_no_output "source ${script_dir}/src/zfs/zfs.install.sh"
msg "Update diffs ..."
run_cmd "cd ${script_dir}/${spl_utils_pkgbuild_path} && git --no-pager diff"
run_cmd "cd ${script_dir}/${spl_pkgbuild_path} && git --no-pager diff"
run_cmd "cd ${script_dir}/${zfs_utils_pkgbuild_path} && git --no-pager diff"
run_cmd "cd ${script_dir}/${zfs_pkgbuild_path} && git --no-pager diff"
}
build_packages() {
for pkg in "${pkg_list[@]}"; do
msg "Building ${pkg}..."
9 years ago
run_cmd "cd \"${script_dir}/packages/${kernel_name}/${pkg}\" && ccm64 s && mksrcinfo"
if [[ ${run_cmd_return} -ne 0 ]]; then
error "A problem occurred building the package"
exit 1
fi
msg2 "${pkg} package files:"
run_cmd "tree ${chroot_path}/build/${pkg}/pkg"
done
run_cmd "find . -iname \"*.log\" -print -exec rm {} \\;"
11 years ago
}
generate_mode_list
if [[ ${EUID} -ne 0 ]]; then
error "This script must be run as root."
exit 1;
fi
if [[ $# -lt 1 ]]; then
usage
fi
for (( a = 0; a < $#; a++ )); do
if [[ ${args[$a]} == "make" ]]; then
commands+=("make")
elif [[ ${args[$a]} == "test" ]]; then
commands+=("test")
elif [[ ${args[$a]} == "update" ]]; then
commands+=("update")
elif [[ ${args[$a]} == "update-test" ]]; then
commands+=("update-test")
elif [[ ${args[$a]} == "sources" ]]; then
commands+=("sources")
elif [[ ${args[$a]} == "sign" ]]; then
commands+=("sign")
elif [[ ${args[$a]} == "-C" ]]; then
commands+=("cleanup")
elif [[ ${args[$a]} == "-u" ]]; then
commands+=("update_chroot")
elif [[ ${args[$a]} == "-U" ]]; then
commands+=("update_sums")
elif [[ ${args[$a]} == "-R" ]]; then
commands+=("reset_pkgs")
elif [[ ${args[$a]} == "-n" ]]; then
dry_run=1
elif [[ ${args[$a]} == "-d" ]]; then
debug_flag=1
elif [[ ${args[$a]} == "-h" ]]; then
usage
else
check_mode "${args[$a]}"
debug "have mode '${mode}'"
fi
done
if [[ ${#commands[@]} -eq 0 || ${mode} == "" ]]; then
echo
error "A build mode and command must be selected!"
usage
fi
msg "$(date) :: ${script_name} started..."
get_kernel_update_funcs
debug_print_default_vars
export script_dir mode kernel_name
source_safe "src/kernels/${kernel_name}.sh"
if have_command "cleanup"; then
msg "Cleaning up work files..."
fincs='-iname "*.log" -o -iname "*.pkg.tar.xz*" -o -iname "*.src.tar.gz"'
run_cmd "find ${script_dir}/packages/${kernel_name}/ \( ${fincs} \) -print -exec rm -rf {} \\;"
run_cmd "rm -rf */src"
run_cmd "rm -rf */*.tar.gz"
exit
fi
if have_command "reset_pkgs"; then
msg "Performing git reset for packages/${kernel_name}/*"
msg "${update_funcs[@]}"
for func in "${update_funcs[@]}"; do
debug "Evaluating '${func}'"
"${func}"
msg "${pkg_list[@]}"
for pkg in "${pkg_list[@]}"; do
run_cmd "cd '${script_dir}/packages/${kernel_name}/${pkg}' && git reset --hard HEAD"
done
done
fi
11 years ago
if have_command "update_sums"; then
# Only the files in the zfs-utils package will be updated
run_cmd_show_and_capture_output "sha256sum ${script_dir}/src/zfs-utils/zfs-utils.bash-completion-r1"
azsha1=$(echo ${run_cmd_output} | awk '{ print $1 }')
run_cmd "sed -e 's/^zfs_bash_completion_hash.*/zfs_bash_completion_hash=\"${azsha1}\"/g' -i ${script_dir}/conf.sh"
run_cmd_show_and_capture_output "sha256sum ${script_dir}/src/zfs-utils/zfs-utils.initcpio.hook"
azsha2=$(echo ${run_cmd_output} | awk '{ print $1 }')
run_cmd "sed -e 's/^zfs_initcpio_hook_hash.*/zfs_initcpio_hook_hash=\"${azsha2}\"/g' -i ${script_dir}/conf.sh"
run_cmd_show_and_capture_output "sha256sum ${script_dir}/src/zfs-utils/zfs-utils.initcpio.install"
azsha3=$(echo ${run_cmd_output} | awk '{ print $1 }')
run_cmd "sed -e 's/^zfs_initcpio_install_hash.*/zfs_initcpio_install_hash=\"${azsha3}\"/g' -i ${script_dir}/conf.sh"
fi
if have_command "update_chroot"; then
msg "Updating the x86_64 clean chroot..."
9 years ago
run_cmd "ccm64 u"
fi
for func in "${update_funcs[@]}"; do
debug "Evaluating '${func}'"
"${func}"
if have_command "update"; then
msg "Updating PKGBUILDs for kernel '${kernel_name}'"
generate_package_files
fi
if have_command "make"; then
build_packages
build_sources
fi
if have_command "sources"; then
build_sources
fi
done
if have_command "sign"; then
sign_packages
fi