rbt 0.16.12 → 0.16.14
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 rbt might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/doc/README.gen +1 -1
- data/lib/rbt/actions/actions.rb +18 -17
- data/lib/rbt/actions/individual_actions/create_app_dir_skeleton/create_app_dir_skeleton.rb +1 -1
- data/lib/rbt/actions/individual_actions/installer/aggregate.rb +28 -112
- data/lib/rbt/{utility_scripts → actions/individual_actions/show_manual_steps}/show_manual_steps.rb +12 -15
- data/lib/rbt/actions/individual_actions/software_manager/actions.rb +72 -0
- data/lib/rbt/actions/individual_actions/software_manager/extract_related_code.rb +26 -9
- data/lib/rbt/actions/individual_actions/software_manager/logic_related_code.rb +50 -73
- data/lib/rbt/actions/individual_actions/software_manager/menu.rb +154 -153
- data/lib/rbt/actions/individual_actions/software_manager/misc.rb +1390 -1865
- data/lib/rbt/actions/individual_actions/software_manager/query_related_methods.rb +121 -21
- data/lib/rbt/actions/individual_actions/software_manager/reset.rb +7 -7
- data/lib/rbt/actions/individual_actions/software_manager/setters.rb +433 -28
- data/lib/rbt/actions/individual_actions/software_manager/software_manager.rb +1 -0
- data/lib/rbt/shell/shell_script_containing_the_program_versions.sh +11420 -5
- data/lib/rbt/toplevel_methods/meson.rb +13 -11
- data/lib/rbt/version/version.rb +2 -2
- data/lib/rbt/yaml/cookbooks/exiv2.yml +1 -0
- data/lib/rbt/yaml/cookbooks/extracmakemodules.yml +1 -1
- data/lib/rbt/yaml/cookbooks/glibnetworking.yml +1 -0
- data/lib/rbt/yaml/cookbooks/kitinerary.yml +5 -0
- data/lib/rbt/yaml/cookbooks/libproxy.yml +1 -1
- data/lib/rbt/yaml/cookbooks/ncurses.yml +1 -2
- data/lib/rbt/yaml/cookbooks/wordpress.yml +4 -2
- data/lib/rbt/yaml/expanded_cookbooks/cbindgen.yml +16 -13
- data/lib/rbt/yaml/expanded_cookbooks/erlang.yml +1 -1
- data/lib/rbt/yaml/expanded_cookbooks/exiv2.yml +1 -1
- data/lib/rbt/yaml/expanded_cookbooks/extracmakemodules.yml +1 -1
- data/lib/rbt/yaml/expanded_cookbooks/gdkpixbuf.yml +2 -2
- data/lib/rbt/yaml/expanded_cookbooks/kitinerary.yml +3 -3
- data/lib/rbt/yaml/expanded_cookbooks/libmpeg3.yml +2 -1
- data/lib/rbt/yaml/expanded_cookbooks/libproxy.yml +1 -1
- data/lib/rbt/yaml/expanded_cookbooks/nuvie.yml +1 -1
- data/lib/rbt/yaml/expanded_cookbooks/qt.yml +5 -5
- data/lib/rbt/yaml/expanded_cookbooks/sendmail.yml +14 -7
- data/lib/rbt/yaml/expanded_cookbooks/sharutils.yml +1 -1
- data/lib/rbt/yaml/expanded_cookbooks/squashfstools.yml +3 -3
- data/lib/rbt/yaml/expanded_cookbooks/wordpress.yml +10 -10
- data/lib/rbt/yaml/programs_version/available_programs_versions.md +3 -3
- data/lib/rbt/yaml/programs_version/the_expanded_coobkook_dataset_was_last_updated_on_this_day.yml +1 -1
- metadata +5 -4
@@ -32,9 +32,9 @@ module RBT
|
|
32
32
|
is_padded = false
|
33
33
|
use_colours = false
|
34
34
|
meson_command = 'meson'.dup
|
35
|
-
#
|
35
|
+
# ======================================================================== #
|
36
36
|
# === Handle Hashes next
|
37
|
-
#
|
37
|
+
# ======================================================================== #
|
38
38
|
if use_this_prefix.is_a? Hash
|
39
39
|
_ = use_this_prefix
|
40
40
|
# ===================================================================== #
|
@@ -57,19 +57,21 @@ module RBT
|
|
57
57
|
use_this_prefix = _.delete(:prefix_to_use).to_s
|
58
58
|
end
|
59
59
|
end
|
60
|
-
#
|
60
|
+
# ======================================================================== #
|
61
61
|
# Always use the absolute path here:
|
62
|
-
#
|
63
|
-
|
64
|
-
use_this_build_directory
|
65
|
-
|
66
|
-
|
67
|
-
|
62
|
+
# ======================================================================== #
|
63
|
+
if use_this_build_directory
|
64
|
+
unless use_this_build_directory.empty?
|
65
|
+
use_this_build_directory = File.absolute_path(use_this_build_directory)
|
66
|
+
unless use_this_build_directory.end_with?('/')
|
67
|
+
use_this_build_directory = use_this_build_directory.dup
|
68
|
+
use_this_build_directory << '/'
|
69
|
+
end
|
68
70
|
end
|
69
71
|
end
|
70
|
-
#
|
72
|
+
# ======================================================================== #
|
71
73
|
# === Handle blocks next
|
72
|
-
#
|
74
|
+
# ======================================================================== #
|
73
75
|
if block_given?
|
74
76
|
yielded = yield
|
75
77
|
case yielded
|
data/lib/rbt/version/version.rb
CHANGED
@@ -13,7 +13,7 @@ module RBT
|
|
13
13
|
# just an alias to it - stick to using VERSION instead "officially"
|
14
14
|
# whenever possible.
|
15
15
|
# ========================================================================= #
|
16
|
-
VERSION = '0.16.
|
16
|
+
VERSION = '0.16.14'
|
17
17
|
RBT_VERSION_NUMBER = VERSION # === RBT_VERSION_NUMBER
|
18
18
|
PROGRAM_VERSION = VERSION # === PROGRAM_VERSION
|
19
19
|
|
@@ -23,7 +23,7 @@ module RBT
|
|
23
23
|
# This specifies when the RBT project was last updated. It should be
|
24
24
|
# updated whenever the VERSION constant changes.
|
25
25
|
# ========================================================================= #
|
26
|
-
LAST_UPDATE = '
|
26
|
+
LAST_UPDATE = '03.04.2024' # ← Keep this constant in DD.MM.YYYY notation.
|
27
27
|
|
28
28
|
# ========================================================================= #
|
29
29
|
# === URL_TO_THE_DOCUMENTATION
|
@@ -95,6 +95,7 @@ exiv2:
|
|
95
95
|
url1: https://github.com/Exiv2/exiv2/archive/v0.28.2/exiv2-0.28.2.tar.gz
|
96
96
|
url2: https://github.com/Exiv2/exiv2/releases/
|
97
97
|
homepage: https://exiv2.org/
|
98
|
+
git_url: https://github.com/Exiv2/exiv2
|
98
99
|
symlink_headers: yes
|
99
100
|
headers:
|
100
101
|
- exiv2/asfvideo.hpp
|
@@ -34,7 +34,7 @@ extracmakemodules:
|
|
34
34
|
use_build_directory: no
|
35
35
|
use_this_build_system: cmake
|
36
36
|
sed:
|
37
|
-
- sed -i '/"lib64"/s/64//' kde-modules/
|
37
|
+
- sed -i '/"lib64"/s/64//' kde-modules/KDEInstallDirsCommon.cmake &&
|
38
38
|
- sed -e '/PACKAGE_INIT/i set(SAVE_PACKAGE_PREFIX_DIR "${PACKAGE_PREFIX_DIR}")' -e '/^include/a set(PACKAGE_PREFIX_DIR "${SAVE_PACKAGE_PREFIX_DIR}")' -i ECMConfig.cmake.in
|
39
39
|
tags:
|
40
40
|
- kde
|
@@ -1,11 +1,15 @@
|
|
1
1
|
kitinerary:
|
2
2
|
configure_options: |
|
3
3
|
short_description: |
|
4
|
+
|
4
5
|
Data Model and Extraction System for Travel Reservation
|
5
6
|
information.
|
7
|
+
|
6
8
|
description: |
|
9
|
+
|
7
10
|
Data Model and Extraction System for Travel Reservation
|
8
11
|
information, on KDE.
|
12
|
+
|
9
13
|
extra_information: |
|
10
14
|
url1: https://download.kde.org/stable/release-service/23.08.5/src/kitinerary-23.08.5.tar.xz
|
11
15
|
url2: https://download.kde.org/stable/applications/
|
@@ -13,6 +17,7 @@ kitinerary:
|
|
13
17
|
prefix: f
|
14
18
|
keep_extracted: no
|
15
19
|
use_build_directory: yes
|
20
|
+
use_this_build_system: cmake
|
16
21
|
tags:
|
17
22
|
- kde
|
18
23
|
- kde5
|
@@ -56,8 +56,7 @@ ncurses:
|
|
56
56
|
lns $ULIB/libncursesw.so.5.7 $ULIB/libcurses.so
|
57
57
|
lns $ULIB/libncursesw.so.5.9 $ULIB/libncurses.so
|
58
58
|
|
59
|
-
libncursesw has wide character support, which means support
|
60
|
-
for UTF.
|
59
|
+
libncursesw has wide character support, which means support for UTF.
|
61
60
|
|
62
61
|
ncurses also provides libtinfo.so.5, and for this to be installed
|
63
62
|
you must pass in the configure option
|
@@ -1,7 +1,9 @@
|
|
1
1
|
wordpress:
|
2
2
|
description: |
|
3
|
+
|
3
4
|
Wordpress blog stuff.
|
4
|
-
|
5
|
+
|
6
|
+
url1: https://wordpress.org/wordpress-6.5.tar.gz
|
5
7
|
url2: https://wordpress.org/
|
6
8
|
homepage: http://wordpress.org/
|
7
9
|
keep_extracted: yes
|
@@ -9,4 +11,4 @@ wordpress:
|
|
9
11
|
- php
|
10
12
|
required_deps_on:
|
11
13
|
- php
|
12
|
-
last_update:
|
14
|
+
last_update: 03 April 2024
|
@@ -1,6 +1,6 @@
|
|
1
1
|
---
|
2
2
|
:apply_patch: false
|
3
|
-
:archive_size:
|
3
|
+
:archive_size: 170700
|
4
4
|
:archive_type: ".tar.xz"
|
5
5
|
:autosymlink_lib64:
|
6
6
|
:base_dir: "/home/x/src/cbindgen/"
|
@@ -25,10 +25,10 @@
|
|
25
25
|
:extract_to: ''
|
26
26
|
:flatpak_url: ''
|
27
27
|
:gir_files: []
|
28
|
-
:git_url: https://github.com/
|
28
|
+
:git_url: https://github.com/mozilla/cbindgen
|
29
29
|
:has_to_be_compiled: true
|
30
30
|
:headers: []
|
31
|
-
:homepage: https://github.com/
|
31
|
+
:homepage: https://github.com/mozilla/cbindgen
|
32
32
|
:ignore_errors: false
|
33
33
|
:installation_steps: []
|
34
34
|
:is_an_active_project: true
|
@@ -39,9 +39,12 @@
|
|
39
39
|
:licence: unknown
|
40
40
|
:localstatedir: false
|
41
41
|
:m4_files: []
|
42
|
-
:manual_steps:
|
42
|
+
:manual_steps: |2
|
43
|
+
|
44
|
+
cargo build --release
|
45
|
+
install -Dm755 target/release/cbindgen /usr/bin/
|
43
46
|
:may_we_modify_the_configure_options: true
|
44
|
-
:md5sum:
|
47
|
+
:md5sum: c8bb7bdc1bc1f19f3f557ebb5e59890f
|
45
48
|
:meson_configure_options:
|
46
49
|
:mirror: ''
|
47
50
|
:modify_the_makefile: false
|
@@ -53,14 +56,14 @@
|
|
53
56
|
:pre_configure_steps: []
|
54
57
|
:pre_make_commands: []
|
55
58
|
:pre_make_install_sed: []
|
56
|
-
:prefix: "/home/Programs/Cbindgen/0.
|
59
|
+
:prefix: "/home/Programs/Cbindgen/0.26.0/"
|
57
60
|
:preinstall: []
|
58
61
|
:program_compile_name: ''
|
59
|
-
:program_full_name: cbindgen-0.
|
62
|
+
:program_full_name: cbindgen-0.26.0.tar.xz
|
60
63
|
:program_name: cbindgen
|
61
|
-
:program_name_and_program_version: cbindgen-0.
|
62
|
-
:program_path: "/home/x/src/cbindgen/cbindgen-0.
|
63
|
-
:program_version: 0.
|
64
|
+
:program_name_and_program_version: cbindgen-0.26.0
|
65
|
+
:program_path: "/home/x/src/cbindgen/cbindgen-0.26.0.tar.xz"
|
66
|
+
:program_version: 0.26.0
|
64
67
|
:required_deps_on:
|
65
68
|
- rust
|
66
69
|
:run_configure: false
|
@@ -69,7 +72,7 @@
|
|
69
72
|
:run_make_check: false
|
70
73
|
:sed: false
|
71
74
|
:set_env_variables:
|
72
|
-
:sha256:
|
75
|
+
:sha256: 2d36a5a115400c131be49870cbe33bee99f901c6171610e30ddce567e6eb1b03
|
73
76
|
:short_description: Cbindgen can be used to generate C bindings for Rust code.
|
74
77
|
:short_name: cbindgen
|
75
78
|
:svn_url: ''
|
@@ -78,8 +81,8 @@
|
|
78
81
|
:symlink_pkgconfig_files: true
|
79
82
|
:tags:
|
80
83
|
- rust
|
81
|
-
:url1: https://github.com/
|
82
|
-
:url2: https://github.com/
|
84
|
+
:url1: https://github.com/mozilla/cbindgen/archive/refs/tags/0.26.0.tar.gz
|
85
|
+
:url2: https://github.com/mozilla/cbindgen
|
83
86
|
:use_autoconf: false
|
84
87
|
:use_autogen: false
|
85
88
|
:use_build_directory: true
|
@@ -84,7 +84,7 @@
|
|
84
84
|
:run_make_check: false
|
85
85
|
:sed: false
|
86
86
|
:set_env_variables:
|
87
|
-
ERL_TOP: "/home/Temp/erlang-
|
87
|
+
ERL_TOP: "/home/x/Temp/erlang-26.2.3/"
|
88
88
|
:sha256: dd9b8497a3594394f543878f07ffc6462e1e517d23a160b69d602c9c428ac9f7
|
89
89
|
:short_description:
|
90
90
|
:short_name: erlang
|
@@ -83,7 +83,7 @@
|
|
83
83
|
:run_make: true
|
84
84
|
:run_make_check: false
|
85
85
|
:sed:
|
86
|
-
- - sed -i '/"lib64"/s/64//' kde-modules/
|
86
|
+
- - sed -i '/"lib64"/s/64//' kde-modules/KDEInstallDirsCommon.cmake &&
|
87
87
|
- sed -e '/PACKAGE_INIT/i set(SAVE_PACKAGE_PREFIX_DIR "${PACKAGE_PREFIX_DIR}")'
|
88
88
|
-e '/^include/a set(PACKAGE_PREFIX_DIR "${SAVE_PACKAGE_PREFIX_DIR}")' -i ECMConfig.cmake.in
|
89
89
|
:set_env_variables:
|
@@ -19,10 +19,10 @@
|
|
19
19
|
:configure_options: "-Djasper=true"
|
20
20
|
:configure_options_explained: ''
|
21
21
|
:copy_source: false
|
22
|
-
:description:
|
22
|
+
:description: The Gdk Pixbuf package is a toolkit for image loading and pixel buffer
|
23
23
|
manipulation. It is used by GTK+ 2 and GTK+ 3 to load and manipulate images. In
|
24
24
|
the past it was distributed as part of GTK+ 2 but it was split off into a separate
|
25
|
-
package in preparation for the change to GTK+ 3.
|
25
|
+
package in preparation for the change to GTK+ 3.
|
26
26
|
:do_not_download: false
|
27
27
|
:do_not_symlink: false
|
28
28
|
:echo_yes: ''
|
@@ -14,8 +14,8 @@
|
|
14
14
|
:configure_options: ''
|
15
15
|
:configure_options_explained: ''
|
16
16
|
:copy_source: false
|
17
|
-
:description: Data Model and Extraction System for Travel Reservation information,
|
18
|
-
on KDE.
|
17
|
+
:description: " Data Model and Extraction System for Travel Reservation information,
|
18
|
+
on KDE."
|
19
19
|
:do_not_download: false
|
20
20
|
:do_not_symlink: false
|
21
21
|
:echo_yes: ''
|
@@ -87,7 +87,7 @@
|
|
87
87
|
:use_build_directory: true
|
88
88
|
:use_glib_schema: false
|
89
89
|
:use_this_build_directory:
|
90
|
-
:use_this_build_system:
|
90
|
+
:use_this_build_system: cmake
|
91
91
|
:use_this_make_command: make
|
92
92
|
:use_this_make_install_command:
|
93
93
|
:wikipedia:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
---
|
2
2
|
:apply_patch: false
|
3
|
-
:archive_size:
|
3
|
+
:archive_size: 0
|
4
4
|
:archive_type: ".tar.xz"
|
5
5
|
:autosymlink_lib64:
|
6
6
|
:base_dir: "/home/x/src/qt/"
|
@@ -122,7 +122,7 @@
|
|
122
122
|
:installation_steps: []
|
123
123
|
:is_an_active_project: true
|
124
124
|
:keep_extracted: true
|
125
|
-
:last_update:
|
125
|
+
:last_update: 02 April 2024
|
126
126
|
:libexec:
|
127
127
|
:libraries: []
|
128
128
|
:licence: unknown
|
@@ -130,7 +130,7 @@
|
|
130
130
|
:m4_files: []
|
131
131
|
:manual_steps:
|
132
132
|
:may_we_modify_the_configure_options: true
|
133
|
-
:md5sum:
|
133
|
+
:md5sum: b24893b1eaa54028b7c3210cbe819f86
|
134
134
|
:meson_configure_options:
|
135
135
|
:mirror: ''
|
136
136
|
:modify_the_makefile: false
|
@@ -221,7 +221,7 @@
|
|
221
221
|
:run_make_check: false
|
222
222
|
:sed: false
|
223
223
|
:set_env_variables:
|
224
|
-
:sha256:
|
224
|
+
:sha256: ''
|
225
225
|
:short_description: A multi-platform C++ graphical user interface toolkit.
|
226
226
|
:short_name: qt
|
227
227
|
:svn_url: ''
|
@@ -229,7 +229,7 @@
|
|
229
229
|
:symlink_headers: true
|
230
230
|
:symlink_pkgconfig_files: true
|
231
231
|
:tags: []
|
232
|
-
:url1: https://download.qt-project.org/official_releases/qt/6.
|
232
|
+
:url1: https://download.qt-project.org/official_releases/qt/6.7/6.7.0/single/qt-everywhere-6.7.0.tar.xz
|
233
233
|
:url2: https://download.qt.io/archive/qt/5.15/5.15.12/single/qt-everywhere-opensource-src-5.15.12.tar.xz
|
234
234
|
:url3: https://download.qt.io/official_releases/qt/?C=M;O=A
|
235
235
|
:use_autoconf: false
|
@@ -15,17 +15,24 @@
|
|
15
15
|
:configure_options: ''
|
16
16
|
:configure_options_explained: ''
|
17
17
|
:copy_source: false
|
18
|
-
:description: Send mail with this.
|
18
|
+
:description: " Send mail with this."
|
19
19
|
:do_not_download: false
|
20
20
|
:do_not_symlink: false
|
21
21
|
:echo_yes: ''
|
22
22
|
:enable_shared: false
|
23
23
|
:enable_static: false
|
24
|
-
:extra_information:
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
24
|
+
:extra_information: |2
|
25
|
+
|
26
|
+
Make sure that you have the resolv.h header before trying to compile
|
27
|
+
this software.
|
28
|
+
|
29
|
+
To install this, before compiling sendmail, do this here
|
30
|
+
|
31
|
+
groupadd -g 26 smmsp &&
|
32
|
+
useradd -c 'Sendmail Daemon' -g smmsp -d /dev/null \
|
33
|
+
-s /bin/false -u 26 smmsp &&
|
34
|
+
chmod -v 1777 /var/mail &&
|
35
|
+
install -v -m700 -d /var/spool/mqueue
|
29
36
|
:extract_to: ''
|
30
37
|
:flatpak_url: ''
|
31
38
|
:gir_files: []
|
@@ -89,7 +96,7 @@
|
|
89
96
|
:use_build_directory: false
|
90
97
|
:use_glib_schema: false
|
91
98
|
:use_this_build_directory:
|
92
|
-
:use_this_build_system:
|
99
|
+
:use_this_build_system: Makefile
|
93
100
|
:use_this_make_command: make
|
94
101
|
:use_this_make_install_command:
|
95
102
|
:wikipedia:
|
@@ -89,7 +89,7 @@
|
|
89
89
|
:symlink_pkgconfig_files: true
|
90
90
|
:tags: []
|
91
91
|
:url1: https://ftp.gnu.org/gnu/sharutils/sharutils-4.15.2.tar.xz
|
92
|
-
:url2:
|
92
|
+
:url2: https://ftp.gnu.org/gnu/sharutils/?C=M;O=D
|
93
93
|
:use_autoconf: false
|
94
94
|
:use_autogen: false
|
95
95
|
:use_build_directory: false
|
@@ -1,6 +1,6 @@
|
|
1
1
|
---
|
2
2
|
:apply_patch: false
|
3
|
-
:archive_size:
|
3
|
+
:archive_size: 204316
|
4
4
|
:archive_type: ".tar.xz"
|
5
5
|
:autosymlink_lib64:
|
6
6
|
:base_dir: "/home/x/src/squashfstools/"
|
@@ -44,7 +44,7 @@
|
|
44
44
|
:m4_files: []
|
45
45
|
:manual_steps:
|
46
46
|
:may_we_modify_the_configure_options: true
|
47
|
-
:md5sum:
|
47
|
+
:md5sum: 74a55ebd6d55bfd70e3ae9b495fd38e7
|
48
48
|
:meson_configure_options:
|
49
49
|
:mirror: ''
|
50
50
|
:modify_the_makefile: false
|
@@ -71,7 +71,7 @@
|
|
71
71
|
:run_make_check: false
|
72
72
|
:sed: false
|
73
73
|
:set_env_variables:
|
74
|
-
:sha256:
|
74
|
+
:sha256: b80cedb1439bf7adabab73dccf747471978c39ce1c583bc7db053e4e3f2626f2
|
75
75
|
:short_description: Tools to create and extract Squashfs filesystems.
|
76
76
|
:short_name: squashfstools
|
77
77
|
:svn_url: ''
|
@@ -1,6 +1,6 @@
|
|
1
1
|
---
|
2
2
|
:apply_patch: false
|
3
|
-
:archive_size:
|
3
|
+
:archive_size: 16918844
|
4
4
|
:archive_type: ".tar.xz"
|
5
5
|
:autosymlink_lib64:
|
6
6
|
:base_dir: "/home/x/src/wordpress/"
|
@@ -14,7 +14,7 @@
|
|
14
14
|
:configure_options: ''
|
15
15
|
:configure_options_explained: ''
|
16
16
|
:copy_source: false
|
17
|
-
:description: Wordpress blog stuff.
|
17
|
+
:description: " Wordpress blog stuff."
|
18
18
|
:do_not_download: false
|
19
19
|
:do_not_symlink: false
|
20
20
|
:echo_yes: ''
|
@@ -31,7 +31,7 @@
|
|
31
31
|
:installation_steps: []
|
32
32
|
:is_an_active_project: true
|
33
33
|
:keep_extracted: true
|
34
|
-
:last_update:
|
34
|
+
:last_update: 03 April 2024
|
35
35
|
:libexec:
|
36
36
|
:libraries: []
|
37
37
|
:licence: unknown
|
@@ -39,7 +39,7 @@
|
|
39
39
|
:m4_files: []
|
40
40
|
:manual_steps:
|
41
41
|
:may_we_modify_the_configure_options: true
|
42
|
-
:md5sum:
|
42
|
+
:md5sum: a656678dfede8db12fffc9facde22c93
|
43
43
|
:meson_configure_options:
|
44
44
|
:mirror: ''
|
45
45
|
:modify_the_makefile: false
|
@@ -54,11 +54,11 @@
|
|
54
54
|
:prefix: "/usr/"
|
55
55
|
:preinstall: []
|
56
56
|
:program_compile_name: ''
|
57
|
-
:program_full_name: wordpress-5.
|
57
|
+
:program_full_name: wordpress-6.5.tar.xz
|
58
58
|
:program_name: wordpress
|
59
|
-
:program_name_and_program_version: wordpress-5
|
60
|
-
:program_path: "/home/x/src/wordpress/wordpress-5.
|
61
|
-
:program_version: 5
|
59
|
+
:program_name_and_program_version: wordpress-6.5
|
60
|
+
:program_path: "/home/x/src/wordpress/wordpress-6.5.tar.xz"
|
61
|
+
:program_version: '6.5'
|
62
62
|
:required_deps_on:
|
63
63
|
- php
|
64
64
|
:run_configure: true
|
@@ -67,7 +67,7 @@
|
|
67
67
|
:run_make_check: false
|
68
68
|
:sed: false
|
69
69
|
:set_env_variables:
|
70
|
-
:sha256:
|
70
|
+
:sha256: 9feb5dc8ed6bc1997c3d765f1273823f771f9eaa2534dc43fc1fd53a659f2297
|
71
71
|
:short_description:
|
72
72
|
:short_name: wordpress
|
73
73
|
:svn_url: ''
|
@@ -76,7 +76,7 @@
|
|
76
76
|
:symlink_pkgconfig_files: true
|
77
77
|
:tags:
|
78
78
|
- php
|
79
|
-
:url1: https://wordpress.org/wordpress-5.
|
79
|
+
:url1: https://wordpress.org/wordpress-6.5.tar.gz
|
80
80
|
:url2: https://wordpress.org/
|
81
81
|
:use_autoconf: false
|
82
82
|
:use_autogen: false
|
@@ -296,7 +296,7 @@ caribou 0.4.20 16 February 2016 http://ftp.gnome.org/pub
|
|
296
296
|
castlecombat 0.8.1 28 July 2016 http://prdownloads.sourceforge.net/castle-combat/castle-combat-0.8.1.tar.gz
|
297
297
|
caxlsx 3.2.0 27 May 2022 https://rubygems.org/downloads/caxlsx-3.2.0.gem
|
298
298
|
cbase 1.3.7 28 September 2019 http://www.hyperrealm.com/packages/cbase-1.3.7.tar.gz
|
299
|
-
cbindgen 0.
|
299
|
+
cbindgen 0.26.0 11 September 2022 https://github.com/mozilla/cbindgen/archive/refs/tags/0.26.0.tar.gz
|
300
300
|
ccache 4.8.2 14 June 2023 https://github.com/ccache/ccache/releases/download/v4.8.2/ccache-4.8.2.tar.gz
|
301
301
|
ccaudio2 2.2.0 19 March 2019 http://ftp.gnu.org/pub/gnu/ccaudio/ccaudio2-2.2.0.tar.gz
|
302
302
|
ccmath 2.2.1 01 June 2014 http://www.ibiblio.org/pub/Linux/libs/ccmath-2.2.1.tar.gz
|
@@ -2852,7 +2852,7 @@ qqc2desktopstyle 5.115.0 20 February 2024 https://download.kde.org
|
|
2852
2852
|
qqwing 1.3.4 09 August 2015 https://github.com/stephenostermiller/qqwing/archive/v1.3.4.zip
|
2853
2853
|
qrencode 4.1.1 22 December 2021 https://fukuchi.org/works/qrencode/qrencode-4.1.1.tar.bz2
|
2854
2854
|
qsynth 0.5.5 16 March 2019 https://downloads.sourceforge.net/qsynth/qsynth-0.5.5.tar.gz
|
2855
|
-
qt 6.6.3
|
2855
|
+
qt 6.6.3 02 April 2024 https://download.qt-project.org/official_releases/qt/6.7/6.7.0/single/qt-everywhere-6.7.0.tar.xz
|
2856
2856
|
qterminal 1.1.0 30 August 2022 https://github.com/lxqt/qterminal/releases/download/1.1.0/qterminal-1.1.0.tar.xz
|
2857
2857
|
qtermwidget 1.4.0 02 February 2024 https://github.com/lxqt/qtermwidget/releases/download/1.4.0/qtermwidget-1.4.0.tar.xz
|
2858
2858
|
qtgstreamer 1.2.0 10 July 2015 http://gstreamer.freedesktop.org/src/qt-gstreamer/qt-gstreamer-1.2.0.tar.xz
|
@@ -3489,7 +3489,7 @@ wlassistant 0.5.7 01 May 2014 http://wlassistant.sourcefor
|
|
3489
3489
|
wmctrl 1.07 01 May 2014 http://www.sweb.cz/tripie/utils/wmctrl/dist/wmctrl-1.07.tar.gz
|
3490
3490
|
wmii 3 01 May 2014 http://www.suckless.org/snaps/wmii-20071003.tgz
|
3491
3491
|
woff2 1.0.2 22 December 2021 https://github.com/google/woff2/archive/v1.0.2/woff2-1.0.2.tar.gz
|
3492
|
-
wordpress 5
|
3492
|
+
wordpress 6.5 03 April 2024 https://wordpress.org/wordpress-6.5.tar.gz
|
3493
3493
|
worker 4.7.0 10 March 2021 http://www.boomerangsworld.de/cms/worker/downloads/worker-4.7.0.tar.bz2
|
3494
3494
|
wpasupplicant 2.10 11 October 2022 https://w1.fi/releases/wpa_supplicant-2.10.tar.gz
|
3495
3495
|
wpebackendfdo 1.14.2 03 April 2023 https://wpewebkit.org/releases/wpebackend-fdo-1.14.2.tar.xz
|
data/lib/rbt/yaml/programs_version/the_expanded_coobkook_dataset_was_last_updated_on_this_day.yml
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
03.04.2024
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rbt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.16.
|
4
|
+
version: 0.16.14
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Robert A. Heiler
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-04-
|
11
|
+
date: 2024-04-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ascii_paradise
|
@@ -406,7 +406,9 @@ files:
|
|
406
406
|
- lib/rbt/actions/individual_actions/remove_outdated_archives/remove_outdated_archives.rb
|
407
407
|
- lib/rbt/actions/individual_actions/sed_wrapper/sed_wrapper.rb
|
408
408
|
- lib/rbt/actions/individual_actions/show_compile_chain/show_compile_chain.rb
|
409
|
+
- lib/rbt/actions/individual_actions/show_manual_steps/show_manual_steps.rb
|
409
410
|
- lib/rbt/actions/individual_actions/simple_appdir_configure/simple_appdir_configure.rb
|
411
|
+
- lib/rbt/actions/individual_actions/software_manager/actions.rb
|
410
412
|
- lib/rbt/actions/individual_actions/software_manager/deprecated.rb
|
411
413
|
- lib/rbt/actions/individual_actions/software_manager/extract_related_code.rb
|
412
414
|
- lib/rbt/actions/individual_actions/software_manager/initialize.rb
|
@@ -830,7 +832,6 @@ files:
|
|
830
832
|
- lib/rbt/utility_scripts/show_dependencies_of.rb
|
831
833
|
- lib/rbt/utility_scripts/show_dependencies_of_this_library.rb
|
832
834
|
- lib/rbt/utility_scripts/show_description_and_extra_information.rb
|
833
|
-
- lib/rbt/utility_scripts/show_manual_steps.rb
|
834
835
|
- lib/rbt/utility_scripts/show_overview_over_available_utility_scripts.rb
|
835
836
|
- lib/rbt/utility_scripts/simple_version_comparer.rb
|
836
837
|
- lib/rbt/utility_scripts/simplified_ldd_output.rb
|
@@ -8662,7 +8663,7 @@ post_install_message: "\n With the RBT scripts, you should be able to install o
|
|
8662
8663
|
see:\n\n scookie --help\n\n If you wish to search for common tags, such as
|
8663
8664
|
tag \"ruby\" or tag\n \"php\", then try this:\n\n search_for_tags ruby\n search_for_tags
|
8664
8665
|
php\n\n This can be found in the subdirectory bin/search_for_tags of\n this gem.\n\n
|
8665
|
-
\ For more documentation, the official documentation, have a look at:\n\n https://www.rubydoc.info/gems/rbt/0.16.
|
8666
|
+
\ For more documentation, the official documentation, have a look at:\n\n https://www.rubydoc.info/gems/rbt/0.16.14\n\n
|
8666
8667
|
\ If you encounter any bug or oddities, feel free to drop an email\n to:\n\n shevy@inbox.lt\n\n
|
8667
8668
|
\ (I do not check for mails daily, though, so this may take a \n while to process
|
8668
8669
|
- apologies for that.)\n\n Thank you and have fun!\n\n"
|