94ed33657b
This reverts commit 8599efd9fd
.
170 lines
5.0 KiB
Bash
170 lines
5.0 KiB
Bash
# This hook generates a XBPS binary package from an installed package in destdir.
|
|
|
|
genpkg() {
|
|
local pkgdir="$1" arch="$2" desc="$3" pkgver="$4" binpkg="$5"
|
|
local _preserve _deps _shprovides _shrequires _gitrevs _provides _conflicts
|
|
local _replaces _reverts _mutable_files _conf_files f
|
|
|
|
if [ ! -d "${PKGDESTDIR}" ]; then
|
|
msg_warn "$pkgver: cannot find pkg destdir... skipping!\n"
|
|
return 0
|
|
fi
|
|
|
|
[ ! -d $pkgdir ] && mkdir -p $pkgdir
|
|
|
|
while [ -f $pkgdir/${binpkg}.lock ]; do
|
|
msg_warn "${pkgver}: binpkg is being created, waiting for 1s...\n"
|
|
sleep 1
|
|
done
|
|
|
|
# Don't overwrite existing binpkgs by default, skip them.
|
|
if [ -f $pkgdir/$binpkg -a -z "$XBPS_BUILD_FORCEMODE" ]; then
|
|
msg_normal "${pkgver}: skipping existing $binpkg pkg...\n"
|
|
return 0
|
|
fi
|
|
|
|
touch -f $pkgdir/${binpkg}.lock
|
|
|
|
if [ ! -d $pkgdir ]; then
|
|
mkdir -p $pkgdir
|
|
fi
|
|
cd $pkgdir
|
|
|
|
_preserve=${preserve:+-p}
|
|
if [ -s ${PKGDESTDIR}/rdeps ]; then
|
|
_deps="$(cat ${PKGDESTDIR}/rdeps)"
|
|
fi
|
|
if [ -s ${PKGDESTDIR}/shlib-provides ]; then
|
|
_shprovides="$(cat ${PKGDESTDIR}/shlib-provides)"
|
|
fi
|
|
if [ -s ${PKGDESTDIR}/shlib-requires ]; then
|
|
_shrequires="$(cat ${PKGDESTDIR}/shlib-requires)"
|
|
fi
|
|
if [ -s ${XBPS_STATEDIR}/gitrev ]; then
|
|
_gitrevs="$(cat ${XBPS_STATEDIR}/gitrev)"
|
|
fi
|
|
|
|
# Stripping whitespaces
|
|
local _provides="$(echo $provides)"
|
|
local _conflicts="$(echo $conflicts)"
|
|
local _replaces="$(echo $replaces)"
|
|
local _reverts="$(echo $reverts)"
|
|
local _mutable_files="$(echo $mutable_files)"
|
|
local _conf_files="$(expand_destdir "$conf_files")"
|
|
local _alternatives="$(echo $alternatives)"
|
|
local _tags="$(echo $tags)"
|
|
|
|
msg_normal "Creating $binpkg for repository $pkgdir ...\n"
|
|
|
|
#
|
|
# Create the XBPS binary package.
|
|
#
|
|
xbps-create \
|
|
${_provides:+--provides "${_provides}"} \
|
|
${_conflicts:+--conflicts "${_conflicts}"} \
|
|
${_replaces:+--replaces "${_replaces}"} \
|
|
${_reverts:+--reverts "${_reverts}"} \
|
|
${_mutable_files:+--mutable-files "${_mutable_files}"} \
|
|
${_deps:+--dependencies "${_deps}"} \
|
|
${_conf_files:+--config-files "${_conf_files}"} \
|
|
${PKG_BUILD_OPTIONS:+--build-options "${PKG_BUILD_OPTIONS}"} \
|
|
${_gitrevs:+--source-revisions "${_gitrevs}"} \
|
|
${_shprovides:+--shlib-provides "${_shprovides}"} \
|
|
${_shrequires:+--shlib-requires "${_shrequires}"} \
|
|
${_alternatives:+--alternatives "${_alternatives}"} \
|
|
${_preserve:+--preserve} \
|
|
${tags:+--tags "${tags}"} \
|
|
--architecture ${arch} \
|
|
--homepage "${homepage}" \
|
|
--license "${license}" \
|
|
--maintainer "${maintainer}" \
|
|
--desc "${desc}" \
|
|
--pkgver "${pkgver}" \
|
|
--compression ${XBPS_PKG_COMPTYPE:=xz} \
|
|
--quiet \
|
|
${PKGDESTDIR}
|
|
rval=$?
|
|
|
|
rm -f $pkgdir/${binpkg}.lock
|
|
|
|
if [ $rval -ne 0 ]; then
|
|
rm -f $pkgdir/$binpkg
|
|
msg_error "Failed to created binary package: $binpkg!\n"
|
|
fi
|
|
}
|
|
|
|
hook() {
|
|
local arch= binpkg= repo= _pkgver= _desc= _pkgn= _pkgv= _provides= \
|
|
_replaces= _reverts= f= found_dbg_subpkg=
|
|
|
|
if [ -n "$noarch" ]; then
|
|
arch=noarch
|
|
elif [ -n "$XBPS_TARGET_MACHINE" ]; then
|
|
arch=$XBPS_TARGET_MACHINE
|
|
else
|
|
arch=$XBPS_MACHINE
|
|
fi
|
|
if [ -z "$noarch" -a -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
|
|
arch=${XBPS_ARCH}
|
|
fi
|
|
|
|
binpkg=${pkgver}.${arch}.xbps
|
|
|
|
if [ -n "$repository" ]; then
|
|
repo=$XBPS_REPOSITORY/$repository
|
|
else
|
|
repo=$XBPS_REPOSITORY
|
|
fi
|
|
|
|
genpkg ${repo} ${arch} "${short_desc}" ${pkgver} ${binpkg}
|
|
|
|
for f in ${provides}; do
|
|
_pkgn="$($XBPS_UHELPER_CMD getpkgname $f)"
|
|
_pkgv="$($XBPS_UHELPER_CMD getpkgversion $f)"
|
|
_provides+=" ${_pkgn}-32bit-${_pkgv}"
|
|
done
|
|
for f in ${replaces}; do
|
|
_pkgn="$($XBPS_UHELPER_CMD getpkgdepname $f)"
|
|
_pkgv="$($XBPS_UHELPER_CMD getpkgdepversion $f)"
|
|
_replaces+=" ${_pkgn}-32bit${_pkgv}"
|
|
done
|
|
|
|
# Generate -dbg pkg.
|
|
for f in ${subpackages}; do
|
|
# If there's an explicit subpkg named ${pkgname}-dbg, don't generate
|
|
# it automagically (required by linuxX.X).
|
|
if [ "${sourcepkg}-dbg" = "$f" ]; then
|
|
found_dbg_subpkg=1
|
|
break
|
|
fi
|
|
done
|
|
if [ -z "$found_dbg_subpkg" -a -d "${XBPS_DESTDIR}/${XBPS_CROSS_TRIPLET}/${pkgname}-dbg-${version}" ]; then
|
|
source ${XBPS_COMMONDIR}/environment/setup-subpkg/subpkg.sh
|
|
repo=$XBPS_REPOSITORY/debug
|
|
_pkgver=${pkgname}-dbg-${version}_${revision}
|
|
_desc="${short_desc} (debug files)"
|
|
binpkg=${_pkgver}.${arch}.xbps
|
|
PKGDESTDIR="${XBPS_DESTDIR}/${XBPS_CROSS_TRIPLET}/${pkgname}-dbg-${version}"
|
|
genpkg ${repo} ${arch} "${_desc}" ${_pkgver} ${binpkg}
|
|
fi
|
|
# Generate 32bit pkg.
|
|
if [ "$XBPS_TARGET_MACHINE" != "i686" ]; then
|
|
return
|
|
fi
|
|
if [ -d "${XBPS_DESTDIR}/${pkgname}-32bit-${version}" ]; then
|
|
source ${XBPS_COMMONDIR}/environment/setup-subpkg/subpkg.sh
|
|
if [ -n "$repository" ]; then
|
|
repo=$XBPS_REPOSITORY/multilib/$repository
|
|
else
|
|
repo=$XBPS_REPOSITORY/multilib
|
|
fi
|
|
_pkgver=${pkgname}-32bit-${version}_${revision}
|
|
_desc="${short_desc} (32bit)"
|
|
binpkg=${_pkgver}.x86_64.xbps
|
|
PKGDESTDIR="${XBPS_DESTDIR}/${pkgname}-32bit-${version}"
|
|
[ -n "${_provides}" ] && export provides="${_provides}"
|
|
[ -n "${_replaces}" ] && export replaces="${_replaces}"
|
|
genpkg ${repo} x86_64 "${_desc}" ${_pkgver} ${binpkg}
|
|
fi
|
|
}
|