native-package-installer 1.0.6 → 1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: fceef8c89aa87eca71f7b8c979ce29cbf3c6a2e8
4
- data.tar.gz: a8998797dcd6825224cb36fdc9f3a95b1d96369e
2
+ SHA256:
3
+ metadata.gz: d1512b1034b94b0fd4736ef480f54590966fa9a8cd47ec892e6ac86c9e9609c5
4
+ data.tar.gz: fb28f0ce5fad1bc0ea709c59a69ce7ece4e5cb3e70519d3140d1e7e898b98193
5
5
  SHA512:
6
- metadata.gz: 831bdeb4abb757934711798f5635cc0e1cef4e6a122539fa3749cbc9aa5e58e0afda73ffb5bc6777ec42aa68a8834ce347592d23ba4e3175c67959fae7b761e0
7
- data.tar.gz: 4602d3876694b83e8650125177cc2194844ccc0eaab70b6671ff55e43c640b91ec8d7762f5c9139244cd7a6475f581146866ecb24183a68a162f29da2a80a654
6
+ metadata.gz: 67fc4d5659cf17182219b2da57c258121fbed07e6a6644243e18c47ab9b55bb0c69baaaeac0b3b13c06d1f821ec730e837602703c112490ab2d8089a625cb8ff
7
+ data.tar.gz: d294351fb473be5c88bd43fb0cf3e4c34f9d245b7b806e9b6e19f7d4d9d99b6079647b157e28981e8782c283af6a920284b76b4e617d300ca56dc770579b07b8
@@ -1,5 +1,11 @@
1
1
  # News
2
2
 
3
+ ## 1.0.7 - 2019-03-09
4
+
5
+ ### Fixes
6
+
7
+ * Fixed 32bit MSYS2 detection.
8
+
3
9
  ## 1.0.6 - 2017-12-05
4
10
 
5
11
  ### Improvements
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2017 Ruby-GNOME2 Project Team
1
+ # Copyright (C) 2017-2019 Ruby-GNOME2 Project Team
2
2
  #
3
3
  # This library is free software: you can redistribute it and/or modify
4
4
  # it under the terms of the GNU Lesser General Public License as published by
@@ -27,7 +27,7 @@ class NativePackageInstaller
27
27
  def pacman_path
28
28
  finder = ExecutableFinder.new("pacman")
29
29
  case RUBY_PLATFORM
30
- when "x86-mingw32"
30
+ when "i386-mingw32"
31
31
  Dir.glob("c:/msys{64,32,*}/usr/bin") do |bin|
32
32
  finder.append_path(bin)
33
33
  end
@@ -41,7 +41,7 @@ class NativePackageInstaller
41
41
 
42
42
  def package_prefix
43
43
  case RUBY_PLATFORM
44
- when "x86-mingw32"
44
+ when "i386-mingw32"
45
45
  "mingw-w64-i686-"
46
46
  when "x64-mingw32"
47
47
  "mingw-w64-x86_64-"
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2013-2017 Ruby-GNOME2 Project Team
1
+ # Copyright (C) 2013-2019 Ruby-GNOME2 Project Team
2
2
  #
3
3
  # This library is free software: you can redistribute it and/or modify
4
4
  # it under the terms of the GNU Lesser General Public License as published by
@@ -14,5 +14,5 @@
14
14
  # along with this program. If not, see <http://www.gnu.org/licenses/>.
15
15
 
16
16
  class NativePackageInstaller
17
- VERSION = "1.0.6"
17
+ VERSION = "1.0.7"
18
18
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: native-package-installer
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.6
4
+ version: 1.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kouhei Sutou
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-12-04 00:00:00.000000000 Z
11
+ date: 2019-03-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -109,10 +109,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
109
109
  version: '0'
110
110
  requirements: []
111
111
  rubyforge_project:
112
- rubygems_version: 2.5.2.1
112
+ rubygems_version: 2.7.6
113
113
  signing_key:
114
114
  specification_version: 4
115
115
  summary: native-package-installer helps to install native packages on "gem install"
116
116
  test_files:
117
- - test/test-executable-finder.rb
118
117
  - test/run-test.rb
118
+ - test/test-executable-finder.rb