rbt 0.10.143 → 0.10.144

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 (27) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +31 -55
  3. data/doc/todo/numbered_todo_entries.md +16 -19
  4. data/lib/rbt/cookbooks/sanitize_cookbook/sanitize_cookbook.rb +3 -1
  5. data/lib/rbt/gui/gtk2/recipe_maker.rb +24 -302
  6. data/lib/rbt/gui/gtk3/notebook/notebook.rb +14 -12
  7. data/lib/rbt/gui/gtk3/recipe_maker/recipe_maker.rb +550 -0
  8. data/lib/rbt/toplevel_methods/determine_appdir_prefix_from_this_input.rb +2 -1
  9. data/lib/rbt/toplevel_methods/determine_appdir_prefix_from_this_input_by_guessing_the_program_version.rb +31 -0
  10. data/lib/rbt/toplevel_methods/return_version_of_this_program.rb +4 -1
  11. data/lib/rbt/version/version.rb +1 -1
  12. data/lib/rbt/yaml/chained_programs/chained_programs.yml +41 -41
  13. data/lib/rbt/yaml/cookbooks/adwaitaicontheme.yml +2 -2
  14. data/lib/rbt/yaml/cookbooks/gnomebackgrounds.yml +2 -2
  15. data/lib/rbt/yaml/cookbooks/gnomeboxes.yml +2 -2
  16. data/lib/rbt/yaml/cookbooks/libtorrentrasterbar.yml +6 -247
  17. data/lib/rbt/yaml/cookbooks/libvirt.yml +2 -2
  18. data/lib/rbt/yaml/cookbooks/php.yml +1 -1
  19. data/lib/rbt/yaml/expanded_cookbooks/adwaitaicontheme.yml +8 -8
  20. data/lib/rbt/yaml/expanded_cookbooks/gnomebackgrounds.yml +8 -8
  21. data/lib/rbt/yaml/expanded_cookbooks/gnomeboxes.yml +8 -8
  22. data/lib/rbt/yaml/expanded_cookbooks/libvirt.yml +8 -8
  23. data/lib/rbt/yaml/expanded_cookbooks/php.yml +1 -1
  24. data/lib/rbt/yaml/programs_version/available_programs_versions.md +5 -5
  25. data/lib/rbt/yaml/programs_version/programs_version.yml +4 -3
  26. data/lib/rbt/yaml/these_programs_were_updated.yml +4 -0
  27. metadata +4 -2
@@ -8,6 +8,7 @@
8
8
  module RBT
9
9
 
10
10
  require 'rbt/toplevel_methods/programs_directory.rb'
11
+ require 'rbt/toplevel_methods/rds.rb'
11
12
 
12
13
  begin # Add the program_information gem - and a notification if it is not there.
13
14
  require 'program_information'
@@ -59,7 +60,7 @@ module RBT
59
60
  if version_of_the_program
60
61
  new_prefix << "#{version_of_the_program}/"
61
62
  end
62
- return new_prefix
63
+ return rds(new_prefix)
63
64
  end; self.instance_eval { alias static_appdir_prefix_of? determine_appdir_prefix_from_this_input } # === RBT.static_appdir_prefix_of?
64
65
 
65
66
  end
@@ -0,0 +1,31 @@
1
+ #!/usr/bin/ruby -w
2
+ # Encoding: UTF-8
3
+ # frozen_string_literal: true
4
+ # =========================================================================== #
5
+ # require 'rbt/toplevel_methods/determine_appdir_prefix_from_this_input_by_guessing_the_program_version.rb'
6
+ # RBT.determine_appdir_prefix_from_this_input
7
+ # =========================================================================== #
8
+ module RBT
9
+
10
+ # ========================================================================= #
11
+ # === RBT.determine_appdir_prefix_from_this_input_by_guessing_the_program_version
12
+ #
13
+ # This method is similar to the method defined in
14
+ # return_version_of_this_program.rb, but rather than using
15
+ # 'Current/' we will assume from the most current
16
+ # version in use of the program at hand (the first argument
17
+ # to this method).
18
+ # ========================================================================= #
19
+ def self.determine_appdir_prefix_from_this_input_by_guessing_the_program_version(
20
+ this_program
21
+ )
22
+ require 'rbt/toplevel_methods/return_version_of_this_program.rb'
23
+ use_this_version = RBT.return_version_of_this_program(this_program)
24
+ return RBT.determine_appdir_prefix_from_this_input(this_program, use_this_version)
25
+ end
26
+
27
+ end
28
+
29
+ if __FILE__ == $PROGRAM_NAME
30
+ puts RBT.determine_appdir_prefix_from_this_input('htop')
31
+ end # rb determine_appdir_prefix_from_this_input_by*rb
@@ -3,10 +3,10 @@
3
3
  # frozen_string_literal: true
