dpt-lib.sh(5) | Debian Perl packaging Tools | dpt-lib.sh(5) |
dpt-lib.sh -- dpt shell library
dpt-lib.sh is sourced by dpt(1) and contains a collection of shell functions and variables which can be used by dpt subcommands written in shell. As a side effect, it also sanity checks if the script is run from a source package directory with a .git/ sub directory.
Source the file at the beginning of the shell script as
. "$DPT__SCRIPTS/lib/dpt-lib.sh"
Echos "E: $message" to STDERR and exits 1.
Echos "W: $message" to STDERR.
Echos "I: $message" to STDERR.
Outputs $title with an empty line before and underlined, kind of like a header.
Checks if $command can be executed (running "command -v"); returns false, outputs a warning (and optionally a hint to install $package).
Checks if $package_name is installed, optionally at $minimum_package_version, and returns false with a warning otherwise.
Outputs $text in $color, unless the NO_COLOR environment variable is set.
Available colors are (in capital letters): "BLACK", "RED", "GREEN", "YELLOW", "BLUE", "MAGENTA", "CYAN", "WHITE".
Outputs $text in foreground $color on $bgcolor, unless the NO_COLOR environment variable is set.
Available colors for both foreground and background are (in capital letters): "BLACK", "RED", "GREEN", "YELLOW", "BLUE", "MAGENTA", "CYAN", "WHITE".
For using colors directly, the following variables exist;
"C_BLACK", "C_RED", "C_GREEN", "C_YELLOW", "C_BLUE", "C_MAGENTA", "C_CYAN", "C_WHITE", plus "C_RESET" to go back from coloring.
For background colors, the same colors exist as "BG_C_foo".
Can be used as
OOT=1 . "$DPT__SCRIPTS/lib/dpt-lib.sh"
and is useful for scripts which are run on build results etc.
This also means that the variables derived from debian/changelog are not available.
dpt-config(5) for discussion of "$DPT__SCRIPTS".
Copyright 2022 gregor herrmann gregoa@debian.org
Copyright 2022 Damyan Ivanov dmn@debian.org
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
2023-02-24 | pkg-perl-tools 0.75 |