gmp 0.6.41 → 0.6.43
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.
- data/CHANGELOG +4 -0
- data/COPYING.md +13 -0
- data/README.markdown +5 -0
- data/ext/extconf.rb +6 -1
- metadata +12 -8
- checksums.yaml +0 -7
data/CHANGELOG
CHANGED
data/COPYING.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Copyright 2013 Sam Rawlins
|
|
2
|
+
|
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License.
|
|
5
|
+
You may obtain a copy of the License at
|
|
6
|
+
|
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
|
|
9
|
+
Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
See the License for the specific language governing permissions and
|
|
13
|
+
limitations under the License.
|
data/README.markdown
CHANGED
|
@@ -586,6 +586,11 @@ Benchmarking
|
|
|
586
586
|
|
|
587
587
|
Please see [performance](https://github.com/srawlins/gmp/blob/master/performance.md) on GitHub.
|
|
588
588
|
|
|
589
|
+
License
|
|
590
|
+
-------
|
|
591
|
+
|
|
592
|
+
This gem is now licensed under the [Apache License Version 2.0](COPYING.md).
|
|
593
|
+
|
|
589
594
|
Todo
|
|
590
595
|
----
|
|
591
596
|
|
data/ext/extconf.rb
CHANGED
|
@@ -43,7 +43,12 @@ if (begin; JRuby; rescue NameError; end) != nil
|
|
|
43
43
|
end
|
|
44
44
|
|
|
45
45
|
|
|
46
|
-
|
|
46
|
+
if try_compile('', '-O6')
|
|
47
|
+
$CFLAGS += ' -Wall -W -O6 -g'
|
|
48
|
+
else
|
|
49
|
+
$CFLAGS += ' -Wall -W -O3 -g'
|
|
50
|
+
end
|
|
51
|
+
|
|
47
52
|
if ok
|
|
48
53
|
create_makefile('gmp')
|
|
49
54
|
else
|
metadata
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gmp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.43
|
|
5
|
+
prerelease:
|
|
5
6
|
platform: ruby
|
|
6
7
|
authors:
|
|
7
8
|
- Tomasz Wegrzanowski
|
|
@@ -9,7 +10,7 @@ authors:
|
|
|
9
10
|
autorequire:
|
|
10
11
|
bindir: bin
|
|
11
12
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
13
|
+
date: 2013-11-06 00:00:00.000000000 Z
|
|
13
14
|
dependencies: []
|
|
14
15
|
description: gmp - providing Ruby bindings to the GMP library.
|
|
15
16
|
email:
|
|
@@ -94,6 +95,7 @@ files:
|
|
|
94
95
|
- benchmark/results-5.1.0_0.6.19.ods
|
|
95
96
|
- benchmark/results-5.1.3_0.6.31.ods
|
|
96
97
|
- CHANGELOG
|
|
98
|
+
- COPYING.md
|
|
97
99
|
- INSTALL
|
|
98
100
|
- README.html
|
|
99
101
|
- README.markdown
|
|
@@ -104,27 +106,29 @@ files:
|
|
|
104
106
|
- performance.2012.html
|
|
105
107
|
- performance.2012.pdf
|
|
106
108
|
homepage: http://github.com/srawlins/gmp
|
|
107
|
-
licenses:
|
|
108
|
-
|
|
109
|
+
licenses:
|
|
110
|
+
- Apache License Version 2.0
|
|
109
111
|
post_install_message:
|
|
110
112
|
rdoc_options: []
|
|
111
113
|
require_paths:
|
|
112
114
|
- lib
|
|
113
115
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
116
|
+
none: false
|
|
114
117
|
requirements:
|
|
115
|
-
- -
|
|
118
|
+
- - ! '>='
|
|
116
119
|
- !ruby/object:Gem::Version
|
|
117
120
|
version: 1.8.6
|
|
118
121
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
122
|
+
none: false
|
|
119
123
|
requirements:
|
|
120
|
-
- -
|
|
124
|
+
- - ! '>='
|
|
121
125
|
- !ruby/object:Gem::Version
|
|
122
126
|
version: '0'
|
|
123
127
|
requirements:
|
|
124
128
|
- GMP compiled and working properly.
|
|
125
129
|
rubyforge_project:
|
|
126
|
-
rubygems_version:
|
|
130
|
+
rubygems_version: 1.8.25
|
|
127
131
|
signing_key:
|
|
128
|
-
specification_version:
|
|
132
|
+
specification_version: 3
|
|
129
133
|
summary: Provides Ruby bindings to the GMP library.
|
|
130
134
|
test_files: []
|
checksums.yaml
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
SHA1:
|
|
3
|
-
metadata.gz: 8f050d69659030fb11abceaf21d1ad265ac6d696
|
|
4
|
-
data.tar.gz: e15d7ae348a201bb6f5d53754141939128fa96ac
|
|
5
|
-
SHA512:
|
|
6
|
-
metadata.gz: 10b8ea24e97956f68d0315211113c2b93642c16aaeb40ff767c45d5137a79b252ae2d94b5136ba4e230de2a5cf4aa3ff3f308ab51b5f8f2dc9a22d932eaa5d56
|
|
7
|
-
data.tar.gz: 55ebb541e81d2045a300006adc26926c8483ff3947618b21478abdba52c66eef89f0bf86e69fe2b6547427010ff60d1bab471d06ae1746bceff7041687873684
|