2009-10-18 09:17:26 +00:00
|
|
|
#-
|
2010-05-09 17:46:28 +00:00
|
|
|
# Copyright (c) 2008-2010 Juan Romero Pardines.
|
2009-10-18 09:17:26 +00:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#-
|
|
|
|
|
|
|
|
#
|
|
|
|
# Common functions for xbps.
|
|
|
|
#
|
2010-12-18 21:38:21 +00:00
|
|
|
run_func_error()
|
|
|
|
{
|
2010-12-19 23:22:12 +00:00
|
|
|
local lver func="$1"
|
2010-12-18 21:38:21 +00:00
|
|
|
|
|
|
|
remove_pkgdestdir_sighandler ${pkgname}
|
|
|
|
|
2010-12-19 23:22:12 +00:00
|
|
|
if [ -n "${revision}" ]; then
|
|
|
|
lver="${version}_${revision}"
|
|
|
|
else
|
|
|
|
lver="${version}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
msg_error "'${pkgname}-${lver}': '$func' phase didn't complete due to errors or SIGINT!\n"
|
2010-12-18 21:38:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
remove_pkgdestdir_sighandler()
|
|
|
|
{
|
2010-12-19 23:22:12 +00:00
|
|
|
local lver subpkg _pkgname="$1"
|
2010-12-18 21:38:21 +00:00
|
|
|
|
|
|
|
setup_tmpl ${_pkgname}
|
|
|
|
[ -z "$sourcepkg" ] && return 0
|
|
|
|
|
2010-12-19 23:22:12 +00:00
|
|
|
if [ -n "${revision}" ]; then
|
|
|
|
lver="${version}_${revision}"
|
|
|
|
else
|
|
|
|
lver="${version}"
|
|
|
|
fi
|
|
|
|
|
2010-12-18 21:38:21 +00:00
|
|
|
# If there is any problem in the middle of writting the metadata,
|
|
|
|
# just remove all files from destdir of pkg.
|
|
|
|
|
|
|
|
for subpkg in ${subpackages}; do
|
|
|
|
if [ -d "$XBPS_DESTDIR/${subpkg}-${version%_*}" ]; then
|
|
|
|
rm -rf "$XBPS_DESTDIR/${subpkg}-${version%_*}"
|
|
|
|
fi
|
|
|
|
if [ -f ${wrksrc}/.xbps_do_install_${subpkg}_done ]; then
|
|
|
|
rm -f ${wrksrc}/.xbps_do_install_${subpkg}_done
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ -d "$XBPS_DESTDIR/${sourcepkg}-${version%_*}" ]; then
|
|
|
|
rm -rf "$XBPS_DESTDIR/${sourcepkg}-${version%_*}"
|
|
|
|
fi
|
2010-12-19 23:22:12 +00:00
|
|
|
msg_red "'${sourcepkg}-${lver}': removed files from DESTDIR...\n"
|
2010-12-18 21:38:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var_is_a_function()
|
|
|
|
{
|
|
|
|
local func="$1"
|
|
|
|
local func_result
|
|
|
|
|
|
|
|
func_result=$(mktemp -t xbps_src_run_func.XXXXXX)
|
|
|
|
type $func > $func_result 2>&1
|
|
|
|
if $(grep -q 'function' $func_result); then
|
|
|
|
rm -f $func_result
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
rm -f $func_result
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2009-10-18 09:17:26 +00:00
|
|
|
run_func()
|
|
|
|
{
|
2010-12-18 21:38:21 +00:00
|
|
|
local func="$1"
|
2010-12-19 23:22:12 +00:00
|
|
|
local lver rval logpipe logfile
|
2009-10-18 09:17:26 +00:00
|
|
|
|
|
|
|
[ -z "$func" ] && return 1
|
|
|
|
|
2010-12-19 23:22:12 +00:00
|
|
|
if [ -n "$revision" ]; then
|
|
|
|
lver="${version}_${revision}"
|
|
|
|
else
|
|
|
|
lver="${version}"
|
|
|
|
fi
|
|
|
|
|
2010-12-18 21:38:21 +00:00
|
|
|
var_is_a_function $func
|
|
|
|
if [ $? -eq 1 ]; then
|
|
|
|
logpipe=/tmp/logpipe.$$
|
|
|
|
if [ -d "${wrksrc}" ]; then
|
|
|
|
logfile=${wrksrc}/.xbps_${func}.log
|
|
|
|
else
|
|
|
|
logfile=$(mktemp -t xbps_${func}_${pkgname}.log.XXXXXXXX)
|
|
|
|
fi
|
|
|
|
mkfifo "$logpipe"
|
|
|
|
exec 3>&1
|
|
|
|
tee "$logfile" < "$logpipe" &
|
|
|
|
exec 1>"$logpipe" 2>"$logpipe"
|
|
|
|
set -e
|
|
|
|
trap "run_func_error $func" 0
|
2010-12-19 23:22:12 +00:00
|
|
|
msg_normal "'$pkgname-$lver': running $func phase...\n"
|
2010-12-18 21:38:21 +00:00
|
|
|
$func 2>&1
|
|
|
|
set +e
|
|
|
|
trap '' 0
|
|
|
|
exec 1>&3 2>&3 3>&-
|
|
|
|
rm -f "$logpipe"
|
|
|
|
return 0
|
2009-10-18 09:17:26 +00:00
|
|
|
fi
|
2010-05-13 22:07:47 +00:00
|
|
|
return 255 # function not found.
|
2009-10-18 09:17:26 +00:00
|
|
|
}
|
|
|
|
|
2010-05-09 17:46:28 +00:00
|
|
|
msg_red()
|
2009-10-18 09:17:26 +00:00
|
|
|
{
|
|
|
|
# error messages in bold/red
|
2011-06-21 13:40:28 +00:00
|
|
|
printf >&2 "\033[1m\033[31m"
|
2009-10-18 09:17:26 +00:00
|
|
|
if [ -n "$in_chroot" ]; then
|
2011-06-21 13:40:28 +00:00
|
|
|
printf >&2 "[chroot] => ERROR: $@"
|
2009-10-18 09:17:26 +00:00
|
|
|
else
|
2011-06-21 13:40:28 +00:00
|
|
|
printf >&2 "=> ERROR: $@"
|
2009-10-18 09:17:26 +00:00
|
|
|
fi
|
2011-06-21 13:40:28 +00:00
|
|
|
printf >&2 "\033[m"
|
2010-05-09 17:46:28 +00:00
|
|
|
}
|
2009-10-18 09:17:26 +00:00
|
|
|
|
2010-05-09 17:46:28 +00:00
|
|
|
msg_error()
|
|
|
|
{
|
|
|
|
msg_red "$@"
|
2009-10-18 09:17:26 +00:00
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2010-01-10 13:34:07 +00:00
|
|
|
msg_error_nochroot()
|
|
|
|
{
|
2011-06-21 13:40:28 +00:00
|
|
|
printf >&2 "\033[1m\033[31m>= ERROR: $@\033[m"
|
2010-01-10 13:34:07 +00:00
|
|
|
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2009-10-18 09:17:26 +00:00
|
|
|
msg_warn()
|
|
|
|
{
|
|
|
|
# warn messages in bold/yellow
|
2011-06-21 13:40:28 +00:00
|
|
|
printf >&2 "\033[1m\033[33m"
|
2009-10-18 09:17:26 +00:00
|
|
|
if [ -n "$in_chroot" ]; then
|
2011-06-21 13:40:28 +00:00
|
|
|
printf >&2 "[chroot] => WARNING: $@"
|
2009-10-18 09:17:26 +00:00
|
|
|
else
|
2011-06-21 13:40:28 +00:00
|
|
|
printf >&2 "=> WARNING: $@"
|
2009-10-18 09:17:26 +00:00
|
|
|
fi
|
2011-06-21 13:40:28 +00:00
|
|
|
printf >&2 "\033[m"
|
2009-10-18 09:17:26 +00:00
|
|
|
}
|
|
|
|
|
2010-01-10 13:34:07 +00:00
|
|
|
msg_warn_nochroot()
|
|
|
|
{
|
2011-06-21 13:40:28 +00:00
|
|
|
printf >&2 "\033[1m\033[33m=> WARNING: $@\033[m"
|
2010-01-10 13:34:07 +00:00
|
|
|
}
|
|
|
|
|
2009-10-18 09:17:26 +00:00
|
|
|
msg_normal()
|
|
|
|
{
|
|
|
|
# normal messages in bold
|
|
|
|
printf "\033[1m"
|
|
|
|
if [ -n "$in_chroot" ]; then
|
2010-12-19 23:22:12 +00:00
|
|
|
printf "[chroot] => $@"
|
2009-10-18 09:17:26 +00:00
|
|
|
else
|
2010-12-19 23:22:12 +00:00
|
|
|
printf "=> $@"
|
2009-10-18 09:17:26 +00:00
|
|
|
fi
|
|
|
|
printf "\033[m"
|
|
|
|
}
|
2010-12-19 23:22:12 +00:00
|
|
|
|
|
|
|
msg_normal_append()
|
|
|
|
{
|
|
|
|
printf "\033[1m$@\033[m"
|
|
|
|
}
|