1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
#
# Theme file for pkgtool.sh
#
#
# {{{ ANSI attributes reference
#
# Attribute Name Note
# 0 Reset or normal All attributes off
# 1 Bold or increased intensity As with faint, the color change is a PC (SCO / CGA) invention.[30][better source needed]
# 2 Faint, decreased intensity, or dim May be implemented as a light font weight like bold.[31]
# 4 Underline Style extensions exist for Kitty, VTE, mintty and iTerm2.[32][33]
# 7 Reverse video or invert Swap foreground and background colors; inconsistent emulation[34]
#
# FG BG Colour name
# 30 40 Black
# 31 41 Red
# 32 42 Green
# 33 43 Yellow
# 34 44 Blue
# 35 45 Magenta
# 36 46 Cyan
# 37 47 White
# 90 100 Bright Black (Gray)
# 91 101 Bright Red
# 92 102 Bright Green
# 93 103 Bright Yellow
# 94 104 Bright Blue
# 95 105 Bright Magenta
# 96 106 Bright Cyan
# 97 107 Bright White
# }}}
#
#
# Tag sets
#
LOG_TAGS_all="fileop,install,fatal,info,verbose,warning,package_vars,info_build_group,info_pkg_direct_deps,info_pkg_no_deps,info_pkg_disabled,info_pkg_deps_full,info_pkg_deps_full_disabled,mirror_pkg_archive_mirroring,mirror_pkg_archive_mirroring_parent,mirror_pkg_git_mirroring,mirror_pkg_git_mirroring_parent";
LOG_TAGS_normal="fatal,info,warning,package_vars,info_build_group,info_pkg_direct_deps,info_pkg_no_deps,info_pkg_disabled,info_pkg_deps_full,info_pkg_deps_full_disabled,mirror_pkg_archive_mirroring,mirror_pkg_archive_mirroring_parent,mirror_pkg_git_mirroring,mirror_pkg_git_mirroring_parent";
LOG_TAGS_verbose="${LOG_TAGS_normal:+${LOG_TAGS_normal},}verbose";
#
# Subsystem tags
#
LOG_TAG_fileop=36; # Cyan
LOG_TAG_install=36; # Cyan
#
# General level tags
#
LOG_TAG_fatal=91; # Bright red
LOG_TAG_info=93; # Bright yellow
LOG_TAG_verbose=96; # Bright cyan
LOG_TAG_warning=31; # Dark red
#
# General build tags
#
LOG_TAG_package_vars=33; # Dark yellow
LOG_TAG_package_vars_even_256="38;5;228"; # RGB #ffaf5f
LOG_TAG_package_vars_odd_256="38;5;226"; # RGB #ffaf00
#
# Package info tags
#
LOG_TAG_info_build_group=93; # Bright yellow
LOG_TAG_info_build_group_256="38;5;221"; # RGB #ffd75f
LOG_TAG_info_pkg_direct_deps=93; # Bright yellow
LOG_TAG_info_pkg_direct_deps_256="38;5;215"; # RGB #ffaf5f
LOG_TAG_info_pkg_no_deps=96; # Bright cyan
LOG_TAG_info_pkg_no_deps_256="38;5;205"; # RGB #ff5faf
LOG_TAG_info_pkg_disabled=96; # Bright cyan
LOG_TAG_info_pkg_disabled_256="38;5;207"; # RGB #ff5fff
LOG_TAG_info_pkg_deps_full=93; # Bright yellow
LOG_TAG_info_pkg_deps_full_256="38;5;208"; # RGB #ff8700
LOG_TAG_info_pkg_deps_full_disabled=96; # Bright cyan
LOG_TAG_info_pkg_deps_full_disabled_256="38;5;147"; # RGB #afafff
#
# Package mirror tags
#
LOG_TAG_mirror_pkg_archive_mirroring=93; # Bright yellow
LOG_TAG_mirror_pkg_archive_mirroring_even_256="38;5;123"; # RGB #87ffff
LOG_TAG_mirror_pkg_archive_mirroring_odd_256="38;5;122"; # RGB #87ffd7
LOG_TAG_mirror_pkg_archive_mirroring_parent=93; # Bright yellow
LOG_TAG_mirror_pkg_archive_mirroring_parent_even_256="38;5;123"; # RGB #87ffff
LOG_TAG_mirror_pkg_archive_mirroring_parent_odd_256="38;5;122"; # RGB #87ffd7
LOG_TAG_mirror_pkg_git_mirroring=93; # Bright yellow
LOG_TAG_mirror_pkg_git_mirroring_even_256="38;5;117"; # RGB #87d7ff
LOG_TAG_mirror_pkg_git_mirroring_odd_256="38;5;116"; # RGB #87d7d7
LOG_TAG_mirror_pkg_git_mirroring_parent=93; # Bright yellow
LOG_TAG_mirror_pkg_git_mirroring_parent_even_256="38;5;117"; # RGB #87d7ff
LOG_TAG_mirror_pkg_git_mirroring_parent_odd_256="38;5;116"; # RGB #87d7d7
# vim:foldmethod=marker ft=sh
|