rbt 0.16.13 → 0.16.14

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


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

Files changed (32) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -2
  3. data/doc/README.gen +1 -1
  4. data/lib/rbt/actions/individual_actions/create_app_dir_skeleton/create_app_dir_skeleton.rb +1 -1
  5. data/lib/rbt/actions/individual_actions/installer/aggregate.rb +3 -86
  6. data/lib/rbt/actions/individual_actions/software_manager/extract_related_code.rb +26 -9
  7. data/lib/rbt/actions/individual_actions/software_manager/logic_related_code.rb +50 -73
  8. data/lib/rbt/actions/individual_actions/software_manager/menu.rb +94 -94
  9. data/lib/rbt/actions/individual_actions/software_manager/misc.rb +1389 -1445
  10. data/lib/rbt/actions/individual_actions/software_manager/query_related_methods.rb +77 -14
  11. data/lib/rbt/actions/individual_actions/software_manager/reset.rb +7 -7
  12. data/lib/rbt/actions/individual_actions/software_manager/setters.rb +101 -28
  13. data/lib/rbt/version/version.rb +1 -1
  14. data/lib/rbt/yaml/cookbooks/exiv2.yml +1 -0
  15. data/lib/rbt/yaml/cookbooks/glibnetworking.yml +1 -0
  16. data/lib/rbt/yaml/cookbooks/kitinerary.yml +5 -0
  17. data/lib/rbt/yaml/cookbooks/ncurses.yml +1 -2
  18. data/lib/rbt/yaml/cookbooks/wordpress.yml +4 -2
  19. data/lib/rbt/yaml/expanded_cookbooks/cbindgen.yml +16 -13
  20. data/lib/rbt/yaml/expanded_cookbooks/erlang.yml +1 -1
  21. data/lib/rbt/yaml/expanded_cookbooks/exiv2.yml +1 -1
  22. data/lib/rbt/yaml/expanded_cookbooks/gdkpixbuf.yml +2 -2
  23. data/lib/rbt/yaml/expanded_cookbooks/kitinerary.yml +3 -3
  24. data/lib/rbt/yaml/expanded_cookbooks/libmpeg3.yml +2 -1
  25. data/lib/rbt/yaml/expanded_cookbooks/nuvie.yml +1 -1
  26. data/lib/rbt/yaml/expanded_cookbooks/qt.yml +5 -5
  27. data/lib/rbt/yaml/expanded_cookbooks/sendmail.yml +14 -7
  28. data/lib/rbt/yaml/expanded_cookbooks/sharutils.yml +1 -1
  29. data/lib/rbt/yaml/expanded_cookbooks/squashfstools.yml +3 -3
  30. data/lib/rbt/yaml/expanded_cookbooks/wordpress.yml +10 -10
  31. data/lib/rbt/yaml/programs_version/available_programs_versions.md +3 -3
  32. metadata +2 -2
@@ -12,6 +12,83 @@ class Action
12
12
 
13
13
  class SoftwareManager < RBT::Action # === RBT::Action::SoftwareManager
14
14
 
