rbt 0.10.140 → 0.10.141

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.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1fd404410dcdffcc375bae5442efde3a807f3306f9edf02bc2f3ba071dd7818c
4
- data.tar.gz: 30b0cc9994b44a4be52f0674fa8e965c144013235b2db02f779ba51f5e618c73
3
+ metadata.gz: b7e2b27746ffb40c1d7d27a48f0bd97df90eec495cdd269b0a70840063a5cb3d
4
+ data.tar.gz: 49cb28ca464ef153f419b37b2137a083b854d42b9c78907c82745a9dabb19ddf
5
5
  SHA512:
6
- metadata.gz: 9433cb949f31dcf32df3721a489004da36b616f47f33b0a693dcd017377104c7ad2e972ff3310ea26d8334012477847634a55607c0d76741fb1c1c9677e56c64
7
- data.tar.gz: 6dc9ab5143d2f5fe5181187ac51216f14db20cc5b71e5f4e6f0011112e003c450bf899c1386528ed322f330ee4aaedc1df9137fe7902522d5276882d99c5efd0
6
+ metadata.gz: 7babec01aeddaeb37d7a0ceebeb8ffbb66659c2dcb058725d4527355675a3e53e1b545e8e96f56dad080349372e072ed3fc0f17218a8474ec9e6823789d90c61
7
+ data.tar.gz: d29d9646b07234b719369b5acd3cdb4e58a3a949c1f7418fc2615f63e1e22df5c4a6d2f5ff6ab43214b0bda842f12be18a8c43b449b6a3e68307d8c44b008aff
data/README.md CHANGED
@@ -7822,6 +7822,9 @@ For more documentation, have a look at
7822
7822
  The following programs were updated with this release,
7823
7823
  compared to the previous release:
7824
7824
 
7825
+ nautilus was updated to program version 40.1 (on: 30.04.2021-16:49:36)<br>
7826
+ gnomeautoar was updated to program version 0.3.1 (on: 30.04.2021-16:50:37)<br>
7827
+
7825
7828
 
7826
7829
  ## Available program versions
7827
7830
 
@@ -44,6 +44,22 @@ class Compile < ::RBT::CompileBase # === RBT::Compile
44
44
  end
45
45
  else
46
46
  case i # case tag, cas tag
47
+ #--gtk-statistics
48
+ # ===================================================================== #
49
+ # === Start the ruby-gtk3 compile widget
50
+ #
51
+ # This entry-point can be used to start the ruby-gtk3 compile widget.
52
+ #
53
+ # Invocation examples:
54
+ #
55
+ # rbt --GUI
56
+ # rbt --gtk-compile-program
57
+ #
58
+ # ===================================================================== #
59
+ when /^-?-?GUI$/i,
60
+ /^-?-?gtk(-|_| )?compile(-|_| )?program/
61
+ require 'rbt/gui/gtk3/compile_program/compile_program.rb'
62
+ ::RBT::GUI::Gtk::CompileProgram.run
47
63
  # ===================================================================== #
48
64
  # === rbt --return_n_programs_available
49
65
  #
@@ -170,19 +186,6 @@ class Compile < ::RBT::CompileBase # === RBT::Compile
170
186
  /^-?-?buildtype=plain$/
171
187
  do_not_use_any_compile_time_flags
172
188
  # ===================================================================== #
173
- # === Start the ruby-gtk3 compile widget
174
- #
175
- # This entry-point can be used to start the ruby-gtk3 compile widget.
176
- #
177
- # Invocation example:
178
- #
179
- # rbt --GUI
180
- #
181
- # ===================================================================== #
182
- when /^-?-?GUI$/i
183
- require 'rbt/gui/gtk3/compile_program/compile_program.rb'
184
- ::RBT::GUI::Gtk::CompileProgram.run
185
- # ===================================================================== #
186
189
  # === Query whether we will use autogen
187
190
  #
188
191
  # Use this entry point if you wish to find out whether we will use
@@ -42,6 +42,8 @@ end; self.instance_eval { alias description_of? feedback_description_of } # ===
42
42
 
43
43
  # =========================================================================== #
44
44
  # === RBT.return_cookbook_dataset_for
