environment_information 1.4.124

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.
Files changed (80) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +1322 -0
  3. data/bin/envi +7 -0
  4. data/bin/fast_envi +7 -0
  5. data/doc/README.gen +1058 -0
  6. data/doc/todo/TODO_FOR_THE_ENVIRONMENT_INFORMATION_PROJECT.md +55 -0
  7. data/environment_information.gemspec +135 -0
  8. data/lib/environment_information/base/base.rb +166 -0
  9. data/lib/environment_information/class/class.rb +2580 -0
  10. data/lib/environment_information/class/colours.rb +282 -0
  11. data/lib/environment_information/colours/colours.rb +224 -0
  12. data/lib/environment_information/colours/sfancy.rb +19 -0
  13. data/lib/environment_information/colours/simp.rb +19 -0
  14. data/lib/environment_information/constants/array_tracked_components.rb +210 -0
  15. data/lib/environment_information/constants/constants.rb +17 -0
  16. data/lib/environment_information/constants/encoding.rb +21 -0
  17. data/lib/environment_information/constants/error_line.rb +17 -0
  18. data/lib/environment_information/constants/file_constants.rb +102 -0
  19. data/lib/environment_information/constants/misc.rb +86 -0
  20. data/lib/environment_information/constants/namespace.rb +14 -0
  21. data/lib/environment_information/constants/newline.rb +16 -0
  22. data/lib/environment_information/constants/regex.rb +30 -0
  23. data/lib/environment_information/constants/temp_directory.rb +52 -0
  24. data/lib/environment_information/gui/jruby/environment_information.rb +77 -0
  25. data/lib/environment_information/gui/shared_code/environment_information/environment_information_module.rb +99 -0
  26. data/lib/environment_information/gui/universal_widgets/environment_information/environment_information.rb +419 -0
  27. data/lib/environment_information/misc_components/README.md +3 -0
  28. data/lib/environment_information/misc_components/cflags.rb +36 -0
  29. data/lib/environment_information/misc_components/cpuinfo.rb +64 -0
  30. data/lib/environment_information/misc_components/operating_system.rb +54 -0
  31. data/lib/environment_information/misc_components/operating_system_bit_type.rb +42 -0
  32. data/lib/environment_information/misc_components/ram.rb +30 -0
  33. data/lib/environment_information/misc_components/rubygems_installation_directory.rb +54 -0
  34. data/lib/environment_information/misc_components/screen_resolution.rb +50 -0
  35. data/lib/environment_information/project/project.rb +27 -0
  36. data/lib/environment_information/queries/README.md +2 -0
  37. data/lib/environment_information/queries/complex_version.rb +273 -0
  38. data/lib/environment_information/queries/pkg_config.rb +125 -0
  39. data/lib/environment_information/queries/simple_version.rb +272 -0
  40. data/lib/environment_information/requires/require_asciitable.rb +15 -0
  41. data/lib/environment_information/requires/require_the_constants.rb +7 -0
  42. data/lib/environment_information/requires/require_the_environment_information_project.rb +23 -0
  43. data/lib/environment_information/requires/require_the_individual_misc_components.rb +30 -0
  44. data/lib/environment_information/requires/require_the_toplevel_methods.rb +22 -0
  45. data/lib/environment_information/toplevel_methods/autogenerate_all_relevant_methods.rb +153 -0
  46. data/lib/environment_information/toplevel_methods/cd.rb +16 -0
  47. data/lib/environment_information/toplevel_methods/e.rb +43 -0
  48. data/lib/environment_information/toplevel_methods/hash.rb +65 -0
  49. data/lib/environment_information/toplevel_methods/internet_is_available.rb +30 -0
  50. data/lib/environment_information/toplevel_methods/is_on_roebe.rb +16 -0
  51. data/lib/environment_information/toplevel_methods/menu.rb +90 -0
  52. data/lib/environment_information/toplevel_methods/misc.rb +324 -0
  53. data/lib/environment_information/toplevel_methods/n_subcommands.rb +31 -0
  54. data/lib/environment_information/toplevel_methods/prefix_to_use.rb +39 -0
  55. data/lib/environment_information/toplevel_methods/register_this_component_is_missing.rb +61 -0
  56. data/lib/environment_information/toplevel_methods/remote_url_of_this_program.rb +45 -0
  57. data/lib/environment_information/toplevel_methods/replay_from_the_stored_file.rb +84 -0
  58. data/lib/environment_information/toplevel_methods/return_alias_to.rb +30 -0
  59. data/lib/environment_information/toplevel_methods/return_pkgconfig_based_programs.rb +28 -0
  60. data/lib/environment_information/toplevel_methods/return_remote_gtk2_version.rb +54 -0
  61. data/lib/environment_information/toplevel_methods/return_simple_version_based_programs.rb +28 -0
  62. data/lib/environment_information/toplevel_methods/return_version_of_this_program.rb +182 -0
  63. data/lib/environment_information/toplevel_methods/show_all_available_components.rb +192 -0
  64. data/lib/environment_information/toplevel_methods/write_what_into.rb +24 -0
  65. data/lib/environment_information/version/version.rb +25 -0
  66. data/lib/environment_information/www/sinatra_interface.rb +213 -0
  67. data/lib/environment_information/www/webobject_interface.cgi +29 -0
  68. data/lib/environment_information/yaml/array_default_programs_on_linux.yml +15 -0
  69. data/lib/environment_information/yaml/array_lfs_core_programs.yml +37 -0
  70. data/lib/environment_information/yaml/array_science_cluster.yml +12 -0
  71. data/lib/environment_information/yaml/array_tracked_non_programs.yml +13 -0
  72. data/lib/environment_information/yaml/array_tracked_programs.yml +235 -0
  73. data/lib/environment_information/yaml/array_tracked_xorg_components.yml +37 -0
  74. data/lib/environment_information/yaml/colours.yml +3 -0
  75. data/lib/environment_information/yaml/query_to_use_for_the_individual_components.yml +284 -0
  76. data/lib/environment_information.rb +5 -0
  77. data/test/testing_environment_information.rb +26 -0
  78. data/test/testing_missing_components.rb +9 -0
  79. data/test/testing_prefix_for_the_environment_information_project.rb +20 -0
  80. metadata +177 -0