4
4
  # =========================================================================== #
5
5
  # require 'rbt/toplevel_methods/return_version_of_this_program.rb'
6
+ # RBT.return_version_of_this_program(:php')
6
7
  # =========================================================================== #
7
8
  module RBT
8
9
 
9
- require 'rbt/requires/require_the_cookbook_class.rb'
10
10
  # ========================================================================= #
11
11
  # === RBT.return_version_of_this_program
12
12
  #
@@ -16,6 +16,9 @@ module RBT
16
16
  #
17
17
  # ========================================================================= #
18
18
  def self.return_version_of_this_program(i = 'htop')
19
+ unless RBT::Cookbooks.const_defined? :SanitizeCookbook
20
+ require 'rbt/requires/require_the_cookbook_class.rb'
21
+ end
19
22
  if i.is_a? Array
20
23
  i = i.first
21
24
  end
@@ -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.143'
16
+ VERSION = '0.10.144'
17
17
  RBT_VERSION_NUMBER = VERSION # === RBT_VERSION_NUMBER
18
18
  PROGRAM_VERSION = VERSION # === PROGRAM_VERSION
19
19
 
@@ -1411,47 +1411,6 @@ python_addons:
1411
1411
  - urllib3
1412
1412
  - magenta
1413
1413
 
1414
- # =========================================================================== #
1415
- # === LXQt tag
1416
- #
1417
- # To batch-compile all of lxqt, you can try to issue the following command:
1418
- #
1419
- # rbt --batch-compile-lxqt
1420
- #
1421
- # =========================================================================== #
1422
- lxqt:
1423
- - lxqtbuildtools # clxqt1
1424
- - libsysstat # clxqt2
1425
- - qtermwidget # clxqt3
1426
- - libqtxdg # clxqt4
1427
- - comptonconf # clxqt5
1428
- - lxqtconfig # clxqt6
1429
- - libsysstat # clxqt7
1430
- - liblxqt # clxqt8
1431
- - lxqtabout # clxqt9
1432
- - lxqtadmin # clxqt10
1433
- - lxqtglobalkeys # clxqt11
1434
- - lxqtl10n # clxqt12
1435
- - lxqtnotificationd # clxqt13
1436
- - lxqtopensshaskpass # clxqt14
1437
- - lxqtpanel # clxqt15
1438
- - lxqtpolicykit # clxqt16
1439
- - lxqtpowermanagement # clxqt17
1440
- - lxqtqtplugin # clxqt18
1441
- - lxqtrunner # clxqt17
1442
- - lxqtsession # clxqt18
1443
- - lxqtsudo # clxqt19
1444
- - lxqtthemes # clxqt20
1445
- - libfmqt # clxqt21
1446
- - pcmanfmqt # clxqt22
1447
- - lximageqt # clxqt23
1448
- - obconfqt # clxqt25
1449
- - pavucontrolqt # clxqt26
1450
- - qterminal # clxqt27
1451
- - qps # clxqt29
1452
- - screengrab # clxqt30
1453
- - lxqtarchiver # clxqt31
1454
-
1455
1414
  # =========================================================================== #
1456
1415
  # === KDE5 Foundation (kde tag)
1457
1416
  #
@@ -1890,3 +1849,44 @@ kde5_applications:
1890
1849
  - kcharselect # ckde5apps224
1891
1850
  - kipiplugins # ckde5apps225
1892
1851
  - elisa # ckde5apps226
1852
+
1853
+ # =========================================================================== #
1854
+ # === LXQt tag
1855
+ #
1856
+ # To batch-compile all of lxqt, you can try to issue the following command:
1857
+ #
1858
+ # rbt --batch-compile-lxqt
1859
+ #
1860
+ # =========================================================================== #
1861
+ lxqt:
1862
+ - lxqtbuildtools # clxqt1
1863
+ - libsysstat # clxqt2
1864
+ - qtermwidget # clxqt3
1865
+ - libqtxdg # clxqt4
1866
+ - comptonconf # clxqt5
1867
+ - lxqtconfig # clxqt6
1868
+ - libsysstat # clxqt7
1869
+ - liblxqt # clxqt8
1870
+ - lxqtabout # clxqt9
1871
+ - lxqtadmin # clxqt10
1872
+ - lxqtglobalkeys # clxqt11
1873
+ - lxqtl10n # clxqt12
1874
+ - lxqtnotificationd # clxqt13
1875
+ - lxqtopensshaskpass # clxqt14
1876
+ - lxqtpanel # clxqt15
1877
+ - lxqtpolicykit # clxqt16
1878
+ - lxqtpowermanagement # clxqt17
1879
+ - lxqtqtplugin # clxqt18
1880
+ - lxqtrunner # clxqt17
1881
+ - lxqtsession # clxqt18
1882
+ - lxqtsudo # clxqt19
1883
+ - lxqtthemes # clxqt20
1884
+ - libfmqt # clxqt21
1885
+ - pcmanfmqt # clxqt22
1886
+ - lximageqt # clxqt23
1887
+ - obconfqt # clxqt25
1888
+ - pavucontrolqt # clxqt26
1889
+ - qterminal # clxqt27
1890
+ - qps # clxqt29
1891
+ - screengrab # clxqt30
1892
+ - lxqtarchiver # clxqt31
@@ -5,7 +5,7 @@ adwaitaicontheme:
5
5
  The Adwaita Icon Theme package contains an icon theme for
6
6
  Gtk+ 3 applications.
7
7
  extra_information: |
8
- url1: https://download.gnome.org/sources/adwaita-icon-theme/40/adwaita-icon-theme-40.0.tar.xz
8
+ url1: https://download.gnome.org/sources/adwaita-icon-theme/40/adwaita-icon-theme-40.1.tar.xz
9
9
  url2: http://ftp.acc.umu.se/pub/GNOME/sources/adwaita-icon-theme/?C=M;O=D
10
10
  homepage: https://github.com/GNOME/adwaita-icon-theme
11
11
  symlink_pkgconfig_files: t
@@ -16,4 +16,4 @@ adwaitaicontheme:
16
16
  tags:
17
17
  - gnome
18
18
  required_deps_on:
19
- last_update: 16 Apr 2021
19
+ last_update: 03 May 2021
@@ -5,7 +5,7 @@ gnomebackgrounds:
5
5
  This is a collection of desktop backgrounds created with
6
6
  GNOME users in mind. It contains different backgrounds
7
7
  such as Branded, Nature, Tiles or Translucent.
8
- url1: https://download.gnome.org/sources/gnome-backgrounds/40/gnome-backgrounds-40.0.tar.xz
8
+ url1: https://download.gnome.org/sources/gnome-backgrounds/40/gnome-backgrounds-40.1.tar.xz
9
9
  url2: http://ftp.gnome.org/pub/GNOME/sources/gnome-backgrounds/?C=M;O=D
10
10
  licence: GPLv2
11
11
  prefix: t
@@ -14,4 +14,4 @@ gnomebackgrounds:
14
14
  tags:
15
15
  - gnome
16
16
  required_deps_on:
17
- last_update: 13 Apr 2021
17
+ last_update: 03 May 2021
@@ -1,7 +1,7 @@
1
1
  gnomeboxes:
2
2
  configure_options: |
3
3
  description: |
4
- url1: https://download.gnome.org/sources/gnome-boxes/3.38/gnome-boxes-3.38.2.tar.xz
4
+ url1: https://download.gnome.org/sources/gnome-boxes/40/gnome-boxes-40.1.tar.xz
5
5
  prefix: t
6
6
  keep_extracted: t
7
7
  use_build_directory: yes
@@ -10,4 +10,4 @@ gnomeboxes:
10
10
  required_deps_on:
11
11
  - libosinfo
12
12
  - libarchive
13
- last_update: 20 Nov 2020
13
+ last_update: 03 May 2021
@@ -1,5 +1,4 @@
1
1
  libtorrentrasterbar:
2
- binaries:
3
2
  configure_options: |
4
3
  short_description: |
5
4
  description: |
@@ -10,255 +9,15 @@ libtorrentrasterbar:
10
9
  homepage:
11
10
  symlink_headers: t
12
11
  headers:
