Add another stage 'check' between 'build' and 'install'. It is be enabled using the variable XBPS_CHECK_PKGS=yes and disabled if unset, set to "0" or "no" in your local etc/conf. A new xbps-src option `-q` for `quick` will disable XBPS_CHECK_PKGS by overriding it to 0. If enabled, `common/xbps-src/shutils/xbps-src-docheck.sh` checks for an existing `do_check()` function in the package's template and, if it exists, calls it. A new template variable `checkdepends` may be present and list packages required to run the `do_check()` function. Example: `checkdepends="bc unittest-cpp"`.
27 lines
1.2 KiB
Bash
27 lines
1.2 KiB
Bash
# This shell snippet unsets all variables/functions that can be used in
|
|
# the package template (excluding subpackages).
|
|
|
|
## VARIABLES
|
|
unset -v pkgname version revision short_desc homepage license maintainer
|
|
unset -v only_for_archs distfiles checksum build_style nocross broken
|
|
unset -v configure_script configure_args wrksrc build_wrksrc create_wrksrc
|
|
unset -v make_cmd make_build_args make_install_args make_build_target make_install_target python_version stackage
|
|
unset -v patch_args disable_parallel_build keep_libtool_archives
|
|
unset -v reverts subpackages makedepends hostmakedepends checkdepends depends restricted
|
|
unset -v nopie build_options build_options_default bootstrap repository reverts
|
|
unset -v CFLAGS CXXFLAGS CPPFLAGS LDFLAGS LD_LIBRARY_PATH
|
|
unset -v CC CXX CPP GCC LD AR AS RANLIB NM OBJDUMP OBJCOPY STRIP READELF
|
|
|
|
# hooks/do-extract/00-distfiles
|
|
unset -v skip_extraction
|
|
|
|
# hooks/post-install/03-strip-and-debug-pkgs
|
|
unset -v nodebug
|
|
|
|
## FUNCTIONS
|
|
unset -f pre_fetch do_fetch post_fetch
|
|
unset -f pre_extract do_extract post_extract
|
|
unset -f pre_configure do_configure post_configure
|
|
unset -f pre_build do_build post_build
|
|
unset -f pre_install do_install post_install
|
|
unset -f do_clean
|