@@ -0,0 +1,25 @@
1
+ #!/usr/bin/ruby -w
2
+ # Encoding: UTF-8
3
+ # frozen_string_literal: true
4
+ # =========================================================================== #
5
+ # require 'environment_information/version/version.rb'
6
+ # =========================================================================== #
7
+ module EnvironmentInformation
8
+
9
+ # ========================================================================= #
10
+ # === VERSION
11
+ # ========================================================================= #
12
+ VERSION = '1.4.124'
13
+
14
+ # ========================================================================= #
15
+ # === LAST_UPDATE
16
+ # ========================================================================= #
17
+ LAST_UPDATE = '27.03.2024'
18
+
19
+ # ========================================================================= #
20
+ # === URL_TO_THE_DOCUMENTATION
21
+ # ========================================================================= #
22
+ URL_TO_THE_DOCUMENTATION =
23
+ "https://www.rubydoc.info/gems/#{self.to_s.split(/(?=[A-Z])/).join('_').downcase}/#{VERSION}"
24
+
25
+ end
@@ -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,235 @@
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 adwaitaicontheme
18
+ - !ruby/symbol atk
19
+ - !ruby/symbol automake
20
+ - !ruby/symbol babl
21
+ - !ruby/symbol bash
22
+ - !ruby/symbol binutils
23
+ - !ruby/symbol bison
24
+ - !ruby/symbol boost
25
+ - !ruby/symbol bubblewrap
26
+ - !ruby/symbol busybox
27
+ - !ruby/symbol bzip2
28
+ - !ruby/symbol cairo
29
+ - !ruby/symbol cares
30
+ - !ruby/symbol ccache
31
+ - !ruby/symbol check
32
+ - !ruby/symbol clang
33
+ - !ruby/symbol clutter
34
+ - !ruby/symbol cmake
35
+ - !ruby/symbol colord
36
+ - !ruby/symbol coreutils
37
+ - !ruby/symbol curl
38
+ - !ruby/symbol dbus
39
+ - !ruby/symbol dhcpcd
40
+ - !ruby/symbol diffutils
41
+ - !ruby/symbol djvulibre
42
+ - !ruby/symbol doubleconversion
43
+ - !ruby/symbol duktape
44
+ - !ruby/symbol elfutils
45
+ - !ruby/symbol emacs
46
+ - !ruby/symbol enchant
47
+ - !ruby/symbol ethtool
48
+ - !ruby/symbol eudev
49
+ - !ruby/symbol evince
50
+ - !ruby/symbol exempi
51
+ - !ruby/symbol expat
52
+ - !ruby/symbol ffmpeg
53
+ - !ruby/symbol fftw
54
+ - !ruby/symbol file
55
+ - !ruby/symbol findutils
56
+ - !ruby/symbol flac
57
+ - !ruby/symbol flatpak
58
+ - !ruby/symbol flex
59
+ - !ruby/symbol fluidsynth
60
+ - !ruby/symbol fontconfig
61
+ - !ruby/symbol freeipmi
62
+ - !ruby/symbol freetype
63
+ - !ruby/symbol fribidi
64
+ - !ruby/symbol fuse
65
+ - !ruby/symbol gawk
66
+ - !ruby/symbol gc
67
+ - !ruby/symbol gcc
68
+ - !ruby/symbol gcr
69
+ - !ruby/symbol gdb
70
+ - !ruby/symbol gdkpixbuf
71
+ - !ruby/symbol gegl
72
+ - !ruby/symbol geocodeglib
73
+ - !ruby/symbol gettext
74
+ - !ruby/symbol ghostscript
75
+ - !ruby/symbol gimp
76
+ - !ruby/symbol git
77
+ - !ruby/symbol glslang
78
+ - !ruby/symbol gmime
79
+ - !ruby/symbol gjs
80
+ - !ruby/symbol glib
81
+ - !ruby/symbol glibc
82
+ - !ruby/symbol gmp
83
+ - !ruby/symbol gnupg
84
+ - !ruby/symbol gnuplot
85
+ - !ruby/symbol gnutls
86
+ - !ruby/symbol gperf
87
+ - !ruby/symbol graphite2
88
+ - !ruby/symbol graphviz
89
+ - !ruby/symbol grep
90
+ - !ruby/symbol groff
91
+ - !ruby/symbol gsettingsdesktopschemas
92
+ - !ruby/symbol gsl
93
+ - !ruby/symbol gstreamer
94
+ - !ruby/symbol gstpluginsbase
95
+ # - !ruby/symbol gstpluginsgood
96
+ - !ruby/symbol gtk2
97
+ - !ruby/symbol gtk3
98
+ - !ruby/symbol guile
99
+ - !ruby/symbol gupnp
100
+ - !ruby/symbol gzip
101
+ - !ruby/symbol harfbuzz
102
+ - !ruby/symbol hmmer
103
+ - !ruby/symbol ibus
104
+ - !ruby/symbol icewm
105
+ - !ruby/symbol icu4c
106
+ - !ruby/symbol imagemagick
107
+ - !ruby/symbol intltool
108
+ - !ruby/symbol isl
109
+ - !ruby/symbol jasper
110
+ - !ruby/symbol java
111
+ - !ruby/symbol kde_frameworks
112
+ - !ruby/symbol kmod
113
+ - !ruby/symbol krb5
114
+ - !ruby/symbol krita
115
+ - !ruby/symbol lftp
116
+ - !ruby/symbol libarchive
117
+ - !ruby/symbol libassuan
118
+ - !ruby/symbol libbytesize
119
+ - !ruby/symbol libdazzle
120
+ - !ruby/symbol libdrm
121
+ - !ruby/symbol libepoxy
122
+ - !ruby/symbol libgdata
123
+ - !ruby/symbol libgee
124
+ - !ruby/symbol libgpgerror
125
+ - !ruby/symbol libgsf
126
+ - !ruby/symbol libgtop
127
+ - !ruby/symbol libgusb
128
+ - !ruby/symbol libhandy
129
+ - !ruby/symbol libical
130
+ - !ruby/symbol libidn
131
+ - !ruby/symbol libjpegturbo
132
+ - !ruby/symbol libmbim
133
+ - !ruby/symbol libmicrohttpd
134
+ - !ruby/symbol libpaper
135
+ - !ruby/symbol libpeas
136
+ - !ruby/symbol libpsl
137
+ - !ruby/symbol libqmi
138
+ - !ruby/symbol librsvg
139
+ - !ruby/symbol libsamplerate
140
+ - !ruby/symbol libseccomp
141
+ - !ruby/symbol libsecret
142
+ - !ruby/symbol libsndfile
143
+ - !ruby/symbol libtasn1
144
+ - !ruby/symbol libtool
145
+ - !ruby/symbol libunwind
146
+ - !ruby/symbol libusb
147
+ - !ruby/symbol libuv
148
+ - !ruby/symbol libva
149
+ - !ruby/symbol libvpx
150
+ - !ruby/symbol libwebp
151
+ - !ruby/symbol libwpe
152
+ - !ruby/symbol libzip
153
+ - !ruby/symbol lighttpd
154
+ - !ruby/symbol linux
155
+ - !ruby/symbol llvm
156
+ - !ruby/symbol lynx
157
+ - !ruby/symbol m4
158
+ - !ruby/symbol make
159
+ - !ruby/symbol mc
160
+ - !ruby/symbol mlt
161
+ - !ruby/symbol mozjs
162
+ - !ruby/symbol mpc
163
+ - !ruby/symbol mpfr
164
+ - !ruby/symbol mtools
165
+ - !ruby/symbol mutter
166
+ - !ruby/symbol nasm
167
+ - !ruby/symbol ncurses
168
+ - !ruby/symbol neon
169
+ - !ruby/symbol nettle
170
+ - !ruby/symbol nghttp2
171
+ - !ruby/symbol nginx
172
+ - !ruby/symbol ninja
173
+ - !ruby/symbol node
174
+ - !ruby/symbol nspr
175
+ - !ruby/symbol nss
176
+ - !ruby/symbol openmpi
177
+ - !ruby/symbol openssl
178
+ - !ruby/symbol opusfile
179
+ - !ruby/symbol pango
180
+ - !ruby/symbol parted
181
+ - !ruby/symbol patch
182
+ - !ruby/symbol patchelf
183
+ - !ruby/symbol pbbam
184
+ - !ruby/symbol pcre
185
+ - !ruby/symbol pcre2
186
+ - !ruby/symbol perl
187
+ - !ruby/symbol php
188
+ - !ruby/symbol pipewire
189
+ - !ruby/symbol pkgconfig
190
+ - !ruby/symbol plzip
191
+ - !ruby/symbol poppler
192
+ - !ruby/symbol popt
193
+ - !ruby/symbol postgresql
194
+ - !ruby/symbol python
195
+ - !ruby/symbol qpdf
196
+ - !ruby/symbol qt
197
+ - !ruby/symbol r
198
+ - !ruby/symbol readline
199
+ - !ruby/symbol re2c
200
+ - !ruby/symbol relion
201
+ - !ruby/symbol rsync
202
+ - !ruby/symbol ruby
203
+ - !ruby/symbol rubygems
204
+ - !ruby/symbol samtools
205
+ - !ruby/symbol sed
206
+ - !ruby/symbol screen
207
+ - !ruby/symbol sharutils
208
+ - !ruby/symbol simple-scan
209
+ - !ruby/symbol strace
210
+ # - !ruby/symbol subversion # Outdated and obsoleted.
211
+ - !ruby/symbol swig
212
+ - !ruby/symbol sysstat
213
+ - !ruby/symbol taglib
214
+ - !ruby/symbol tar
215
+ - !ruby/symbol tesseract
216
+ - !ruby/symbol texinfo
217
+ - !ruby/symbol tiff
218
+ - !ruby/symbol tmux
219
+ - !ruby/symbol unbound
220
+ - !ruby/symbol v4lutils
221
+ - !ruby/symbol valgrind
222
+ - !ruby/symbol viennarna
223
+ - !ruby/symbol vim
224
+ - !ruby/symbol vte
225
+ - !ruby/symbol wavpack
226
+ - !ruby/symbol webkit2gtk
227
+ - !ruby/symbol weston
228
+ - !ruby/symbol wget
229
+ - !ruby/symbol wireshark
230
+ - !ruby/symbol xfsprogs
231
+ - !ruby/symbol xinput
232
+ - !ruby/symbol xterm
233
+ - !ruby/symbol xvid
234
+ - !ruby/symbol xz
235
+ - !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 # This one no longer appears to work as of 2023.
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