clutter 3.4.0 → 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 +4 -4
- data/test/clutter-test-utils.rb +2 -2
- data/test/run-test.rb +26 -50
- metadata +9 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9a5c0dcf22fdd199bef1e05e72d2c4aa6e64e818bd5493560639fe27f2bcdd08
|
4
|
+
data.tar.gz: ddf9216a368db7c4a97a02da08ad3befaf46614e6c59b7723a8f4355cd7adf84
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eefdb3de245b0ff96c918e309d210d0546f6651b37755a3d202dfc1604ae8bd4f8357a1a79fa1bb06877ded971cd599565746dce07550abdd82aa1303d48acd1
|
7
|
+
data.tar.gz: 7fdac150f9b86331cb03275c7e735a173a0a6ef72ba55592bb01bd39b415a6c53c66322f708942c8c3c7597540047f4d5e49ac85ce9ffa1f789772a2cc340b8c
|
data/test/clutter-test-utils.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (C) 2012-
|
1
|
+
# Copyright (C) 2012-2021 Ruby-GNOME Project Team
|
2
2
|
#
|
3
3
|
# This library is free software; you can redistribute it and/or
|
4
4
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -14,7 +14,7 @@
|
|
14
14
|
# License along with this library; if not, write to the Free Software
|
15
15
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
16
16
|
|
17
|
-
require "
|
17
|
+
require "clutter"
|
18
18
|
|
19
19
|
module ClutterTestUtils
|
20
20
|
private
|
data/test/run-test.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
#
|
3
|
-
# Copyright (C) 2012-
|
3
|
+
# Copyright (C) 2012-2021 Ruby-GNOME Project Team
|
4
4
|
#
|
5
5
|
# This library is free software; you can redistribute it and/or
|
6
6
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -16,55 +16,31 @@
|
|
16
16
|
# License along with this library; if not, write to the Free Software
|
17
17
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
18
18
|
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
`make -C #{target.dump} > /dev/null` or exit(false)
|
19
|
+
require_relative "../../glib2/test/run-test"
|
20
|
+
|
21
|
+
run_test(__dir__,
|
22
|
+
[
|
23
|
+
"glib2",
|
24
|
+
"gobject-introspection",
|
25
|
+
"cairo-gobject",
|
26
|
+
"pango",
|
27
|
+
"clutter",
|
28
|
+
]) do
|
29
|
+
require_relative "../../gobject-introspection/test/gobject-introspection-test-utils"
|
30
|
+
require_relative "clutter-test-utils"
|
31
|
+
|
32
|
+
repository = GObjectIntrospection::Repository.default
|
33
|
+
begin
|
34
|
+
repository.require(Clutter::Loader::NAMESPACE)
|
35
|
+
rescue GObjectIntrospection::RepositoryError
|
36
|
+
puts("Omit because typelib file doesn't exist: #{$!.message}")
|
37
|
+
exit(true)
|
39
38
|
end
|
40
|
-
$LOAD_PATH.unshift(File.join(target, "ext", module_name))
|
41
|
-
$LOAD_PATH.unshift(File.join(target, "lib"))
|
42
|
-
end
|
43
|
-
|
44
|
-
$LOAD_PATH.unshift(File.join(glib_base, "test"))
|
45
|
-
require "glib-test-init"
|
46
|
-
|
47
|
-
$LOAD_PATH.unshift(File.join(gobject_introspection_base, "test"))
|
48
|
-
require "gobject-introspection-test-utils"
|
49
|
-
|
50
|
-
$LOAD_PATH.unshift(File.join(clutter_base, "test"))
|
51
|
-
require "clutter-test-utils"
|
52
39
|
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
puts("Omit because typelib file doesn't exist: #{$!.message}")
|
60
|
-
exit(true)
|
61
|
-
end
|
62
|
-
|
63
|
-
begin
|
64
|
-
Clutter.init
|
65
|
-
rescue Clutter::InitError
|
66
|
-
puts("Omit because initialization is failed: #{$!.message}")
|
67
|
-
exit(true)
|
40
|
+
begin
|
41
|
+
Clutter.init
|
42
|
+
rescue Clutter::InitError
|
43
|
+
puts("Omit because initialization is failed: #{$!.message}")
|
44
|
+
exit(true)
|
45
|
+
end
|
68
46
|
end
|
69
|
-
|
70
|
-
exit Test::Unit::AutoRunner.run(true, File.join(clutter_base, "test"))
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: clutter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.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:
|
11
|
+
date: 2021-07-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cairo-gobject
|
@@ -16,42 +16,42 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.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.
|
26
|
+
version: 3.4.5
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: gobject-introspection
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 3.4.
|
33
|
+
version: 3.4.5
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 3.4.
|
40
|
+
version: 3.4.5
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: pango
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - '='
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 3.4.
|
47
|
+
version: 3.4.5
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - '='
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 3.4.
|
54
|
+
version: 3.4.5
|
55
55
|
description: Ruby/Clutter is a Ruby binding of Clutter.
|
56
56
|
email: ruby-gnome2-devel-en@lists.sourceforge.net
|
57
57
|
executables: []
|
@@ -130,7 +130,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
130
130
|
- !ruby/object:Gem::Version
|
131
131
|
version: '0'
|
132
132
|
requirements: []
|
133
|
-
rubygems_version: 3.
|
133
|
+
rubygems_version: 3.3.0.dev
|
134
134
|
signing_key:
|
135
135
|
specification_version: 4
|
136
136
|
summary: Ruby/Clutter is a Ruby binding of Clutter.
|