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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 51cb310b1487ddff56bbd1779b3d01fc2c57f129
4
- data.tar.gz: 56ef55006002b7182b07307ddd5f23a406e6247d
3
+ metadata.gz: 9a9129c4c11243fef3c35c784c9db0608c2580c5
4
+ data.tar.gz: 5cefaa68dc53b140cd2a6edac7459024323faf7c
5
5
  SHA512:
6
- metadata.gz: fb2cc0a1746d30cf284a1f37f74c750c8a665d02d9d91683b87568f5b6b933a894c227987ee083f0d247b3cd1239f2979f4fb36f736972780a615f5ea169e8b1
7
- data.tar.gz: 2f7dc9409805337147693951158b2929571b7fed0c767699dbbce2052c2fba011bd8a7324db730c649e619f4c6182a512e6c0cd2fb49dd9f0b111f1637f1676b
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 0
38
- #define RBGLIB_MICRO_VERSION 3
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 |file|
178
- next if /\.zip\z/ =~ file
179
- win32_files << file
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.3
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-28 00:00:00.000000000 Z
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: []