15
+ # ========================================================================== #
16
+ # === will_the_extracted_source_archive_be_removed?
17
+ #
18
+ # A boolean value will be returned by this method. This boolean value
19
+ # determines whether the archive will be kept after it was extracted,
20
+ # or whether it will be removed again after it was extracted.
21
+ # ========================================================================== #
22
+ def will_the_extracted_source_archive_be_removed?
23
+ result = !cookbook_dataset_keep_extracted? # ← The default.
24
+ # ======================================================================== #
25
+ # Next check whether the user overrided this behaviour or not, via
26
+ # the appropriate commandline-flag:
27
+ # ======================================================================== #
28
+ user_variable = retain_the_extracted_source_archive?
29
+ if user_variable.nil? # Do nothing in this case.
30
+ else
31
+ result = !user_variable
32
+ end
33
+ return result
34
+ end; alias keep_the_extracted_archive? will_the_extracted_source_archive_be_removed? # === keep_the_extracted_archive?
35
+ alias keep_extracted_archive? will_the_extracted_source_archive_be_removed? # === keep_extracted_archive?
36
+
37
+ # ========================================================================== #
38
+ # === retain_the_extracted_source_archive?
39
+ #
40
+ # This is a query method towards the variable kept in the
41
+ # @instance_hash variable.
42
+ #
43
+ # It may only query, and never modify anything.
44
+ # ========================================================================== #
45
+ def retain_the_extracted_source_archive?
46
+ @internal_hash[:retain_the_extracted_source_archive]
47
+ end; alias keep_extracted? retain_the_extracted_source_archive? # === keep_extracted?
48
+
49
+ # ========================================================================== #
50
+ # === cookbook_dataset_keep_extracted?
51
+ #
52
+ # This method simply wraps over the cookbook_dataset keep_extracted value.
53
+ # ========================================================================== #
54
+ def cookbook_dataset_keep_extracted?
55
+ cookbook_dataset?.keep_extracted?
56
+ end; alias dataset_keep_extracted? cookbook_dataset_keep_extracted? # === dataset_keep_extracted?
57
+
58
+ # ========================================================================== #
59
+ # === will_be_extracted_towards?
60
+ #
61
+ # This method will tell us the full path of the extracted directory for
62
+ # the program at hand.
63
+ #
64
+ # A trailing '/' is required for the result of this method.
65
+ #
66
+ # Returns: a String.
67
+ # ========================================================================== #
68
+ def will_be_extracted_towards?
69
+ "#{rbt_log_directory?}#{program_name_and_program_version?}/"
70
+ end; alias extracted_source_archive_directory? will_be_extracted_towards? # === extracted_source_archive_directory?
71
+
72
+ # ========================================================================== #
73
+ # === cookbook_dataset_use_this_build_system?
74
+ #
75
+ # Query which build-system is to be used. This will determine how we
76
+ # will install a given program at hand.
77
+ # ========================================================================== #
78
+ def cookbook_dataset_use_this_build_system?
79
+ cookbook_dataset?.use_which_build_system?
80
+ end; alias use_this_build_system? cookbook_dataset_use_this_build_system? # === use_this_build_system?
81
+ alias build_system_in_use? cookbook_dataset_use_this_build_system? # === build_system_in_use?
82
+ alias cookbookset_dataset_use_which_build_system? cookbook_dataset_use_this_build_system? # === cookbookset_dataset_use_which_build_system?
83
+ alias cookbook_build_system? cookbook_dataset_use_this_build_system? # === cookbook_build_system?
84
+
85
+ # ========================================================================== #
86
+ # === can_be_compiled_statically?
87
+ # ========================================================================== #
88
+ def can_be_compiled_statically?
89
+ cookbooks_dataset?.send(__method__)
90
+ end
91
+
15
92
  # ========================================================================= #
16
93
  # === is_this_a_registered_binary?
17
94
  # ========================================================================= #
@@ -900,20 +977,6 @@ class SoftwareManager < RBT::Action # === RBT::Action::SoftwareManager
900
977
  action(:chained_programs) # Load the chained actions, then return it.
901
978
  end
902
979
 
903
- # ========================================================================== #
904
- # === will_be_extracted_towards?
905
- #
906
- # This method will tell us the full path of the extracted directory for
907
- # the program at hand.
908
- #
909
- # A trailing '/' is required for the result of this method.
910
- #
911
- # Returns: a String.
912
- # ========================================================================== #
913
- def will_be_extracted_towards?
914
- "#{log_directory?}#{program_name_and_program_version?}/"
915
- end
916
-
917
980
  # ========================================================================== #
918
981
  # === cookbook_aliases?
919
982
  # ========================================================================== #
@@ -280,6 +280,13 @@ class SoftwareManager < RBT::Action # === RBT::Action::SoftwareManager
280
280
  # ======================================================================= #
281
281
  @internal_hash[:cookbook_dataset] = nil
282
282
  # ======================================================================= #
283
+ # === :retain_the_extracted_source_archive
284
+ #
285
+ # This variable will retain the extracted source archive, aka
286
+ # "keep the extracted archive", rather than to remove it.
287
+ # ======================================================================= #
288
+ @internal_hash[:retain_the_extracted_source_archive] = nil
289
+ # ======================================================================= #
283
290
  # === :user_prefix
284
291
  #
285
292
  # This prefix can be determined by the user.
@@ -565,13 +572,6 @@ class SoftwareManager < RBT::Action # === RBT::Action::SoftwareManager
565
572
  # ======================================================================= #
566
573
  @internal_hash[:keep_la_files] = nil
567
574
  # ======================================================================= #
568
- # === :keep_the_archive_extracted
569
- #
570
- # The keep-extracted setting will lateron be sanitized. The default
571
- # value will be nil.
572
- # ======================================================================= #
573
- @internal_hash[:keep_the_archive_extracted] = nil
574
- # ======================================================================= #
575
575
  # === :may_we_download
576
576
  # ======================================================================= #
577
577
  @internal_hash[:may_we_download] = RBT::TRY_TO_DOWNLOAD_IF_NOT_FOUND
@@ -12,6 +12,86 @@ class Action
12
12
 
13
13
  class SoftwareManager < RBT::Action # === RBT::Action::SoftwareManager
14
14
 
15
+ # ========================================================================= #
16
+ # === set_retain_the_extracted_source_archive
17
+ # ========================================================================= #
18
+ def set_retain_the_extracted_source_archive(
19
+ i = true
20
+ )
21
+ @internal_hash[:retain_the_extracted_source_archive] = true
22
+ end; alias set_keep_the_extracted_archive set_retain_the_extracted_source_archive # === set_keep_the_extracted_archive
23
+
24
+ # ========================================================================= #
25
+ # === do_retain_the_extracted_source_archive
26
+ #
27
+ # This delegates towards the method called
28
+ # .set_retain_the_extracted_source_archive().
29
+ #
30
+ # It may also optionally report to the user as to what is being done.
31
+ # ========================================================================= #
32
+ def do_retain_the_extracted_source_archive(
33
+ be_verbose = be_verbose?
34
+ )
35
+ case be_verbose
36
+ # ======================================================================= #
37
+ # === :be_silent
38
+ # ======================================================================= #
39
+ when :be_silent,
40
+ :be_quiet
41
+ be_verbose = false
42
+ end
43
+ if be_verbose
44
+ orev 'The extracted directory will not be removed after'
45
+ orev 'compilation / installation has finished.'
46
+ end
47
+ set_retain_the_extracted_source_archive(true)
48
+ end; alias do_set_keep_extracted do_retain_the_extracted_source_archive # === do_set_keep_extracted
49
+ alias do_set_keep_extracted_archive do_retain_the_extracted_source_archive # === do_set_keep_extracted_archive
50
+
51
+ # ========================================================================= #
52
+ # === set_dont_keep_archive
53
+ #
54
+ # Use this method when you don't want to keep the extracted archive.
55
+ # ========================================================================= #
56
+ def set_dont_keep_archive(
57
+ be_verbose = true
58
+ )
59
+ if be_verbose
60
+ orev 'We will not keep our extracted archive.'
61
+ end
62
+ @internal_hash[:keep_the_extracted_archive] = false
63
+ end
64
+
65
+ # ========================================================================= #
66
+ # === set_keep_the_extracted_archive
67
+ #
68
+ # This method will keep the source-archive extracted. Note that this
69
+ # is not the default - by default we will remove the extracted
70
+ # archive.
71
+ # ========================================================================= #
72
+ def set_keep_the_extracted_archive(
73
+ i = true
74
+ )
75
+ @internal_hash[:keep_the_extracted_archive] = i
76
+ end; alias set_keep_extracted_archive set_keep_the_extracted_archive # === set_keep_extracted_archive
77
+ alias set_keep_extracted set_keep_the_extracted_archive # === set_keep_extracted
78
+ alias do_not_remove_the_extracted_archive set_keep_the_extracted_archive # === do_not_remove_the_extracted_archive
79
+ alias do_not_remove_extracted_archive set_keep_the_extracted_archive # === do_not_remove_extracted_archive
80
+
81
+ # ========================================================================== #
82
+ # === set_short_name
83
+ # ========================================================================== #
84
+ def set_short_name(i)
85
+ cookbook_dataset?.set_short_name(i)
86
+ end; alias set_real_short_name set_short_name # === set_real_short_name
87
+
88
+ # =========================================================================== #
89
+ # === set_internal_pid
90
+ # =========================================================================== #
91
+ def set_internal_pid(i = nil)
92
+ @internal_hash[:pid] = i
93
+ end; alias set_pid set_internal_pid # === set_pid
94
+
15
95
  # ========================================================================= #
