gdal 0.0.6 → 0.0.7
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
- data/.travis.yml +2 -1
- data/ext/gdal-ruby/gdal/extconf.rb +3 -0
- data/ext/gdal-ruby/gdalconst/extconf.rb +3 -0
- data/ext/gdal-ruby/ogr/extconf.rb +3 -2
- data/ext/gdal-ruby/osr/extconf.rb +3 -0
- data/lib/gdal-ruby/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: adf6ca7ec898c0788ef32fb41c86e02411ece7be
|
|
4
|
+
data.tar.gz: a05c414f390743bc212188114d5fbd085c543049
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f7b02e7987450fe2db33006c06942d405394755e57c15a0c2ff028c5bd7ff90efc206d972b59a5112d6ca038c66afc3184e517a2d1d733081b34d816c3556be5
|
|
7
|
+
data.tar.gz: 14b50ccc8e7f15155d708f0fb78bae8ff66e12d7c6ecb534fbf1106da1558bde3b65da02cb6f5339ca29c9411ec150be0c3ee11b61a5236b540bea7aab3386b9
|
data/.travis.yml
CHANGED
|
@@ -12,6 +12,9 @@ pkg_config 'gdal'
|
|
|
12
12
|
|
|
13
13
|
$libs = append_library $libs, 'gdal'
|
|
14
14
|
|
|
15
|
+
# earlier versions of ruby do not define $CXXFLAGS
|
|
16
|
+
$CXXFLAGS = CONFIG["CXXFLAGS"] unless defined?($CXXFLAGS)
|
|
17
|
+
|
|
15
18
|
$CFLAGS << ' -Wno-format-security'
|
|
16
19
|
$CXXFLAGS << ' -Wno-format-security'
|
|
17
20
|
|
|
@@ -12,6 +12,9 @@ pkg_config 'gdal'
|
|
|
12
12
|
|
|
13
13
|
$libs = append_library $libs, 'gdal'
|
|
14
14
|
|
|
15
|
+
# earlier versions of ruby do not define $CXXFLAGS
|
|
16
|
+
$CXXFLAGS = CONFIG["CXXFLAGS"] unless defined?($CXXFLAGS)
|
|
17
|
+
|
|
15
18
|
$CFLAGS << ' -Wno-format-security'
|
|
16
19
|
$CXXFLAGS << ' -Wno-format-security'
|
|
17
20
|
|
|
@@ -2,8 +2,6 @@ require 'mkmf'
|
|
|
2
2
|
|
|
3
3
|
raise 'gdal-config not found.' if `which gdal-config`.empty?
|
|
4
4
|
|
|
5
|
-
raise 'gdal-config not found.' if `which gdal-config`.empty?
|
|
6
|
-
|
|
7
5
|
dir_config 'gdal',
|
|
8
6
|
`gdal-config --cflags`.split(' ')[0].gsub(/-I/, ''),
|
|
9
7
|
`gdal-config --libs`.split(' ')[0].gsub(/-L/, '')
|
|
@@ -14,6 +12,9 @@ pkg_config 'gdal'
|
|
|
14
12
|
|
|
15
13
|
$libs = append_library $libs, 'gdal'
|
|
16
14
|
|
|
15
|
+
# earlier versions of ruby do not define $CXXFLAGS
|
|
16
|
+
$CXXFLAGS = CONFIG["CXXFLAGS"] unless defined?($CXXFLAGS)
|
|
17
|
+
|
|
17
18
|
$CFLAGS << ' -Wno-format-security'
|
|
18
19
|
$CXXFLAGS << ' -Wno-format-security'
|
|
19
20
|
|
|
@@ -12,6 +12,9 @@ pkg_config 'gdal'
|
|
|
12
12
|
|
|
13
13
|
$libs = append_library $libs, 'gdal'
|
|
14
14
|
|
|
15
|
+
# earlier versions of ruby do not define $CXXFLAGS
|
|
16
|
+
$CXXFLAGS = CONFIG["CXXFLAGS"] unless defined?($CXXFLAGS)
|
|
17
|
+
|
|
15
18
|
$CFLAGS << ' -Wno-format-security'
|
|
16
19
|
$CXXFLAGS << ' -Wno-format-security'
|
|
17
20
|
|
data/lib/gdal-ruby/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gdal
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Zac McCormick
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-04-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|