aws-crt 0.1.5-aarch64-linux → 0.1.6-aarch64-linux

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: b789006018fb9fbcfcb72a1e9ea516a857f4c7a707a948087e47c14bc84f7ee8
4
- data.tar.gz: 8465d3de56a00ef4bdaf68acc99c05c3293cb0d128cbac8ef7b9fa2ce0b54246
3
+ metadata.gz: 136d082106b04103a43074269d3e5feb2c34eb3fc26219c68426ef15adc3e579
4
+ data.tar.gz: 70e201d190c212d27b42e8b11b98e896e4c1b9c1c7cec65ca06174b14d54354b
5
5
  SHA512:
6
- metadata.gz: c2991d798e8d78cadec6ab073867aaea4c94f12dbfbb3905c2173c1695e6bad1da97b5f778c53c9b44d585510205b20a62e7d0bc6d42c2285d4ad5f702248244
7
- data.tar.gz: 14ff8b3b4ee3e9c774b05e8ddd37698a22d022777104f84368e8c09aa075287ca8e4b58c2bbd8f5df25333e69321586af251f2ee5de5450de10c4b0311052fd5
6
+ metadata.gz: d73e8e01c7ba97daf2bf8e5e5e8d7dbdc8e55d8bbfacbc9774de78c7cdd99cbfcf5cb053bbf1c9ed44f2e01f34460649a3a552b523822e260446b63adbbea0b7
7
+ data.tar.gz: f5c57a66a168f7133f9222932521f6c18d73edf57d5cb46294b57f000ec8e8a9b292acf001f9b28a515ca68ae89a767de86a5b5f99c0afddd4635ac266e15ec6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 0.1.6 (2022-08-12)
5
+ ------------------
6
+
7
+ * Issue - Update to the latest aws-crt-ffi.
8
+
4
9
  0.1.5 (2022-04-05)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.5
1
+ 0.1.6
Binary file
@@ -9,13 +9,17 @@ OS_BINARIES = {
9
9
 
10
10
  DEFAULT_BINARY = 'libaws-crt-ffi.so'
11
11
 
12
- # @return [String] returns Gem::Platform style name for the current system
13
- # similar to Gem::Platform.local but will return systems host os/cpu
14
- # for Jruby
12
+ # @return [Gem::Platform] similar to Gem::Platform.local but will return
13
+ # host os/cpu for Jruby
15
14
  def local_platform
16
15
  Gem::Platform.new(host_string)
17
16
  end
18
17
 
18
+ # @return [Gem::Platform] return Gem::Platform for host os with target cpu
19
+ def target_platform(cpu)
20
+ Gem::Platform.new(target_string(cpu))
21
+ end
22
+
19
23
  # @return [String] return the file name for the CRT library for the platform
20
24
  def crt_bin_name(platform)
21
25
  OS_BINARIES[platform.os] || DEFAULT_BINARY
@@ -31,9 +35,14 @@ def crt_bin_path(platform)
31
35
  File.expand_path(crt_bin_name(platform), crt_bin_dir(platform))
32
36
  end
33
37
 
34
- # @return [String] generate a string that be used with Gem::Platform
38
+ # @return [String] generate a string that can be used with Gem::Platform
35
39
  def host_string
36
- "#{host_cpu}-#{host_os}"
40
+ target_string(host_cpu)
41
+ end
42
+
43
+ # @return [String] generate a string that can be used with Gem::Platform
44
+ def target_string(cpu)
45
+ "#{cpu}-#{host_os}"
37
46
  end
38
47
 
39
48
  # @return [String] host cpu, even on jruby
@@ -17,7 +17,7 @@ module Aws
17
17
  strings.each do |s|
18
18
  e = s.to_s.unpack('c*')
19
19
  buffer << [e.length].pack('N')
20
- buffer << (e).pack('c*')
20
+ buffer << e.pack('c*')
21
21
  end
22
22
  buffer.string.unpack('c*')
23
23
  end
@@ -31,8 +31,8 @@ module Aws
31
31
  i = 0
32
32
  while i < buffer.size
33
33
  len = buffer[i, 4].pack('c*').unpack1('N')
34
- strings << (buffer[i + 4, len].pack('c*'))
35
- .force_encoding(Encoding::UTF_8)
34
+ strings << buffer[i + 4, len].pack('c*')
35
+ .force_encoding(Encoding::UTF_8)
36
36
  i += len + 4
37
37
  end
38
38
  strings
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-crt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-04-05 00:00:00.000000000 Z
11
+ date: 2022-08-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi