vte3 3.4.4 → 3.4.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 37f40704c0f784ae904f8642b972e0fd2b6eb5a0c077c364a8303e739cbe1305
4
- data.tar.gz: 9c2708cab4c76e4e44fb322366f79b3cead272634186440e93c67a757724c595
3
+ metadata.gz: 461fe614d7e0ef2a7a3540dc528176a788a2aa299f346be7f5778e06da37d3ba
4
+ data.tar.gz: 943a7d574a003d3c5a43d4380dd998395cbdb5c0a57f394cceebcee084342e38
5
5
  SHA512:
6
- metadata.gz: f604df173ecfd77a47065ba6f30407f8c5111d4ca320e67eb02f79adfff63709f1f27e47b5c8efd5dbaaa4a888421d8b516ea12ed8c46c574c9b8fa8479666d8
7
- data.tar.gz: 4693e11dccba024fd1681d5d1458a5b9263126b1499d0c7af4090c4306f970120a72a194348b5f813de671d4367da3b8ed97afb6cf52e3666050821d5a2f6b80
6
+ metadata.gz: 82d1b78441bd1cb6712666eb78ba2e2398913a0a303d2d249950c4d6b736e3eddc706e1ffa8d8d3227f05d1ab9ff8d8946b34fa48bf8db4f9207961d3cedfe26
7
+ data.tar.gz: f7ab1a2b90affd51bd2e84d549f32f153ba7e87f0ca4469350a1932ed7a71b131c67b6a20901f1d539b3dc9aeff4d972866631f65ac839123edae9db1a080882
@@ -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.5
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-07-07 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.5
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.5
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: []