pkg-config 1.1.6 → 1.1.7

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: 8abe472bb4c19c7d3f913d28fa8c3c78f15d3d44
4
- data.tar.gz: a26ecd64e1e9601d3d4683fa5dd27b04d9748fc8
3
+ metadata.gz: e4a93be0df4539aa25924bde2ea4e424d03586bb
4
+ data.tar.gz: 23956703f9d489a287f02f11aeb165321f2d3350
5
5
  SHA512:
6
- metadata.gz: 55e3b289f3e02ed605cae8d23a65686674f58082511b3789c45ab77a029b0866b554783fd7348ff70cb8926f8e4dbcd4ea9c048ac6a71b61452a109d4e17e477
7
- data.tar.gz: e1c2f07b3250a79d13fed264b8f5b86b756bb4462ed48295c10220d5b932ebc446198000243a937077f6c561b321dff8efd8fd2be1b050d6746accd2936609d7
6
+ metadata.gz: 671a47f3789dd0f06bab32548d46366fa6129144250f42e5900abf7666e5185b0ca8b62f1a94ede73463c6a2bb15a9368c7209a8ecb048dc22b454293a7b835e
7
+ data.tar.gz: 3631f35e443768572477871e2d8106a4ef72cfe02067989c2c2087f9002d104c9a83f2c25d63d346aeab025b1007a4b93fa0f30d2c77d75ddb1ec85a64abf142
data/NEWS CHANGED
@@ -1,5 +1,14 @@
1
1
  = NEWS
2
2
 
3
+ == 1.1.7 - 2015-01-16
4
+
5
+ * Added path for FreeBSD to default paths.
6
+ [Reported by Hajime UMEMOTO]
7
+
8
+ === Thanks
9
+
10
+ * Hajime UMEMOTO
11
+
3
12
  == 1.1.6 - 2014/11/12
4
13
 
5
14
  * Supported Ruby 2.1.
@@ -1,4 +1,4 @@
1
- # Copyright 2008-2013 Kouhei Sutou <kou@cozmixng.org>
1
+ # Copyright 2008-2016 Kouhei Sutou <kou@cozmixng.org>
2
2
  #
3
3
  # This library is free software; you can redistribute it and/or
4
4
  # modify it under the terms of the GNU Lesser General Public
@@ -303,16 +303,20 @@ class PackageConfig
303
303
 
304
304
  def guess_default_path
305
305
  arch_depended_path = Dir.glob('/usr/lib/*/pkgconfig').join(SEPARATOR)
306
- default_path = ["/usr/local/lib64/pkgconfig",
307
- "/usr/local/lib/pkgconfig",
308
- "/usr/local/libdata/pkgconfig",
309
- "/opt/local/lib/pkgconfig",
310
- arch_depended_path,
311
- "/usr/lib64/pkgconfig",
312
- "/usr/lib/pkgconfig",
313
- "/usr/X11/lib/pkgconfig/",
314
- "/opt/X11/lib/pkgconfig/",
315
- "/usr/share/pkgconfig"].join(SEPARATOR)
306
+ default_paths = [
307
+ "/usr/local/lib64/pkgconfig",
308
+ "/usr/local/lib/pkgconfig",
309
+ "/usr/local/libdata/pkgconfig",
310
+ "/opt/local/lib/pkgconfig",
311
+ arch_depended_path,
312
+ "/usr/lib64/pkgconfig",
313
+ "/usr/lib/pkgconfig",
314
+ "/usr/libdata/pkgconfig",
315
+ "/usr/X11/lib/pkgconfig",
316
+ "/opt/X11/lib/pkgconfig",
317
+ "/usr/share/pkgconfig",
318
+ ]
319
+ default_path = default_paths.join(SEPARATOR)
316
320
  libdir = ENV["PKG_CONFIG_LIBDIR"]
317
321
  default_path = [libdir, default_path].join(SEPARATOR) if libdir
318
322
 
@@ -15,5 +15,5 @@
15
15
  # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
17
  module PKGConfig
18
- VERSION = "1.1.6"
18
+ VERSION = "1.1.7"
19
19
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pkg-config
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.6
4
+ version: 1.1.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: 2014-11-12 00:00:00.000000000 Z
11
+ date: 2016-01-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: test-unit
@@ -89,10 +89,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
89
89
  version: '0'
90
90
  requirements: []
91
91
  rubyforge_project: cairo
92
- rubygems_version: 2.2.2
92
+ rubygems_version: 2.4.5.1
93
93
  signing_key:
94
94
  specification_version: 4
95
95
  summary: A pkg-config implementation for Ruby
96
96
  test_files:
97
- - test/test_pkg_config.rb
98
97
  - test/run-test.rb
98
+ - test/test_pkg_config.rb
99
+ has_rdoc: