clutter-gtk 3.1.1-x64-mingw32 → 3.1.2-x64-mingw32
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/Rakefile +0 -9
- data/dependency-check/Rakefile +40 -0
- data/test/run-test.rb +5 -6
- data/vendor/local/bin/libclutter-gtk-1.0-0.dll +0 -0
- data/vendor/local/lib/libclutter-gtk-1.0.dll.a +0 -0
- metadata +10 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3fc302090ab02d1a083a7769aaffde1e89b4d5a9
|
4
|
+
data.tar.gz: 544aaa8f2d78aa762c7a37c3323d87ce7cf1c721
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d09cc6605a57a3dd21f85d65295f8a4411378a78c00b0a6752b813891f00a4f5f532cf98218ebbfae910ef32d172b45125b2d1aa7ef057786dcd5ce09335beb5
|
7
|
+
data.tar.gz: 8fcccfc2b12bfb14daea678b713fce9ef523973666734177941490a401422ac879575e697946906271013bc87dd07ec6b57a7a4e55e070955716b3939dcc11bc
|
data/Rakefile
CHANGED
@@ -61,12 +61,3 @@ package_task = GNOME2::Rake::PackageTask.new do |package|
|
|
61
61
|
]
|
62
62
|
end
|
63
63
|
package_task.define
|
64
|
-
|
65
|
-
namespace :dependency do
|
66
|
-
desc "Install depenencies"
|
67
|
-
task :install do
|
68
|
-
# TODO: Install gir1.2-gtkclutter-1.0 on Debian.
|
69
|
-
end
|
70
|
-
end
|
71
|
-
|
72
|
-
task :build => "dependency:install"
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# Copyright (C) 2017 Ruby-GNOME2 Project Team
|
2
|
+
#
|
3
|
+
# This library is free software; you can redistribute it and/or
|
4
|
+
# modify it under the terms of the GNU Lesser General Public
|
5
|
+
# License as published by the Free Software Foundation; either
|
6
|
+
# version 2.1 of the License, or (at your option) any later version.
|
7
|
+
#
|
8
|
+
# This library is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
11
|
+
# Lesser General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU Lesser General Public
|
14
|
+
# License along with this library; if not, write to the Free Software
|
15
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
16
|
+
|
17
|
+
require "pkg-config"
|
18
|
+
require "native-package-installer"
|
19
|
+
|
20
|
+
case RUBY_PLATFORM
|
21
|
+
when /mingw|mswin/
|
22
|
+
task :default => "nothing"
|
23
|
+
else
|
24
|
+
task :default => "dependency:check"
|
25
|
+
end
|
26
|
+
|
27
|
+
task :nothing do
|
28
|
+
end
|
29
|
+
|
30
|
+
namespace :dependency do
|
31
|
+
desc "Check dependency"
|
32
|
+
task :check do
|
33
|
+
unless PKGConfig.check_version?("clutter-gtk-1.0")
|
34
|
+
unless NativePackageInstaller.install(:debian => "libclutter-gtk-1.0-dev",
|
35
|
+
:homebrew => "clutter-gtk")
|
36
|
+
exit(false)
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
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-2017 Ruby-GNOME2 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
|
@@ -31,6 +31,7 @@ gio_base = File.join(ruby_gnome2_base, "gio2")
|
|
31
31
|
clutter_base = File.join(ruby_gnome2_base, "clutter")
|
32
32
|
gdk3_base = File.join(ruby_gnome2_base, "gdk3")
|
33
33
|
gtk3_base = File.join(ruby_gnome2_base, "gtk3")
|
34
|
+
clutter_gdk_base = File.join(ruby_gnome2_base, "clutter-gdk")
|
34
35
|
clutter_gtk_base = File.join(ruby_gnome2_base, "clutter-gtk")
|
35
36
|
|
36
37
|
modules = [
|
@@ -44,6 +45,7 @@ modules = [
|
|
44
45
|
[clutter_base, "clutter"],
|
45
46
|
[gdk3_base, "gdk3"],
|
46
47
|
[gtk3_base, "gtk3"],
|
48
|
+
[clutter_gdk_base, "clutter-gdk"],
|
47
49
|
[clutter_gtk_base, "clutter-gtk"],
|
48
50
|
]
|
49
51
|
modules.each do |target, module_name|
|
@@ -66,12 +68,9 @@ require "clutter-test-utils"
|
|
66
68
|
$LOAD_PATH.unshift(File.join(clutter_gtk_base, "test"))
|
67
69
|
require "clutter-gtk-test-utils"
|
68
70
|
|
69
|
-
require "clutter-gtk"
|
70
|
-
|
71
|
-
repository = GObjectIntrospection::Repository.default
|
72
71
|
begin
|
73
|
-
|
74
|
-
rescue
|
72
|
+
require "clutter-gtk"
|
73
|
+
rescue GObjectIntrospection::RepositoryError
|
75
74
|
puts("Omit because typelib file doesn't exist: #{$!.message}")
|
76
75
|
exit(true)
|
77
76
|
end
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: clutter-gtk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.1.
|
4
|
+
version: 3.1.2
|
5
5
|
platform: x64-mingw32
|
6
6
|
authors:
|
7
7
|
- The Ruby-GNOME2 Project Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-04-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: clutter
|
@@ -16,42 +16,42 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.1.
|
19
|
+
version: 3.1.2
|
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.1.
|
26
|
+
version: 3.1.2
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: clutter-gdk
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 3.1.
|
33
|
+
version: 3.1.2
|
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.1.
|
40
|
+
version: 3.1.2
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: gtk3
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - '='
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 3.1.
|
47
|
+
version: 3.1.2
|
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.1.
|
54
|
+
version: 3.1.2
|
55
55
|
description: Ruby/ClutterGTK is a Ruby binding of Clutter-GTK.
|
56
56
|
email: ruby-gnome2-devel-en@lists.sourceforge.net
|
57
57
|
executables: []
|
@@ -59,6 +59,7 @@ extensions: []
|
|
59
59
|
extra_rdoc_files: []
|
60
60
|
files:
|
61
61
|
- Rakefile
|
62
|
+
- dependency-check/Rakefile
|
62
63
|
- lib/clutter-gtk.rb
|
63
64
|
- sample/events.rb
|
64
65
|
- sample/multistage.rb
|
@@ -120,7 +121,7 @@ files:
|
|
120
121
|
- vendor/local/share/locale/zh_CN/LC_MESSAGES/cluttergtk-1.0.mo
|
121
122
|
homepage: http://ruby-gnome2.sourceforge.jp/
|
122
123
|
licenses:
|
123
|
-
-
|
124
|
+
- LGPL-2.1+
|
124
125
|
metadata: {}
|
125
126
|
post_install_message:
|
126
127
|
rdoc_options: []
|