2014-03-22 11:31:42 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# vim: set ts=4 sw=4 et:
|
|
|
|
|
|
|
|
usage() {
|
2014-04-28 21:03:35 +00:00
|
|
|
cat << _EOF
|
2014-03-22 11:31:42 +00:00
|
|
|
$(basename $0): [options] <target> [arguments]
|
|
|
|
|
|
|
|
Targets: (only one may be specified)
|
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
binary-bootstrap [arch]
|
|
|
|
Install bootstrap packages from host repositories into <masterdir>.
|
|
|
|
If the optional 'arch' argument is set, it will install bootstrap packages
|
|
|
|
from this architecture, and its required xbps utilities. The <masterdir>
|
|
|
|
will be initialized for chroot operations.
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
bootstrap
|
|
|
|
Build and install from source the bootstrap packages into <masterdir>.
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
bootstrap-update
|
|
|
|
Updates bootstrap packages with latest versions available from registered
|
|
|
|
repositories in the XBPS configuration file.
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
build <pkgname>
|
|
|
|
Build package source (fetch + extract + configure + build).
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
chroot
|
|
|
|
Enter to the chroot in <masterdir>.
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-05-23 15:14:00 +00:00
|
|
|
clean [pkgname]
|
|
|
|
Removes auto dependencies, cleans up <masterdir>/builddir and <masterdir>/destdir.
|
|
|
|
If <pkgname> argument is specified only the builddir for that package will be
|
|
|
|
cleaned up.
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
configure <pkgname>
|
|
|
|
Configure a package (fetch + extract + configure).
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
extract <pkgname>
|
|
|
|
Extract package source distribution file(s) into the build directory.
|
|
|
|
By default set to <masterdir>/builddir.
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
fetch <pkgname>
|
|
|
|
Download package source distribution file(s).
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
install <pkgname>
|
|
|
|
Install target package into <destdir> but not building the binary package
|
|
|
|
and not removing build directory for inspection purposes.
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-05-20 08:02:09 +00:00
|
|
|
list
|
|
|
|
Lists installed packages in <masterdir>.
|
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
pkg <pkgname>
|
|
|
|
Build binary package for <pkgname> and all required dependencies.
|
2014-03-23 10:27:09 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
remove <pkgname>
|
|
|
|
Remove target package from <destdir>. If <pkgname>-<version> is not matched
|
|
|
|
from build template nothing is removed.
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
remove-autodeps
|
|
|
|
Removes all package dependencies that were installed automatically.
|
2014-03-23 10:27:09 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
show <pkgname>
|
|
|
|
Show information for the specified package.
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
show-build-deps <pkgname>
|
|
|
|
Show required build dependencies for <pkgname>.
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
show-deps <pkgname>
|
|
|
|
Show required run-time dependencies for <pkgname>. Package must be
|
|
|
|
installed into destdir.
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
show-files <pkgname>
|
|
|
|
Show files installed by <pkgname>. Package must be installed into destdir.
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
show-options <pkgname>
|
|
|
|
Show available build options by <pkgname>.
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
show-shlib-provides <pkgname>
|
|
|
|
Show list of provided shlibs for <pkgname>. Package must be installed into destdir.
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
show-shlib-requires <pkgname>
|
|
|
|
Show list of required shlibs for <pkgname>. Package must be installed into destdir.
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
show-var <var>
|
|
|
|
Prints the value of <var> if it's defined in xbps-src.
|
2014-04-09 07:52:48 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
show-repo-updates
|
|
|
|
Prints the list of outdated packages in XBPS repositories.
|
2014-04-09 10:11:50 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
show-sys-updates
|
|
|
|
Prints the list of oudated packages in your system.
|
2014-04-09 10:11:50 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
update-bulk
|
|
|
|
Rebuilds all packages in the system repositories that are outdated.
|
2014-04-09 14:42:07 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
update-sys
|
|
|
|
Rebuilds all packages in your system that are outdated and updates them.
|
2014-04-09 14:42:07 +00:00
|
|
|
|
2014-10-31 19:43:30 +00:00
|
|
|
update-check <pkgname>
|
|
|
|
Check upstream site of <pkgname> for new releases.
|
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
zap
|
|
|
|
Removes a masterdir but preserving ccache, distcc and host directories.
|
2014-03-22 11:31:42 +00:00
|
|
|
|
|
|
|
Options:
|
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
-a <profile>
|
|
|
|
Cross compile packages for this profile. Supported values:
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
armv6hf-musl - for ARMv6 EABI (LE Hard Float) Musl/Linux
|
|
|
|
armv6hf - for ARMv6 EABI (LE Hard Float) GNU/Linux
|
|
|
|
armv7hf-musl - for ARMv7 EABI (LE Hard Float) Musl/Linux
|
|
|
|
armv7hf - for ARMv7 EABI (LE Hard Float) GNU/Linux
|
|
|
|
i686-musl - for i686 Musl/Linux
|
|
|
|
i686 - for i686 GNU/Linux
|
|
|
|
mips - for MIPS o32 (BE Soft Float) GNU/Linux
|
|
|
|
mipsel - for MIPS o32 (LE Soft Float) GNU/Linux
|
|
|
|
x86_64-musl - for x86_64 Musl/Linux
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
-C Do not remove build directory, automatic dependencies and
|
|
|
|
package destdir after successful install.
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
-f Force building and registering binary packages into the local repository,
|
|
|
|
even if same version is already registered.
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-07-01 08:33:54 +00:00
|
|
|
-G Enable XBPS_USE_GIT_REVS (see etc/defaults.conf for more information).
|
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
-g Enable building -dbg packages with debugging symbols.
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
-H <hostdir>
|
|
|
|
Absolute path to a directory to be bind mounted at <masterdir>/host.
|
|
|
|
The host directory stores binary packages, sources and package dependencies
|
|
|
|
downloaded from remote repositories.
|
2014-10-11 09:15:02 +00:00
|
|
|
If unset defaults to void-packages/hostdir.
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
-h Usage output.
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
-I Ignore required dependencies, useful for extracting/fetching sources.
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
-j Number of parallel build jobs to use when building packages.
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
-L Disable ASCII colors.
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
-m <masterdir>
|
|
|
|
Absolute path to a directory to be used as masterdir.
|
|
|
|
The masterdir is the main directory to build/store/compile packages.
|
2014-10-11 09:15:02 +00:00
|
|
|
If unset defaults to void-packages/masterdir.
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
-N Disable use of remote repositories to resolve dependencies.
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-04-28 21:03:35 +00:00
|
|
|
-o <opt,~opt2,...>
|
2014-06-30 09:32:07 +00:00
|
|
|
Enable or disable (prefixed with ~) package build options. Note this overrides
|
|
|
|
options set via XBPS_PKG_OPTIONS from 'etc/conf'. This effectively has the same
|
|
|
|
effect than setting 'XBPS_PKG_OPTIONS_<pkgname>' in 'etc/conf'.
|
2014-04-28 21:03:35 +00:00
|
|
|
Supported options can be shown with the 'show-options' target.
|
|
|
|
|
|
|
|
-r <repo>
|
|
|
|
Use an alternative local repository to store generated binary packages.
|
|
|
|
If unset defaults to <hostdir>/binpkgs. If set the binpkgs will
|
|
|
|
be stored into <hostdir>/binpkgs/<repo>.
|
|
|
|
This alternative repository will also be used to resolve dependencies
|
|
|
|
with highest priority order than others.
|
2014-03-22 11:31:42 +00:00
|
|
|
_EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
check_reqhost_utils() {
|
2014-04-28 21:03:35 +00:00
|
|
|
local broken
|
|
|
|
|
|
|
|
[ -n "$IN_CHROOT" ] && return 0
|
|
|
|
|
|
|
|
for f in ${REQHOST_UTILS}; do
|
|
|
|
if ! command -v ${f} &>/dev/null; then
|
|
|
|
echo "${f} is missing in your system, can't continue!"
|
|
|
|
broken=1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
[ -n "$broken" ] && exit 1
|
|
|
|
[ -z "$1" ] && return 0
|
|
|
|
|
|
|
|
for f in ${REQHOST_UTILS_BOOTSTRAP}; do
|
|
|
|
if ! command -v ${f} &>/dev/null; then
|
|
|
|
echo "${f} is missing in your system, can't continue!"
|
|
|
|
broken=1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
[ -n "$broken" ] && exit 1
|
2014-03-22 11:31:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
check_config_vars() {
|
|
|
|
if [ -s "$XBPS_CONFIG_FILE" ]; then
|
|
|
|
. $XBPS_CONFIG_FILE &>/dev/null
|
|
|
|
fi
|
|
|
|
if [ -z "$XBPS_MASTERDIR" ]; then
|
|
|
|
export XBPS_MASTERDIR="${XBPS_DISTDIR}/masterdir"
|
2014-04-22 14:01:05 +00:00
|
|
|
fi
|
|
|
|
if [ -z "$XBPS_HOSTDIR" ]; then
|
|
|
|
export XBPS_HOSTDIR="${XBPS_DISTDIR}/hostdir"
|
|
|
|
[ ! -d $XBPS_HOSTDIR ] && mkdir -p $XBPS_HOSTDIR
|
2014-03-22 11:31:42 +00:00
|
|
|
fi
|
2014-04-28 21:03:35 +00:00
|
|
|
if [ -d "$XBPS_MASTERDIR" -a ! -w "$XBPS_MASTERDIR" ]; then
|
|
|
|
echo "ERROR: not enough perms for masterdir $XBPS_MASTERDIR."
|
|
|
|
exit 1
|
|
|
|
fi
|
2014-03-22 11:31:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
check_build_requirements() {
|
|
|
|
local found
|
|
|
|
|
|
|
|
for f in $XBPS_SHUTILSDIR/*.sh; do
|
2014-04-28 21:03:35 +00:00
|
|
|
[ -r $f ] && . $f
|
2014-03-22 11:31:42 +00:00
|
|
|
done
|
|
|
|
case "$XBPS_TARGET" in
|
|
|
|
*bootstrap*) found=1;;
|
|
|
|
*) ;;
|
|
|
|
esac
|
|
|
|
if [ -z "$found" ]; then
|
2014-04-28 21:03:35 +00:00
|
|
|
xbps-uhelper cmpver "$XBPS_VERSION" "$XBPS_VERSION_REQ"
|
|
|
|
if [ $? -eq 255 ]; then
|
|
|
|
echo "ERROR: requires xbps>=${XBPS_VERSION_REQ}"
|
|
|
|
echo "Bootstrap packages must be updated with 'xbps-src bootstrap-update'"
|
|
|
|
exit 1
|
|
|
|
fi
|
2014-03-22 11:31:42 +00:00
|
|
|
fi
|
|
|
|
# Set XBPS_REPOSITORY to our current branch.
|
|
|
|
if [ -z "$XBPS_ALT_REPOSITORY" ]; then
|
2014-04-28 21:03:35 +00:00
|
|
|
pushd "$PWD" &>/dev/null
|
|
|
|
cd $XBPS_DISTDIR
|
2014-07-27 14:29:18 +00:00
|
|
|
_gitbranch="$(chroot-git symbolic-ref --short HEAD 2>/dev/null)"
|
2014-04-28 21:03:35 +00:00
|
|
|
if [ -n "${_gitbranch}" -a "${_gitbranch}" != "master" ]; then
|
2014-03-25 08:55:40 +00:00
|
|
|
export XBPS_ALT_REPOSITORY="${_gitbranch}"
|
2014-04-28 21:03:35 +00:00
|
|
|
export XBPS_REPOSITORY="${XBPS_REPOSITORY}/${_gitbranch}"
|
|
|
|
msg_normal "Using \`$XBPS_REPOSITORY\' as local repository.\n"
|
|
|
|
fi
|
|
|
|
popd &>/dev/null
|
2014-03-22 11:31:42 +00:00
|
|
|
else
|
|
|
|
export XBPS_REPOSITORY="${XBPS_REPOSITORY}/${XBPS_ALT_REPOSITORY}"
|
|
|
|
msg_normal "Using \`$XBPS_REPOSITORY\' as local repository.\n"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2014-08-26 08:50:48 +00:00
|
|
|
install_bbootstrap() {
|
2014-03-22 11:31:42 +00:00
|
|
|
[ -n "$CHROOT_READY" ] && return
|
2014-04-28 21:03:35 +00:00
|
|
|
# binary bootstrap
|
|
|
|
msg_normal "Installing bootstrap from binary package repositories...\n"
|
|
|
|
# XBPS_TARGET_PKG == arch
|
|
|
|
if [ -n "$XBPS_TARGET_PKG" ]; then
|
|
|
|
_bootstrap_arch="env XBPS_TARGET_ARCH=$XBPS_TARGET_PKG"
|
2014-03-22 11:31:42 +00:00
|
|
|
if [ "${XBPS_TARGET_PKG}" != "${XBPS_TARGET_PKG#*-}" ]; then
|
|
|
|
_subarch="-${XBPS_TARGET_PKG#*-}"
|
|
|
|
fi
|
2014-04-28 21:03:35 +00:00
|
|
|
fi
|
2014-07-01 16:43:48 +00:00
|
|
|
mkdir -p $XBPS_MASTERDIR/var/db/xbps/keys
|
2014-08-26 08:33:15 +00:00
|
|
|
cd $XBPS_MASTERDIR
|
2014-07-01 16:43:48 +00:00
|
|
|
cp -f $XBPS_COMMONDIR/repo-keys/*.plist $XBPS_MASTERDIR/var/db/xbps/keys
|
2014-05-20 07:56:20 +00:00
|
|
|
${_bootstrap_arch} xbps-install -S --repository=${XBPS_REPOSITORY} \
|
|
|
|
${XBPS_INSTALL_ARGS} -c ${XBPS_HOSTDIR}/repocache \
|
|
|
|
-r $XBPS_MASTERDIR -y base-chroot${_subarch}
|
2014-04-28 21:03:35 +00:00
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
msg_error "Failed to install bootstrap packages!\n"
|
|
|
|
fi
|
|
|
|
# Reconfigure base-directories.
|
|
|
|
XBPS_ARCH=$XBPS_TARGET_PKG xbps-reconfigure -r $XBPS_MASTERDIR -f base-directories &>/dev/null
|
|
|
|
msg_normal "Installed bootstrap successfully!\n"
|
|
|
|
chroot_prepare $XBPS_TARGET_PKG || msg_error "Failed to initialize chroot!\n"
|
2014-03-22 11:31:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
masterdir_zap() {
|
2014-04-28 21:03:35 +00:00
|
|
|
for f in bin boot builddir destdir dev etc home lib lib32 lib64 mnt \
|
2014-10-11 09:02:57 +00:00
|
|
|
opt proc root run sbin sys tmp usr var host media xbps \
|
|
|
|
xbps-packages void-packages .xbps_chroot_init; do
|
2014-04-28 21:03:35 +00:00
|
|
|
if [ -d "$XBPS_MASTERDIR/$f" ]; then
|
|
|
|
echo "Removing directory $XBPS_MASTERDIR/$f ..."
|
|
|
|
rm -rf $XBPS_MASTERDIR/$f
|
|
|
|
elif [ -h "$XBPS_MASTERDIR/$f" ]; then
|
|
|
|
echo "Removing link $XBPS_MASTERDIR/$f ..."
|
|
|
|
rm -f $XBPS_MASTERDIR/$f
|
|
|
|
elif [ -f "$XBPS_MASTERDIR/$f" ]; then
|
|
|
|
echo "Removing file $XBPS_MASTERDIR/$f ..."
|
|
|
|
rm -f $XBPS_MASTERDIR/$f
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
echo "$XBPS_MASTERDIR masterdir cleaned up."
|
2014-03-22 11:31:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
exit_func() {
|
2014-05-15 18:45:14 +00:00
|
|
|
wait
|
2014-03-22 11:31:42 +00:00
|
|
|
if [ -n "$sourcepkg" ]; then
|
2014-04-28 21:03:35 +00:00
|
|
|
remove_pkg $XBPS_CROSS_BUILD
|
2014-03-22 11:31:42 +00:00
|
|
|
fi
|
2014-04-28 21:03:35 +00:00
|
|
|
if [ -z "$IN_CHROOT" ]; then
|
|
|
|
msg_red "xbps-src: a failure has ocurred! exiting...\n"
|
|
|
|
fi
|
|
|
|
exit 2
|
2014-03-22 11:31:42 +00:00
|
|
|
}
|
|
|
|
|
2014-03-23 08:04:05 +00:00
|
|
|
basename_cwd() {
|
|
|
|
echo $(basename $(pwd))
|
|
|
|
}
|
|
|
|
|
|
|
|
read_pkg() {
|
|
|
|
if [ -z "${XBPS_TARGET_PKG}" ]; then
|
|
|
|
[ ! -r ./template ] && msg_error "missing build template in $(pwd).\n"
|
|
|
|
XBPS_TARGET_PKG=$(basename_cwd)
|
|
|
|
fi
|
|
|
|
setup_pkg $XBPS_TARGET_PKG $XBPS_CROSS_BUILD
|
|
|
|
}
|
|
|
|
|
2014-09-30 04:05:27 +00:00
|
|
|
readonly XBPS_VERSION_REQ="0.41"
|
2014-03-23 08:08:41 +00:00
|
|
|
readonly XBPS_VERSION=$(xbps-uhelper -V|awk '{print $2}')
|
2014-04-01 09:29:21 +00:00
|
|
|
readonly XBPS_SRC_VERSION="113"
|
2014-11-10 10:15:53 +00:00
|
|
|
export XBPS_MACHINE=$(uname -m)
|
2014-03-23 08:08:41 +00:00
|
|
|
|
2014-03-22 11:31:42 +00:00
|
|
|
#
|
|
|
|
# main()
|
|
|
|
#
|
2014-04-22 14:01:05 +00:00
|
|
|
XBPS_OPTIONS=
|
|
|
|
|
2014-10-14 17:16:29 +00:00
|
|
|
while getopts "a:CfgGhH:Ij:Lm:No:r:V" opt; do
|
2014-04-28 21:03:35 +00:00
|
|
|
case $opt in
|
|
|
|
a) readonly XBPS_CROSS_BUILD="$OPTARG"; XBPS_OPTIONS+="-a $OPTARG ";;
|
|
|
|
C) readonly XBPS_KEEP_ALL=1; XBPS_OPTIONS+="-C ";;
|
|
|
|
f) readonly XBPS_BUILD_FORCEMODE=1; XBPS_OPTIONS+="-f ";;
|
2014-07-01 08:33:54 +00:00
|
|
|
G) readonly XBPS_USE_GIT_REVS=1; XBPS_OPTIONS+="-G ";;
|
2014-04-28 21:03:35 +00:00
|
|
|
g) readonly XBPS_DEBUG_PKGS=1; XBPS_OPTIONS+="-g ";;
|
2014-07-01 09:04:15 +00:00
|
|
|
H) readonly XBPS_HOSTDIR="$(readlink -m $OPTARG 2>/dev/null)"; XBPS_OPTIONS+="-H $XBPS_HOSTDIR ";;
|
2014-04-28 21:03:35 +00:00
|
|
|
h) usage && exit 0;;
|
|
|
|
I) readonly XBPS_SKIP_DEPS=1; XBPS_OPTIONS+="-I ";;
|
|
|
|
j) readonly XBPS_MAKEJOBS="$OPTARG"; XBPS_OPTIONS+="-j $OPTARG ";;
|
|
|
|
L) export NOCOLORS=1; XBPS_OPTIONS+="-L ";;
|
|
|
|
m) readonly XBPS_MASTERDIR=$(readlink -m $OPTARG 2>/dev/null); XBPS_OPTIONS+="-m $XBPS_MASTERDIR ";;
|
|
|
|
N) readonly XBPS_SKIP_REMOTEREPOS=1; XBPS_OPTIONS+="-N ";;
|
2014-06-30 09:32:07 +00:00
|
|
|
o) readonly XBPS_PKG_OPTIONS="$OPTARG"; XBPS_OPTIONS+="-o $OPTARG ";;
|
2014-04-28 21:03:35 +00:00
|
|
|
r) readonly XBPS_ALT_REPOSITORY="$OPTARG"; XBPS_OPTIONS+="-r $OPTARG ";;
|
|
|
|
V) echo $XBPS_SRC_VERSION && exit 0;;
|
|
|
|
--) shift; break;;
|
|
|
|
esac
|
2014-03-22 11:31:42 +00:00
|
|
|
done
|
|
|
|
shift $(($OPTIND - 1))
|
|
|
|
|
|
|
|
[ $# -eq 0 -o $# -gt 3 ] && usage && exit 1
|
|
|
|
|
|
|
|
umask 022
|
|
|
|
|
|
|
|
#
|
|
|
|
# Check for required utilities in host system.
|
|
|
|
#
|
|
|
|
# Required utilities in host system for the bootstrap target.
|
|
|
|
readonly REQHOST_UTILS_BOOTSTRAP="awk bash bison sed gcc g++ msgfmt makeinfo \
|
2014-09-25 06:34:37 +00:00
|
|
|
perl tar xz gzip bzip2 patch flex"
|
2014-03-22 11:31:42 +00:00
|
|
|
|
|
|
|
# Required utilities in host system for chroot ops.
|
|
|
|
readonly REQHOST_UTILS="xbps-install xbps-query xbps-rindex xbps-uhelper \
|
2014-04-28 21:03:35 +00:00
|
|
|
xbps-reconfigure xbps-remove xbps-create git"
|
2014-03-22 11:31:42 +00:00
|
|
|
|
|
|
|
check_reqhost_utils
|
|
|
|
|
|
|
|
if [ -n "$IN_CHROOT" ]; then
|
|
|
|
readonly XBPS_CONFIG_FILE=/etc/xbps/xbps-src.conf
|
2014-10-11 09:15:02 +00:00
|
|
|
readonly XBPS_DISTDIR=/void-packages
|
2014-03-22 11:31:42 +00:00
|
|
|
else
|
2014-03-24 10:43:16 +00:00
|
|
|
_distdir="$(readlink -f $(dirname $0))"
|
2014-03-22 11:31:42 +00:00
|
|
|
if [ "${_distdir}" = "." ]; then
|
|
|
|
readonly XBPS_DISTDIR="$(pwd -P)"
|
|
|
|
else
|
|
|
|
readonly XBPS_DISTDIR="${_distdir}"
|
|
|
|
fi
|
2014-04-01 09:29:21 +00:00
|
|
|
# Read defaults and then the local configuration file
|
|
|
|
if [ -f $XBPS_DISTDIR/etc/defaults.conf ]; then
|
|
|
|
. $XBPS_DISTDIR/etc/defaults.conf
|
|
|
|
fi
|
2014-07-01 08:40:33 +00:00
|
|
|
if [ -s $XBPS_DISTDIR/etc/conf ]; then
|
|
|
|
# Read user configuration first...
|
|
|
|
readonly XBPS_CONFIG_FILE=$XBPS_DISTDIR/etc/conf
|
|
|
|
elif [ -s $HOME/.xbps-src.conf ]; then
|
|
|
|
# ... fallback to ~/.xbps-src.conf otherwise.
|
|
|
|
readonly XBPS_CONFIG_FILE=$HOME/.xbps-src.conf
|
|
|
|
. $XBPS_CONFIG_FILE
|
2014-04-23 14:37:02 +00:00
|
|
|
fi
|
2014-03-22 11:31:42 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
#
|
|
|
|
# Check configuration vars before anyting else, and set defaults vars.
|
|
|
|
#
|
|
|
|
check_config_vars
|
|
|
|
|
2014-04-28 09:33:13 +00:00
|
|
|
if [ -n "$XBPS_HOSTDIR" ]; then
|
2014-04-28 21:03:35 +00:00
|
|
|
export XBPS_REPOSITORY=$XBPS_HOSTDIR/binpkgs
|
|
|
|
readonly XBPS_SRCDISTDIR=$XBPS_HOSTDIR/sources
|
2014-04-28 09:33:13 +00:00
|
|
|
else
|
2014-04-28 21:03:35 +00:00
|
|
|
export XBPS_REPOSITORY=$XBPS_MASTERDIR/host/binpkgs
|
|
|
|
readonly XBPS_SRCDISTDIR=$XBPS_MASTERDIR/host/sources
|
2014-04-28 09:33:13 +00:00
|
|
|
fi
|
2014-03-22 11:31:42 +00:00
|
|
|
if [ -n "$IN_CHROOT" ]; then
|
2014-04-28 21:03:35 +00:00
|
|
|
readonly XBPS_UHELPER_CMD="xbps-uhelper"
|
|
|
|
readonly XBPS_INSTALL_CMD="xbps-install"
|
|
|
|
readonly XBPS_QUERY_CMD="xbps-query"
|
|
|
|
readonly XBPS_RINDEX_CMD="xbps-rindex"
|
|
|
|
readonly XBPS_RECONFIGURE_CMD="xbps-reconfigure"
|
|
|
|
readonly XBPS_REMOVE_CMD="xbps-remove"
|
2014-10-11 09:15:02 +00:00
|
|
|
readonly XBPS_SRCPKGDIR=/void-packages/srcpkgs
|
|
|
|
readonly XBPS_COMMONDIR=/void-packages/common
|
2014-04-28 21:03:35 +00:00
|
|
|
readonly XBPS_DESTDIR=/destdir
|
|
|
|
readonly XBPS_BUILDDIR=/builddir
|
|
|
|
readonly XBPS_SHUTILSDIR=$XBPS_COMMONDIR/xbps-src/shutils
|
|
|
|
readonly XBPS_TRIGGERSDIR=$XBPS_SRCPKGDIR/xbps-triggers/files
|
|
|
|
readonly XBPS_CROSSPFDIR=$XBPS_COMMONDIR/cross-profiles
|
|
|
|
readonly XBPS_BUILDSTYLEDIR=$XBPS_COMMONDIR/build_style
|
|
|
|
readonly XBPS_LIBEXECDIR=$XBPS_COMMONDIR/xbps-src/libexec
|
2014-03-22 11:31:42 +00:00
|
|
|
else
|
2014-04-28 21:03:35 +00:00
|
|
|
readonly XBPS_UHELPER_CMD="xbps-uhelper -r $XBPS_MASTERDIR"
|
|
|
|
readonly XBPS_INSTALL_CMD="xbps-install -C _empty.conf_ --repository=$XBPS_REPOSITORY -r $XBPS_MASTERDIR"
|
|
|
|
readonly XBPS_QUERY_CMD="xbps-query -C _empty.conf_ --repository=$XBPS_REPOSITORY -r $XBPS_MASTERDIR"
|
|
|
|
readonly XBPS_RINDEX_CMD="xbps-rindex"
|
|
|
|
readonly XBPS_RECONFIGURE_CMD="xbps-reconfigure -r $XBPS_MASTERDIR"
|
|
|
|
readonly XBPS_REMOVE_CMD="xbps-remove -r $XBPS_MASTERDIR"
|
|
|
|
readonly XBPS_SRCPKGDIR=$XBPS_DISTDIR/srcpkgs
|
|
|
|
readonly XBPS_COMMONDIR=$XBPS_DISTDIR/common
|
|
|
|
readonly XBPS_SHUTILSDIR=$XBPS_COMMONDIR/xbps-src/shutils
|
|
|
|
readonly XBPS_DESTDIR=$XBPS_MASTERDIR/destdir
|
|
|
|
readonly XBPS_BUILDDIR=$XBPS_MASTERDIR/builddir
|
|
|
|
readonly XBPS_TRIGGERSDIR=$XBPS_SRCPKGDIR/xbps-triggers/files
|
|
|
|
readonly XBPS_CROSSPFDIR=$XBPS_COMMONDIR/cross-profiles
|
|
|
|
readonly XBPS_BUILDSTYLEDIR=$XBPS_COMMONDIR/build_style
|
|
|
|
readonly XBPS_LIBEXECDIR=$XBPS_COMMONDIR/xbps-src/libexec
|
2014-03-22 11:31:42 +00:00
|
|
|
fi
|
|
|
|
# XBPS_FETCH_CMD can be overriden
|
|
|
|
export XBPS_FETCH_CMD="xbps-uhelper fetch"
|
|
|
|
readonly XBPS_DIGEST_CMD="xbps-uhelper digest"
|
|
|
|
readonly XBPS_CMPVER_CMD="xbps-uhelper cmpver"
|
|
|
|
|
|
|
|
XBPS_TARGET="$1"
|
2014-09-27 04:53:27 +00:00
|
|
|
XBPS_TARGET_PKG="${2##*/}"
|
2014-03-22 11:31:42 +00:00
|
|
|
|
|
|
|
# Check if stdout is a tty; if false disable colors.
|
|
|
|
test -t 1 || export NOCOLORS=1
|
|
|
|
|
|
|
|
if [ "$(id -u)" -eq 0 ]; then
|
|
|
|
echo "ERROR: root cannot use xbps-src, switch to a regular user."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -f $XBPS_MASTERDIR/.xbps_chroot_init ]; then
|
2014-04-28 21:03:35 +00:00
|
|
|
export CHROOT_READY=1
|
2014-03-22 11:31:42 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -s $XBPS_MASTERDIR/.xbps_chroot_init ]; then
|
|
|
|
export XBPS_ARCH=$(cat $XBPS_MASTERDIR/.xbps_chroot_init)
|
2014-04-22 14:01:05 +00:00
|
|
|
if [ "$XBPS_MACHINE" = "x86_64" -a "$XBPS_ARCH" = "i686" -a -z "$IN_CHROOT" ]; then
|
2014-04-24 12:43:44 +00:00
|
|
|
# reconfigure pkgs via linux32
|
|
|
|
linux32 xbps-reconfigure -r ${XBPS_MASTERDIR} -a &>/dev/null
|
2014-04-22 14:01:05 +00:00
|
|
|
# reexec itself via linux32
|
|
|
|
exec linux32 $0 ${XBPS_OPTIONS} $@
|
|
|
|
fi
|
2014-03-22 11:31:42 +00:00
|
|
|
fi
|
2014-11-22 06:00:50 +00:00
|
|
|
if [ -n "$XBPS_ARCH" ]; then
|
|
|
|
export XBPS_MACHINE=$XBPS_ARCH
|
|
|
|
fi
|
2014-03-22 11:31:42 +00:00
|
|
|
|
|
|
|
export XBPS_SHUTILSDIR XBPS_CROSSPFDIR XBPS_TRIGGERSDIR \
|
2014-08-14 10:28:27 +00:00
|
|
|
XBPS_SRCPKGDIR XBPS_COMMONDIR XBPS_BUILDDIR XBPS_REPO_DELTAS \
|
2014-04-28 21:03:35 +00:00
|
|
|
XBPS_REPOSITORY XBPS_ALT_REPOSITORY XBPS_SRCDISTDIR XBPS_DIGEST_CMD \
|
|
|
|
XBPS_UHELPER_CMD XBPS_INSTALL_CMD XBPS_QUERY_CMD \
|
|
|
|
XBPS_RINDEX_CMD XBPS_RECONFIGURE_CMD XBPS_REMOVE_CMD \
|
|
|
|
XBPS_CMPVER_CMD XBPS_FETCH_CMD XBPS_VERSION XBPS_APIVER \
|
|
|
|
XBPS_BUILDSTYLEDIR XBPS_CFLAGS XBPS_CXXFLAGS XBPS_LDFLAGS \
|
2014-03-22 11:31:42 +00:00
|
|
|
XBPS_MAKEJOBS XBPS_BUILD_FORCEMODE XBPS_USE_GIT_REVS XBPS_DEBUG_PKGS \
|
|
|
|
XBPS_CCACHE XBPS_DISTCC XBPS_DISTCC_HOSTS XBPS_SKIP_DEPS \
|
2014-06-30 09:32:07 +00:00
|
|
|
XBPS_SKIP_REMOTEREPOS XBPS_CROSS_BUILD XBPS_PKG_OPTIONS \
|
2014-03-22 11:31:42 +00:00
|
|
|
XBPS_CONFIG_FILE XBPS_KEEP_ALL XBPS_HOSTDIR XBPS_MASTERDIR \
|
2014-11-12 08:52:17 +00:00
|
|
|
XBPS_SRC_VERSION XBPS_DESTDIR XBPS_MACHINE
|
2014-03-22 11:31:42 +00:00
|
|
|
|
|
|
|
for i in REPOSITORY DESTDIR BUILDDIR SRCDISTDIR; do
|
|
|
|
eval val="\$XBPS_$i"
|
|
|
|
if [ ! -d "$val" ]; then
|
|
|
|
mkdir -p $val
|
|
|
|
fi
|
|
|
|
unset val
|
|
|
|
done
|
|
|
|
|
|
|
|
#
|
|
|
|
# Sanitize PATH.
|
|
|
|
#
|
|
|
|
if [ -z "$IN_CHROOT" ]; then
|
2014-04-28 21:03:35 +00:00
|
|
|
# In non chroot case always prefer host tools.
|
|
|
|
MYPATH="$XBPS_MASTERDIR/usr/bin:$XBPS_MASTERDIR/usr/sbin"
|
|
|
|
export PATH="$PATH:$MYPATH"
|
2014-03-22 11:31:42 +00:00
|
|
|
else
|
2014-04-28 21:03:35 +00:00
|
|
|
MYPATH="/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin"
|
|
|
|
export PATH="$MYPATH"
|
|
|
|
if [ -n "$XBPS_CCACHE" ]; then
|
|
|
|
CCACHEPATH="/usr/lib/ccache/bin"
|
2014-10-26 09:52:11 +00:00
|
|
|
export CCACHE_DIR="$XBPS_HOSTDIR/ccache-${XBPS_CROSS_BUILD:-${XBPS_MACHINE}}"
|
2014-04-28 21:03:35 +00:00
|
|
|
export PATH="$CCACHEPATH:$PATH"
|
2014-10-26 09:22:30 +00:00
|
|
|
mkdir -p $CCACHE_DIR
|
2014-04-28 21:03:35 +00:00
|
|
|
fi
|
|
|
|
if [ -n "$XBPS_DISTCC" ]; then
|
|
|
|
DISTCCPATH="/usr/lib/distcc/bin"
|
2014-10-26 09:52:11 +00:00
|
|
|
export DISTCC_DIR="$XBPS_HOSTDIR/distcc-${XBPS_CROSS_BUILD:-${XBPS_MACHINE}}"
|
2014-04-28 21:03:35 +00:00
|
|
|
export DISTCC_HOSTS="$XBPS_DISTCC_HOSTS"
|
|
|
|
export PATH="$DISTCCPATH:$PATH"
|
2014-10-26 09:22:30 +00:00
|
|
|
mkdir -p $DISTCC_DIR
|
2014-04-28 21:03:35 +00:00
|
|
|
fi
|
2014-03-22 11:31:42 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
check_build_requirements
|
|
|
|
|
2014-09-24 18:03:20 +00:00
|
|
|
trap 'exit_func' INT TERM
|
2014-03-22 11:31:42 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Main switch.
|
|
|
|
#
|
|
|
|
case "$XBPS_TARGET" in
|
2014-04-28 21:03:35 +00:00
|
|
|
binary-bootstrap)
|
2014-08-26 08:50:48 +00:00
|
|
|
install_bbootstrap
|
2014-04-28 21:03:35 +00:00
|
|
|
;;
|
|
|
|
bootstrap)
|
|
|
|
# bootstrap from sources
|
|
|
|
# check for required host utils
|
|
|
|
check_reqhost_utils bootstrap
|
|
|
|
[ ! -d $XBPS_SRCPKGDIR/base-chroot ] && \
|
|
|
|
msg_error "Cannot find $XBPS_SRCPKGDIR/base-chroot directory!\n"
|
|
|
|
XBPS_TARGET_PKG="base-chroot"
|
2014-10-18 10:40:23 +00:00
|
|
|
bootstrap_vpkg=${XBPS_MASTERDIR}/etc/xbps/virtualpkg.d/bootstrap.conf
|
2014-05-19 10:42:43 +00:00
|
|
|
mkdir -p ${XBPS_MASTERDIR}/etc/xbps/virtualpkg.d
|
|
|
|
if [ ! -s ${bootstrap_vpkg} ]; then
|
|
|
|
# Fool xbps to resolve dependencies.
|
|
|
|
echo 'virtualpkg=libgcc-4.4.0_1:base-files' >> ${bootstrap_vpkg}
|
|
|
|
echo 'virtualpkg=libstdc++-4.4.0_1:base-files' >> ${bootstrap_vpkg}
|
|
|
|
fi
|
|
|
|
setup_pkg $XBPS_TARGET_PKG
|
|
|
|
install_pkg $XBPS_TARGET
|
2014-08-26 08:33:15 +00:00
|
|
|
[ -d $XBPS_MASTERDIR ] && rm -rf $XBPS_MASTERDIR
|
|
|
|
unset XBPS_TARGET_PKG
|
2014-08-26 08:50:48 +00:00
|
|
|
install_bbootstrap
|
2014-04-28 21:03:35 +00:00
|
|
|
;;
|
|
|
|
bootstrap-update)
|
|
|
|
if [ -n "$CHROOT_READY" -a -z "$IN_CHROOT" ]; then
|
|
|
|
chroot_handler ${XBPS_TARGET} dummy
|
|
|
|
else
|
2014-05-15 14:43:35 +00:00
|
|
|
pkgver=xbps-src
|
|
|
|
remove_pkg_autodeps
|
2014-09-24 18:32:21 +00:00
|
|
|
${XBPS_INSTALL_CMD} -yu
|
2014-04-28 21:03:35 +00:00
|
|
|
fi
|
|
|
|
;;
|
|
|
|
chroot)
|
|
|
|
chroot_handler chroot dummy
|
|
|
|
;;
|
|
|
|
clean)
|
2014-05-23 15:14:00 +00:00
|
|
|
if [ -z "$XBPS_TARGET_PKG" ]; then
|
2014-11-17 16:32:30 +00:00
|
|
|
if [ -n "$CHROOT_READY" -a -z "$IN_CHROOT" ]; then
|
|
|
|
chroot_handler remove-autodeps
|
|
|
|
else
|
|
|
|
pkgver=xbps-src
|
|
|
|
remove_pkg_autodeps
|
|
|
|
fi
|
2014-05-23 15:14:00 +00:00
|
|
|
msg_normal "xbps-src: cleaning up masterdir...\n"
|
|
|
|
rm -rf $XBPS_MASTERDIR/builddir/* $XBPS_MASTERDIR/destdir/*
|
2014-04-28 21:03:35 +00:00
|
|
|
else
|
2014-05-23 15:14:00 +00:00
|
|
|
read_pkg
|
|
|
|
if [ -n "$CHROOT_READY" -a -z "$IN_CHROOT" ]; then
|
|
|
|
chroot_handler $XBPS_TARGET $XBPS_TARGET_PKG || exit $?
|
|
|
|
else
|
|
|
|
remove_pkg_wrksrc $wrksrc
|
|
|
|
if declare -f do_clean >/dev/null; then
|
|
|
|
run_func do_clean
|
|
|
|
fi
|
2014-04-28 21:03:35 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
remove-autodeps)
|
|
|
|
if [ -n "$CHROOT_READY" -a -z "$IN_CHROOT" ]; then
|
|
|
|
chroot_handler remove-autodeps
|
|
|
|
else
|
|
|
|
pkgver=xbps-src
|
|
|
|
remove_pkg_autodeps
|
|
|
|
fi
|
|
|
|
;;
|
2014-11-17 16:32:30 +00:00
|
|
|
fetch|extract|build|configure|install|pkg)
|
2014-04-28 21:03:35 +00:00
|
|
|
BEGIN_INSTALL=1
|
|
|
|
read_pkg
|
|
|
|
if [ -n "$CHROOT_READY" -a -z "$IN_CHROOT" ]; then
|
|
|
|
chroot_handler $XBPS_TARGET $XBPS_TARGET_PKG
|
|
|
|
else
|
|
|
|
install_pkg $XBPS_TARGET $XBPS_CROSS_BUILD
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
remove|remove-destdir)
|
|
|
|
read_pkg
|
|
|
|
remove_pkg $XBPS_CROSS_BUILD
|
|
|
|
;;
|
|
|
|
list)
|
|
|
|
$XBPS_QUERY_CMD -l
|
|
|
|
;;
|
|
|
|
show)
|
|
|
|
read_pkg
|
|
|
|
show_pkg
|
|
|
|
;;
|
|
|
|
show-files)
|
|
|
|
read_pkg
|
|
|
|
show_pkg_files
|
|
|
|
;;
|
|
|
|
show-deps)
|
|
|
|
read_pkg
|
|
|
|
show_pkg_deps
|
|
|
|
;;
|
|
|
|
show-build-deps)
|
|
|
|
read_pkg
|
|
|
|
show_pkg_build_deps
|
|
|
|
;;
|
|
|
|
show-options)
|
|
|
|
read_pkg
|
2014-06-30 09:32:07 +00:00
|
|
|
show_pkg_build_options
|
2014-04-28 21:03:35 +00:00
|
|
|
;;
|
|
|
|
show-shlib-provides)
|
|
|
|
read_pkg
|
|
|
|
show_pkg_shlib_provides
|
|
|
|
;;
|
|
|
|
show-shlib-requires)
|
|
|
|
read_pkg
|
|
|
|
show_pkg_shlib_requires
|
|
|
|
;;
|
|
|
|
show-var)
|
|
|
|
eval value="\${$XBPS_TARGET_PKG}"
|
|
|
|
echo $value
|
|
|
|
;;
|
|
|
|
show-repo-updates)
|
|
|
|
bulk_build
|
|
|
|
;;
|
|
|
|
show-sys-updates)
|
|
|
|
bulk_build -i
|
|
|
|
;;
|
|
|
|
update-bulk)
|
|
|
|
bulk_update
|
|
|
|
;;
|
|
|
|
update-sys)
|
|
|
|
bulk_update -i
|
|
|
|
;;
|
2014-10-31 19:43:30 +00:00
|
|
|
update-check)
|
|
|
|
read_pkg
|
|
|
|
update_check
|
|
|
|
;;
|
2014-04-28 21:03:35 +00:00
|
|
|
zap)
|
|
|
|
masterdir_zap
|
|
|
|
;;
|
|
|
|
*)
|
2014-11-18 05:12:52 +00:00
|
|
|
msg_red "xbps-src: invalid target $XBPS_TARGET.\n"
|
2014-04-28 21:03:35 +00:00
|
|
|
usage && exit 1
|
|
|
|
;;
|
2014-03-22 11:31:42 +00:00
|
|
|
esac
|
|
|
|
|
|
|
|
# Agur
|
|
|
|
exit $?
|