libusb 0.7.0-x64-mingw32 → 0.7.2-x64-mingw32

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: 13cb0f5eee03904372dfc17c7f990fc32c2a62e420e8d965ad14427bf1c050b7
4
- data.tar.gz: e55f618c12d90e3a710b838ef2214322240bd5bb76cfaa118ce4852edb9a7fa5
3
+ metadata.gz: 328e1ef16b31837906c710aad6f5517a19bea7beb005f53c5926bf0e5e9f9bd1
4
+ data.tar.gz: 657274b8125d74565d28ccb5431f709aa14f598b828850ae854c13367176b88f
5
5
  SHA512:
6
- metadata.gz: 914dbb583d8872226dd818b1ae9e10a6a0bb0de412ccb0ab4ec7ff1d9d74fbee347a4c7491620a1362ffd4458f95c48ad964d93f7dfcd352baa54c9b7a808e70
7
- data.tar.gz: 807a866f2d62eab24b1718b6a2922a709aea22d77ae82c40c5a70a895fe5967f830f26f26cf09ab76001c7d081295a2aa84d8ad7c30d817c32040fa64ecf6e07
6
+ metadata.gz: d11833acb72dc795b49efb13cb41c0e2513a4c36a9da513fddd685c000b95cee8ea1d3e3d92e00ae9bad0a379011ecff08ae46d59cc49512f72987f5245925cd
7
+ data.tar.gz: 0b73cd8e9eaa3a940961d2fdf43ea0d9347ca321107f82eba5a58c81ae64587ac845fce27666071658ea7a0ff02921085878f025874f18f29de672809d92404d
@@ -28,8 +28,8 @@ jobs:
28
28
  - x86-mingw32
29
29
  - x64-mingw-ucrt
30
30
  - x64-mingw32
31
- - x86-linux
32
- - x86_64-linux
31
+ # - x86-linux
32
+ # - x86_64-linux
33
33
 
34
34
  runs-on: ubuntu-latest
35
35
  env:
@@ -72,12 +72,12 @@ jobs:
72
72
  - os: windows
73
73
  ruby: "3.3"
74
74
  platform: x64-mingw-ucrt
75
- - os: ubuntu
76
- ruby: "2.5"
77
- platform: x86_64-linux
78
- - os: ubuntu
79
- ruby: "3.3"
80
- platform: x86_64-linux
75
+ # - os: ubuntu
76
+ # ruby: "2.5"
77
+ # platform: x86_64-linux
78
+ # - os: ubuntu
79
+ # ruby: "3.3"
80
+ # platform: x86_64-linux
81
81
 
82
82
  runs-on: ${{ matrix.os }}-latest
83
83
  steps:
data/History.md CHANGED
@@ -1,3 +1,19 @@
1
+ 0.7.2 / 2024-10-23
2
+ ------------------
3
+
4
+ Changed:
5
+ * Call libusb_set_log_cb only when available. #51
6
+ This was a regression leading to a crash on FreeBSD-14.1.
7
+
8
+
9
+ 0.7.1 / 2024-04-20
10
+ ------------------
11
+
12
+ Changed:
13
+ * Fix unreferencing LIBUSB::Context from Call::Transfer.
14
+ This prevented freeing of Context objects, as soon as a transfer was executed.
15
+
16
+
1
17
  0.7.0 / 2024-04-18
2
18
  ------------------
3
19
 
data/Rakefile CHANGED
@@ -52,8 +52,8 @@ CrossLibraries = [
52
52
  ['x86-mingw32', 'i686-w64-mingw32', 'bin/libusb-1.0.dll'],
53
53
  ['x64-mingw32', 'x86_64-w64-mingw32', 'bin/libusb-1.0.dll'],
54
54
  ['x64-mingw-ucrt', 'x86_64-w64-mingw32', 'bin/libusb-1.0.dll'],
55
- ['x86-linux', 'i686-linux-gnu', 'lib/libusb-1.0.so'],
56
- ['x86_64-linux', 'x86_64-linux-gnu', 'lib/libusb-1.0.so'],
55
+ # ['x86-linux', 'i686-linux-gnu', 'lib/libusb-1.0.so'],
56
+ # ['x86_64-linux', 'x86_64-linux-gnu', 'lib/libusb-1.0.so'],
57
57
  ].map do |ruby_platform, host_platform, libusb_dll|
58
58
  LIBUSB::CrossLibrary.new ruby_platform, host_platform, libusb_dll
59
59
  end
@@ -140,7 +140,9 @@ module LIBUSB
140
140
  if id # Is Context is about to be garbage collected?
141
141
  # In GC mode there's no way to call the registered collbacks, since they are GC'ed as well.
142
142
  # So disable callbacks now.
143
- Call.libusb_set_log_cb(self, nil, LOG_CB_CONTEXT)
143
+ if Call.respond_to?(:libusb_set_log_cb)
144
+ Call.libusb_set_log_cb(self, nil, LOG_CB_CONTEXT)
145
+ end
144
146
  Call.libusb_set_pollfd_notifiers(self, nil, nil, nil)
145
147
  end
146
148
  Call.libusb_exit(self)
@@ -66,7 +66,7 @@ module LIBUSB
66
66
  yield if block_given?
67
67
  rescue
68
68
  Bundler.ui.error "Untagging #{version_tag} due to error."
69
- sh "git tag -d #{version_tag}"
69
+ sh_with_status %W[git tag -d #{version_tag}]
70
70
  raise
71
71
  end
72
72
 
@@ -63,7 +63,7 @@ module LIBUSB
63
63
  # Now that the transfer is bound to a DevHandle, it must be registered in the Context.
64
64
  # This ensures that the Call::Transfer is freed before libusb_exit, avoiding warnings about still referenced devices.
65
65
  ctx = dev.device.context.instance_variable_get(:@ctx)
66
- @transfer.instance_variable_set(:@ctx, ctx.ref_context)
66
+ @transfer.pointer.instance_variable_set(:@ctx, ctx.ref_context)
67
67
  end
68
68
 
69
69
  # The handle for the device to communicate with.
@@ -15,5 +15,5 @@
15
15
 
16
16
  module LIBUSB
17
17
  # Library version of libusb for Ruby
18
- VERSION = "0.7.0"
18
+ VERSION = "0.7.2"
19
19
  end
data/lib/libusb-1.0.dll CHANGED
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: libusb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.2
5
5
  platform: x64-mingw32
6
6
  authors:
7
7
  - Lars Kanis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-04-18 00:00:00.000000000 Z
11
+ date: 2024-10-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi