pkg-config 1.1.0 → 1.1.1
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 +10 -0
- data/README.rdoc +1 -0
- data/lib/pkg-config.rb +2 -1
- metadata +4 -4
data/NEWS
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
= NEWS
|
|
2
2
|
|
|
3
|
+
== 1.1.1 - 2011/05/03
|
|
4
|
+
|
|
5
|
+
* [ruby-gnome-devel-en] add
|
|
6
|
+
/usr/lib/i386-linux-gnu/pkgconfig to the default paths.
|
|
7
|
+
(Reported by Andrea B.C.)
|
|
8
|
+
|
|
9
|
+
=== Thanks
|
|
10
|
+
|
|
11
|
+
* Funky Bibimba
|
|
12
|
+
|
|
3
13
|
== 1.1.0 - 2011/04/03
|
|
4
14
|
|
|
5
15
|
* [#3270846] add /usr/lib/x86_64-linux-gnu/pkgconfig to default paths.
|
data/README.rdoc
CHANGED
data/lib/pkg-config.rb
CHANGED
|
@@ -277,6 +277,7 @@ class PackageConfig
|
|
|
277
277
|
"/usr/lib/pkgconfig",
|
|
278
278
|
"/usr/lib64/pkgconfig",
|
|
279
279
|
"/usr/lib/x86_64-linux-gnu/pkgconfig",
|
|
280
|
+
"/usr/lib/i386-linux-gnu/pkgconfig",
|
|
280
281
|
"/usr/X11/lib/pkgconfig/",
|
|
281
282
|
"/usr/share/pkgconfig"].join(SEPARATOR)
|
|
282
283
|
libdir = ENV["PKG_CONFIG_LIBDIR"]
|
|
@@ -297,7 +298,7 @@ class PackageConfig
|
|
|
297
298
|
end
|
|
298
299
|
|
|
299
300
|
module PKGConfig
|
|
300
|
-
VERSION = "1.1.
|
|
301
|
+
VERSION = "1.1.1"
|
|
301
302
|
|
|
302
303
|
@@paths = []
|
|
303
304
|
@@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:
|
|
4
|
+
hash: 17
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 1.1.
|
|
9
|
+
- 1
|
|
10
|
+
version: 1.1.1
|
|
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-05-03 00:00:00 +09:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|