glu 8.2.0-x86-mingw32 → 8.2.1-x86-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 29937621be5fd394888fc792c8f990fb8ca38955
4
- data.tar.gz: 52f4e31fc3e6de41b0ee8516dc6367c48a6585f1
3
+ metadata.gz: cf27dcc5ec4dfeb37e6d42b478d0086b45a59d5f
4
+ data.tar.gz: f84a32c3aa63e50402ef0c7dc3a080e100900bd8
5
5
  SHA512:
6
- metadata.gz: ec8bdfcd24f78614ae2340bc06125614f8221a4141da30657d54d08c72e0928e6b0e352627385898467b597c36d712c80fa906e0988a62d6221b1d5f9b7df608
7
- data.tar.gz: 9b0a9340fca73b1b0dd706067b40e9d1e5cd08b163b5a512a25182e1012bfbcd2292d3aadfad54a23135090a1df932e83e48f1bfaf36c4ddf55284c0193d0b2b
6
+ metadata.gz: 8db8536b9e7dacd532bdfc147e0bf809ed0235a2367154be6d38e05723b61345cba8580311bef7f8c250c3ab79cc2124530edd261acd2df109d96fd10b1b2ab7
7
+ data.tar.gz: 608d96266cab385db9ca149e15238e52e233e7bea8dbd50f06a682a4eef97ab20ebbd9bf49f6376d24c0fe7a9ccc72f913dfccaa397ec07f47da9614db18997d
checksums.yaml.gz.sig CHANGED
Binary file
data.tar.gz.sig CHANGED
Binary file
data/History.rdoc CHANGED
@@ -1,3 +1,8 @@
1
+ === 8.2.1 / 2014-10-06
2
+
3
+ * Add ruby-2.1 to binary windows gems.
4
+ * Fix build on OSX
5
+
1
6
  === 8.2.0 / 2014-03-14
2
7
 
3
8
  * Add x64-mingw platform for cross build and add ruby-2.0.0 to binary gems.
data/Rakefile CHANGED
@@ -31,7 +31,7 @@ hoe = Hoe.spec 'glu' do
31
31
  self.history_file = 'History.rdoc'
32
32
  self.extra_rdoc_files = FileList['*.rdoc']
33
33
 
34
- extra_dev_deps << ['rake-compiler', '~> 0.7', '>= 0.7.9']
34
+ extra_dev_deps << ['rake-compiler', '~> 0.9', '>= 0.9.1']
35
35
 
36
36
  self.spec_extras = {
37
37
  :extensions => %w[ext/glu/extconf.rb],
@@ -43,7 +43,18 @@ Rake::ExtensionTask.new 'glu', hoe.spec do |ext|
43
43
  ext.lib_dir = 'lib/glu'
44
44
 
45
45
  ext.cross_compile = true
46
- ext.cross_platform = ['i386-mingw32', 'x64-mingw32']
46
+ ext.cross_platform = ['x86-mingw32', 'x64-mingw32']
47
+ end
48
+
49
+ # To reduce the gem file size strip mingw32 dlls before packaging
50
+ ENV['RUBY_CC_VERSION'].to_s.split(':').each do |ruby_version|
51
+ task "copy:glu:x86-mingw32:#{ruby_version}" do |t|
52
+ sh "i686-w64-mingw32-strip -S tmp/x86-mingw32/stage/lib/glu/#{ruby_version[/^\d+\.\d+/]}/glu.so"
53
+ end
54
+
55
+ task "copy:glu:x64-mingw32:#{ruby_version}" do |t|
56
+ sh "x86_64-w64-mingw32-strip -S tmp/x64-mingw32/stage/lib/glu/#{ruby_version[/^\d+\.\d+/]}/glu.so"
57
+ end
47
58
  end
48
59
 
49
60
  task :test => :compile
data/ext/glu/extconf.rb CHANGED
@@ -23,7 +23,8 @@ ok =
23
23
  (have_library('opengl32') &&
24
24
  have_library('glu32')) ||
25
25
  (have_library('GL', 'glVertex3d') &&
26
- have_library('GLU', 'gluLookAt'))
26
+ have_library('GLU', 'gluLookAt')) ||
27
+ (have_framework('OpenGL') && have_framework('Cocoa'))
27
28
 
28
29
  ok &&=
29
30
  (have_header('GL/gl.h') && have_header('GL/glu.h')) ||
data/lib/glu.rb CHANGED
@@ -24,5 +24,5 @@ module GLU
24
24
  end
25
25
 
26
26
  module Glu
27
- VERSION = "8.2.0"
27
+ VERSION = "8.2.1"
28
28
  end
