pkg-config 1.2.9 → 1.3.0

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: ba7a578caad93756b6f3bb8fa9d961f99291f8f0
4
- data.tar.gz: d4845bf9efcc49e5d410cab0a6c800d06c4b36a2
2
+ SHA256:
3
+ metadata.gz: 321b8bc966125a9c99b4c98304dc3f7750b38e370ddaf5217594167770d5c6af
4
+ data.tar.gz: 41e9a473c6b44d2be6b4b4691679291feb0fd6c624e766e15e73a37464d3db77
5
5
  SHA512:
6
- metadata.gz: 0527c317b11b5b46ae9b93cae40032f8a539995dd51c2780f48ae51142788185dae005f1f54e018e852c027355129c61aa9e413a08b75f27d683ba2b026aa420
7
- data.tar.gz: fcd01f29eb0e0f505774c57baf599ce4d7a03dc95062b1129a1684e6aa2f4634b2ae0c3e201d6c46b906f18510c00e12899481462184d65a33a263531ecd359b
6
+ metadata.gz: 87593f4f2d982c5615c950180056a88ef71218b4a9f02578c8648848ef004cb0cf6dc66d210b4a38d794afee02e52bb0a79453aba6c916de55425857f072205d
7
+ data.tar.gz: 1cdb911d5cabdb6754a619a55496a4ad601bf9930046f36396654ef9c9327a564426f978df8974dcf2e0d1de6efd0d844d2490141f81853f1fe5d392493f6e2c
data/NEWS CHANGED
@@ -1,5 +1,11 @@
1
1
  = NEWS
2
2
 
3
+ == 1.3.0 - 2018-04-10
4
+
5
+ === Improvements
6
+
7
+ * Added Ruby 2.0 on Ubuntu Trusty again.
8
+
3
9
  == 1.2.9 - 2018-01-13
4
10
 
5
11
  === Improvements
@@ -520,7 +520,9 @@ module PKGConfig
520
520
  $LDFLAGS += ' ' + dldflags
521
521
  end
522
522
  $CFLAGS += ' ' + cflags_only_other(pkg)
523
- $CXXFLAGS += ' ' + cflags_only_other(pkg)
523
+ if defined?($CXXFLAGS)
524
+ $CXXFLAGS += ' ' + cflags_only_other(pkg)
525
+ end
524
526
  $INCFLAGS += ' ' + cflags_only_I(pkg)
525
527
  end
526
528
  enough_version
@@ -1,4 +1,4 @@
1
- # Copyright 2012-2017 Kouhei Sutou <kou@cozmixng.org>
1
+ # Copyright 2012-2018 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
@@ -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.2.9"
18
+ VERSION = "1.3.0"
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.2.9
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kouhei Sutou
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-01-13 00:00:00.000000000 Z
11
+ date: 2018-04-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: test-unit
@@ -89,7 +89,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
89
89
  version: '0'
90
90
  requirements: []
91
91
  rubyforge_project: cairo
92
- rubygems_version: 2.5.2.2
92
+ rubygems_version: 2.7.6
93
93
  signing_key:
94
94
  specification_version: 4
95
95
  summary: A pkg-config implementation for Ruby