gnumeric 3.1.1 → 3.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +1 -1
- data/dependency-check/Rakefile +37 -0
- data/test/run-test.rb +7 -1
- metadata +10 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '01950902efaa138526fb1d2ca783607cdb9bdc73'
|
4
|
+
data.tar.gz: 9c5aa1df0b1649120f12245f75cdb81a4544370d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ffb0748821c4f8b569d57529b646be107fbd6e444ee627ca694d4fd22d49a971be3254ddbcb4c8c3205034e3e74afd00b32b066331358dde5c8e5693dc4c90d2
|
7
|
+
data.tar.gz: 0b1ee86f5a6c40d0a9b30fb987f6ca32a2de86b3c31a234eaeccb2ede31c770786b4226dec6fafc91271887db4e434511442dcded8bb41fc496bbb8961fdaa7f
|
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.34",
|
41
41
|
:compression_method => "xz",
|
42
42
|
:windows => {
|
43
43
|
:configure_args => [
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# Copyright (C) 2017 Ruby-GNOME2 Project Team
|
2
|
+
#
|
3
|
+
# This library is free software; you can redistribute it and/or
|
4
|
+
# modify it under the terms of the GNU Lesser General Public
|
5
|
+
# License as published by the Free Software Foundation; either
|
6
|
+
# version 2.1 of the License, or (at your option) any later version.
|
7
|
+
#
|
8
|
+
# This library is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
11
|
+
# Lesser General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU Lesser General Public
|
14
|
+
# License along with this library; if not, write to the Free Software
|
15
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
16
|
+
|
17
|
+
require "pkg-config"
|
18
|
+
require "native-package-installer"
|
19
|
+
|
20
|
+
case RUBY_PLATFORM
|
21
|
+
when /mingw|mswin/
|
22
|
+
task :default => "nothing"
|
23
|
+
else
|
24
|
+
task :default => "dependency:check"
|
25
|
+
end
|
26
|
+
|
27
|
+
task :nothing do
|
28
|
+
end
|
29
|
+
|
30
|
+
namespace :dependency do
|
31
|
+
desc "Check dependency"
|
32
|
+
task :check do
|
33
|
+
unless NativePackageInstaller.install(:debian => "gir1.2-gnumeric")
|
34
|
+
exit(false)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
data/test/run-test.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
#
|
3
|
-
# Copyright (C) 2016 Ruby-GNOME2 Project Team
|
3
|
+
# Copyright (C) 2016-2017 Ruby-GNOME2 Project Team
|
4
4
|
#
|
5
5
|
# This library is free software; you can redistribute it and/or
|
6
6
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -60,5 +60,11 @@ $LOAD_PATH.unshift(File.join(gnumeric_base, "test"))
|
|
60
60
|
require "gnumeric-test-utils"
|
61
61
|
|
62
62
|
require "gnumeric"
|
63
|
+
begin
|
64
|
+
Gnm.init
|
65
|
+
rescue GObjectIntrospection::RepositoryError
|
66
|
+
puts("Omit because typelib file doesn't exist: #{$!.message}")
|
67
|
+
exit(true)
|
68
|
+
end
|
63
69
|
|
64
70
|
exit Test::Unit::AutoRunner.run(true, File.join(gnumeric_base, "test"))
|
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.1.
|
4
|
+
version: 3.1.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: 2017-
|
11
|
+
date: 2017-04-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: goffice
|
@@ -16,35 +16,37 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.1.
|
19
|
+
version: 3.1.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.1.
|
26
|
+
version: 3.1.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.1.
|
33
|
+
version: 3.1.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.1.
|
40
|
+
version: 3.1.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: []
|
44
|
-
extensions:
|
44
|
+
extensions:
|
45
|
+
- dependency-check/Rakefile
|
45
46
|
extra_rdoc_files: []
|
46
47
|
files:
|
47
48
|
- Rakefile
|
49
|
+
- dependency-check/Rakefile
|
48
50
|
- lib/gnm.rb
|
49
51
|
- lib/gnm/loader.rb
|
50
52
|
- lib/gnumeric.rb
|
@@ -54,7 +56,7 @@ files:
|
|
54
56
|
- test/test-convert.rb
|
55
57
|
homepage: http://ruby-gnome2.sourceforge.jp/
|
56
58
|
licenses:
|
57
|
-
-
|
59
|
+
- LGPL-2.1+
|
58
60
|
metadata: {}
|
59
61
|
post_install_message:
|
60
62
|
rdoc_options: []
|