45
+ #
46
+ # This will return the dataset for a given program, in a fast manner.
45
47
  # =========================================================================== #
46
48
  def self.return_cookbook_dataset_for(i)
47
49
  RBT::Cookbooks::SanitizeCookbook.return_dataset(i) { :fast }
@@ -20,6 +20,7 @@ module Gtk
20
20
  module CompileProgramModule
21
21
 
22
22
  require 'rbt/version/version.rb'
23
+ require 'rbt/toplevel_methods/available_programs.rb'
23
24
  require 'rbt/toplevel_methods/split_at.rb'
24
25
 
25
26
  require 'gtk_paradise/requires/require_the_base_module.rb'
@@ -43,12 +44,12 @@ module CompileProgramModule
43
44
  # ========================================================================= #
44
45
  # === WIDTH
45
46
  # ========================================================================= #
46
- WIDTH = 1560
47
+ WIDTH = 1580
47
48
 
48
49
  # ========================================================================= #
49
50
  # === HEIGHT
50
51
  # ========================================================================= #
51
- HEIGHT = 460
52
+ HEIGHT = 480
52
53
 
53
54
  # ========================================================================= #
54
55
  # === USE_THIS_FONT
@@ -202,8 +203,14 @@ module CompileProgramModule
202
203
  # ========================================================================= #
203
204
  def create_the_checkboxes
204
205
  @button_check = gtk_check_button('Include Dependencies', :do_not_underline)
206
+ @button_check.hint = 'Check this button if you want to compile '\
207
+ 'dependencies as well. This may lead to problems, though, so '\
208
+ 'it is almost always better to compile single programs, as-is.'
205
209
  @button_traditional = gtk_check_button('traditional')
210
+ @button_traditional.hint = 'This will use the following target prefix: /usr/'
206
211
  @button_non_traditional = gtk_check_button('non-traditional')
212
+ @button_non_traditional.hint = 'This will use the app-dir '\
213
+ 'prefix for the program that is to be compiled.'
207
214
  # ======================================================================= #
208
215
  # By default, the traditional button is enabled.
209
216
  # ======================================================================= #
@@ -326,6 +333,13 @@ module CompileProgramModule
326
333
  @main_vbox_in_the_middle = gtk_vbox
327
334
  end
328
335
 
336
+ # ========================================================================= #
337
+ # === text_buffer_showing_information_about_the_given_program?
338
+ # ========================================================================= #
339
+ def text_buffer_showing_information_about_the_given_program?
340
+ @text_buffer_showing_information_about_the_given_program
341
+ end; alias text_buffer? text_buffer_showing_information_about_the_given_program? # === text_buffer?
342
+
329
343
  # ========================================================================= #
330
344
  # === create_skeleton (create tag)
331
345
  # ========================================================================= #
@@ -381,7 +395,7 @@ module CompileProgramModule
381
395
  else
382
396
  e "Compiling #{_} now."
383
397
  add_msg 'Trying to compile the program '\
384
- 'called `'+_+'` now.'
398
+ 'called `'+_+'` now. Time: '+return_current_time
385
399
  compile_program_in_thread(_)
386
400
  end
387
401
  end; alias compile_program do_compile_program # === compile_program
@@ -391,10 +405,16 @@ module CompileProgramModule
391
405
  require 'rbt/requires/require_the_compile_class.rb'
392
406
  # ========================================================================= #
393
407
  # === compile_program_in_thread
408
+ #
409
+ # The argument to this method should be the name of the program, such
410
+ # as "htop".
394
411
  # ========================================================================= #
395
412
  def compile_program_in_thread(i)
396
413
  @thread = Thread.new {
397
414
  @compile = RBT::Compile.new(i, :do_not_run_yet)
415
+ if ::RBT.is_this_program_included?(i)
416
+ set_show_more_information_about_this_program(i)
417
+ end
398
418
  if @button_traditional.active?
399
419
  _ = :traditional
400
420
  elsif @button_non_traditional.active?
@@ -402,36 +422,13 @@ module CompileProgramModule
402
422
  end
403
423
  @compile.prefix = _
404
424
  @compile.run
425
+ add_msg 'Finished compiling the program '\
426
+ 'called `'+i.to_s+'`! Time: '+return_current_time
405
427
  }