13
- - libtorrent/ConvertUTF.h
14
- - libtorrent/add_torrent_params.hpp
15
- - libtorrent/address.hpp
16
- - libtorrent/alert.hpp
17
- - libtorrent/alert_manager.hpp
18
- - libtorrent/alert_types.hpp
19
- - libtorrent/announce_entry.hpp
20
- - libtorrent/assert.hpp
21
- - libtorrent/aux_/aligned_storage.hpp
22
- - libtorrent/aux_/aligned_union.hpp
23
- - libtorrent/aux_/alloca.hpp
24
- - libtorrent/aux_/allocating_handler.hpp
25
- - libtorrent/aux_/array.hpp
26
- - libtorrent/aux_/bind_to_device.hpp
27
- - libtorrent/aux_/block_cache_reference.hpp
28
- - libtorrent/aux_/byteswap.hpp
29
- - libtorrent/aux_/container_wrapper.hpp
30
- - libtorrent/aux_/cppint_import_export.hpp
31
- - libtorrent/aux_/cpuid.hpp
32
- - libtorrent/aux_/deferred_handler.hpp
33
- - libtorrent/aux_/deque.hpp
34
- - libtorrent/aux_/dev_random.hpp
35
- - libtorrent/aux_/disable_warnings_pop.hpp
36
- - libtorrent/aux_/disable_warnings_push.hpp
37
- - libtorrent/aux_/disk_job_fence.hpp
38
- - libtorrent/aux_/escape_string.hpp
39
- - libtorrent/aux_/export.hpp
40
- - libtorrent/aux_/ffs.hpp
41
- - libtorrent/aux_/file_progress.hpp
42
- - libtorrent/aux_/generate_peer_id.hpp
43
- - libtorrent/aux_/has_block.hpp
44
- - libtorrent/aux_/instantiate_connection.hpp
45
- - libtorrent/aux_/io.hpp
46
- - libtorrent/aux_/ip_notifier.hpp
47
- - libtorrent/aux_/listen_socket_handle.hpp
48
- - libtorrent/aux_/lsd.hpp
49
- - libtorrent/aux_/merkle.hpp
50
- - libtorrent/aux_/noexcept_movable.hpp
51
- - libtorrent/aux_/numeric_cast.hpp
52
- - libtorrent/aux_/openssl.hpp
53
- - libtorrent/aux_/path.hpp
54
- - libtorrent/aux_/portmap.hpp
55
- - libtorrent/aux_/proxy_settings.hpp
56
- - libtorrent/aux_/range.hpp
57
12
  - libtorrent/aux_/route.h
