gnumeric 3.2.1 → 3.2.2
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 +5 -5
- data/Rakefile +1 -1
- data/dependency-check/Rakefile +10 -2
- data/test/test-convert.rb +3 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 12430cfa3cadd89d647c651fd00ce3ffa026d6f6c166d777a909c8a078d30769
|
|
4
|
+
data.tar.gz: b19427771dbf19516dcb7c5ebbe2da6d3c53b2ec7fe19c627e22e89de7962e2f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e24a32a87f5253ab82fcba7fb29b4b91c7b0e5ab5246741257fe49c2e39fcabe8d19843580a7c6f6b4074194c8fc46ed4a9bf10e814fe30fd70154954c0acf9c
|
|
7
|
+
data.tar.gz: efc8151d962945dd5137fdee4a7f4fdfe73b1135b278051723cb2dd4817516716d396819dbbe6d745c0db1ec69c618118c4c8c528d4e34314e854f4d9f14e6fa
|
data/Rakefile
CHANGED
|
@@ -37,7 +37,7 @@ package_task = GNOME2::Rake::PackageTask.new do |package|
|
|
|
37
37
|
:name => "gnumeric",
|
|
38
38
|
:download_site => :gnome,
|
|
39
39
|
:label => "gnumeric",
|
|
40
|
-
:version => "1.12.
|
|
40
|
+
:version => "1.12.39",
|
|
41
41
|
:compression_method => "xz",
|
|
42
42
|
:windows => {
|
|
43
43
|
:configure_args => [
|
data/dependency-check/Rakefile
CHANGED
|
@@ -29,8 +29,16 @@ end
|
|
|
29
29
|
namespace :dependency do
|
|
30
30
|
desc "Check dependency"
|
|
31
31
|
task :check do
|
|
32
|
-
|
|
33
|
-
|
|
32
|
+
require "gobject-introspection"
|
|
33
|
+
repository = GObjectIntrospection::Repository.default
|
|
34
|
+
begin
|
|
35
|
+
repository.require("Gnm")
|
|
36
|
+
rescue GObjectIntrospection::RepositoryError::TypelibNotFound
|
|
37
|
+
unless NativePackageInstaller.install(:arch_linux => "gnumeric",
|
|
38
|
+
:debian => "gir1.2-gnumeric",
|
|
39
|
+
:redhat => "pkgconfig(libspreadsheet-1.12)")
|
|
40
|
+
exit(false)
|
|
41
|
+
end
|
|
34
42
|
end
|
|
35
43
|
end
|
|
36
44
|
end
|
data/test/test-convert.rb
CHANGED
|
@@ -23,9 +23,11 @@ class ConvertTest < Test::Unit::TestCase
|
|
|
23
23
|
output = Tempfile.new(["test-gnumeric", ".csv"])
|
|
24
24
|
command_context = Gnm::CmdContextStderr.new
|
|
25
25
|
Gnm.plugins_init(command_context)
|
|
26
|
+
opener = nil # TODO:
|
|
27
|
+
omit("opener can be nil but .gir file doesn't mark as nullable")
|
|
26
28
|
io_context = GOffice::IOContext.new(command_context)
|
|
27
29
|
view = Gnm::WorkbookView.new("file://#{input_path}",
|
|
28
|
-
|
|
30
|
+
opener,
|
|
29
31
|
io_context,
|
|
30
32
|
"utf-8")
|
|
31
33
|
saver = GOffice::FileSaver.for_file_name(output.path)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gnumeric
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.2.
|
|
4
|
+
version: 3.2.2
|
|
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:
|
|
11
|
+
date: 2018-04-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: goffice
|
|
@@ -16,28 +16,28 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 3.2.
|
|
19
|
+
version: 3.2.2
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 3.2.
|
|
26
|
+
version: 3.2.2
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: gobject-introspection
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - '='
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 3.2.
|
|
33
|
+
version: 3.2.2
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - '='
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 3.2.
|
|
40
|
+
version: 3.2.2
|
|
41
41
|
description: Ruby/Gnumeric is a Ruby binding of Gnumeric.
|
|
42
42
|
email: ruby-gnome2-devel-en@lists.sourceforge.net
|
|
43
43
|
executables: []
|
|
@@ -74,7 +74,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
74
74
|
version: '0'
|
|
75
75
|
requirements: []
|
|
76
76
|
rubyforge_project:
|
|
77
|
-
rubygems_version: 2.
|
|
77
|
+
rubygems_version: 2.7.6
|
|
78
78
|
signing_key:
|
|
79
79
|
specification_version: 4
|
|
80
80
|
summary: Ruby/Gnumeric is a Ruby binding of Gnumeric.
|