16
96
  # === set_these_env_variables
17
97
  #
@@ -292,6 +372,27 @@ class SoftwareManager < RBT::Action # === RBT::Action::SoftwareManager
292
372
  alias set_prefix set_user_prefix # === set_prefix
293
373
  alias set_prefix_to_use set_user_prefix # === set_prefix_to_use
294
374
 
375
+ # ========================================================================== #
376
+ # === cookbook_dataset_set_program_version
377
+ # ========================================================================== #
378
+ def cookbook_dataset_set_program_version(i)
379
+ cookbook_dataset?.set_program_version(i)
380
+ end
381
+
382
+ # ========================================================================== #
383
+ # === set_description
384
+ # ========================================================================== #
385
+ def set_description(i)
386
+ cookbook_dataset?.set_description(i)
387
+ end; alias set_desc set_description # === set_desc
388
+
389
+ # ========================================================================== ##
390
+ # === set_is_an_abbreviation
391
+ # ========================================================================== #
392
+ def set_is_an_abbreviation(i = true)
393
+ @internal_hash[:is_an_abbreviation] = i
394
+ end
395
+
295
396
  # ========================================================================= #
296
397
  # === set_cflags (cflags tag)
297
398
  #
@@ -437,20 +538,6 @@ class SoftwareManager < RBT::Action # === RBT::Action::SoftwareManager
437
538
  @internal_hash[:extract_to_this_directory_as_specified_by_the_user] = i
438
539
  end
439
540
 
440
- # ========================================================================= #
441
- # === set_keep_the_extracted_archive
442
- #
443
- # This method will keep the source-archive extracted. Note that this
444
- # is not the default - by default we will remove the extracted
445
- # archive.
446
- # ========================================================================= #
447
- def set_keep_the_extracted_archive(i = true)
448
- @internal_hash[:keep_the_extracted_archive] = i
449
- end; alias set_keep_extracted_archive set_keep_the_extracted_archive # === set_keep_extracted_archive
450
- alias set_keep_extracted set_keep_the_extracted_archive # === set_keep_extracted
451
- alias do_not_remove_the_extracted_archive set_keep_the_extracted_archive # === do_not_remove_the_extracted_archive
452
- alias do_not_remove_extracted_archive set_keep_the_extracted_archive # === do_not_remove_extracted_archive
453
-
454
541
  # ========================================================================= #
455
542
  # === set_program_name_and_program_version
456
543
  #
@@ -890,20 +977,6 @@ class SoftwareManager < RBT::Action # === RBT::Action::SoftwareManager
890
977
  @internal_hash[:do_not_symlink] = true
891
978
  end; alias do_not_symlink set_do_not_symlink # === do_not_symlink
892
979
 
893
- # ========================================================================= #
894
- # === set_dont_keep_archive
895
- #
896
- # Use this method when you don't want to keep the extracted archive.
897
- # ========================================================================= #
898
- def set_dont_keep_archive(
899
- be_verbose = true
900
- )
901
- if be_verbose
902
- orev 'We will not keep our extracted archive.'
903
- end
904
- @internal_hash[:keep_the_extracted_archive] = false
905
- end
906
-
907
980
  # ========================================================================= #
908
981
  # === set_use_these_configure_options
909
982
  # ========================================================================= #
@@ -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.13'
16
+ VERSION = '0.16.14'
17
17
  RBT_VERSION_NUMBER = VERSION # === RBT_VERSION_NUMBER
18
18
  PROGRAM_VERSION = VERSION # === PROGRAM_VERSION
19
19
 
@@ -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
@@ -3,6 +3,7 @@ glibnetworking:
3
3
  - https://www.linuxfromscratch.org/blfs/view/cvs/basicnet/glib-networking.html
4
4
  meson_configure_options: |
5
5
 
6
+ --buildtype=release
6
7
  -Dlibproxy=disabled
7
8
 
8
9
  description: |
