rbt 0.14.29 → 0.15.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 46c4e0278d39ec80c34323481195073d93bf180df4603f632ace688309cc5ed0
4
- data.tar.gz: 16a0993f7a21017c9f3df0c8412c56ec066241ad96320e52199c8d4edb20c3db
3
+ metadata.gz: 2f896b32563988ae7736aec0748041e431d4409d03c65c94a7102e7c7007c515
4
+ data.tar.gz: 96411a9c9086945348dcfa7029f753c065f57c7a1f8054f115233d4b97a6d8a2
5
5
  SHA512:
6
- metadata.gz: 28aa87ff49459cf11a16c3256d3b3893dd79cfd215aab513cf0d2e7300ec5d4eb7e45242085d28dc944e7b7f7ee2feb12a1a467edb1b86890355aaff21281a32
7
- data.tar.gz: 45c701a3b9b198cc6ef256d461f0795b4d3705fc6be2c02f163270d72bef6555647be25d6e844c11364c1115685d0bfc6138bb392fcb0be490c62a025e13b452
6
+ metadata.gz: 648e74fc261dcf95ab9fec8da0ce579745511a3fd4bd7609692723345a840d45ef6d2ca73b36f85fa55ecd2f46b9838add779f680d339f4080c055c467136898
7
+ data.tar.gz: 93dfabae1af9b10140f66bcdbdbbf1f68e393d55c3de8d77cabceb3b173d59058c5d897254c1d7dc04a74a644cfa9323bc961fb39c3d95d82b2b02d1385738a5
data/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  [![forthebadge](https://forthebadge.com/images/badges/made-with-ruby.svg)](https://www.ruby-lang.org/en/)
6
6
  [![Gem Version](https://badge.fury.io/rb/rbt.svg)](https://badge.fury.io/rb/rbt)
7
7
 
8
- This gem was <b>last updated</b> on the <span style="color: darkblue; font-weight: bold">19.03.2024</span> (dd.mm.yyyy notation), at <span style="color: steelblue; font-weight: bold">04:14:11</span> o'clock.
8
+ This gem was <b>last updated</b> on the <span style="color: darkblue; font-weight: bold">19.03.2024</span> (dd.mm.yyyy notation), at <span style="color: steelblue; font-weight: bold">04:17:28</span> o'clock.
9
9
 
10
10
  ## Introduction to the "Ruby Build Tools" Project (RBT)
11
11
 
@@ -9208,8 +9208,6 @@ that can occur during compilation.
9208
9208
  The following programs were updated with this release,
9209
9209
  compared to the previous release:
9210
9210
 
9211
- pinentry was updated to program version 1.3.0 (on: 19.03.2024-01:31:33)<br>
9212
-
9213
9211
 
9214
9212
  ## Available program versions
9215
9213
 
@@ -13492,7 +13490,7 @@ pimcommon 23.08.5 21 February 2024 https://download.kde.org
13492
13490
  pimdataexporter 23.08.5 21 February 2024 https://download.kde.org/stable/release-service/23.08.5/src/pim-data-exporter-23.08.5.tar.xz
13493
13491
  pimsieveeditor 23.08.5 21 February 2024 https://download.kde.org/stable/release-service/23.08.5/src/pim-sieve-editor-23.08.5.tar.xz
13494
13492
  pine 4.64 01 June 2014 ftp://ftp.cac.washington.edu/pine/pine.tar.bz2
13495
- pinentry 1.2.1 27 August 2022 https://www.gnupg.org/ftp/gcrypt/pinentry/pinentry-1.2.1.tar.bz2
13493
+ pinentry 1.3.0 19 March 2024 https://www.gnupg.org/ftp/gcrypt/pinentry/pinentry-1.3.0.tar.bz2
13496
13494
  pinfo 0.6.8 01 June 2014 http://freshmeat.net/redir/pinfo/8107/url_tgz/pinfo-0.6.8.tar.gz
13497
13495
  pingus 0.7.6 01 July 2013 http://pingus.googlecode.com/files/pingus-0.7.6.tar.bz2
13498
13496
  pinpoint 0.1.8 23 September 2015 http://ftp.gnome.org/pub/GNOME/sources/pinpoint/0.1/pinpoint-0.1.8.tar.xz
@@ -56,8 +56,7 @@ module RBT
56
56
  esystem _
57
57
  esystem 'make'
58
58
  esystem 'make install'
59
- require 'rbt/utility_scripts/to_current.rb'
60
- action(:to_current, use_this_full_prefix_target)
59
+ action(:ToCurrent, use_this_full_prefix_target)
61
60
  end; self.instance_eval { alias install_libstdcpp install_libstdc_plus_plus } # === RBT.install_libstdcpp
62
61
 
63
62
  end
@@ -21,8 +21,6 @@ module RBT
21
21
 
22
22
  class VersionSwitcher < Base # === RBT::VersionSwitcher
23
23
 
24
- require 'rbt/utility_scripts/to_current.rb'
25
-
26
24
  # ========================================================================= #
27
25
  # === initialize
28
26
  # ========================================================================= #
@@ -243,7 +241,7 @@ class VersionSwitcher < Base # === RBT::VersionSwitcher
243
241
  def to_current(
244
242
  the_other_version
245
243
  )
246
- opne "Now switching to the version `#{sfile(the_other_version)}`."
244
+ orev "Now switching to the version `#{sfile(the_other_version)}#{rev}`."
247
245
  if @do_not_register
248
246
  action(:ToCurrent, the_other_version) { :do_not_register }
249
247
  else
@@ -270,7 +268,7 @@ class VersionSwitcher < Base # === RBT::VersionSwitcher
270
268
  # ======================================================================= #
271
269
  _ = @array_available_program_versions
272
270
  unless _.empty?
273
- opne 'These program versions appear to be available:'
271
+ orev 'These program versions appear to be available:'
274
272
  e
275
273
  sorted = _.sort_by {|entry| entry.to_s } # Better to keep it sorted.
276
274
  sorted.each {|entry|
@@ -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.14.29'
16
+ VERSION = '0.15.1'
17
17
  RBT_VERSION_NUMBER = VERSION # === RBT_VERSION_NUMBER
18
18
  PROGRAM_VERSION = VERSION # === PROGRAM_VERSION
19
19
 
@@ -92,7 +92,6 @@
92
92
  - aporia
93
93
  - appdatatools
94
94
  - appfs
95
- - applewmproto
96
95
  - appres
97
96
  - appstream
98
97
  - appstreamglib
@@ -3097,7 +3096,6 @@
3097
3096
  - sitemapgenerator
3098
3097
  - sithwm
3099
3098
  - six
3100
- - sixel
3101
3099
  - skanlite
3102
3100
  - skanpage
3103
3101
  - skijump
@@ -90,7 +90,6 @@ apophenia 19.01.2023 18 January 2023 http://osdn.dl.sourceforg
90
90
  aporia 27.12.2011 01 June 2014 aporia-27.12.2011
91
91
  appdatatools 0.1.8 01 September 2014 http://people.freedesktop.org/~hughsient/releases/appdata-tools-0.1.8.tar.xz
92
92
  appfs 1.14 23 September 2020 http://www.rkeene.org/devel/appfs/appfs-1.14.tar.gz
93
- applewmproto 1.4.2 01 May 2014 http://xorg.freedesktop.org/releases/individual/proto/applewmproto-1.4.2.tar.bz2
94
93
  appres 1.0.6 04 April 2022 https://www.x.org/releases/individual/app/appres-1.0.6.tar.xz
95
94
  appstream 1.0.2 07 March 2024 https://www.freedesktop.org/software/appstream/releases/AppStream-1.0.2.tar.xz
96
95
  appstreamglib 0.8.2 06 November 2022 https://people.freedesktop.org/~hughsient/appstream-glib/releases/appstream-glib-0.8.2.tar.xz
@@ -3093,7 +3092,6 @@ sisiya 0.4-21 01 May 2014 http://ovh.dl.sourceforge.ne
3093
3092
  sitemapgenerator 6.1.2 17 June 2020 https://rubygems.org/downloads/sitemap_generator-6.1.2.gem
3094
3093
  sithwm 1.2.3 01 May 2014 http://sithwm.darkside.no/sn/sithwm-1.2.3.tgz
3095
3094
  six 1.16.0 06 May 2021 https://files.pythonhosted.org/packages/71/39/171f1c67cd00715f190ba0b100d606d440a28c93c7714febeca8b79af85e/six-1.16.0.tar.gz
3096
- libsixel 1.8.6 12 November 2021 https://github.com/saitoha/libsixel/releases/download/v1.8.6/libsixel-1.8.6.tar.gz
3097
3095
  skanlite 23.08.5 21 February 2024 https://download.kde.org/stable/release-service/23.08.5/src/skanlite-23.08.5.tar.xz
3098
3096
  skanpage 23.08.5 21 February 2024 https://download.kde.org/stable/release-service/23.08.5/src/skanpage-23.08.5.tar.xz
3099
3097
  skijump 0.2.0 01 May 2014 http://prdownloads.sourceforge.net/skijump/skijump-0.2.0.tar.gz
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.14.29
4
+ version: 0.15.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert A. Heiler
@@ -140,7 +140,7 @@ description: "\nThis gem is called RBT, which is an abbreviation for \"Ruby Buil
140
140
  Tools\".\n\nEssentially, this project is a collection of different ruby scripts/classes\nthat
141
141
  may aid in the process of compiling or installing programs from source,\nbut also
142
142
  allow installation from binary, from a remote or from a local\nlocation (e. g. a
143
- file in a directory on the local harddisc/SSD).\n\nThere are presently 3816 registered\nprograms
143
+ file in a directory on the local harddisc/SSD).\n\nThere are presently 3814 registered\nprograms
144
144
  available as part of the RBT project.\n\nFor more information about the project,
145
145
  have a look at the documentation,\nwhich can be found at the bottom right side on
146
146
  the homepage of this\ngem ( or simply visit the following link: https://www.rubydoc.info/gems/rbt/
@@ -356,7 +356,6 @@ files:
356
356
  - doc/todo/todo_for_the_java_bindings.md
357
357
  - doc/todo/upcoming_deprecations.md
358
358
  - doc/version_publication_dates/version_publication_dates.md
359
- - htop.sh
360
359
  - img/COOKBOOKS_LOGO.png
361
360
  - img/RBT_LOGO.png
362
361
  - lib/rbt.rb
@@ -8635,7 +8634,7 @@ post_install_message: "\n With the RBT scripts, you should be able to install o
8635
8634
  see:\n\n scookie --help\n\n If you wish to search for common tags, such as
8636
8635
  tag \"ruby\" or tag\n \"php\", then try this:\n\n search_for_tags ruby\n search_for_tags
8637
8636
  php\n\n This can be found in the subdirectory bin/search_for_tags of\n this gem.\n\n
8638
- \ For more documentation, the official documentation, have a look at:\n\n https://www.rubydoc.info/gems/rbt/0.14.29\n\n
8637
+ \ For more documentation, the official documentation, have a look at:\n\n https://www.rubydoc.info/gems/rbt/0.15.1\n\n
8639
8638
  \ If you encounter any bug or oddities, feel free to drop an email\n to:\n\n shevy@inbox.lt\n\n
8640
8639
  \ (I do not check for mails daily, though, so this may take a \n while to process
8641
8640
  - apologies for that.)\n\n Thank you and have fun!\n\n"
@@ -8660,7 +8659,7 @@ summary: 'This gem is called RBT, which is an abbreviation for "Ruby Build Tools
8660
8659
  this project is a collection of different ruby scripts/classes that may aid in the
8661
8660
  process of compiling or installing programs from source, but also allow installation
8662
8661
  from binary, from a remote or from a local location (e. g. a file in a directory
8663
- on the local harddisc/SSD). There are presently 3816 registered programs available
8662
+ on the local harddisc/SSD). There are presently 3814 registered programs available
8664
8663
  as part of the RBT project. For more information about the project, have a look
8665
8664
  at the documentation, which can be found at the bottom right side on the homepage
8666
8665
  of this gem ( or simply visit the following link: https://www.rubydoc.info/gems/rbt/
data/htop.sh DELETED
@@ -1 +0,0 @@
1
- --prefix=/home/Programs/Htop/3.3.0/ --disable-unicode