gpgme 2.0.19 → 2.0.22

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
- SHA1:
3
- metadata.gz: 85da3b0448319c6fd01c1004e64b2dc9956bc162
4
- data.tar.gz: 843c3a9d2d6dc2c22e88c97fda497c36fc107f9e
2
+ SHA256:
3
+ metadata.gz: c4dc4765cd73bfd27c0ebdfff8749106341f2dd7a6c0118a4e3307798b753e84
4
+ data.tar.gz: 6b929a3f84144a4fdcc40382129bd6ad409e9a819c956f33941a8d650000c70c
5
5
  SHA512:
6
- metadata.gz: 8c7e91e339472d57de455c3e3f38fc37f7fcdfaf0cd003053eca160f48e4c459ddfa09c4d559fa6aaaef2596da5be450114986539ea6168a25802c852bd95065
7
- data.tar.gz: dc5de7e968adea666fc353be5e7368b7087fbccc4d301fb07aacba0d22ba309cb5256269118c69b8565bd721c872fdf89cf217c988f523dcbf7919b445d3c7e0
6
+ metadata.gz: 387806727ae8b6d8da14fc23ce7c9a24c58373b52f79b4bce8ca1f7de2337e715c488c7af65e30ac8e6e73a18c8d31589b00f80c682f0dcbcce1f4d234cc58a3
7
+ data.tar.gz: bbfa653feac228f87c430fa61524625d373ff6dd0a33d5c824c50d94db59233ab6161d8ac1b6e475db21ce9908f22b45bce17fff5c6cba92f9bb959b49b297b8
data/ext/gpgme/extconf.rb CHANGED
@@ -37,13 +37,13 @@ if arg_config('--clean')
37
37
  end
38
38
 
39
39
  if arg_config('--use-system-libraries', ENV['RUBY_GPGME_USE_SYSTEM_LIBRARIES'])
40
- unless find_executable('gpgme-config')
41
- $stderr.puts("gpgme-config not found")
40
+ unless find_executable('pkg-config')
41
+ $stderr.puts("pkg-config not found")
42
42
  exit(1)
43
43
  end
44
44
 
45
- $CFLAGS += ' ' << `gpgme-config --cflags`.chomp
46
- $libs += ' ' << `gpgme-config --libs`.chomp
45
+ $CFLAGS += ' ' << `pkg-config --cflags gpgme`.chomp
46
+ $libs += ' ' << `pkg-config --libs gpgme`.chomp
47
47
  else
48
48
  message <<-'EOS'
49
49
  ************************************************************************
@@ -62,13 +62,14 @@ EOS
62
62
  require 'rubygems'
63
63
  require 'mini_portile2'
64
64
 
65
- libgpg_error_recipe = MiniPortile.new('libgpg-error', '1.32').tap do |recipe|
65
+ libgpg_error_recipe = MiniPortile.new('libgpg-error', '1.46').tap do |recipe|
66
66
  recipe.target = File.join(ROOT, "ports")
67
67
  recipe.files = [{
68
68
  :url => "https://www.gnupg.org/ftp/gcrypt/#{recipe.name}/#{recipe.name}-#{recipe.version}.tar.bz2",
69
- :sha256 => 'c345c5e73cc2332f8d50db84a2280abfb1d8f6d4f1858b9daa30404db44540ca'
69
+ :sha256 => 'b7e11a64246bbe5ef37748de43b245abd72cfcd53c9ae5e7fc5ca59f1c81268d'
70
70
  }]
71
71
  recipe.configure_options = [
72
+ '--enable-install-gpg-error-config',
72
73
  '--disable-shared',
73
74
  '--enable-static',
74
75
  '--disable-nls',
@@ -82,11 +83,11 @@ EOS
82
83
  recipe.activate
83
84
  end
84
85
 
85
- libassuan_recipe = MiniPortile.new('libassuan', '2.5.1').tap do |recipe|
86
+ libassuan_recipe = MiniPortile.new('libassuan', '2.5.5').tap do |recipe|
86
87
  recipe.target = File.join(ROOT, "ports")
87
88
  recipe.files = [{
88
89
  :url => "https://www.gnupg.org/ftp/gcrypt/#{recipe.name}/#{recipe.name}-#{recipe.version}.tar.bz2",
89
- :sha256 => '47f96c37b4f2aac289f0bc1bacfa8bd8b4b209a488d3d15e2229cb6cc9b26449'
90
+ :sha256 => '8e8c2fcc982f9ca67dcbb1d95e2dc746b1739a4668bc20b3a3c5be632edb34e4'
90
91
  }]
91
92
  recipe.configure_options = [
92
93
  '--disable-shared',
@@ -102,11 +103,11 @@ EOS
102
103
  recipe.activate
103
104
  end
104
105
 
105
- gpgme_recipe = MiniPortile.new('gpgme', '1.12.0').tap do |recipe|
106
+ gpgme_recipe = MiniPortile.new('gpgme', '1.18.0').tap do |recipe|
106
107
  recipe.target = File.join(ROOT, "ports")
107
108
  recipe.files = [{
108
109
  :url => "https://www.gnupg.org/ftp/gcrypt/#{recipe.name}/#{recipe.name}-#{recipe.version}.tar.bz2",
109
- :sha256 => 'b4dc951c3743a60e2e120a77892e9e864fb936b2e58e7c77e8581f4d050e8cd8'
110
+ :sha256 => '361d4eae47ce925dba0ea569af40e7b52c645c4ae2e65e5621bf1b6cdd8b0e9e'
110
111
  }]
111
112
  recipe.configure_options = [
112
113
  '--disable-shared',