406
428
  # @thread.join
407
429
  @thread = nil
408
430
  end
409
431
 
410
- # ========================================================================= #
411
- # === show_information_about_the_given_program
412
- # ========================================================================= #
413
- def show_information_about_the_given_program(
414
- i = @entry_show_information_about_this_program.text?
415
- )
416
- if i.empty?
417
- do_popup(
418
- message: 'Please supply a name for a program.',
419
- over_this_widget: @entry_show_information_about_this_program
420
- )
421
- else
422
- dataset = RBT.cookbook_dataset_for(i) # This will return a Hash.
423
- _ = ''.dup
424
- _ << 'short description: '+dataset['short_description'].to_s+N
425
- _ << 'description: '+
426
- RBT.word_wrap(dataset['description'].to_s, 45).strip+N
427
- _ << 'url1: '+dataset['url1'].to_s+N
428
- _ << 'url2: '+dataset['url2'].to_s+N
429
- _ << 'homepage: '+dataset['homepage'].to_s+N
430
- _ << 'last_update: '+dataset['last_update'].to_s+N
431
- @source_view_showing_information_about_the_given_program.set_text(_)
432
- end
433
- end
434
-
435
432
  # ========================================================================= #
436
433
  # === entry_for_compiling_this_program?
437
434
  # ========================================================================= #
@@ -452,6 +449,7 @@ module CompileProgramModule
452
449
  # be compiled.
453
450
  # ======================================================================= #
454
451
  @entry_compile_this_program = gtk_entry
452
+ @entry_compile_this_program.bblack1
455
453
 
456
454
  completion = gtk_entry_completion
457
455
  @entry_compile_this_program.completion = completion
@@ -544,6 +542,43 @@ module CompileProgramModule
544
542
  r.top_left_then_run
545
543
  end
546
544
 
545
+ # ========================================================================= #
546
+ # === set_show_more_information_about_this_program
547
+ # ========================================================================= #
548
+ def set_show_more_information_about_this_program(i)
549
+ @entry_show_information_about_this_program.set_text(i)
550
+ show_information_about_the_given_program
551
+ end
552
+
553
+ # ========================================================================= #
554
+ # === show_information_about_the_given_program
555
+ # ========================================================================= #
556
+ def show_information_about_the_given_program(
557
+ i = @entry_show_information_about_this_program.text?
558
+ )
559
+ if i.empty?
560
+ do_popup(
561
+ message: 'Please supply a name for a program.',
562
+ over_this_widget: @entry_show_information_about_this_program
563
+ )
564
+ else
565
+ dataset = RBT.cookbook_dataset_for(i) # This will return a Hash.
566
+ _ = ''.dup
567
+ _ << '<b>short description</b>: '+dataset[:short_description].to_s+N
568
+ _ << '<b>description</b>: '+
569
+ RBT.word_wrap(dataset[:description].to_s, 45).strip+N
570
+ _ << '<b>url1</b>: '+dataset[:url1].to_s+N
571
+ _ << '<b>url2</b>: '+dataset[:url2].to_s+N
572
+ _ << '<b>homepage</b>: '+dataset[:homepage].to_s+N
573
+ _ << '<b>last_update</b>: '+dataset[:last_update].to_s+N
574
+ # ===================================================================== #
575
+ # Modify the text. The variable next is a Gtk::TextView instance.
576
+ # ===================================================================== #
577
+ text_buffer?.set_text(_)
578
+ text_buffer?.do_markify
579
+ end
580
+ end
581
+
547
582
  end; end; end
548
583
 
549
584
  # =========================================================================== #
@@ -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.10.140'
16
+ VERSION = '0.10.141'
17
17
  RBT_VERSION_NUMBER = VERSION # === RBT_VERSION_NUMBER
18
18
  PROGRAM_VERSION = VERSION # === PROGRAM_VERSION
19
19
 
@@ -3,6 +3,7 @@ gnomeautoar:
3
3
  - http://www.linuxfromscratch.org/blfs/view/svn/gnome/gnome-autoar.html
4
4
  configure_options: |
5
5
 
6
+ disable-debug
6
7
  disable-static
7
8
 
8
9
  short_description: |
@@ -11,7 +12,7 @@ gnomeautoar:
11
12
  The gnome-autoar package provides a framework for automatic
12
13
  archive extraction, compression, and management.
13
14
  extra_information: |
14
- url1: http://ftp.gnome.org/pub/gnome/sources/gnome-autoar/0.2/gnome-autoar-0.2.4.tar.xz
15
+ url1: https://download.gnome.org/sources/gnome-autoar/0.3/gnome-autoar-0.3.1.tar.xz
15
16
  url2: https://ftp.gnome.org/pub/gnome/sources/gnome-autoar/?C=M;O=D
16
17
  symlink_headers: t
17
18
  headers:
@@ -45,4 +46,4 @@ gnomeautoar:
45
46
  required_deps_on:
46
47
  - libarchive
47
48
  - gtk+
48
- last_update: 12 Dec 2019
49
+ last_update: 30 Apr 2021
@@ -16,7 +16,7 @@ nautilus:
16
16
 
17
17
  disable-selinux
18
18
 
19
- url1: https://download.gnome.org/sources/nautilus/40/nautilus-40.tar.xz
19
+ url1: https://download.gnome.org/sources/nautilus/40/nautilus-40.1.tar.xz
20
20
  url2: http://ftp.gnome.org/pub/gnome/sources/nautilus/?C=M;O=D
21
21
  homepage: https://github.com/GNOME/nautilus
22
22
  symlink_headers: t
@@ -53,4 +53,4 @@ nautilus:
53
53
  - gnomedesktop
54
54
  - exempi
55
55
  - meson
56
- last_update: 19 Mar 2021
56
+ last_update: 30 Apr 2021
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  :apply_patch: false
3
- :archive_size: 294956
3
+ :archive_size: 297904
4
4
  :archive_type: ".tar.xz"
5
5
  :autosymlink_lib64:
6
6
  :base_dir: "/home/x/src/gnomeautoar/"
@@ -12,7 +12,7 @@
12
12
  :cmake_configure_options:
13
13
  :configure_base_dir: "/"
14
14
  :configure_command_to_use: configure
15
- :configure_options: "--disable-static"
15
+ :configure_options: "--disable-debug --disable-static"
16
16
  :configure_options_explained: ''
17
17
  :copy_source: false
18
18
  :description: The gnome-autoar package provides a framework for automatic archive
@@ -42,7 +42,7 @@
42
42
  :installation_steps: []
43
43
  :is_an_active_project: true
44
44
  :keep_extracted: true
45
- :last_update: 12 Dec 2019
45
+ :last_update: 30 Apr 2021
46
46
  :libexec:
47
47
  :libraries:
48
48
  - girepository-1.0/GnomeAutoar-0.1.typelib
@@ -57,7 +57,7 @@
57
57
  :localstatedir: false
58
58
  :m4_files: []
59
59
  :may_we_modify_the_configure_options: true
60
- :md5sum: 36ab263f477eeee3c95c9381766eb3c2
60
+ :md5sum: 3149496d0189623a8e1289bbab4d8385
61
61
  :meson_configure_options:
62
62
  :mirror: ''
63
63
  :modify_the_makefile: false
@@ -73,11 +73,11 @@
73
73
  :pre_make_install_sed: []
74
74
  :prefix: "/usr/"
75
75
  :preinstall: []
76
- :program_full_name: gnome-autoar-0.2.4.tar.xz
76
+ :program_full_name: gnome-autoar-0.3.1.tar.xz
77
77
  :program_name: gnome-autoar
78
- :program_name_and_program_version: gnome-autoar-0.2.4
79
- :program_path: "/home/x/src/gnomeautoar/gnome-autoar-0.2.4.tar.xz"
80
- :program_version: 0.2.4
78
+ :program_name_and_program_version: gnome-autoar-0.3.1
79
+ :program_path: "/home/x/src/gnomeautoar/gnome-autoar-0.3.1.tar.xz"
80
+ :program_version: 0.3.1
81
81
  :required_deps_on:
82
82
  - libarchive
83
83
  - gtk+
@@ -95,7 +95,7 @@
95
95
  :symlink_pkgconfig_files: true
96
96
  :tags:
97
97
  - gnome
98
- :url1: http://ftp.gnome.org/pub/gnome/sources/gnome-autoar/0.2/gnome-autoar-0.2.4.tar.xz
98
+ :url1: https://download.gnome.org/sources/gnome-autoar/0.3/gnome-autoar-0.3.1.tar.xz
99
99
  :url2: https://ftp.gnome.org/pub/gnome/sources/gnome-autoar/?C=M;O=D
100
100
  :use_autoconf: false
101
101
  :use_autogen: false
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  :apply_patch: false
3
- :archive_size: 3251124
3
+ :archive_size: 3252276
4
4
  :archive_type: ".tar.xz"
5
5
  :autosymlink_lib64: t
6
6
  :base_dir: "/home/x/src/nautilus/"
@@ -54,7 +54,7 @@
54
54
  :installation_steps: []
55
55
  :is_an_active_project: true
56
56
  :keep_extracted: true
57
- :last_update: 19 Mar 2021
57
+ :last_update: 30 Apr 2021
58
58
  :libexec:
59
59
  :libraries:
60
60
  - libnautilus-extension.so
@@ -64,7 +64,7 @@
64
64
  :localstatedir: false
65
65
  :m4_files: []
66
66
  :may_we_modify_the_configure_options: true
67
- :md5sum: 55527ace0102c7fa210c99cc0492ea41
67
+ :md5sum: 06434633fed0e10a899a31d2279e3336
68
68
  :meson_configure_options:
69
69
  :mirror: ''
70
70
  :modify_the_makefile: false
@@ -79,11 +79,11 @@
79
79
  :pre_make_install_sed: []
80
80
  :prefix: "/usr/"
81
81
  :preinstall: []
82
- :program_full_name: nautilus-40.tar.xz
82
+ :program_full_name: nautilus-40.1.tar.xz
83
83
  :program_name: nautilus
84
- :program_name_and_program_version: nautilus-40
85
- :program_path: "/home/x/src/nautilus/nautilus-40.tar.xz"
86
- :program_version: '40'
84
+ :program_name_and_program_version: nautilus-40.1
85
+ :program_path: "/home/x/src/nautilus/nautilus-40.1.tar.xz"
86
+ :program_version: '40.1'
87
87
  :required_deps_on:
88
88
  - eel
89
89
  - giostandalone
@@ -104,7 +104,7 @@
104
104
  :symlink_pkgconfig_files: true
105
105
  :tags:
106
106
  - gnome
107
- :url1: https://download.gnome.org/sources/nautilus/40/nautilus-40.tar.xz
107
+ :url1: https://download.gnome.org/sources/nautilus/40/nautilus-40.1.tar.xz
108
108
  :url2: http://ftp.gnome.org/pub/gnome/sources/nautilus/?C=M;O=D
109
109
  :use_autoconf: false
110
110
  :use_autogen: false
@@ -900,7 +900,7 @@ gnoise 0.1.15 01 Jun 2014 https://sourceforge.net/proj
900
900
  gnomeapplets 3.38.0 16 Oct 2020 http://ftp.gnome.org/pub/gnome/sources/gnome-applets/3.38/gnome-applets-3.38.0.tar.xz
901
901
  sensorsapplet 1.7.12 01 Jun 2014 http://sensors-applet.sourceforge.net/
902
902
  gnomeaudio 2.22.2 01 Sep 2012 http://ftp.gnome.org/pub/GNOME/sources/gnome-audio/2.22/gnome-audio-2.22.2.tar.bz2
903
- gnomeautoar 0.2.4 12 Dec 2019 http://ftp.gnome.org/pub/gnome/sources/gnome-autoar/0.2/gnome-autoar-0.2.4.tar.xz
903
+ gnomeautoar 0.3.1 30 Apr 2021 https://download.gnome.org/sources/gnome-autoar/0.3/gnome-autoar-0.3.1.tar.xz
904
904
  gnomebackgrounds 40.0 13 Apr 2021 https://download.gnome.org/sources/gnome-backgrounds/40/gnome-backgrounds-40.0.tar.xz
905
905
  gnomebaker 0.6.2 01 Jun 2014 http://sourceforge.net/projects/gnomebaker/
