vte3 3.4.4 → 3.4.8

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: 37f40704c0f784ae904f8642b972e0fd2b6eb5a0c077c364a8303e739cbe1305
4
- data.tar.gz: 9c2708cab4c76e4e44fb322366f79b3cead272634186440e93c67a757724c595
3
+ metadata.gz: 2b6de7e15445c31bc4083d44ac92c0d00af113e7c3660f79351c9e0a3a81738f
4
+ data.tar.gz: 0630bd45075e7f6c78832431d5094c6958e47ce7b70427030b295649bd05bb87
5
5
  SHA512:
6
- metadata.gz: f604df173ecfd77a47065ba6f30407f8c5111d4ca320e67eb02f79adfff63709f1f27e47b5c8efd5dbaaa4a888421d8b516ea12ed8c46c574c9b8fa8479666d8
7
- data.tar.gz: 4693e11dccba024fd1681d5d1458a5b9263126b1499d0c7af4090c4306f970120a72a194348b5f813de671d4367da3b8ed97afb6cf52e3666050821d5a2f6b80
6
+ metadata.gz: 478c77a28d1f097e3abf11f3f6ecb0b53f66a276be0706657451879fc33e39c77184be3f14384d5e79ff5d2030bbe2f3ac253471e143e5ef69090351b8f55723
7
+ data.tar.gz: c88c2f102a79c9510fb7c89cb0dc6f384d9028fd6f676bbd7b8c3fe4241783d17637f427a3f29e982433e325ca0ebb193018181a5b0aeca0227120725e1037c2
@@ -16,6 +16,34 @@
16
16
 
17
17
  class TestTerminalSignals < Test::Unit::TestCase
18
18
  def setup
19
+ if Vte::Version.or_later?(0, 64)
20
+ omit("VTE 0.64 or later doesn't work in Docker by default")
21
+ # /usr/include/c++/11/bits/shared_ptr_base.h:976: std::__shared_ptr_access<
22
+ # _Tp,
23
+ # _Lp,
24
+ # <anonymous>,
25
+ # <anonymous>
26
+ # >::element_type&
27
+ # std::__shared_ptr_access<
28
+ # _Tp,
29
+ # _Lp,
30
+ # <anonymous>,
31
+ # <anonymous>
32
+ # >::operator*() const [
33
+ # with
34
+ # _Tp = vte::platform::Clipboard;
35
+ # __gnu_cxx::_Lock_policy _Lp = __gnu_cxx::_S_atomic;
36
+ # bool <anonymous> = false;
37
+ # bool <anonymous> = false;
38
+ # std::__shared_ptr_access<
39
+ # _Tp,
40
+ # _Lp,
41
+ # <anonymous>,
42
+ # <anonymous>
43
+ # >::element_type = vte::platform::Clipboard
44
+ #]: Assertion '_M_get() != nullptr' failed.
45
+ end
46
+
19
47
  @terminal = Vte::Terminal.new
20
48
  end
21
49
 
@@ -34,6 +34,17 @@ class TestTerminal < Test::Unit::TestCase
34
34
  @child_exit_callback_id = @terminal.signal_connect("child-exited") do
35
35
  @loop.quit
36
36
  end
37
+
38
+ if Vte::Version.or_later?(0, 64)
39
+ omit("VTE 0.64 or later doesn't work in Docker by default")
40
+ # Fedora Rawhide test in Docker reports:
41
+ # Failed to fdwalk: Operation not permitted
42
+ # not NotFound.
43
+ #
44
+ # The following discussions may be related:
45
+ # https://github.com/mviereck/x11docker/issues/346
46
+ # https://github.com/containers/podman/issues/10130
47
+ end
37
48
  end
38
49
 
39
50
  teardown do
@@ -62,7 +73,7 @@ class TestTerminal < Test::Unit::TestCase
62
73
  error_class = GLib::SpawnError
63
74
  end
64
75
  assert_raise(error_class) do
65
- @terminal.spawn(:argv => ["nonexistent"])
76
+ @terminal.spawn(:argv => ["/bin/nonexistent"])
66
77
  @wait_child_exited = true
67
78
  end
68
79
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vte3
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.4.4
4
+ version: 3.4.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Ruby-GNOME Project Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-04-22 00:00:00.000000000 Z
11
+ date: 2021-08-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gtk3
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 3.4.4
19
+ version: 3.4.8
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 3.4.4
26
+ version: 3.4.8
27
27
  description: Ruby/VTE is a Ruby binding of VTE for GTK+ 3
28
28
  email: ruby-gnome2-devel-en@lists.sourceforge.net
29
29
  executables: []