#!/bin/bash # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; version 2 of the License. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. create_set(){ msg "[$1/${name}.set]" if [[ -f $1/${name}.set ]];then msg3 "Backing up $1/${name}.set.orig" mv "$1/${name}.set" "$1/${name}.set.orig" fi local list=$(find * -maxdepth 0 -type d | sort) for item in ${list[@]};do if [[ -f $item/$2 ]];then cd $item msg2 "Adding ${item##*/}" echo ${item##*/} >> $1/${name}.set || break cd .. fi done } get_deps(){ echo $(pactree -u $1) } calculate_build_order(){ msg3 "Calculating build order ..." for pkg in $(cat $1/${name}.set);do cd $pkg mksrcinfo cd .. done } remove_set(){ if [[ -f $1/${name}.set ]]; then msg "Removing [$1/${name}.set] ..." rm $1/${name}.set fi } show_set(){ local list=$(cat $1/${name}.set) msg "Content of [$1/${name}.set] ..." for item in ${list[@]}; do msg2 "$item" done } get_timer(){ echo $(date +%s) } get_timer_ms(){ echo $(date +%s%3N) } # $1: start timer elapsed_time(){ echo $(echo $1 $(get_timer) | awk '{ printf "%0.2f",($2-$1)/60 }') } # $1: start timer elapsed_time_ms(){ echo $(echo $1 $(get_timer_ms) | awk '{ printf "%0.3f",($2-$1)/1000 }') } ## # usage : in_array( $needle, $haystack ) # return : 0 - found # 1 - not found ## in_array() { local needle=$1; shift local item for item in "$@"; do [[ $item = $needle ]] && return 0 # Found done return 1 # Not Found } # $1: sofile # $2: soarch process_sofile() { # extract the library name: libfoo.so local soname="${1%.so?(+(.+([0-9])))}".so # extract the major version: 1 soversion="${1##*\.so\.}" if [[ "$soversion" = "$1" ]] && (($IGNORE_INTERNAL)); then continue fi if ! in_array "${soname}=${soversion}-$2" ${soobjects[@]}; then # libfoo.so=1-64 msg "${soname}=${soversion}-$2" soobjects+=("${soname}=${soversion}-$2") fi } ## # usage : get_full_version( [$pkgname] ) # return : full version spec, including epoch (if necessary), pkgver, pkgrel ## get_full_version() { # set defaults if they weren't specified in buildfile pkgbase=${pkgbase:-${pkgname[0]}} epoch=${epoch:-0} if [[ -z $1 ]]; then if [[ $epoch ]] && (( ! $epoch )); then echo $pkgver-$pkgrel else echo $epoch:$pkgver-$pkgrel fi else for i in pkgver pkgrel epoch; do local indirect="${i}_override" eval $(declare -f package_$1 | sed -n "s/\(^[[:space:]]*$i=\)/${i}_override=/p") [[ -z ${!indirect} ]] && eval ${indirect}=\"${!i}\" done if (( ! $epoch_override )); then echo $pkgver_override-$pkgrel_override else echo $epoch_override:$pkgver_override-$pkgrel_override fi fi } ## # usage: find_cached_package( $pkgname, $pkgver, $arch ) # # $pkgver can be supplied with or without a pkgrel appended. # If not supplied, any pkgrel will be matched. ## find_cached_package() { local searchdirs=("$PWD" "$PKGDEST") results=() local targetname=$1 targetver=$2 targetarch=$3 local dir pkg pkgbasename pkgparts name ver rel arch size r results for dir in "${searchdirs[@]}"; do [[ -d $dir ]] || continue for pkg in "$dir"/*.pkg.tar.xz; do [[ -f $pkg ]] || continue # avoid adding duplicates of the same inode for r in "${results[@]}"; do [[ $r -ef $pkg ]] && continue 2 done # split apart package filename into parts pkgbasename=${pkg##*/} pkgbasename=${pkgbasename%.pkg.tar?(.?z)} arch=${pkgbasename##*-} pkgbasename=${pkgbasename%-"$arch"} rel=${pkgbasename##*-} pkgbasename=${pkgbasename%-"$rel"} ver=${pkgbasename##*-} name=${pkgbasename%-"$ver"} if [[ $targetname = "$name" && $targetarch = "$arch" ]] && pkgver_equal "$targetver" "$ver-$rel"; then results+=("$pkg") fi done done case ${#results[*]} in 0) return 1 ;; 1) printf '%s\n' "$results" return 0 ;; *) error 'Multiple packages found:' printf '\t%s\n' "${results[@]}" >&2 return 1 ;; esac } ## # usage: pkgver_equal( $pkgver1, $pkgver2 ) ## pkgver_equal() { local left right if [[ $1 = *-* && $2 = *-* ]]; then # if both versions have a pkgrel, then they must be an exact match [[ $1 = "$2" ]] else # otherwise, trim any pkgrel and compare the bare version. [[ ${1%%-*} = "${2%%-*}" ]] fi } check_root() { (( EUID == 0 )) && return if type -P sudo >/dev/null; then exec sudo -- "$@" else exec su root -c "$(printf ' %q' "$@")" fi } # $1: section parse_section() { local is_section=0 while read line; do [[ $line =~ ^\ {0,}# ]] && continue [[ -z "$line" ]] && continue if [ $is_section == 0 ]; then if [[ $line =~ ^\[.*?\] ]]; then line=${line:1:$((${#line}-2))} section=${line// /} if [[ $section == $1 ]]; then is_section=1 continue fi continue fi elif [[ $line =~ ^\[.*?\] && $is_section == 1 ]]; then break else pc_key=${line%%=*} pc_key=${pc_key// /} pc_value=${line##*=} pc_value=${pc_value## } eval "$pc_key='$pc_value'" fi done < "${pacman_conf}" } get_repos() { local section repos=() filter='^\ {0,}#' while read line; do [[ $line =~ "${filter}" ]] && continue [[ -z "$line" ]] && continue if [[ $line =~ ^\[.*?\] ]]; then line=${line:1:$((${#line}-2))} section=${line// /} case ${section} in "options") continue ;; *) repos+=("${section}") ;; esac fi done < "${pacman_conf}" echo ${repos[@]} } clean_pacman_conf(){ local repositories=$(get_repos) uri='file://' msg "Cleaning [$1/etc/pacman.conf] ..." for repo in ${repositories[@]}; do case ${repo} in 'options'|'core'|'extra'|'community'|'multilib') continue ;; *) msg2 "parsing [${repo}] ..." parse_section ${repo} if [[ ${pc_value} == $uri* ]]; then msg2 "Removing local repo [${repo}] ..." sed -i "/^\[${repo}/,/^Server/d" $1/etc/pacman.conf fi ;; esac done msg "Done cleaning [$1/etc/pacman.conf]" } copy_mirrorlist(){ cp -a /etc/pacman.d/mirrorlist "$1/etc/pacman.d/" } copy_keyring(){ if [[ -d /etc/pacman.d/gnupg ]] && [[ ! -d $1/etc/pacman.d/gnupg ]]; then cp -a /etc/pacman.d/gnupg "$1/etc/pacman.d/" fi } load_vars() { local var [[ -f $1 ]] || return 1 for var in {SRC,SRCPKG,PKG,LOG}DEST MAKEFLAGS PACKAGER CARCH GPGKEY; do [[ -z ${!var} ]] && eval $(grep "^${var}=" "$1") done return 0 } prepare_dir(){ [[ ! -d $1 ]] && mkdir -p $1 } version_gen(){ local y=$(date +%Y) m=$(date +%m) dist_release=${y:2}.$m } version_gen2(){ local y=$(date +%Y) m=$(date +%m) local release_versions=($y.03 $y.06 $y.09 $y.12) for ver in ${release_versions[@]};do case $m in 01) dist_release=${y:2}.12.1 ;; 02) dist_release=${y:2}.12.2 ;; 03|06|09|12) dist_release=${y:2}.${ver#.*} ;; 04) dist_release=${y:2}.03.1 ;; 05) dist_release=${y:2}.03.2 ;; 07) dist_release=${y:2}.06.1 ;; 08) dist_release=${y:2}.06.2 ;; 10) dist_release=${y:2}.09.1 ;; 11) dist_release=${y:2}.09.2 ;; esac done } version_gen3(){ local y=$(date +%Y) m=$(date +%m) local release_versions=($y.03 $y.06 $y.09 $y.12) for ver in ${release_versions[@]};do case $m in 01) dist_release=${y:2}.12-r1 ;; 02) dist_release=${y:2}.12-r2 ;; 03|06|09|12) dist_release=${y:2}.${ver#.*} ;; 04) dist_release=${y:2}.03-r1 ;; 05) dist_release=${y:2}.03-r2 ;; 07) dist_release=${y:2}.06-r1 ;; 08) dist_release=${y:2}.06-r2 ;; 10) dist_release=${y:2}.09-r1 ;; 11) dist_release=${y:2}.09-r2 ;; esac done } init_common(){ [[ -z ${branch} ]] && branch='stable' [[ -z ${arch} ]] && arch=$(uname -m) [[ -z ${cache_dir} ]] && cache_dir='/var/cache/manjaro-tools' [[ -z ${chroots_dir} ]] && chroots_dir='/var/lib/manjaro-tools' [[ -z ${sets_dir} ]] && sets_dir="${SYSCONFDIR}/sets" [[ -z ${build_mirror} ]] && build_mirror='http://mirror.netzspielplatz.de/manjaro/packages' } init_buildtree(){ tree_dir=${cache_dir}/pkgtree tree_dir_abs=${tree_dir}/packages-archlinux [[ -z ${repo_tree[@]} ]] && repo_tree=('core' 'extra' 'community' 'multilib' 'openrc') [[ -z ${host_tree} ]] && host_tree='https://github.com/manjaro' [[ -z ${host_tree_abs} ]] && host_tree_abs='https://projects.archlinux.org/git/svntogit' } init_buildpkg(){ chroots_pkg="${chroots_dir}/buildpkg" sets_dir_pkg="${sets_dir}/pkg" prepare_dir "${sets_dir_pkg}" [[ -z ${buildset_pkg} ]] && buildset_pkg='default' } init_buildiso(){ chroots_iso="${chroots_dir}/buildiso" sets_dir_iso="${sets_dir}/iso" prepare_dir "${sets_dir_iso}" [[ -z ${buildset_iso} ]] && buildset_iso='default' ##### iso settings ##### if [[ -z ${dist_release} ]];then # source /etc/lsb-release # dist_release=${DISTRIB_RELEASE} version_gen2 fi if [[ -z ${dist_codename} ]];then source /etc/lsb-release dist_codename="${DISTRIB_CODENAME}" fi [[ -z ${dist_branding} ]] && dist_branding="MJRO" [[ -z ${dist_name} ]] && dist_name="Manjaro" [[ -z ${iso_name} ]] && iso_name="manjaro" iso_label="${dist_branding}${dist_release//.}" iso_label="${iso_label//_}" # relace all _ iso_label="${iso_label//-}" # relace all - iso_label="${iso_label^^}" # all uppercase iso_label="${iso_label::8}" # limit to 8 characters [[ -z ${iso_publisher} ]] && iso_publisher='Manjaro Linux ' [[ -z ${iso_app_id} ]] && iso_app_id='Manjaro Linux Live/Rescue CD' [[ -z ${iso_compression} ]] && iso_compression='xz' [[ -z ${iso_checksum} ]] && iso_checksum='md5' [[ -z ${use_overlayfs} ]] && use_overlayfs='true' used_kernel=$(uname -r | cut -d . -f1) [[ ${used_kernel} -lt "4" ]] && use_overlayfs='false' } init_deployiso(){ [[ -z ${remote_target} ]] && remote_target="/home/frs/project" [[ -z ${remote_project} ]] && remote_project="manjaro-testing" [[ -z ${remote_user} ]] && remote_user="[SetUser]" [[ -z ${remote_url} ]] && remote_url="sourceforge.net" } load_config(){ [[ -f $1 ]] || return 1 manjaro_tools_conf="$1" [[ -r ${manjaro_tools_conf} ]] && source ${manjaro_tools_conf} init_common init_buildtree init_buildpkg init_buildiso init_deployiso return 0 } load_profile_config(){ [[ -f $1 ]] || return 1 profile_conf="$1" [[ -r ${profile_conf} ]] && source ${profile_conf} [[ -z ${initsys} ]] && initsys="systemd" [[ -z ${displaymanager} ]] && displaymanager="none" [[ -z ${autologin} ]] && autologin="true" [[ -z ${multilib} ]] && multilib="true" [[ -z ${pxe_boot} ]] && pxe_boot="true" [[ -z ${plymouth_boot} ]] && plymouth_boot="true" [[ -z ${nonfree_xorg} ]] && nonfree_xorg="true" [[ -z ${default_desktop_executable} ]] && default_desktop_executable="none" [[ -z ${default_desktop_file} ]] && default_desktop_file="none" [[ -z ${kernel} ]] && kernel="linux41" used_kernel=$(echo ${kernel} | cut -c 6) [[ ${used_kernel} -lt "4" ]] && use_overlayfs='false' [[ -z ${efi_boot_loader} ]] && efi_boot_loader="grub" [[ -z ${efi_part_size} ]] && efi_part_size="31M" [[ -z ${hostname} ]] && hostname="manjaro" [[ -z ${username} ]] && username="manjaro" [[ -z ${plymouth_theme} ]] && plymouth_theme="manjaro-elegant" [[ -z ${password} ]] && password="manjaro" if [[ -z ${addgroups} ]];then addgroups="video,audio,power,disk,storage,optical,network,lp,scanner,wheel" fi if [[ -z ${start_systemd[@]} ]];then start_systemd=('bluetooth' 'cronie' 'ModemManager' 'NetworkManager' 'org.cups.cupsd' 'tlp' 'tlp-sleep') fi if [[ -z ${disable_systemd[@]} ]];then disable_systemd=('pacman-init') fi if [[ -z ${start_openrc[@]} ]];then start_openrc=('acpid' 'bluetooth' 'cgmanager' 'consolekit' 'cronie' 'cupsd' 'dbus' 'syslog-ng' 'NetworkManager') fi if [[ -z ${disable_openrc[@]} ]];then disable_openrc=('pacman-init') fi if [[ -z ${start_systemd_live[@]} ]];then start_systemd_live=('livecd' 'mhwd-live' 'pacman-init') fi if [[ -z ${start_openrc_live[@]} ]];then start_openrc_live=('livecd' 'mhwd-live' 'pacman-init') fi [[ -z ${edition_type} ]] && edition_type="official" return 0 } clean_dir(){ if [[ -d $1 ]]; then msg "Cleaning [$1] ..." rm -r $1/* fi } # $1: sets_dir load_sets(){ local prof temp for item in $(ls $1/*.set); do temp=${item##*/} prof=${prof:-}${prof:+|}${temp%.set} done echo $prof } # load_set(){ # local profs # for item in $(cat ${sets_dir_iso}/$1.set);do # profs=${profs:-}${profs:+|}${item} # done # echo $profs # } # # eval_edition(){ # eval "case $1 in # $(load_set 'official')) # iso_edition='official' # ;; # $(load_set 'community')|$(load_set 'community-minimal')) # iso_edition='community' # ;; # $(load_set 'netrunner-official')) # iso_edition='netrunner' # ;; # *) iso_edition='community' ;; # esac" # } # $1: buildset # $2: sets_dir eval_buildset(){ eval "case $1 in $(load_sets $2)) is_buildset=true ;; *) is_buildset=false ;; esac" } load_user_info(){ OWNER=${SUDO_USER:-$USER} if [[ -n $SUDO_USER ]]; then eval "USER_HOME=~$SUDO_USER" else USER_HOME=$HOME fi USER_CONFIG="$USER_HOME/.config" } show_version(){ msg "manjaro-tools" msg2 "version: ${version}" } show_config(){ if [[ -f ${USER_CONFIG}/manjaro-tools.conf ]]; then msg2 "user_config: ${USER_CONFIG}/manjaro-tools.conf" else msg2 "manjaro_tools_conf: ${manjaro_tools_conf}" fi } # $1: chroot fix_dbus(){ # enable to have more debug info #msg "machine-id (etc): $(cat $1/etc/machine-id)" #[[ -e $1/var/lib/dbus/machine-id ]] && msg "machine-id (lib): $(cat $1/var/lib/dbus/machine-id)" #msg "running processes: " #lsof | grep $1 local PREFIX="$1" LINK PID NAME for ROOT in /proc/*/root; do LINK=$(readlink $ROOT) if [ "x$LINK" != "x" ]; then if [ "x${LINK:0:${#PREFIX}}" = "x$PREFIX" ]; then # this process is in the chroot... PID=$(basename $(dirname "$ROOT")) NAME=$(ps -p $PID -o comm=) msg3 "Killing chroot process: $NAME ($PID)" kill -9 "$PID" fi fi done } create_min_fs(){ msg "Creating install root at $1" mkdir -m 0755 -p $1/var/{cache/pacman/pkg,lib/pacman,log} $1/{dev,run,etc} mkdir -m 1777 -p $1/tmp mkdir -m 0555 -p $1/{sys,proc} } check_chroot_version(){ [[ -f $1/.manjaro-tools ]] && local chroot_version=$(cat $1/.manjaro-tools) [[ ${version} != $chroot_version ]] && clean_first=true } is_valid_bool(){ case $1 in 'true'|'false') return 0 ;; *) return 1 ;; esac } is_valid_init(){ case $1 in 'openrc'|'systemd') return 0 ;; *) return 1 ;; esac }