#!/bin/sh -x # # configuration stuff for poudriere builds. most changes should go here. # # see https://fossil.etoilebsd.net/poudriere/doc/trunk/doc/pkgng_repos.wiki # # configuration control for architecture. pick one of the following. # export TARGET="amd64" export TARGET_ARCH="amd64" # #export TARGET="arm" #export TARGET_ARCH="armv6" # #export TARGET="arm" #export TARGET_ARCH="armv7" # #export TARGET="arm64" #export TARGET_ARCH="aarch64" #export KEEP_RESTRICTED="yes" # #export TARGET="mips" #export TARGET_ARCH="mips" # #export TARGET="mips" #export TARGET_ARCH="mips64" # #export TARGET="powerpc" #export TARGET_ARCH="powerpc64" # #export TARGET="sparc64" #export TARGET_ARCH="sparc64" # # other configuration controls. for most, pick either "true" or "false". # export DELETE_PORTS="false" #export DELETE_PORTS="true" export UPDATE_PORTS="false" #export UPDATE_PORTS="true" # # XXX MCL TODO DELETE_SRC ought to trigger UPDATE_SRC build if true export DELETE_SRC="false" export UPDATE_SRC="false" # export TRYBROKEN="false" #export TRYBROKEN="true" # #export USEBLACKLIST="false" export USEBLACKLIST="true" # # PORTS_BRANCH should be in the form of either 'head' or e.g. '2016Q4'. default is 'head'. # XXX MCL TODO fix up for git export PORTS_BRANCH="2021Q1" # # uncomment to run src head. otherwise, run the latest from whatever branch we are on. # XXX MCL TODO this is too constricting. export USE_SRC_HEAD="true" # # where the scripts and subsets files live export BINDIR=/home/linimon/doit.poudriere/bin export SUBSETS=/home/linimon/doit.poudriere/subsets export PATCHDIR=/home/linimon/patches # # for ZFS-based systems only #export WORKDIR=/tank/poudriere # # sometimes needed for debugging. #export KEEP_WRKDIRS="yes" # # sometimes needed to force rebuild for a single port. You probably # don't want to have this for a large build. #export BULKFLAGS="-C" #