58
- - libtorrent/aux_/scope_end.hpp
59
- - libtorrent/aux_/session_call.hpp
60
- - libtorrent/aux_/session_impl.hpp
61
- - libtorrent/aux_/session_interface.hpp
62
- - libtorrent/aux_/session_settings.hpp
63
- - libtorrent/aux_/session_udp_sockets.hpp
64
- - libtorrent/aux_/set_socket_buffer.hpp
65
- - libtorrent/aux_/socket_type.hpp
66
- - libtorrent/aux_/storage_piece_set.hpp
67
- - libtorrent/aux_/storage_utils.hpp
68
- - libtorrent/aux_/string_ptr.hpp
69
- - libtorrent/aux_/suggest_piece.hpp
70
- - libtorrent/aux_/throw.hpp
71
- - libtorrent/aux_/time.hpp
72
- - libtorrent/aux_/torrent_impl.hpp
73
- - libtorrent/aux_/unique_ptr.hpp
74
- - libtorrent/aux_/vector.hpp
75
- - libtorrent/aux_/win_crypto_provider.hpp
76
- - libtorrent/aux_/win_util.hpp
77
- - libtorrent/aux_/windows.hpp
78
- - libtorrent/bandwidth_limit.hpp
79
- - libtorrent/bandwidth_manager.hpp
80
- - libtorrent/bandwidth_queue_entry.hpp
81
- - libtorrent/bandwidth_socket.hpp
82
- - libtorrent/bdecode.hpp
83
- - libtorrent/bencode.hpp
84
- - libtorrent/bitfield.hpp
85
- - libtorrent/block_cache.hpp
86
- - libtorrent/bloom_filter.hpp
87
- - libtorrent/broadcast_socket.hpp
88
- - libtorrent/bt_peer_connection.hpp
89
- - libtorrent/buffer.hpp
90
- - libtorrent/chained_buffer.hpp
91
- - libtorrent/choker.hpp
92
- - libtorrent/close_reason.hpp
93
- - libtorrent/config.hpp
94
- - libtorrent/copy_ptr.hpp
95
- - libtorrent/crc32c.hpp
96
- - libtorrent/create_torrent.hpp
97
- - libtorrent/deadline_timer.hpp
98
- - libtorrent/debug.hpp
99
- - libtorrent/disk_buffer_holder.hpp
100
- - libtorrent/disk_buffer_pool.hpp
101
- - libtorrent/disk_interface.hpp
102
- - libtorrent/disk_io_job.hpp
103
- - libtorrent/disk_io_thread.hpp
104
- - libtorrent/disk_io_thread_pool.hpp
105
- - libtorrent/disk_job_pool.hpp
106
- - libtorrent/disk_observer.hpp
107
- - libtorrent/download_priority.hpp
108
- - libtorrent/ed25519.hpp
109
- - libtorrent/entry.hpp
110
- - libtorrent/enum_net.hpp
111
- - libtorrent/error.hpp
112
- - libtorrent/error_code.hpp
113
- - libtorrent/extensions.hpp
114
- - libtorrent/extensions/smart_ban.hpp
115
- - libtorrent/extensions/ut_metadata.hpp
116
- - libtorrent/extensions/ut_pex.hpp
117
- - libtorrent/file.hpp
118
- - libtorrent/file_pool.hpp
119
- - libtorrent/file_storage.hpp
120
- - libtorrent/fingerprint.hpp
121
- - libtorrent/flags.hpp
122
- - libtorrent/fwd.hpp
123
- - libtorrent/gzip.hpp
124
- - libtorrent/hasher.hpp
125
- - libtorrent/hasher512.hpp
126
- - libtorrent/heterogeneous_queue.hpp
127
- - libtorrent/hex.hpp
128
- - libtorrent/http_connection.hpp
129
- - libtorrent/http_parser.hpp
130
- - libtorrent/http_seed_connection.hpp
131
- - libtorrent/http_stream.hpp
132
- - libtorrent/http_tracker_connection.hpp
133
- - libtorrent/i2p_stream.hpp
134
- - libtorrent/identify_client.hpp
135
- - libtorrent/index_range.hpp
136
- - libtorrent/invariant_check.hpp
137
- - libtorrent/io.hpp
138
- - libtorrent/io_service.hpp
139
- - libtorrent/io_service_fwd.hpp
140
- - libtorrent/ip_filter.hpp
141
- - libtorrent/ip_voter.hpp
142
- - libtorrent/kademlia/announce_flags.hpp
143
- - libtorrent/kademlia/dht_observer.hpp
144
- - libtorrent/kademlia/dht_settings.hpp
145
- - libtorrent/kademlia/dht_state.hpp
146
- - libtorrent/kademlia/dht_storage.hpp
147
- - libtorrent/kademlia/dht_tracker.hpp
148
- - libtorrent/kademlia/direct_request.hpp
149
- - libtorrent/kademlia/dos_blocker.hpp
150
- - libtorrent/kademlia/ed25519.hpp
151
- - libtorrent/kademlia/find_data.hpp
152
- - libtorrent/kademlia/get_item.hpp
153
- - libtorrent/kademlia/get_peers.hpp
154
- - libtorrent/kademlia/io.hpp
155
- - libtorrent/kademlia/item.hpp
156
- - libtorrent/kademlia/msg.hpp
157
- - libtorrent/kademlia/node.hpp
158
- - libtorrent/kademlia/node_entry.hpp
159
- - libtorrent/kademlia/node_id.hpp
160
- - libtorrent/kademlia/observer.hpp
161
- - libtorrent/kademlia/put_data.hpp
162
- - libtorrent/kademlia/refresh.hpp
163
- - libtorrent/kademlia/routing_table.hpp
164
- - libtorrent/kademlia/rpc_manager.hpp
165
- - libtorrent/kademlia/sample_infohashes.hpp
166
- - libtorrent/kademlia/traversal_algorithm.hpp
167
- - libtorrent/kademlia/types.hpp
168
- - libtorrent/lazy_entry.hpp
169
- - libtorrent/link.hpp
170
- - libtorrent/linked_list.hpp
171
- - libtorrent/lsd.hpp
172
- - libtorrent/magnet_uri.hpp
173
- - libtorrent/natpmp.hpp
174
- - libtorrent/netlink.hpp
175
- - libtorrent/operations.hpp
176
- - libtorrent/optional.hpp
177
- - libtorrent/packet_buffer.hpp
178
- - libtorrent/packet_pool.hpp
179
- - libtorrent/parse_url.hpp
180
- - libtorrent/part_file.hpp
181
- - libtorrent/pe_crypto.hpp
182
- - libtorrent/peer.hpp
183
- - libtorrent/peer_class.hpp
184
- - libtorrent/peer_class_set.hpp
185
- - libtorrent/peer_class_type_filter.hpp
186
- - libtorrent/peer_connection.hpp
187
- - libtorrent/peer_connection_handle.hpp
188
- - libtorrent/peer_connection_interface.hpp
189
- - libtorrent/peer_id.hpp
190
- - libtorrent/peer_info.hpp
191
- - libtorrent/peer_list.hpp
192
- - libtorrent/peer_request.hpp
193
- - libtorrent/performance_counters.hpp
194
- - libtorrent/pex_flags.hpp
195
- - libtorrent/piece_block.hpp
196
- - libtorrent/piece_block_progress.hpp
197
- - libtorrent/piece_picker.hpp
198
- - libtorrent/platform_util.hpp
199
- - libtorrent/portmap.hpp
200
- - libtorrent/proxy_base.hpp
201
- - libtorrent/puff.hpp
202
- - libtorrent/random.hpp
203
- - libtorrent/read_resume_data.hpp
204
- - libtorrent/receive_buffer.hpp
205
- - libtorrent/request_blocks.hpp
206
- - libtorrent/resolve_links.hpp
207
- - libtorrent/resolver.hpp
208
- - libtorrent/resolver_interface.hpp
209
- - libtorrent/session.hpp
210
- - libtorrent/session_handle.hpp
211
- - libtorrent/session_settings.hpp
212
- - libtorrent/session_stats.hpp
213
- - libtorrent/session_status.hpp
214
- - libtorrent/session_types.hpp
215
- - libtorrent/settings_pack.hpp
216
- - libtorrent/sha1.hpp
217
- - libtorrent/sha1_hash.hpp
218
- - libtorrent/sha512.hpp
219
- - libtorrent/sliding_average.hpp
220
- - libtorrent/socket.hpp
221
- - libtorrent/socket_io.hpp
222
- - libtorrent/socks5_stream.hpp
223
- - libtorrent/span.hpp
224
- - libtorrent/ssl_stream.hpp
225
- - libtorrent/stack_allocator.hpp
226
- - libtorrent/stat.hpp
227
- - libtorrent/stat_cache.hpp
228
- - libtorrent/storage.hpp
229
- - libtorrent/storage_defs.hpp
230
- - libtorrent/string_util.hpp
231
- - libtorrent/string_view.hpp
232
- - libtorrent/tailqueue.hpp
233
- - libtorrent/time.hpp
234
- - libtorrent/timestamp_history.hpp
235
- - libtorrent/torrent.hpp
236
- - libtorrent/torrent_flags.hpp
237
- - libtorrent/torrent_handle.hpp
238
- - libtorrent/torrent_info.hpp
239
- - libtorrent/torrent_peer.hpp
240
- - libtorrent/torrent_peer_allocator.hpp
241
- - libtorrent/torrent_status.hpp
242
- - libtorrent/tracker_manager.hpp
243
- - libtorrent/udp_socket.hpp
244
- - libtorrent/udp_tracker_connection.hpp
245
- - libtorrent/union_endpoint.hpp
246
- - libtorrent/units.hpp
247
- - libtorrent/upnp.hpp
248
- - libtorrent/utf8.hpp
249
- - libtorrent/utp_socket_manager.hpp
250
- - libtorrent/utp_stream.hpp
251
- - libtorrent/vector_utils.hpp
252
- - libtorrent/version.hpp
253
- - libtorrent/web_connection_base.hpp
254
- - libtorrent/web_peer_connection.hpp
255
- - libtorrent/write_resume_data.hpp
256
- - libtorrent/xml_parse.hpp
257
13
  libraries:
258
- - libtorrent-rasterbar.a
14
+ - cmake/LibtorrentRasterbar/LibtorrentRasterbarConfig.cmake
15
+ - cmake/LibtorrentRasterbar/LibtorrentRasterbarConfigVersion.cmake
16
+ - cmake/LibtorrentRasterbar/LibtorrentRasterbarTargets-noconfig.cmake
17
+ - cmake/LibtorrentRasterbar/LibtorrentRasterbarTargets.cmake
259
18
  - libtorrent-rasterbar.so
260
- - libtorrent-rasterbar.so.10
261
- - libtorrent-rasterbar.so.10.0.0
19
+ - libtorrent-rasterbar.so.2.0
20
+ - libtorrent-rasterbar.so.2.0.3
262
21
  symlink_pkgconfig_files: t
263
22
  pkgconfig_files:
264
23
  - libtorrent-rasterbar.pc