glu 8.2.0-x64-mingw32 → 8.2.1-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
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/History.rdoc +5 -0
- data/Rakefile +13 -2
- data/ext/glu/extconf.rb +2 -1
- data/lib/glu.rb +1 -1
- data/lib/glu/2.0/glu.so +0 -0
- data/lib/glu/2.1/glu.so +0 -0
- metadata +25 -25
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9e212cb92f3932274d5d55874d97f66b59f98379
|
4
|
+
data.tar.gz: e81819e5a04d831aa5bd2949c1cb80094edbbdd0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 77beb6a830b891925cf5827549d8484272801f81e6d962ad01332bd0cabe9e568f7132d029a970dc01be09b0fe6a2db9c9f5be87a21635d569af2c251545146c
|
7
|
+
data.tar.gz: 7effe2298d9b1a7f624c54c89599233d970baccafd5e6ed108eb54907716cfa3362c509894ef0a8cbd8932911f4d3ef5e5920623d1dee39653cf81d63c26c265
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/History.rdoc
CHANGED
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.
|
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 = ['
|
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
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.
|
4
|
+
version: 8.2.1
|
5
5
|
platform: x64-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-
|
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.
|
61
|
-
- -
|
60
|
+
version: '0.9'
|
61
|
+
- - ">="
|
62
62
|
- !ruby/object:Gem::Version
|
63
|
-
version: 0.
|
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.
|
71
|
-
- -
|
70
|
+
version: '0.9'
|
71
|
+
- - ">="
|
72
72
|
- !ruby/object:Gem::Version
|
73
|
-
version: 0.
|
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.
|
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.
|
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
|
@@ -130,23 +130,23 @@ licenses:
|
|
130
130
|
metadata: {}
|
131
131
|
post_install_message:
|
132
132
|
rdoc_options:
|
133
|
-
- --main
|
133
|
+
- "--main"
|
134
134
|
- README.rdoc
|
135
135
|
require_paths:
|
136
136
|
- lib
|
137
137
|
required_ruby_version: !ruby/object:Gem::Requirement
|
138
138
|
requirements:
|
139
|
-
- -
|
139
|
+
- - ">="
|
140
140
|
- !ruby/object:Gem::Version
|
141
141
|
version: 1.9.2
|
142
142
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
143
143
|
requirements:
|
144
|
-
- -
|
144
|
+
- - ">="
|
145
145
|
- !ruby/object:Gem::Version
|
146
146
|
version: '0'
|
147
147
|
requirements: []
|
148
|
-
rubyforge_project:
|
149
|
-
rubygems_version: 2.
|
148
|
+
rubyforge_project:
|
149
|
+
rubygems_version: 2.4.2
|
150
150
|
signing_key:
|
151
151
|
specification_version: 4
|
152
152
|
summary: Glu bindings for the opengl gem, split into a separate gem because of Glu
|
metadata.gz.sig
CHANGED
Binary file
|