@@ -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
- url1: https://wordpress.org/wordpress-5.9.1.tar.gz
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: 23 February 2022
14
+ last_update: 03 April 2024
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  :apply_patch: false
3
- :archive_size: 162428
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/eqrion/cbindgen/
28
+ :git_url: https://github.com/mozilla/cbindgen
29
29
  :has_to_be_compiled: true
30
30
  :headers: []
31
- :homepage: https://github.com/eqrion/cbindgen/
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: 7deb78546cb67cf9b9dfe8d0096007e7
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.24.3/"
59
+ :prefix: "/home/Programs/Cbindgen/0.26.0/"
57
60
  :preinstall: []
58
61
  :program_compile_name: ''
59
- :program_full_name: cbindgen-0.24.3.tar.xz
62
+ :program_full_name: cbindgen-0.26.0.tar.xz
60
63
  :program_name: cbindgen
61
- :program_name_and_program_version: cbindgen-0.24.3
62
- :program_path: "/home/x/src/cbindgen/cbindgen-0.24.3.tar.xz"
63
- :program_version: 0.24.3
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: 06c3d9e880502387072e013b0fbd9f5c5e90bb217a360483614c847c1172ce2e
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/eqrion/cbindgen/archive/v0.24.3/cbindgen-0.24.3.tar.gz
82
- :url2: https://github.com/eqrion/cbindgen/
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-23.3/"
87
+ ERL_TOP: "/home/x/Temp/erlang-26.2.3/"
88
88
  :sha256: dd9b8497a3594394f543878f07ffc6462e1e517d23a160b69d602c9c428ac9f7
89
89
  :short_description:
90
90
  :short_name: erlang
@@ -87,7 +87,7 @@
87
87
  :extract_to: ''
88
88
  :flatpak_url: ''
89
89
  :gir_files: []
90
- :git_url:
90
+ :git_url: https://github.com/Exiv2/exiv2
91
91
  :has_to_be_compiled: true
92
92
  :headers:
93
93
  - exiv2/asfvideo.hpp
@@ -19,10 +19,10 @@
19
19
  :configure_options: "-Djasper=true"
20
20
  :configure_options_explained: ''
21
21
  :copy_source: false
22
- :description: 'The Gdk Pixbuf package is a toolkit for image loading and pixel buffer
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: :infer_automatically
90
+ :use_this_build_system: cmake
91
91
  :use_this_make_command: make
92
92
  :use_this_make_install_command:
93
93
  :wikipedia:
@@ -5,7 +5,8 @@
5
5
  :autosymlink_lib64:
6
6
  :base_dir: "/home/x/src/libmpeg3/"
7
7
  :binaries: []
8
- :blfs: []
8
+ :blfs:
9
+ - https://www.linuxfromscratch.org/blfs/view/6.0/multimedia/libmpeg3.html
9
10
  :build_static: false
10
11
  :can_be_compiled_statically:
11
12
  :cmake_configure_options:
@@ -24,7 +24,7 @@
24
24
  :extract_to: ''
25
25
  :flatpak_url: ''
26
26
  :gir_files: []
27
- :git_url:
27
+ :git_url: https://github.com/nuvie/nuvie
28
28
  :has_to_be_compiled: true
29
29
  :headers: []
30
30
  :homepage: https://github.com/nuvie/nuvie
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  :apply_patch: false
3
- :archive_size: 812466484
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: 25 March 2024
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: 1c895101681687404e74f84b95634f7f
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: eec31ee0d1619645960c1ccbb2b3c2307a397acd082ba7ea88e7e9d9a7916631
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.5/6.5.0/single/qt-everywhere-6.5.0.tar.xz
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: "Make sure that you have the resolv.h header before trying to
25
- compile\nthis software.\n \nTo install this, before compiling sendmail, do this
26
- here\n\n groupadd -g 26 smmsp &&\n useradd -c 'Sendmail
27
- Daemon' -g smmsp -d /dev/null \\\n -s /bin/false -u 26 smmsp &&\n
28
- \ chmod -v 1777 /var/mail &&\n install -v -m700 -d /var/spool/mqueue\n"
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: :infer_automatically
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: http://ftp.gnu.org/gnu/sharutils/?C=M;O=D
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: 0
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: 0054f341036852bda2183227ba1134f8
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: ''