environment_information 1.4.89

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of environment_information might be problematic. Click here for more details.

Files changed (94) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +1276 -0
  3. data/bin/envi +7 -0
  4. data/bin/fast_envi +7 -0
  5. data/doc/README.gen +1044 -0
  6. data/doc/todo/TODO_FOR_THE_ENVIRONMENT_INFORMATION_PROJECT.md +48 -0
  7. data/environment_information.gemspec +135 -0
  8. data/lib/environment_information/base/base.rb +159 -0
  9. data/lib/environment_information/class/add.rb +187 -0
  10. data/lib/environment_information/class/colours.rb +283 -0
  11. data/lib/environment_information/class/constants.rb +35 -0
  12. data/lib/environment_information/class/environment_information.rb +51 -0
  13. data/lib/environment_information/class/help.rb +90 -0
  14. data/lib/environment_information/class/html.rb +78 -0
  15. data/lib/environment_information/class/initialize.rb +177 -0
  16. data/lib/environment_information/class/menu.rb +465 -0
  17. data/lib/environment_information/class/misc.rb +897 -0
  18. data/lib/environment_information/class/opn.rb +33 -0
  19. data/lib/environment_information/class/register_sigint.rb +20 -0
  20. data/lib/environment_information/class/reset.rb +217 -0
  21. data/lib/environment_information/class/ruby.rb +79 -0
  22. data/lib/environment_information/class/run.rb +61 -0
  23. data/lib/environment_information/class/show_display_and_report.rb +355 -0
  24. data/lib/environment_information/colours/colours.rb +211 -0
  25. data/lib/environment_information/colours/sfancy.rb +19 -0
  26. data/lib/environment_information/colours/simp.rb +19 -0
  27. data/lib/environment_information/constants/array_tracked_components.rb +210 -0
  28. data/lib/environment_information/constants/constants.rb +17 -0
  29. data/lib/environment_information/constants/encoding.rb +21 -0
  30. data/lib/environment_information/constants/error_line.rb +17 -0
  31. data/lib/environment_information/constants/file_constants.rb +102 -0
  32. data/lib/environment_information/constants/misc.rb +86 -0
  33. data/lib/environment_information/constants/namespace.rb +14 -0
  34. data/lib/environment_information/constants/newline.rb +16 -0
  35. data/lib/environment_information/constants/regex.rb +30 -0
  36. data/lib/environment_information/constants/temp_directory.rb +52 -0
  37. data/lib/environment_information/gui/gtk2/environment_information.rb +35 -0
  38. data/lib/environment_information/gui/gtk3/environment_information.rb +34 -0
  39. data/lib/environment_information/gui/libui/environment_information.rb +74 -0
  40. data/lib/environment_information/gui/shared_code/environment_information_module.rb +409 -0
  41. data/lib/environment_information/misc_components/README.md +3 -0
  42. data/lib/environment_information/misc_components/cflags.rb +36 -0
  43. data/lib/environment_information/misc_components/cpuinfo.rb +64 -0
  44. data/lib/environment_information/misc_components/operating_system.rb +54 -0
  45. data/lib/environment_information/misc_components/operating_system_bit_type.rb +42 -0
  46. data/lib/environment_information/misc_components/ram.rb +30 -0
  47. data/lib/environment_information/misc_components/rubygems_installation_directory.rb +54 -0
  48. data/lib/environment_information/misc_components/screen_resolution.rb +50 -0
  49. data/lib/environment_information/project/project.rb +27 -0
  50. data/lib/environment_information/queries/README.md +2 -0
  51. data/lib/environment_information/queries/complex_version.rb +272 -0
  52. data/lib/environment_information/queries/pkg_config.rb +125 -0
  53. data/lib/environment_information/queries/simple_version.rb +217 -0
  54. data/lib/environment_information/requires/require_asciitable.rb +15 -0
  55. data/lib/environment_information/requires/require_the_constants.rb +7 -0
  56. data/lib/environment_information/requires/require_the_environment_information_project.rb +23 -0
  57. data/lib/environment_information/requires/require_the_individual_misc_components.rb +30 -0
  58. data/lib/environment_information/requires/require_the_toplevel_methods.rb +22 -0
  59. data/lib/environment_information/toplevel_methods/autogenerate_all_relevant_methods.rb +152 -0
  60. data/lib/environment_information/toplevel_methods/cd.rb +16 -0
  61. data/lib/environment_information/toplevel_methods/e.rb +43 -0
  62. data/lib/environment_information/toplevel_methods/hash.rb +60 -0
  63. data/lib/environment_information/toplevel_methods/internet_is_available.rb +30 -0
  64. data/lib/environment_information/toplevel_methods/is_on_roebe.rb +16 -0
  65. data/lib/environment_information/toplevel_methods/menu.rb +90 -0
  66. data/lib/environment_information/toplevel_methods/misc.rb +309 -0
  67. data/lib/environment_information/toplevel_methods/n_subcommands.rb +31 -0
  68. data/lib/environment_information/toplevel_methods/prefix_to_use.rb +39 -0
  69. data/lib/environment_information/toplevel_methods/register_this_component_is_missing.rb +61 -0
  70. data/lib/environment_information/toplevel_methods/remote_url_of_this_program.rb +45 -0
  71. data/lib/environment_information/toplevel_methods/replay_from_the_stored_file.rb +84 -0
  72. data/lib/environment_information/toplevel_methods/return_alias_to.rb +30 -0
  73. data/lib/environment_information/toplevel_methods/return_pkgconfig_based_programs.rb +28 -0
  74. data/lib/environment_information/toplevel_methods/return_remote_gtk2_version.rb +54 -0
  75. data/lib/environment_information/toplevel_methods/return_simple_version_based_programs.rb +28 -0
  76. data/lib/environment_information/toplevel_methods/return_version_of_this_program.rb +182 -0
  77. data/lib/environment_information/toplevel_methods/show_all_available_components.rb +192 -0
  78. data/lib/environment_information/toplevel_methods/write_what_into.rb +24 -0
  79. data/lib/environment_information/version/version.rb +25 -0
  80. data/lib/environment_information/www/sinatra_interface.rb +213 -0
  81. data/lib/environment_information/www/webobject_interface.cgi +29 -0
  82. data/lib/environment_information/yaml/array_default_programs_on_linux.yml +15 -0
  83. data/lib/environment_information/yaml/array_lfs_core_programs.yml +37 -0
  84. data/lib/environment_information/yaml/array_science_cluster.yml +12 -0
  85. data/lib/environment_information/yaml/array_tracked_non_programs.yml +13 -0
  86. data/lib/environment_information/yaml/array_tracked_programs.yml +207 -0
  87. data/lib/environment_information/yaml/array_tracked_xorg_components.yml +37 -0
  88. data/lib/environment_information/yaml/colours.yml +3 -0
  89. data/lib/environment_information/yaml/query_to_use_for_the_individual_components.yml +256 -0
  90. data/lib/environment_information.rb +5 -0
  91. data/test/testing_environment_information.rb +26 -0
  92. data/test/testing_missing_components.rb +9 -0
  93. data/test/testing_prefix_for_the_environment_information_project.rb +20 -0
  94. metadata +191 -0