906
906
  gnomebatterybench 3.15.4 07 Mar 2015 http://ftp.gnome.org/pub/GNOME/sources/gnome-battery-bench/3.15/gnome-battery-bench-3.15.4.tar.xz
@@ -2374,7 +2374,7 @@ nas 1.9.3.src 01 Aug 2013 http://sourceforge.net/proje
2374
2374
  nasm 2.15.05 29 Aug 2020 https://www.nasm.us/pub/nasm/releasebuilds/2.15.05/nasm-2.15.05.tar.xz
2375
2375
  nast 0.2.0 05 Jun 2014 http://download.berlios.de/nast/nast-0.2.0.tar.gz
2376
2376
  nativepackageinstaller 1.1.1 15 Apr 2021 https://rubygems.org/downloads/native-package-installer-1.1.1.gem
2377
- nautilus 40 19 Mar 2021 https://download.gnome.org/sources/nautilus/40/nautilus-40.tar.xz
2377
+ nautilus 40.1 30 Apr 2021 https://download.gnome.org/sources/nautilus/40/nautilus-40.1.tar.xz
2378
2378
  nautilusactions 3.2.4 01 Aug 2014 http://ftp.gnome.org/pub/GNOME/sources/nautilus-actions/3.2/nautilus-actions-3.2.4.tar.xz
2379
2379
  nautiluscdburner 2.22.1 01 Jun 2014 http://ftp.gnome.org/pub/GNOME/sources/nautilus-cd-burner/2.22/nautilus-cd-burner-2.22.1.tar.bz2
2380
2380
  nautilusmedia 0.8.1 01 Jun 2014 http://ftp.gnome.org/pub/GNOME/sources/nautilus-media/0.8/nautilus-media-0.8.1.tar.bz2
@@ -2373,7 +2373,7 @@ nas: "1.9.3.src"
2373
2373
  nasm: "2.15.05"
2374
2374
  nast: "0.2.0"
2375
2375
  nativepackageinstaller: "1.0.9"
2376
- nautilus: "40"
2376
+ nautilus: "40.1"
2377
2377
  nautilusactions: "3.2.4"
2378
2378
  nautiluscdburner: "2.22.1"
2379
2379
  nautilusmedia: "0.8.1"
@@ -3875,3 +3875,4 @@ libjpeg-turbo: "2.1.0"
3875
3875
  xfce4-appfinder: "4.16.1"
3876
3876
  budgie-desktop: "v10.5.3"
3877
3877
  gedit-plugins: "40.1"
3878
+ gnome-autoar: "0.3.1"
@@ -862,3 +862,5 @@
862
862
  - samba # program_version: 4.14.4 30.04.2021-05:09:45
863
863
  - qemu # program_version: 6.0.0 30.04.2021-05:24:41
864
864
  - vlc # program_version: 3.0.13 30.04.2021-05:24:48
865
+ - nautilus # program_version: 40.1 30.04.2021-16:49:36
866
+ - gnomeautoar # program_version: 0.3.1 30.04.2021-16:50:37
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rbt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.140
4
+ version: 0.10.141
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert A. Heiler
@@ -8585,7 +8585,7 @@ post_install_message: "\n With the RBT scripts, you should be able to install o
8585
8585
  see:\n\n scookie --help\n\n If you wish to search for common tags, such as
8586
8586
  tag \"ruby\" or tag\n \"php\", then try this:\n\n search_for_tags ruby\n search_for_tags
8587
8587
  php\n\n This can be found in the subdirectory bin/search_for_tags of\n this gem.\n\n
8588
- \ For more documentation, the official documentation, have a look at:\n\n https://www.rubydoc.info/gems/rbt/0.10.140\n\n
8588
+ \ For more documentation, the official documentation, have a look at:\n\n https://www.rubydoc.info/gems/rbt/0.10.141\n\n
8589
8589
  \ If you encounter any bug or oddities, feel free to drop an email\n to:\n\n shevegen@gmail.com\n\n
8590
8590
  \ (I do not check for mails daily, though, so this may take a \n while to process
8591
8591
  - apologies for that.)\n\n Thank you and have fun!\n\n"