data/lib/glu/1.9/glu.so CHANGED
Binary file
data/lib/glu/2.0/glu.so CHANGED
Binary file
data/lib/glu/2.1/glu.so CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: glu
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.2.0
4
+ version: 8.2.1
5
5
  platform: x86-mingw32
6
6
  authors:
7
7
  - Eric Hodel
@@ -35,56 +35,56 @@ cert_chain:
35
35
  GrqF74zpLl7/KFdHC8VmzwZS18hvDjxeLVuVI2gIGnBInqnlqv05g/l4/1pISh5j
36
36
  dS4=
37
37
  -----END CERTIFICATE-----
38
- date: 2014-03-14 00:00:00.000000000 Z
38
+ date: 2014-10-06 00:00:00.000000000 Z
39
39
  dependencies:
40
40
  - !ruby/object:Gem::Dependency
41
41
  name: rdoc
42
42
  requirement: !ruby/object:Gem::Requirement
43
43
  requirements:
44
- - - ~>
44
+ - - "~>"
45
45
  - !ruby/object:Gem::Version
46
46
  version: '4.0'
47
47
  type: :development
48
48
  prerelease: false
49
49
  version_requirements: !ruby/object:Gem::Requirement
50
50
  requirements:
51
- - - ~>
51
+ - - "~>"
52
52
  - !ruby/object:Gem::Version
53
53
  version: '4.0'
54
54
  - !ruby/object:Gem::Dependency
55
55
  name: rake-compiler
56
56
  requirement: !ruby/object:Gem::Requirement
57
57
  requirements:
58
- - - ~>
58
+ - - "~>"
59
59
  - !ruby/object:Gem::Version
60
- version: '0.7'
61
- - - '>='
60
+ version: '0.9'
61
+ - - ">="
62
62
  - !ruby/object:Gem::Version
63
- version: 0.7.9
63
+ version: 0.9.1
64
64
  type: :development
65
65
  prerelease: false
66
66
  version_requirements: !ruby/object:Gem::Requirement
67
67
  requirements:
68
- - - ~>
68
+ - - "~>"
69
69
  - !ruby/object:Gem::Version
70
- version: '0.7'
71
- - - '>='
70
+ version: '0.9'
71
+ - - ">="
72
72
  - !ruby/object:Gem::Version
73
- version: 0.7.9
73
+ version: 0.9.1
74
74
  - !ruby/object:Gem::Dependency
75
75
  name: hoe
76
76
  requirement: !ruby/object:Gem::Requirement
77
77
  requirements:
78
- - - ~>
78
+ - - "~>"
79
79
  - !ruby/object:Gem::Version
80
- version: '3.7'
80
+ version: '3.13'
81
81
  type: :development
82
82
  prerelease: false
83
83
  version_requirements: !ruby/object:Gem::Requirement
84
84
  requirements:
85
- - - ~>
85
+ - - "~>"
86
86
  - !ruby/object:Gem::Version
87
- version: '3.7'
87
+ version: '3.13'
88
88
  description: Glu bindings for the opengl gem, split into a separate gem because of
89
89
  Glu deprecation.
90
90
  email:
@@ -102,10 +102,10 @@ extra_rdoc_files:
102
102
  - Manifest.txt
103
103
  - README.rdoc
104
104
  files:
105
- - .autotest
106
- - .gemtest
107
- - .gitignore
108
- - .travis.yml
105
+ - ".autotest"
106
+ - ".gemtest"
107
+ - ".gitignore"
108
+ - ".travis.yml"
109
109
  - History.rdoc
110
110
  - MIT-LICENSE
111
111
  - Manifest.txt
@@ -131,23 +131,23 @@ licenses:
131
131
  metadata: {}
132
132
  post_install_message:
133
133
  rdoc_options:
134
- - --main
134
+ - "--main"
135
135
  - README.rdoc
136
136
  require_paths:
137
137
  - lib
138
138
  required_ruby_version: !ruby/object:Gem::Requirement
139
139
  requirements:
140
- - - '>='
140
+ - - ">="
141
141
  - !ruby/object:Gem::Version
142
142
  version: 1.9.2
143
143
  required_rubygems_version: !ruby/object:Gem::Requirement
144
144
  requirements:
145
- - - '>='
145
+ - - ">="
146
146
  - !ruby/object:Gem::Version
147
147
  version: '0'
148
148
  requirements: []
149
- rubyforge_project: glu
150
- rubygems_version: 2.2.2
149
+ rubyforge_project:
150
+ rubygems_version: 2.4.2
151
151
  signing_key:
152
152
  specification_version: 4
153
153
  summary: Glu bindings for the opengl gem, split into a separate gem because of Glu
metadata.gz.sig CHANGED
Binary file