@@ -0,0 +1,213 @@
1
+ #!/usr/bin/ruby -w
2
+ # Encoding: UTF-8
3
+ # frozen_string_literal: true
4
+ # =========================================================================== #
5
+ # === EnvironmentInformation::Sinatra
6
+ # =========================================================================== #
7
+ # require 'environment_information/www/sinatra_interface.rb'
8
+ # =========================================================================== #
9
+ require 'sinatra/base.rb'
10
+ require 'beautiful_url'
11
+ require 'environment_information/requires/require_the_environment_information_project.rb'
12
+
13
+ module EnvironmentInformation
14
+
15
+ class Sinatra < Sinatra::Base
16
+
17
+ include Colours
18
+ include Colours::E
19
+ begin
20
+ require 'html_tags'
21
+ include HtmlTags::BaseModule
22
+ rescue LoadError; end
23
+
24
+ # ========================================================================= #
25
+ # === USE_THIS_PORT
26
+ # ========================================================================= #
27
+ USE_THIS_PORT = '4567'
28
+
29
+ set :port, USE_THIS_PORT
30
+
31
+ # ========================================================================= #
32
+ # === initialize
33
+ # ========================================================================= #
34
+ def initialize
35
+ super()
36
+ reset
37
+ if ::EnvironmentInformation.is_on_roebe?
38
+ require 'open'
39
+ # ===================================================================== #
40
+ # Tell us which port will be used:
41
+ # ===================================================================== #
42
+ target = "http://localhost:#{USE_THIS_PORT}/"
43
+ e sfancy(target)
44
+ Thread.new {
45
+ sleep 1.0
46
+ Open.in_browser(target)
47
+ }
48
+ end
49
+ end
50
+
51
+ # ========================================================================= #
52
+ # === reset
53
+ # ========================================================================= #
54
+ def reset
55
+ end
56
+
57
+ # ========================================================================= #
58
+ # === html_end
59
+ # ========================================================================= #
60
+ def html_end
61
+ '<idv></body></html>'
62
+ end
63
+
64
+ # ========================================================================= #
65
+ # === return_html_start
66
+ #
67
+ # This method will include all parts up to the first main <div>
68
+ # element of the webpage.
69
+ # ========================================================================= #
70
+ def return_html_start
71
+ "<html><head><title>\n"\
72
+ "Sinatra-Interface of the EnvironmentInformation project\n"\
73
+ "</title></head><body>"\
74
+ "<div style=\"padding:2px; margin-left:0.5em\">"
75
+ end
76
+
77
+ # ========================================================================= #
78
+ # === / Entry point
79
+ #
80
+ # This is the root of our web-application.
81
+ # ========================================================================= #
82
+ get('/') {
83
+ # ======================================================================= #
84
+ # We will initialize the main Hash next, that is kept in
85
+ # EnvironmentInformation.
86
+ # ======================================================================= #
87
+ ::EnvironmentInformation.build_up_and_return_the_main_hash
88
+ inner_content =
89
+ h2('Displaying information about the local computersystem')+
90
+ uniform_p_tag('Operating system in use:',
91
+ ::EnvironmentInformation.operating_system?)+
92
+ uniform_p_tag('OS Bit type (architecture):',
93
+ ::EnvironmentInformation.bit_type?)+
94
+ uniform_p_tag('CPU Model:',
95
+ ::EnvironmentInformation.cpu_model?)+
96
+ uniform_p_tag('CFLAGS in use:',
97
+ ::EnvironmentInformation.cflags_in_use?)+
98
+ uniform_p_tag('RAM (in MB):',
99
+ ::EnvironmentInformation.ram?)+
100
+ uniform_p_tag('Screen resolution:',
101
+ ::EnvironmentInformation.screen_resolution?.to_s)
102
+ inner_content = inner_content.dup
103
+ # ======================================================================= #
104
+ # Next, add the individual components:
105
+ # ======================================================================= #
106
+ %i(
107
+ gcc
108
+ glibc
109
+ linux_kernel
110
+ binutils
111
+ awk
112
+ ruby
113
+ rubygems
114
+ coreutils
115
+ diffutils
116
+ bison
117
+ boost
118
+ cmake
119
+ file
120
+ flex
121
+ intltool
122
+ gettext
123
+ grep
124
+ gnupg
125
+ ).each {|this_component|
126
+ inner_content << sinatra_paragraph_showing_this_component(this_component).to_s
127
+ }
128
+ return_html_start+
129
+ div(css_style: 'font-size: normal; margin-top:1px; margin-bottom: 1px;') {
130
+ inner_content
131
+ }+
132
+ html_end
133
+ }
134
+
135
+ # ========================================================================= #
136
+ # === uniform_p_tag
137
+ # ========================================================================= #
138
+ def uniform_p_tag(i, content)
139
+ i = i.to_s
140
+ unless i.end_with? ':'
141
+ i = i.dup if i.frozen?
142
+ i << ':'
143
+ end
144
+ p(
145
+ "#{i}<br><b style=\"color: darkblue; margin-left:1.5em\">#{content}"\
146
+ "</b>",
147
+ css_style: 'margin-left: 2.5em;
148
+ margin: 4px;
149
+ padding: 5px;
150
+ padding-top: 0.2em'
151
+ )
152
+ end
153
+
154
+ # ========================================================================= #
155
+ # === sinatra_paragraph_showing_this_component
156
+ #
157
+ # This method was added primarily so that we can use a unified (and
158
+ # consistent) style for display.
159
+ # ========================================================================= #
160
+ def sinatra_paragraph_showing_this_component(
161
+ i = :gcc
162
+ )
163
+ content = "return_version_of_#{i}".to_s
164
+ content = ::EnvironmentInformation.send(content)
165
+ # ======================================================================= #
166
+ # Next, we grab it from the main Hash.
167
+ # ======================================================================= #
168
+ case i
169
+ when :awk,
170
+ :bison,
171
+ :boost,
172
+ :coreutils,
173
+ :binutils,
174
+ :cmake,
175
+ :diffutils,
176
+ :findutils,
177
+ :file,
178
+ :flex,
179
+ :gcc,
180
+ :gettext,
181
+ :glibc,
182
+ :grep,
183
+ :gnupg,
184
+ :intltool,
185
+ :ruby,
186
+ :rubygems
187
+ i = i.to_s.capitalize+' Version'
188
+ when :linux_kernel
189
+ i = 'Linux Kernel'
190
+ end
191
+ # ======================================================================= #
192
+ # Finally return the proper <p> tag:
193
+ # ======================================================================= #
194
+ uniform_p_tag(i, content)
195
+ end
196
+
197
+ end
198
+
199
+ # =========================================================================== #
200
+ # === EnvironmentInformation.start_sinatra_interface
201
+ #
202
+ # This method can be used to start the sinatra interface.
203
+ # =========================================================================== #
204
+ def self.start_sinatra_interface
205
+ puts 'Trying to start the sinatra-interface of EnvironmentInformation next.'
206
+ ::EnvironmentInformation::Sinatra.run!
207
+ end
208
+
209
+ end
210
+
211
+ if __FILE__ == $PROGRAM_NAME
212
+ EnvironmentInformation.start_sinatra_interface
213
+ end # envi --sinatra
@@ -0,0 +1,29 @@
1
+ #!/usr/bin/ruby -w
2
+ # Encoding: UTF-8
3
+ # frozen_string_literal: true
4
+ # =========================================================================== #
5
+ # This small .cgi file just demonstrates how to use the information
6
+ # from the EnvironmentInformation project in a .cgi page.
7
+ # =========================================================================== #
8
+ # http://localhost/DATA/PROGRAMMING_LANGUAGES/RUBY/src/environment_information/lib/environment_information/www/webobject_interface.cgi
9
+ # =========================================================================== #
10
+ require 'cyberweb/autoinclude'
11
+
12
+ use_this_title = 'WebObject interface to EnvironmentInformation'
13
+
14
+ english {
15
+ title use_this_title
16
+ fav 'PC/RUBY/RUBY_FAVICON.png'
17
+ body_css_class 's4px padt2px marpad2px VERDANAs'
18
+ body_css_style 'background-color: #d3d2d1;'
19
+ font_size 'def'
20
+
21
+ doc('mar0px') {
22
+ h1 sg(:buero_klammer, '','drag_buero_klammer')+
23
+ use_this_title
24
+ # ========================================================================= #
25
+ # Tap into showing the information from the EnvironmentInformation project.
26
+ # This is actually built into WebObject since as of February 2020.
27
+ # ========================================================================= #
28
+ Cyberweb.display_information_about_the_environment
29
+ }}}
@@ -0,0 +1,15 @@
1
+ # =========================================================================== #
2
+ # x = YAML.load_file('array_default_programs_on_linux.yml')
3
+ # =========================================================================== #
4
+
5
+ - !ruby/symbol operating_system
6
+ - !ruby/symbol operating_system_bit_type
7
+ - !ruby/symbol cpuinfo
8
+ - !ruby/symbol ram
9
+ - !ruby/symbol screen_resolution
10
+ - !ruby/symbol cflags
11
+ - !ruby/symbol gcc
12
+ - !ruby/symbol glibc
13
+ - !ruby/symbol linux
14
+ - !ruby/symbol binutils
15
+ - !ruby/symbol cmake
@@ -0,0 +1,37 @@
1
+ # =========================================================================== #
2
+ # === array_lfs_core_programs.yml
3
+ #
4
+ # This .yml file will contain an Array of Symbols denoting which programs
5
+ # are tracked by the LFS project.
6
+ #
7
+ # If you wish to add new entries to this yaml file then please keep them
8
+ # sorted alphabetically - this makes things a bit easier in the long run.
9
+ # =========================================================================== #
10
+ # x = YAML.load_file(FILE_ARRAY_LFS_CORE_PROGRAMS)
11
+ # =========================================================================== #
12
+
13
+ - !ruby/symbol bash
14
+ - !ruby/symbol binutils
15
+ - !ruby/symbol bison
16
+ - !ruby/symbol busybox
17
+ - !ruby/symbol bzip2
18
+ - !ruby/symbol coreutils
19
+ - !ruby/symbol diffutils
20
+ - !ruby/symbol findutils
21
+ - !ruby/symbol flex
22
+ - !ruby/symbol gawk
23
+ - !ruby/symbol gcc
24
+ - !ruby/symbol grep
25
+ - !ruby/symbol gzip
26
+ - !ruby/symbol libuv
27
+ - !ruby/symbol linux
28
+ - !ruby/symbol m4
29
+ - !ruby/symbol make
30
+ - !ruby/symbol patch
31
+ - !ruby/symbol perl
32
+ - !ruby/symbol python
33
+ - !ruby/symbol sed
34
+ - !ruby/symbol tar
35
+ - !ruby/symbol texinfo
36
+ - !ruby/symbol xz
37
+ - !ruby/symbol zlib
@@ -0,0 +1,12 @@
1
+ # =========================================================================== #
2
+ # Applications that have to do with science may be stored in this yaml
3
+ # file here.
4
+ # =========================================================================== #
5
+ # x = YAML.load_file(FILE_ARRAY_SCIENCE_CLUSTER)
6
+ # =========================================================================== #
7
+
8
+ - !ruby/symbol hmmer
9
+ - !ruby/symbol pbbam
10
+ - !ruby/symbol relion
11
+ - !ruby/symbol samtools
12
+ - !ruby/symbol viennarna
@@ -0,0 +1,13 @@
1
+ # =========================================================================== #
2
+ # Please keep the following Array (of symbols) sorted alphabeticall.
3
+ # =========================================================================== #
4
+ # x = EnvironmentInformation.load_file_array_tracked_non_programs
5
+ # =========================================================================== #
6
+
7
+ - !ruby/symbol cflags
8
+ - !ruby/symbol cpuinfo
9
+ - !ruby/symbol operating_system
10
+ - !ruby/symbol operating_system_bit_type
11
+ - !ruby/symbol ram
12
+ - !ruby/symbol rubygems_installation_directory
13
+ - !ruby/symbol screen_resolution
@@ -0,0 +1,207 @@
1
+ # =========================================================================== #
2
+ # === array_tracked_programs.yml
3
+ #
4
+ # This .yml file will contain an Array of Symbols denoting which programs
5
+ # are tracked by the environment information gem.
6
+ #
7
+ # If you wish to add new entries there then please keep them sorted
8
+ # alphabetically - this makes things a bit easier in the long run.
9
+ #
10
+ # Note that x11-related programs are NOT stored here - so please do
11
+ # not store them in this file, as otherwise ruby will warn about
12
+ # already generated code for this.
13
+ # =========================================================================== #
14
+ # x = YAML.load_file(FILE_ARRAY_TRACKED_PROGRAMS)
15
+ # =========================================================================== #
16
+
17
+ - !ruby/symbol atk
18
+ - !ruby/symbol automake
19
+ - !ruby/symbol babl
20
+ - !ruby/symbol bash
21
+ - !ruby/symbol binutils
22
+ - !ruby/symbol bison
23
+ - !ruby/symbol boost
24
+ - !ruby/symbol bubblewrap
25
+ - !ruby/symbol busybox
26
+ - !ruby/symbol bzip2
27
+ - !ruby/symbol cairo
28
+ - !ruby/symbol ccache
29
+ - !ruby/symbol check
30
+ - !ruby/symbol clang
31
+ - !ruby/symbol clutter
32
+ - !ruby/symbol cmake
33
+ - !ruby/symbol coreutils
34
+ - !ruby/symbol curl
35
+ - !ruby/symbol dbus
36
+ - !ruby/symbol dhcpcd
37
+ - !ruby/symbol diffutils
38
+ - !ruby/symbol elfutils
39
+ - !ruby/symbol emacs
40
+ - !ruby/symbol enchant
41
+ - !ruby/symbol ethtool
42
+ - !ruby/symbol eudev
43
+ - !ruby/symbol evince
44
+ - !ruby/symbol exempi
45
+ - !ruby/symbol expat
46
+ - !ruby/symbol ffmpeg
47
+ - !ruby/symbol fftw
48
+ - !ruby/symbol file
49
+ - !ruby/symbol findutils
50
+ - !ruby/symbol flac
51
+ - !ruby/symbol flatpak
52
+ - !ruby/symbol flex
53
+ - !ruby/symbol fluidsynth
54
+ - !ruby/symbol fontconfig
55
+ - !ruby/symbol freeipmi
56
+ - !ruby/symbol freetype
57
+ - !ruby/symbol fribidi
58
+ - !ruby/symbol gawk
59
+ - !ruby/symbol gc
60
+ - !ruby/symbol gcc
61
+ - !ruby/symbol gcr
62
+ - !ruby/symbol gdb
63
+ - !ruby/symbol gdkpixbuf
64
+ - !ruby/symbol gegl
65
+ - !ruby/symbol geocodeglib
66
+ - !ruby/symbol gettext
67
+ - !ruby/symbol ghostscript
68
+ - !ruby/symbol gimp
69
+ - !ruby/symbol git
70
+ - !ruby/symbol gmime
71
+ - !ruby/symbol gjs
72
+ - !ruby/symbol glib
73
+ - !ruby/symbol glibc
74
+ - !ruby/symbol gmp
75
+ - !ruby/symbol gnupg
76
+ - !ruby/symbol gnuplot
77
+ - !ruby/symbol gnutls
78
+ - !ruby/symbol gperf
79
+ - !ruby/symbol graphviz
80
+ - !ruby/symbol grep
81
+ - !ruby/symbol groff
82
+ - !ruby/symbol gsettingsdesktopschemas
83
+ - !ruby/symbol gsl
84
+ - !ruby/symbol gtk2
85
+ - !ruby/symbol gtk3
86
+ - !ruby/symbol guile
87
+ - !ruby/symbol gupnp
88
+ - !ruby/symbol gzip
89
+ - !ruby/symbol harfbuzz
90
+ - !ruby/symbol hmmer
91
+ - !ruby/symbol icewm
92
+ - !ruby/symbol icu4c
93
+ - !ruby/symbol imagemagick
94
+ - !ruby/symbol intltool
95
+ - !ruby/symbol jasper
96
+ - !ruby/symbol java
97
+ - !ruby/symbol kde_frameworks
98
+ - !ruby/symbol kmod
99
+ - !ruby/symbol krb5
100
+ - !ruby/symbol krita
101
+ - !ruby/symbol lftp
102
+ - !ruby/symbol libarchive
103
+ - !ruby/symbol libassuan
104
+ - !ruby/symbol libbytesize
105
+ - !ruby/symbol libdazzle
106
+ - !ruby/symbol libdrm
107
+ - !ruby/symbol libepoxy
108
+ - !ruby/symbol libgdata
109
+ - !ruby/symbol libgee
110
+ - !ruby/symbol libgpgerror
111
+ - !ruby/symbol libgsf
112
+ - !ruby/symbol libgtop
113
+ - !ruby/symbol libhandy
114
+ - !ruby/symbol libical
115
+ - !ruby/symbol libjpegturbo
116
+ - !ruby/symbol libmbim
117
+ - !ruby/symbol libpeas
118
+ - !ruby/symbol libpsl
119
+ - !ruby/symbol libqmi
120
+ - !ruby/symbol librsvg
121
+ - !ruby/symbol libsamplerate
122
+ - !ruby/symbol libseccomp
123
+ - !ruby/symbol libsecret
124
+ - !ruby/symbol libsndfile
125
+ - !ruby/symbol libtasn1
126
+ - !ruby/symbol libtool
127
+ - !ruby/symbol libunwind
128
+ - !ruby/symbol libuv
129
+ - !ruby/symbol libva
130
+ - !ruby/symbol libvpx
131
+ - !ruby/symbol libwebp
132
+ - !ruby/symbol libwpe
133
+ - !ruby/symbol libzip
134
+ - !ruby/symbol linux
135
+ - !ruby/symbol llvm
136
+ - !ruby/symbol lynx
137
+ - !ruby/symbol m4
138
+ - !ruby/symbol make
139
+ - !ruby/symbol mc
140
+ - !ruby/symbol mlt
141
+ - !ruby/symbol mozjs
142
+ - !ruby/symbol mpc
143
+ - !ruby/symbol mpfr
144
+ - !ruby/symbol mtools
145
+ - !ruby/symbol nasm
146
+ - !ruby/symbol ncurses
147
+ - !ruby/symbol neon
148
+ - !ruby/symbol nettle
149
+ - !ruby/symbol nghttp2
150
+ - !ruby/symbol nginx
151
+ - !ruby/symbol ninja
152
+ - !ruby/symbol node
153
+ - !ruby/symbol nss
154
+ - !ruby/symbol openssl
155
+ - !ruby/symbol opusfile
156
+ - !ruby/symbol pango
157
+ - !ruby/symbol parted
158
+ - !ruby/symbol patch
159
+ - !ruby/symbol patchelf
160
+ - !ruby/symbol pbbam
161
+ - !ruby/symbol pcre
162
+ - !ruby/symbol pcre2
163
+ - !ruby/symbol perl
164
+ - !ruby/symbol php
165
+ - !ruby/symbol pipewire
166
+ - !ruby/symbol pkgconfig
167
+ - !ruby/symbol plzip
168
+ - !ruby/symbol poppler
169
+ - !ruby/symbol popt
170
+ - !ruby/symbol python
171
+ - !ruby/symbol qpdf
172
+ - !ruby/symbol qt
173
+ - !ruby/symbol r
174
+ - !ruby/symbol readline
175
+ - !ruby/symbol re2c
176
+ - !ruby/symbol relion
177
+ - !ruby/symbol rsync
178
+ - !ruby/symbol ruby
179
+ - !ruby/symbol rubygems
180
+ - !ruby/symbol samtools
181
+ - !ruby/symbol sed
182
+ - !ruby/symbol screen
183
+ - !ruby/symbol sharutils
184
+ - !ruby/symbol simple-scan
185
+ - !ruby/symbol strace
186
+ # - !ruby/symbol subversion # Outdated and obsoleted.
187
+ - !ruby/symbol swig
188
+ - !ruby/symbol sysstat
189
+ - !ruby/symbol tar
190
+ - !ruby/symbol texinfo
191
+ - !ruby/symbol tiff
192
+ - !ruby/symbol tmux
193
+ - !ruby/symbol unbound
194
+ - !ruby/symbol v4lutils
195
+ - !ruby/symbol valgrind
196
+ - !ruby/symbol viennarna
197
+ - !ruby/symbol vim
198
+ - !ruby/symbol vte
199
+ - !ruby/symbol wavpack
200
+ - !ruby/symbol webkit2gtk
201
+ - !ruby/symbol wget
202
+ - !ruby/symbol wireshark
203
+ - !ruby/symbol xfsprogs
204
+ - !ruby/symbol xterm
205
+ - !ruby/symbol xvid
206
+ - !ruby/symbol xz
207
+ - !ruby/symbol zlib
@@ -0,0 +1,37 @@
1
+ # =========================================================================== #
2
+ # === array_tracked_xorg_components.yml
3
+ #
4
+ # This .yml file will contain an Array of Symbols denoting which
5
+ # programs belong to the xorg-stack.
6
+ # =========================================================================== #
7
+ # x = YAML.load_file(FILE_ARRAY_TRACKED_XORG_COMPONENTS)
8
+ # =========================================================================== #
9
+
10
+ - !ruby/symbol libevdev
11
+ - !ruby/symbol libinput
12
+ - !ruby/symbol libx11
13
+ - !ruby/symbol libxaw3d
14
+ - !ruby/symbol libxau
15
+ - !ruby/symbol libxcb
16
+ - !ruby/symbol libxcm
17
+ - !ruby/symbol libxcursor
18
+ - !ruby/symbol libxdamage
19
+ - !ruby/symbol libxi
20
+ - !ruby/symbol libxkbfile
21
+ - !ruby/symbol libxmu
22
+ - !ruby/symbol libxpm
23
+ - !ruby/symbol libxp
24
+ - !ruby/symbol libxpresent
25
+ # - !ruby/symbol libxtrap # This has been deprecated many years ago already.
26
+ - !ruby/symbol libxtst
27
+ - !ruby/symbol libxt
28
+ - !ruby/symbol libxv
29
+ - !ruby/symbol libxvmc
30
+ - !ruby/symbol randrproto
31
+ - !ruby/symbol xextproto
32
+ - !ruby/symbol xkbcomp
33
+ - !ruby/symbol xrandr
34
+ - !ruby/symbol xstdcmap
35
+ - !ruby/symbol xf86bigfontproto
36
+ - !ruby/symbol xf86dgaproto
37
+ - !ruby/symbol xf86driproto
@@ -0,0 +1,3 @@
1
+ left_side: forestgreen
2
+ right_side: steelblue
3
+ program_not_found: lightslategrey