gpgme 2.0.10 → 2.0.11

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4ce47e59e5bd44bbd0317f79a67556f7abc31afd
4
- data.tar.gz: aa43c99f2a7e2e1fa09b7a46600755ec7c7d81a3
3
+ metadata.gz: 53cdde96cbb9a3928bc83aa71768a99b2d58ab55
4
+ data.tar.gz: 67f0426cc6a0f1b2545684157d0cfd791117130d
5
5
  SHA512:
6
- metadata.gz: 63dd5843ee14da10265d8612215efaa77ca46e27928d04cb5bdef7724f78f039ef6d1ffe27c175669f12860fca5c8cc486709633b26675cae2f78070bd0b94d4
7
- data.tar.gz: a4a7395de03e7fdf35d27b3957945970de8f2449fcd9146391fc177456ad6fbc1296cbfbb52851024f5791e48668491e3634482a08cdd41704b2d5ed4108eceb
6
+ metadata.gz: 6b0ceb82f964929352f1ab2743fde9dc8968d78ada100f758fa6c15624687ade6b73cf55246434064c158e3b52593085a2adac4b9d9e7def69019cf5478c5816
7
+ data.tar.gz: 2769918520126b0039b1afd1ba2fe47e0af1a41164cdb45ac845e4e06d31e7b846c211c18eea2269fc56110a9ee8a400234da26369ed9c07742a64e292572cb9
@@ -62,14 +62,14 @@ EOS
62
62
  require 'rubygems'
63
63
  require 'mini_portile'
64
64
 
65
- libgpg_error_recipe = MiniPortile.new('libgpg-error', '1.20').tap do |recipe|
65
+ libgpg_error_recipe = MiniPortile.new('libgpg-error', '1.21').tap do |recipe|
66
66
  recipe.target = File.join(ROOT, "ports")
67
67
  recipe.files = ["ftp://ftp.gnupg.org/gcrypt/#{recipe.name}/#{recipe.name}-#{recipe.version}.tar.bz2"]
68
68
  recipe.configure_options = [
69
69
  '--disable-shared',
70
70
  '--enable-static',
71
71
  '--disable-nls',
72
- "CFLAGS='-fPIC #{ENV["CFLAGS"]}'",
72
+ "CFLAGS=-fPIC #{ENV["CFLAGS"]}",
73
73
  ]
74
74
  checkpoint = "#{recipe.target}/#{recipe.name}-#{recipe.version}-#{recipe.host}.installed"
75
75
  unless File.exist?(checkpoint)
@@ -79,14 +79,14 @@ EOS
79
79
  recipe.activate
80
80
  end
81
81
 
82
- libassuan_recipe = MiniPortile.new('libassuan', '2.2.1').tap do |recipe|
82
+ libassuan_recipe = MiniPortile.new('libassuan', '2.4.2').tap do |recipe|
83
83
  recipe.target = File.join(ROOT, "ports")
84
84
  recipe.files = ["ftp://ftp.gnupg.org/gcrypt/#{recipe.name}/#{recipe.name}-#{recipe.version}.tar.bz2"]
85
85
  recipe.configure_options = [
86
86
  '--disable-shared',
87
87
  '--enable-static',
88
88
  "--with-gpg-error-prefix=#{libgpg_error_recipe.path}",
89
- "CFLAGS='-fPIC #{ENV["CFLAGS"]}'",
89
+ "CFLAGS=-fPIC #{ENV["CFLAGS"]}",
90
90
  ]
91
91
  checkpoint = "#{recipe.target}/#{recipe.name}-#{recipe.version}-#{recipe.host}.installed"
92
92
  unless File.exist?(checkpoint)
@@ -108,7 +108,7 @@ EOS
108
108
  # However, on some systems (e.g. Debian), they are splitted into
109
109
  # separate packages.
110
110
  '--disable-gpgsm-test',
111
- "CFLAGS='-fPIC #{ENV["CFLAGS"]}'",
111
+ "CFLAGS=-fPIC #{ENV["CFLAGS"]}",
112
112
  ]
113
113
  checkpoint = "#{recipe.target}/#{recipe.name}-#{recipe.version}-#{recipe.host}.installed"
114
114
  unless File.exist?(checkpoint)
@@ -1,4 +1,4 @@
1
1
  module GPGME
2
2
  # The version of GPGME ruby binding you are using
3
- VERSION = "2.0.10"
3
+ VERSION = "2.0.11"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gpgme
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.10
4
+ version: 2.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daiki Ueno
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-08-27 00:00:00.000000000 Z
12
+ date: 2015-12-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: mini_portile
@@ -132,11 +132,8 @@ files:
132
132
  - lib/gpgme/user_id.rb
133
133
  - lib/gpgme/version.rb
134
134
  - ports/archives/gpgme-1.6.0.tar.bz2
135
- - ports/archives/gpgme-1.6.0.tar.bz2.sig
136
- - ports/archives/libassuan-2.1.2.tar.bz2
137
- - ports/archives/libassuan-2.2.1.tar.bz2
138
- - ports/archives/libgpg-error-1.20.tar.bz2
139
- - ports/archives/libgpg-error-1.20.tar.bz2.sig
135
+ - ports/archives/libassuan-2.4.2.tar.bz2
136
+ - ports/archives/libgpg-error-1.21.tar.bz2
140
137
  - test/crypto_test.rb
141
138
  - test/ctx_test.rb
142
139
  - test/data_test.rb