#!/bin/bash

# arm/build
# Check package dependencies, set metadata and launch
# package build script.
# by Stuart Winter <mozes@slackware.com>
#
source /usr/share/slackdev/buildkit.sh

# Information about this package:
export PKGNAM=python-future
export VERSION=${VERSION:-1.0.0}
export BUILD=${BUILD:-3}
slack_var_pkgseries
# Defaults are taken from the slackkit package:
#export PKGARCH=${PKGARCH:-arm}
#export PKGARCH=${PKGARCH:-armhf}
#export PKGARCH=${PKGARCH:-noarch}
#export PKGARCH=${PKGARCH:-fw}
#export PKGARCH=$( slack_archtype )
#export BUILD=${BUILD:-1_slack14.2}
#export BUILD=${BUILD:-1_slack15.0}
#export PKGSERIES=${PKGSERIES:-patches}
#export PKGSERIES=${PKGSERIES:-../pasture}
#export PKGSERIES=${PKGSERIES:-../extra}
#export PKGSERIES=${PKGSERIES:-l}
export SLACKPACKAGE=$PKGNAM-$VERSION-$PKGARCH-$BUILD.txz

# If building in /patches for a Stable Release, we drop the packages into /tmp/patches/
slack_findpkgstore_is_stablerelease && {
    export PKGSTORE=/tmp/
    export PKGSERIES=/patches/
    mkdir -vpm755 $PKGSTORE/$PKGSERIES ;}

# Ensure base ARM packages are installed first:
slackbasedeps

# Ensure $PKGNAM isn't already installed:
slackfailpkgdeps $PKGNAM || removepkg $PKGNAM

# You may wonder how I know which version numbers I'm dealing with.
# The answer is that at present present I do not need to worry.
# For different versions of ARMedslack I chroot into that version
# and build using only the packages built for that version.
#
# Ensure specific build dependencies (mainly libraries):

# If you wish to call architecture specific stuff (e.g. patching in specific
# ARM patches) from $PKGNAM.SlackBuild then this script is a good place
# to create & export functions.
# In the SlackBuild you then simply need to check the value of $PORTARCH
# and call the exported function.

# Launch the package build script:
BUILDLOG=$SLKPORTARCH-$( basename $SLACKPACKAGE .t?z ).build.log
( ./$PKGNAM.SlackBuild ) >& /dev/stdout | tee $BUILDLOG

# Compress the build log:
bzip2 -9fvz $BUILDLOG
