2009-10-18 11:17:26 +02:00
|
|
|
#-
|
|
|
|
# Copyright (c) 2008-2009 Juan Romero Pardines.
|
|
|
|
# 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.
|
|
|
|
#-
|
|
|
|
|
|
|
|
xbps_make_binpkg()
|
|
|
|
{
|
|
|
|
local subpkg
|
|
|
|
|
2009-11-22 08:31:44 +01:00
|
|
|
[ -z "$pkgname" ] && return 1
|
|
|
|
|
2009-10-18 11:17:26 +02:00
|
|
|
for subpkg in ${subpackages}; do
|
2009-10-20 10:06:02 +02:00
|
|
|
unset revision
|
2009-11-22 08:31:44 +01:00
|
|
|
. $XBPS_SRCPKGDIR/$pkgname/$subpkg.template
|
|
|
|
pkgname=${subpkg}
|
2009-10-20 10:06:02 +02:00
|
|
|
set_tmpl_common_vars
|
|
|
|
xbps_make_binpkg_real
|
2009-10-18 11:17:26 +02:00
|
|
|
run_template ${sourcepkg}
|
|
|
|
done
|
|
|
|
|
2009-11-22 08:31:44 +01:00
|
|
|
[ -n "${subpackages}" ] && set_tmpl_common_vars
|
2009-10-18 11:17:26 +02:00
|
|
|
xbps_make_binpkg_real
|
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# This function builds a binary package from an installed xbps
|
|
|
|
# package in destdir.
|
|
|
|
#
|
|
|
|
xbps_make_binpkg_real()
|
|
|
|
{
|
2009-10-20 15:19:09 +02:00
|
|
|
local mfiles binpkg pkgdir arch use_sudo lver dirs _dirs d clevel
|
2009-10-18 11:17:26 +02:00
|
|
|
|
2009-11-22 08:31:44 +01:00
|
|
|
if [ ! -d "${DESTDIR}" ]; then
|
|
|
|
msg_warn "cannot find destdir for $pkgname... skipping!"
|
2009-10-18 11:17:26 +02:00
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
cd ${DESTDIR}
|
|
|
|
|
|
|
|
if [ -n "$noarch" ]; then
|
|
|
|
arch=noarch
|
|
|
|
else
|
|
|
|
arch=$xbps_machine
|
|
|
|
fi
|
|
|
|
if [ -n "$base_chroot" ]; then
|
|
|
|
use_sudo=no
|
|
|
|
else
|
|
|
|
use_sudo=yes
|
|
|
|
fi
|
|
|
|
if [ -n "$revision" ]; then
|
|
|
|
lver="${version}_${revision}"
|
|
|
|
else
|
|
|
|
lver="${version}"
|
|
|
|
fi
|
|
|
|
binpkg=$pkgname-$lver.$arch.xbps
|
|
|
|
pkgdir=$XBPS_PACKAGESDIR/$arch
|
2009-11-22 08:31:44 +01:00
|
|
|
#
|
|
|
|
# Don't overwrite existing binpkgs by default, skip them.
|
|
|
|
#
|
|
|
|
if [ -f $pkgdir/$binpkg ]; then
|
|
|
|
msg_normal "Skipping existing $binpkg ..."
|
|
|
|
return 0
|
|
|
|
fi
|
2009-10-18 11:17:26 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# Make sure that INSTALL is the first file on the archive,
|
|
|
|
# this is to ensure that it's run before any other file is
|
|
|
|
# unpacked.
|
|
|
|
#
|
2009-10-20 15:19:09 +02:00
|
|
|
if [ -x ./INSTALL -a -x ./REMOVE ]; then
|
|
|
|
mfiles="./INSTALL ./REMOVE"
|
|
|
|
elif [ -x ./INSTALL ]; then
|
|
|
|
mfiles="./INSTALL"
|
|
|
|
elif [ -x ./REMOVE ]; then
|
|
|
|
mfiles="./REMOVE"
|
2009-10-18 11:17:26 +02:00
|
|
|
fi
|
2009-10-20 15:19:09 +02:00
|
|
|
mfiles="$mfiles ./files.plist ./props.plist"
|
|
|
|
_dirs=$(find . -maxdepth 1 -type d)
|
|
|
|
for d in ${_dirs}; do
|
|
|
|
[ "$d" = "." ] && continue
|
|
|
|
dirs="$d $dirs"
|
|
|
|
done
|
|
|
|
|
|
|
|
[ -n "$XBPS_COMPRESS_LEVEL" ] && clevel="-$XBPS_COMPRESS_LEVEL"
|
2009-10-18 11:17:26 +02:00
|
|
|
|
2009-10-20 15:19:09 +02:00
|
|
|
[ ! -d $pkgdir ] && mkdir -p $pkgdir
|
|
|
|
run_rootcmd $use_sudo tar --exclude "var/db/xbps/metadata/*/flist" \
|
|
|
|
-cpf - ${mfiles} ${dirs} | \
|
|
|
|
$XBPS_COMPRESS_CMD ${clevel} -qf > $pkgdir/$binpkg
|
2009-10-18 11:17:26 +02:00
|
|
|
if [ $? -eq 0 ]; then
|
2009-11-22 08:31:44 +01:00
|
|
|
msg_normal "Built package: $binpkg"
|
2009-10-18 11:17:26 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
return $?
|
|
|
|
}
|