glib2 2.0.3 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/glib2/rbglib.h +2 -2
- data/lib/gnome2/rake/package-task.rb +5 -4
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9a9129c4c11243fef3c35c784c9db0608c2580c5
|
4
|
+
data.tar.gz: 5cefaa68dc53b140cd2a6edac7459024323faf7c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 213cdab4ecded207438fecfe9e4f007cbabb3058719fba7fbedcb1872ffe65664667a1b5e00cb105ce1516aab9f4ed20ee7f4bcbcef0e598a6421b2fe6838488
|
7
|
+
data.tar.gz: 964f820d9104d08128c80bf6d1f3f9bbace42142e90e9ced6e26d3d57bb84dccf3c6817c0cea1f18659d348a3dc051109f504b060cf49ed4a31252a495c22ab7
|
data/ext/glib2/rbglib.h
CHANGED
@@ -34,8 +34,8 @@ extern "C" {
|
|
34
34
|
#endif /* __cplusplus */
|
35
35
|
|
36
36
|
#define RBGLIB_MAJOR_VERSION 2
|
37
|
-
#define RBGLIB_MINOR_VERSION
|
38
|
-
#define RBGLIB_MICRO_VERSION
|
37
|
+
#define RBGLIB_MINOR_VERSION 1
|
38
|
+
#define RBGLIB_MICRO_VERSION 0
|
39
39
|
|
40
40
|
#ifndef RSTRING_PTR
|
41
41
|
# define RSTRING_PTR(s) (RSTRING(s)->ptr)
|
@@ -120,6 +120,7 @@ module GNOME2
|
|
120
120
|
s.author = @author
|
121
121
|
s.email = @email
|
122
122
|
s.homepage = @homepage
|
123
|
+
s.licenses = ["LGPLv2.1 or later"]
|
123
124
|
s.version = version
|
124
125
|
extensions = FileList["ext/#{@name}/extconf.rb"]
|
125
126
|
extensions.existing!
|
@@ -174,15 +175,15 @@ module GNOME2
|
|
174
175
|
win32_binary_dir = @package.windows.relative_binary_dir
|
175
176
|
win32_files = []
|
176
177
|
if win32_binary_dir.exist?
|
177
|
-
Find.find(win32_binary_dir.to_s) do |
|
178
|
-
next
|
179
|
-
|
178
|
+
Find.find(win32_binary_dir.to_s) do |path|
|
179
|
+
next unless File.file?(path)
|
180
|
+
next if /\.zip\z/ =~ path
|
181
|
+
win32_files << path
|
180
182
|
end
|
181
183
|
end
|
182
184
|
spec.files += win32_files
|
183
185
|
stage_path = "#{ext.tmp_dir}/#{ext.cross_platform}/stage"
|
184
186
|
win32_files.each do |win32_file|
|
185
|
-
next unless File.file?(win32_file)
|
186
187
|
stage_win32_file = "#{stage_path}/#{win32_file}"
|
187
188
|
stage_win32_binary_dir = File.dirname(stage_win32_file)
|
188
189
|
directory stage_win32_binary_dir
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: glib2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0
|
4
|
+
version: 2.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- The Ruby-GNOME2 Project Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-12-
|
11
|
+
date: 2013-12-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pkg-config
|
@@ -160,7 +160,8 @@ files:
|
|
160
160
|
- test/test_value.rb
|
161
161
|
- test/test_win32.rb
|
162
162
|
homepage: http://ruby-gnome2.sourceforge.jp/
|
163
|
-
licenses:
|
163
|
+
licenses:
|
164
|
+
- LGPLv2.1 or later
|
164
165
|
metadata: {}
|
165
166
|
post_install_message:
|
166
167
|
rdoc_options: []
|