pkg-config 1.5.6 → 1.5.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 +4 -4
- data/{NEWS → NEWS.md} +138 -120
- data/lib/pkg-config/version.rb +1 -1
- data/lib/pkg-config.rb +4 -3
- metadata +4 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0ce019f0f6ac801e5c218c7f9e721d5c428ffbef30e6bfdbae678a80c364a46b
|
|
4
|
+
data.tar.gz: '082d9fdd2413f734de37a5573a0747a3de8d46af22c1f904452e63765edc7d6b'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6d0f96d09ec77da0d85688684eeeac8dd46095eca8fa2e296080d9f2bc65b46302ab846df62bbb8ae62c9da707488b24151b5c7ae58703c7bbee269479d7b30e
|
|
7
|
+
data.tar.gz: ceda5ab27054ea938d5136240d5005babe6cdb034ec9bf221a114419cf55a21168266b427e93b44759014458cd8851aa6c7587d74a7d2aac2535779d0d50e4f6
|
data/{NEWS → NEWS.md}
RENAMED
|
@@ -1,8 +1,26 @@
|
|
|
1
|
-
|
|
1
|
+
# NEWS
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
## 1.5.7 - 2024-10-24
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
### Improvements
|
|
6
|
+
|
|
7
|
+
* conda: Added support for `${CONDA_PREFIX}/share/pkgconfig`.
|
|
8
|
+
|
|
9
|
+
### Fixes
|
|
10
|
+
|
|
11
|
+
* Fixed `Cflags` nomralization
|
|
12
|
+
|
|
13
|
+
* GH-25
|
|
14
|
+
|
|
15
|
+
* Reported by Jean byroot Boussier
|
|
16
|
+
|
|
17
|
+
### Thanks
|
|
18
|
+
|
|
19
|
+
* Jean byroot Boussier
|
|
20
|
+
|
|
21
|
+
## 1.5.6 - 2023-11-19
|
|
22
|
+
|
|
23
|
+
### Improvements
|
|
6
24
|
|
|
7
25
|
* Added support for "<" and ">" operators in "Requires:".
|
|
8
26
|
|
|
@@ -10,296 +28,296 @@
|
|
|
10
28
|
|
|
11
29
|
Patch by Daisuke Fujimura
|
|
12
30
|
|
|
13
|
-
|
|
31
|
+
### Thanks
|
|
14
32
|
|
|
15
33
|
* Daisuke Fujimura
|
|
16
34
|
|
|
17
|
-
|
|
35
|
+
## 1.5.5 - 2023-09-05
|
|
18
36
|
|
|
19
|
-
|
|
37
|
+
### Fixes
|
|
20
38
|
|
|
21
39
|
* Fixed a bug in 1.5.4 that success detection doesn't work.
|
|
22
40
|
|
|
23
|
-
|
|
41
|
+
## 1.5.4 - 2023-09-05
|
|
24
42
|
|
|
25
|
-
|
|
43
|
+
### Improvements
|
|
26
44
|
|
|
27
45
|
* Added package version to unsatisfied version is only found case.
|
|
28
46
|
|
|
29
|
-
|
|
47
|
+
## 1.5.3 - 2023-08-29
|
|
30
48
|
|
|
31
|
-
|
|
49
|
+
### Improvements
|
|
32
50
|
|
|
33
51
|
* Accepted spaces between "=" and ":". For example, "prefix = /usr"
|
|
34
52
|
is accepted.
|
|
35
53
|
|
|
36
|
-
|
|
54
|
+
## 1.5.2 - 2023-06-25
|
|
37
55
|
|
|
38
|
-
|
|
56
|
+
### Improvements
|
|
39
57
|
|
|
40
58
|
* Added support for conda.
|
|
41
59
|
|
|
42
|
-
|
|
60
|
+
## 1.5.1 - 2022-11-23
|
|
43
61
|
|
|
44
|
-
|
|
62
|
+
### Improvements
|
|
45
63
|
|
|
46
64
|
* Improved the default search path. "/usr" in "/usr/bin/pkg-config"
|
|
47
65
|
isn't used for buidling the default search path if "pkg-config
|
|
48
66
|
--variable=pc_path pkg-config" is available.
|
|
49
67
|
[Reported by Watson][GitHub:#22]
|
|
50
68
|
|
|
51
|
-
|
|
69
|
+
## 1.5.0 - 2022-11-23
|
|
52
70
|
|
|
53
|
-
|
|
71
|
+
### Improvements
|
|
54
72
|
|
|
55
73
|
* Improved the default search path. "pkg-config --variable=pc_path
|
|
56
74
|
pkg-config" is used as the default search path if it's available.
|
|
57
75
|
[Reported by Watson][GitHub:#22]
|
|
58
76
|
|
|
59
|
-
|
|
77
|
+
## 1.4.9 - 2022-07-31
|
|
60
78
|
|
|
61
79
|
This is a bug fix release of 1.4.8. All 1.4.8 users should be upgraded
|
|
62
80
|
to 1.4.9.
|
|
63
81
|
|
|
64
|
-
|
|
82
|
+
### Fixes
|
|
65
83
|
|
|
66
84
|
* Fixed a regression bug in 1.4.8 that PkgConfig.have_package can't
|
|
67
85
|
detect nonexistent package.
|
|
68
86
|
|
|
69
|
-
|
|
87
|
+
## 1.4.8 - 2022-07-30
|
|
70
88
|
|
|
71
|
-
|
|
89
|
+
### Improvements
|
|
72
90
|
|
|
73
91
|
* Added support for showing found package version.
|
|
74
92
|
|
|
75
|
-
|
|
93
|
+
## 1.4.7 - 2022-01-16
|
|
76
94
|
|
|
77
|
-
|
|
95
|
+
### Improvements
|
|
78
96
|
|
|
79
97
|
* Added support for RubyInstaller2 3.1 or later.
|
|
80
98
|
[Reported by golirev][GitHub:ruby-gnome/ruby-gnome#1457]
|
|
81
99
|
|
|
82
|
-
|
|
100
|
+
### Thanks
|
|
83
101
|
|
|
84
102
|
* golirev
|
|
85
103
|
|
|
86
|
-
|
|
104
|
+
## 1.4.6 - 2021-04-12
|
|
87
105
|
|
|
88
|
-
|
|
106
|
+
### Improvements
|
|
89
107
|
|
|
90
108
|
* Improved support for .pc detection installed by Homebrew.
|
|
91
109
|
[Reported by Evan Shea][GitHub:rcairo/rcairo#66]
|
|
92
110
|
|
|
93
|
-
|
|
111
|
+
### Thanks
|
|
94
112
|
|
|
95
113
|
* Evan Shea
|
|
96
114
|
|
|
97
|
-
|
|
115
|
+
## 1.4.5 - 2021-02-04
|
|
98
116
|
|
|
99
|
-
|
|
117
|
+
### Improvements
|
|
100
118
|
|
|
101
119
|
* Added support for macOS 11.2.
|
|
102
120
|
[Reported by Ludovic Moutury][GitHub:rcairo/rcairo#69]
|
|
103
121
|
|
|
104
|
-
|
|
122
|
+
### Thanks
|
|
105
123
|
|
|
106
124
|
* Ludovic Moutury
|
|
107
125
|
|
|
108
|
-
|
|
126
|
+
## 1.4.4 - 2020-09-23
|
|
109
127
|
|
|
110
|
-
|
|
128
|
+
### Fixes
|
|
111
129
|
|
|
112
130
|
* Fixed a bug that NoMethodError instead of
|
|
113
131
|
PackageConfig::NotFoundError is raised.
|
|
114
132
|
[GitHub#21][Fixed by kojix2]
|
|
115
133
|
|
|
116
|
-
|
|
134
|
+
### Thanks
|
|
117
135
|
|
|
118
136
|
* kojix2
|
|
119
137
|
|
|
120
|
-
|
|
138
|
+
## 1.4.3 - 2020-09-15
|
|
121
139
|
|
|
122
|
-
|
|
140
|
+
### Improvements
|
|
123
141
|
|
|
124
142
|
* Changed to use PackageConfig::NotFoundError instead of RuntimeError
|
|
125
143
|
for exception on no .pc is found.
|
|
126
144
|
|
|
127
|
-
|
|
145
|
+
## 1.4.2 - 2020-08-10
|
|
128
146
|
|
|
129
|
-
|
|
147
|
+
### Improvements
|
|
130
148
|
|
|
131
149
|
* Added support for detecting pkgconfig path on RubyInstaller
|
|
132
150
|
without "ridk exec".
|
|
133
151
|
|
|
134
|
-
|
|
152
|
+
## 1.4.1 - 2020-02-10
|
|
135
153
|
|
|
136
|
-
|
|
154
|
+
### Improvements
|
|
137
155
|
|
|
138
156
|
* Added support for cycled depended .pc such as freetype2.pc and
|
|
139
157
|
harfbuzz.pc on PLD Linux.
|
|
140
158
|
[Reported by Jakub Bogusz]
|
|
141
159
|
|
|
142
|
-
|
|
160
|
+
### Thanks
|
|
143
161
|
|
|
144
162
|
* Jakub Bogusz
|
|
145
163
|
|
|
146
|
-
|
|
164
|
+
## 1.4.0 - 2019-10-24
|
|
147
165
|
|
|
148
|
-
|
|
166
|
+
### Improvements
|
|
149
167
|
|
|
150
168
|
* Improved Homebrew detection.
|
|
151
169
|
|
|
152
|
-
|
|
170
|
+
## 1.3.9 - 2019-09-28
|
|
153
171
|
|
|
154
|
-
|
|
172
|
+
### Improvements
|
|
155
173
|
|
|
156
174
|
* Added support for absolute path in Requires.
|
|
157
175
|
[GitHub#18][Reported by Josh Huckabee]
|
|
158
176
|
|
|
159
|
-
|
|
177
|
+
### Thanks
|
|
160
178
|
|
|
161
179
|
* Josh Huckabee
|
|
162
180
|
|
|
163
|
-
|
|
181
|
+
## 1.3.8 - 2019-08-13
|
|
164
182
|
|
|
165
|
-
|
|
183
|
+
### Improvements
|
|
166
184
|
|
|
167
185
|
* Added support for -framework on macOS.
|
|
168
186
|
[GitHub:ruby-gnome2/ruby-gnome2#1287][Reported by Viko]
|
|
169
187
|
|
|
170
|
-
|
|
188
|
+
### Thanks
|
|
171
189
|
|
|
172
190
|
* Viko
|
|
173
191
|
|
|
174
|
-
|
|
192
|
+
## 1.3.7 - 2019-03-17
|
|
175
193
|
|
|
176
|
-
|
|
194
|
+
### Improvements
|
|
177
195
|
|
|
178
196
|
* Added support for alphabet and _ only version.
|
|
179
197
|
[GitHub#17][Reported by xiejiangzhi]
|
|
180
198
|
|
|
181
|
-
|
|
199
|
+
### Thanks
|
|
182
200
|
|
|
183
201
|
* xiejiangzhi
|
|
184
202
|
|
|
185
|
-
|
|
203
|
+
## 1.3.6 - 2019-03-09
|
|
186
204
|
|
|
187
|
-
|
|
205
|
+
### Improvements
|
|
188
206
|
|
|
189
207
|
* Added support for Homebrew environment without pkg-config formula.
|
|
190
208
|
|
|
191
|
-
|
|
209
|
+
## 1.3.5 - 2019-03-08
|
|
192
210
|
|
|
193
|
-
|
|
211
|
+
### Fixes
|
|
194
212
|
|
|
195
213
|
* Fixed MSYS2 detection installed at non standard folder.
|
|
196
214
|
[GitHub:ruby-gnome2/ruby-gnome2#1271][Reported by Simon Arnaud]
|
|
197
215
|
|
|
198
|
-
|
|
216
|
+
### Thanks
|
|
199
217
|
|
|
200
218
|
* Simon Arnaud
|
|
201
219
|
|
|
202
|
-
|
|
220
|
+
## 1.3.4 - 2019-02-19
|
|
203
221
|
|
|
204
|
-
|
|
222
|
+
### Fixes
|
|
205
223
|
|
|
206
224
|
* Fixed 32bit MinGW Ruby detection.
|
|
207
225
|
[GitHub:ruby-gnome2/ruby-gnome2#1274][Reported by noanoa07]
|
|
208
226
|
|
|
209
|
-
|
|
227
|
+
### Thanks
|
|
210
228
|
|
|
211
229
|
* noanoa07
|
|
212
230
|
|
|
213
|
-
|
|
231
|
+
## 1.3.3 - 2019-02-10
|
|
214
232
|
|
|
215
|
-
|
|
233
|
+
### Improvements
|
|
216
234
|
|
|
217
235
|
* Improved MSYS2 detection on Windows.
|
|
218
236
|
[GitHub#16][Reported by dsisnero]
|
|
219
237
|
|
|
220
|
-
|
|
238
|
+
### Thanks
|
|
221
239
|
|
|
222
240
|
* dsisnero
|
|
223
241
|
|
|
224
|
-
|
|
242
|
+
## 1.3.2 - 2018-11-03
|
|
225
243
|
|
|
226
|
-
|
|
244
|
+
### Improvements
|
|
227
245
|
|
|
228
246
|
* Added support for Ruby installed by RubyInstaller for Windows with
|
|
229
247
|
MSYS2-Devkit.
|
|
230
248
|
|
|
231
|
-
|
|
249
|
+
## 1.3.1 - 2018-04-28
|
|
232
250
|
|
|
233
|
-
|
|
251
|
+
### Improvements
|
|
234
252
|
|
|
235
253
|
* Changed search order to find C flags.
|
|
236
254
|
[GitHub#6][Reported by HIGUCHI Daisuke]
|
|
237
255
|
* Before: Requires -> Requires.private
|
|
238
256
|
* After: Requires.private -> Requires
|
|
239
257
|
|
|
240
|
-
|
|
258
|
+
### Thanks
|
|
241
259
|
|
|
242
260
|
* HIGUCHI Daisuke
|
|
243
261
|
|
|
244
|
-
|
|
262
|
+
## 1.3.0 - 2018-04-10
|
|
245
263
|
|
|
246
|
-
|
|
264
|
+
### Improvements
|
|
247
265
|
|
|
248
266
|
* Added Ruby 2.0 on Ubuntu Trusty again.
|
|
249
267
|
|
|
250
|
-
|
|
268
|
+
## 1.2.9 - 2018-01-13
|
|
251
269
|
|
|
252
|
-
|
|
270
|
+
### Improvements
|
|
253
271
|
|
|
254
272
|
* Added more default paths for OpenBSD.
|
|
255
273
|
[GitHub#15][Reported by clintpachl]
|
|
256
274
|
|
|
257
|
-
|
|
275
|
+
### Thanks
|
|
258
276
|
|
|
259
277
|
* clintpachl
|
|
260
278
|
|
|
261
|
-
|
|
279
|
+
## 1.2.8 - 2017-10-19
|
|
262
280
|
|
|
263
|
-
|
|
281
|
+
### Improvements
|
|
264
282
|
|
|
265
283
|
* Improved macOS environment detection.
|
|
266
284
|
[Reported by Simeon Manolov]
|
|
267
285
|
|
|
268
|
-
|
|
286
|
+
### Thanks
|
|
269
287
|
|
|
270
288
|
* Simeon Manolov
|
|
271
289
|
|
|
272
|
-
|
|
290
|
+
## 1.2.7 - 2017-08-16
|
|
273
291
|
|
|
274
|
-
|
|
292
|
+
### Improvements
|
|
275
293
|
|
|
276
294
|
* Improved Homebrew repository detection.
|
|
277
295
|
[Reported by Wyatt Kirby]
|
|
278
296
|
|
|
279
|
-
|
|
297
|
+
### Thanks
|
|
280
298
|
|
|
281
299
|
* Wyatt Kirby
|
|
282
300
|
|
|
283
|
-
|
|
301
|
+
## 1.2.6 - 2017-08-13
|
|
284
302
|
|
|
285
|
-
|
|
303
|
+
### Improvements
|
|
286
304
|
|
|
287
305
|
* Improved Homebrew repository detection.
|
|
288
306
|
|
|
289
|
-
|
|
307
|
+
## 1.2.5 - 2017-08-10
|
|
290
308
|
|
|
291
|
-
|
|
309
|
+
### Improvements
|
|
292
310
|
|
|
293
311
|
* Supported Homebrew bundled .pc files.
|
|
294
312
|
[GitHub:rcairo/rcairo#49][Reported by choboy11]
|
|
295
313
|
|
|
296
|
-
|
|
314
|
+
### Thanks
|
|
297
315
|
|
|
298
316
|
* choboy11
|
|
299
317
|
|
|
300
|
-
|
|
318
|
+
## 1.2.4 - 2017-08-07
|
|
301
319
|
|
|
302
|
-
|
|
320
|
+
### Improvements
|
|
303
321
|
|
|
304
322
|
* Added `pkg-config` 0.29 or later compatible result support.
|
|
305
323
|
[GitHub#13][Reported by HIGUCHI Daisuke]
|
|
@@ -307,88 +325,88 @@ to 1.4.9.
|
|
|
307
325
|
* test: Updated expected value for the latest cairo.
|
|
308
326
|
[GitHub#14][Patch by HIGUCHI Daisuke]
|
|
309
327
|
|
|
310
|
-
|
|
328
|
+
### Thanks
|
|
311
329
|
|
|
312
330
|
* HIGUCHI Daisuke
|
|
313
331
|
|
|
314
|
-
|
|
332
|
+
## 1.2.3 - 2017-05-29
|
|
315
333
|
|
|
316
|
-
|
|
334
|
+
### Fixes
|
|
317
335
|
|
|
318
336
|
* Supported *-mingw32 Rubies without MSYS2 again.
|
|
319
337
|
|
|
320
|
-
|
|
338
|
+
## 1.2.2 - 2017-05-29
|
|
321
339
|
|
|
322
|
-
|
|
340
|
+
### Improvements
|
|
323
341
|
|
|
324
342
|
* Supported path normalization for MSYS2.
|
|
325
343
|
|
|
326
|
-
|
|
344
|
+
## 1.2.1 - 2017-05-29
|
|
327
345
|
|
|
328
|
-
|
|
346
|
+
### Improvements
|
|
329
347
|
|
|
330
348
|
* Supported MSYS2.
|
|
331
349
|
|
|
332
|
-
|
|
350
|
+
## 1.2.0 - 2017-04-25
|
|
333
351
|
|
|
334
|
-
|
|
352
|
+
### Improvements
|
|
335
353
|
|
|
336
354
|
* Supported x32 environment. [GitHub#12][Reported by Elan Ruusamäe]
|
|
337
355
|
|
|
338
|
-
|
|
356
|
+
### Thanks
|
|
339
357
|
|
|
340
358
|
* Elan Ruusamäe
|
|
341
359
|
|
|
342
|
-
|
|
360
|
+
## 1.1.9 - 2017-04-20
|
|
343
361
|
|
|
344
362
|
* Supported C++ compiler.
|
|
345
363
|
|
|
346
|
-
|
|
364
|
+
## 1.1.8 - 2017-04-19
|
|
347
365
|
|
|
348
366
|
* Stopped to require mkmf.
|
|
349
367
|
|
|
350
|
-
|
|
368
|
+
## 1.1.7 - 2015-01-16
|
|
351
369
|
|
|
352
370
|
* Added path for FreeBSD to default paths.
|
|
353
371
|
[Reported by Hajime UMEMOTO]
|
|
354
372
|
|
|
355
|
-
|
|
373
|
+
### Thanks
|
|
356
374
|
|
|
357
375
|
* Hajime UMEMOTO
|
|
358
376
|
|
|
359
|
-
|
|
377
|
+
## 1.1.6 - 2014/11/12
|
|
360
378
|
|
|
361
379
|
* Supported Ruby 2.1.
|
|
362
380
|
[GitHub:ruby-gnome2/ruby-gnome2#262][Reported by Steve Wills]
|
|
363
381
|
|
|
364
|
-
|
|
382
|
+
### Thanks
|
|
365
383
|
|
|
366
384
|
* Steve Wills
|
|
367
385
|
|
|
368
|
-
|
|
386
|
+
## 1.1.5 - 2013/12/29
|
|
369
387
|
|
|
370
388
|
* Supported XQuartz.
|
|
371
389
|
[GitHub:#10][Patch by Masafumi Yokoyama]
|
|
372
390
|
|
|
373
|
-
|
|
391
|
+
### Thanks
|
|
374
392
|
|
|
375
393
|
* Masafumi Yokoyama
|
|
376
394
|
|
|
377
|
-
|
|
395
|
+
## 1.1.4 - 2012/08/02
|
|
378
396
|
|
|
379
397
|
* Supported mswin64 as MSVC environment.
|
|
380
398
|
|
|
381
|
-
|
|
399
|
+
## 1.1.3 - 2012/01/29
|
|
382
400
|
|
|
383
401
|
* [GitHub #8] fix test broken by libpng version.
|
|
384
402
|
(Patch by Bohuslav Kabrda.)
|
|
385
403
|
* Used RbConfig instead of Config.
|
|
386
404
|
|
|
387
|
-
|
|
405
|
+
### Thanks
|
|
388
406
|
|
|
389
407
|
* Bohuslav Kabrda
|
|
390
408
|
|
|
391
|
-
|
|
409
|
+
## 1.1.2 - 2011/07/04
|
|
392
410
|
|
|
393
411
|
* [GitHub #2] fix test broken.
|
|
394
412
|
(Reported by Mamoru Tasaka.)
|
|
@@ -401,65 +419,65 @@ to 1.4.9.
|
|
|
401
419
|
* [GitHub #7] supported non i386 and amd64 architectures.
|
|
402
420
|
(Reported by Antonio Terceiro.)
|
|
403
421
|
|
|
404
|
-
|
|
422
|
+
### Thanks
|
|
405
423
|
|
|
406
424
|
* Mamoru Tasaka
|
|
407
425
|
* Antonio Terceiro
|
|
408
426
|
|
|
409
|
-
|
|
427
|
+
## 1.1.1 - 2011/05/03
|
|
410
428
|
|
|
411
429
|
* [ruby-gnome-devel-en] add
|
|
412
430
|
/usr/lib/i386-linux-gnu/pkgconfig to the default paths.
|
|
413
431
|
(Reported by Andrea B.C.)
|
|
414
432
|
|
|
415
|
-
|
|
433
|
+
### Thanks
|
|
416
434
|
|
|
417
435
|
* Funky Bibimba
|
|
418
436
|
|
|
419
|
-
|
|
437
|
+
## 1.1.0 - 2011/04/03
|
|
420
438
|
|
|
421
439
|
* [#3270846] add /usr/lib/x86_64-linux-gnu/pkgconfig to default paths.
|
|
422
440
|
(Reported by Funky Bibimbap)
|
|
423
441
|
|
|
424
|
-
|
|
442
|
+
### Thanks
|
|
425
443
|
|
|
426
444
|
* Funky Bibimba
|
|
427
445
|
|
|
428
|
-
|
|
446
|
+
## 1.0.8 - 2011/01/30
|
|
429
447
|
|
|
430
448
|
* fix a bug that multiple PKGConfig.add_path doesn't work.
|
|
431
449
|
|
|
432
|
-
|
|
450
|
+
## 1.0.7 - 2010/09/30
|
|
433
451
|
|
|
434
452
|
* suppress warnings on Ruby 1.9.
|
|
435
453
|
|
|
436
|
-
|
|
454
|
+
## 1.0.6 - 2010/09/23
|
|
437
455
|
|
|
438
456
|
* add PKGConfig.libs_only_L.
|
|
439
457
|
|
|
440
|
-
|
|
458
|
+
## 1.0.5 - 2010/09/23
|
|
441
459
|
|
|
442
460
|
* suppress duplicated configure arguments processing.
|
|
443
461
|
* use mkmf.rb message functions.
|
|
444
462
|
|
|
445
|
-
|
|
463
|
+
## 1.0.4 - 2010/09/23
|
|
446
464
|
|
|
447
465
|
* add PKGConfig.variable.
|
|
448
466
|
|
|
449
|
-
|
|
467
|
+
## 1.0.3 - 2010/09/07
|
|
450
468
|
|
|
451
469
|
* add path and override_variable customize API.
|
|
452
470
|
* support description.
|
|
453
471
|
|
|
454
|
-
|
|
472
|
+
## 1.0.2 - 2010/09/02
|
|
455
473
|
|
|
456
474
|
* fix packaing miss.
|
|
457
475
|
|
|
458
|
-
|
|
476
|
+
## 1.0.1 - 2010/09/02
|
|
459
477
|
|
|
460
478
|
* support installing without gem.
|
|
461
479
|
|
|
462
|
-
|
|
480
|
+
## 1.0.0 - 2010/09/02
|
|
463
481
|
|
|
464
482
|
* Initial release!
|
|
465
483
|
|
data/lib/pkg-config/version.rb
CHANGED
data/lib/pkg-config.rb
CHANGED
|
@@ -173,6 +173,7 @@ class PackageConfig
|
|
|
173
173
|
conda_prefix = ENV["CONDA_PREFIX"]
|
|
174
174
|
if conda_prefix
|
|
175
175
|
default_paths << File.join(conda_prefix, "lib", "pkgconfig")
|
|
176
|
+
default_paths << File.join(conda_prefix, "share", "pkgconfig")
|
|
176
177
|
end
|
|
177
178
|
default_paths << "/usr/local/lib64/pkgconfig"
|
|
178
179
|
default_paths << "/usr/local/libx32/pkgconfig"
|
|
@@ -437,10 +438,10 @@ class PackageConfig
|
|
|
437
438
|
begin
|
|
438
439
|
loop do
|
|
439
440
|
cflag = enumerator.next
|
|
440
|
-
normalized_cflags << cflag
|
|
441
|
+
normalized_cflags << cflag.dup
|
|
441
442
|
case cflag
|
|
442
443
|
when "-I"
|
|
443
|
-
normalized_cflags << enumerator.next
|
|
444
|
+
normalized_cflags.last << enumerator.next
|
|
444
445
|
end
|
|
445
446
|
end
|
|
446
447
|
rescue StopIteration
|
|
@@ -645,7 +646,7 @@ module PKGConfig
|
|
|
645
646
|
"yes (#{modversion(pkg)})"
|
|
646
647
|
else
|
|
647
648
|
if exist?(pkg)
|
|
648
|
-
"no (#{modversion(pkg)}"
|
|
649
|
+
"no (#{modversion(pkg)})"
|
|
649
650
|
else
|
|
650
651
|
"no (nonexistent)"
|
|
651
652
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pkg-config
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.5.
|
|
4
|
+
version: 1.5.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kouhei Sutou
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 2024-10-24 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: test-unit
|
|
@@ -62,7 +61,7 @@ extra_rdoc_files: []
|
|
|
62
61
|
files:
|
|
63
62
|
- Gemfile
|
|
64
63
|
- LGPL-2.1
|
|
65
|
-
- NEWS
|
|
64
|
+
- NEWS.md
|
|
66
65
|
- README.rdoc
|
|
67
66
|
- Rakefile
|
|
68
67
|
- lib/pkg-config.rb
|
|
@@ -74,7 +73,6 @@ licenses:
|
|
|
74
73
|
- LGPLv2+
|
|
75
74
|
metadata:
|
|
76
75
|
msys2_mingw_dependencies: pkg-config
|
|
77
|
-
post_install_message:
|
|
78
76
|
rdoc_options: []
|
|
79
77
|
require_paths:
|
|
80
78
|
- lib
|
|
@@ -89,8 +87,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
89
87
|
- !ruby/object:Gem::Version
|
|
90
88
|
version: '0'
|
|
91
89
|
requirements: []
|
|
92
|
-
rubygems_version: 3.
|
|
93
|
-
signing_key:
|
|
90
|
+
rubygems_version: 3.6.0.dev
|
|
94
91
|
specification_version: 4
|
|
95
92
|
summary: A pkg-config implementation for Ruby
|
|
96
93
|
test_files:
|