f274d7728c
Yet another variable to permit skipping of runtime dependency checks for a list of files, specifying their absolute path in the $DESTDIR, allows us to handle known bad detections due to e.g. binaries or shared libraries not meant to be run or loaded in the host. This will be used to fix the android-studio template to skip a number of files which would create a bogus dependency on libc.so. Signed-off-by: Jürgen Buchmüller <pullmoll@t-online.de>
43 lines
1.1 KiB
Bash
43 lines
1.1 KiB
Bash
# This shell snippet unsets all variables/functions that can be used in
|
|
# a package template and can also be used in subpkgs.
|
|
|
|
## VARIABLES
|
|
unset -v noarch conf_files mutable_files preserve triggers alternatives
|
|
unset -v depends run_depends replaces provides conflicts tags
|
|
|
|
# hooks/post-install/03-strip-and-debug-pkgs
|
|
unset -v nostrip nostrip_files
|
|
|
|
# hooks/pre-pkg/04-generate-runtime-deps
|
|
unset -v noverifyrdeps skiprdeps allow_unknown_shlibs shlib_requires
|
|
|
|
# hooks/pre-pkg/06-prepare-32bit
|
|
unset -v lib32depends lib32disabled lib32files lib32mode lib32symlinks
|
|
|
|
# hooks/pre-pkg/06-shlib-provides
|
|
unset -v noshlibprovides shlib_provides
|
|
|
|
# xbps-triggers: system-accounts
|
|
unset -v system_accounts system_groups
|
|
|
|
# xbps-triggers: font-dirs
|
|
unset -v font_dirs
|
|
|
|
# xbps-triggers: xml-catalog
|
|
unset -v xml_entries sgml_entries xml_catalogs sgml_catalogs
|
|
|
|
# xbps-triggers: pycompile
|
|
unset -v pycompile_version pycompile_dirs pycompile_module
|
|
|
|
# xbps-triggers: dkms
|
|
unset -v dkms_modules
|
|
|
|
# xbps-triggers: kernel-hooks
|
|
unset -v kernel_hooks_version
|
|
|
|
# xbps-triggers: mkdirs
|
|
unset -v make_dirs
|
|
|
|
# xbps-triggers: binfmts
|
|
unset -v binfmts
|