pkg-config 1.0.8 → 1.0.9
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.
- data/NEWS +9 -0
- data/README.rdoc +2 -2
- data/lib/pkg-config.rb +3 -2
- metadata +6 -6
data/NEWS
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
= NEWS
|
|
2
2
|
|
|
3
|
+
== 1.0.9 - 2011/04/03
|
|
4
|
+
|
|
5
|
+
* [#3270846] add /usr/lib/x86_64-linux-gnu/pkgconfig to default paths.
|
|
6
|
+
(Reported by Funky Bibimba)
|
|
7
|
+
|
|
8
|
+
=== Thanks
|
|
9
|
+
|
|
10
|
+
* Funky Bibimba
|
|
11
|
+
|
|
3
12
|
== 1.0.8 - 2011/01/30
|
|
4
13
|
|
|
5
14
|
* fix a bug that multiple PKGConfig.add_path doesn't work.
|
data/README.rdoc
CHANGED
data/lib/pkg-config.rb
CHANGED
|
@@ -274,8 +274,9 @@ class PackageConfig
|
|
|
274
274
|
"/usr/local/lib/pkgconfig",
|
|
275
275
|
"/usr/local/libdata/pkgconfig",
|
|
276
276
|
"/opt/local/lib/pkgconfig",
|
|
277
|
-
"/usr/lib64/pkgconfig",
|
|
278
277
|
"/usr/lib/pkgconfig",
|
|
278
|
+
"/usr/lib64/pkgconfig",
|
|
279
|
+
"/usr/lib/x86_64-linux-gnu/pkgconfig",
|
|
279
280
|
"/usr/X11/lib/pkgconfig/",
|
|
280
281
|
"/usr/share/pkgconfig"].join(SEPARATOR)
|
|
281
282
|
libdir = ENV["PKG_CONFIG_LIBDIR"]
|
|
@@ -296,7 +297,7 @@ class PackageConfig
|
|
|
296
297
|
end
|
|
297
298
|
|
|
298
299
|
module PKGConfig
|
|
299
|
-
VERSION = "1.0.
|
|
300
|
+
VERSION = "1.0.9"
|
|
300
301
|
|
|
301
302
|
@@paths = []
|
|
302
303
|
@@override_variables = {}
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pkg-config
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
5
|
-
prerelease:
|
|
4
|
+
hash: 5
|
|
5
|
+
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 1.0.
|
|
9
|
+
- 9
|
|
10
|
+
version: 1.0.9
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Kouhei Sutou
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-
|
|
18
|
+
date: 2011-04-03 00:00:00 +09:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -99,7 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
99
99
|
requirements: []
|
|
100
100
|
|
|
101
101
|
rubyforge_project: cairo
|
|
102
|
-
rubygems_version: 1.
|
|
102
|
+
rubygems_version: 1.6.2
|
|
103
103
|
signing_key:
|
|
104
104
|
specification_version: 3
|
|
105
105
|
summary: A pkg-config implmenetation by Ruby
|