Andrej Shadura
cfda825f80
doc: extract: Use "==" instead of "is" with literals
...
This fixes:
SyntaxWarning: "is" with a literal. Did you mean "=="?
Signed-off-by: Andrej Shadura <andrew.shadura@collabora.co.uk>
2023-01-22 10:58:01 +00:00
Ariadne Conill
873e51aaae
pkgconf 1.9.4.
ci/woodpecker/push/woodpecker Pipeline was successful
Details
ci/woodpecker/tag/woodpecker Pipeline was successful
Details
2023-01-22 04:56:44 +00:00
Ariadne Conill
f7305434eb
libpkgconf: bump API version to 10904
2023-01-22 04:56:06 +00:00
Ariadne Conill
93edd215b4
update NEWS for 1.9.4
ci/woodpecker/push/woodpecker Pipeline was successful
Details
2023-01-22 04:52:25 +00:00
Ariadne Conill
49ab0b2ab7
tests: fixup!
2023-01-21 21:43:23 +00:00
Ariadne Conill
98b33b48cd
cli: use flattened solution for almost all user-facing queries
2023-01-21 21:43:08 +00:00
Ariadne Conill
d9e507cc6e
pkg: do not do serial checks for flattened solutions, as they are already flattened
2023-01-21 21:31:38 +00:00
Ariadne Conill
90b65c866b
main: use flattened solution for cflags/libs only
2023-01-21 21:31:16 +00:00
Ariadne Conill
1ce000f397
Revert "pkg.m4: PKG_CHECK_MODULES provides modversion"
...
ci/woodpecker/push/woodpecker Pipeline was successful
Details
This reverts commit 8d9d3de6eb
.
2023-01-21 20:59:22 +00:00
Ariadne Conill
99bc93fbe5
use SIZE_FMT_SPECIFIER everywhere
ci/woodpecker/push/woodpecker Pipeline was successful
Details
2023-01-21 20:45:29 +00:00
Ariadne Conill
e2a12fd4c2
main: reset solver when solving for library groups
ci/woodpecker/push/woodpecker Pipeline was successful
Details
2023-01-21 20:39:53 +00:00
Ariadne Conill
8f12d36b76
tests: fixup trailing whitespace in expected results
ci/woodpecker/push/woodpecker Pipeline was successful
Details
2023-01-21 20:22:03 +00:00
Ariadne Conill
b106de0c7a
cli: add whitespace between cflags and libs fragments
2023-01-21 20:21:26 +00:00
Ariadne Conill
648a2249fc
fragment: render: only include trailing space if there is another fragment
2023-01-21 20:17:33 +00:00
Ariadne Conill
dd741e722f
README: fix tests option to reflect meson changes
ci/woodpecker/push/woodpecker Pipeline was successful
Details
2023-01-21 20:12:02 +00:00
Timo Röhling
506ebab7d6
Ignore whitespace indentation
...
ci/woodpecker/push/woodpecker Pipeline was successful
Details
Fixes #265
2023-01-21 20:09:52 +00:00
Ariadne Conill
be0d811942
argvsplit: fix some quoting rules to match POSIX
ci/woodpecker/push/woodpecker Pipeline was successful
Details
2023-01-21 19:51:24 +00:00
Ariadne Conill
6a5b55740d
tests: fix test regressions caused by tilde changes
ci/woodpecker/push/woodpecker Pipeline failed
Details
2023-01-21 19:25:46 +00:00
Doug Freed
131619ae4b
doc: update libpkgconf-pkg docs to match
ci/woodpecker/push/woodpecker Pipeline failed
Details
2023-01-20 22:21:31 +00:00
Doug Freed
08db74c474
pkg: make pkgconf_compare_version consistent
...
The code taken from rpmvercmp in pkg-config returns -1 if a is less than
b, 0 if a is equal to b, and 1 if a is greater than b. This matches the
expectations of the comparison operators that use this function.
However, the tilde handling, the NULL handling, and the docstring all do
the opposite.
This fixes the tilde handling, the NULL handling, and the docstring to
match the behavior of the rpmvercmp code and the expectations of the
comparison operators.
2023-01-20 22:21:31 +00:00
Doug Freed
eb5c6b49d6
Fix Mingw GH CI broken by 179a056
ci/woodpecker/push/woodpecker Pipeline failed
Details
2023-01-20 22:19:13 +00:00
Ziemowit Łąski
1c3f246198
pkgconf: Handle spaces correctly when expanding variables
...
ci/woodpecker/push/woodpecker Pipeline failed
Details
Given the following .pc fragment:
includedir=/mingw64/include
Cflags: -I${includedir} -I${includedir}/taglib
Should includedir be assigned the value 'C:/Program\ Files/Git/mingw64/include', the expansion of ${includedir} will be chopped off after the first space:
Cflags: -IC:/Program\
With this patch, the expansion is corrected:
Cflags: -IC:/Program\ Files/Git/mingw64/include -IC:/Program\ Files/Git/mingw64/include/taglib
Create spaces-in-paths.pc
2023-01-20 22:18:26 +00:00
wi24rd
27287f323d
Update sum value of types of property.
ci/woodpecker/push/woodpecker Pipeline was successful
Details
2023-01-20 22:17:33 +00:00
Eli Schwartz
8f233383cd
meson: remove useless command that isn't needed
...
ci/woodpecker/push/woodpecker Pipeline was successful
Details
The tests/*.sh are executable in the source tree, and don't need to be
chmodded after being copied to the build tree.
2023-01-20 22:13:21 +00:00
Ariadne Conill
2f51733e34
tests: add regression test for billion-laughs
ci/woodpecker/push/woodpecker Pipeline was successful
Details
2023-01-20 22:11:00 +00:00
Ariadne Conill
628b2b2baf
tuple: test for, and stop string processing, on truncation
...
otherwise a buffer overflow occurs.
this has been a bug in pkgconf since the beginning, it seems.
instead of disclosing the bug correctly, a "hotshot" developer
decided to blog about it instead. sigh.
https://nullprogram.com/blog/2023/01/18/
2023-01-20 22:07:03 +00:00
Ariadne Conill
3e481581ba
add billion-laughs test fixture
2023-01-20 22:01:38 +00:00
Ariadne Conill
0226cdda6d
Merge pull request 'meson: use a feature option for tests instead of boolean' ( #244 ) from dcbaker/pkgconf:tests-feature into master
...
ci/woodpecker/push/woodpecker Pipeline was successful
Details
Reviewed-on: #244
2022-08-20 13:27:45 +00:00
Dylan Baker
fa803c7ecd
meson: use a feature option for tests instead of boolean
...
ci/woodpecker/pr/woodpecker Pipeline was successful
Details
This allows tests to be autodetected gracefully, which is particularly
convenient for kyua and atf_sh which are fairly painful to build and
install by hand. Those who want to ensure tests are enabled or disabled
may pass `-Dtests=enabled` or `-Dtests=disabled` respectively.
This does require a modest bump in the required meson version to 0.49,
which was released at the end of 2018, so roughly 4 years ago.
2022-08-17 11:07:44 -07:00
Ariadne Conill
bddf1641f8
bomtool: fix ASan issues
ci/woodpecker/push/woodpecker Pipeline was successful
Details
2022-08-16 20:41:10 +00:00
Ariadne Conill
8754bdfe09
pkgconf 1.9.3.
ci/woodpecker/push/woodpecker Pipeline was successful
Details
ci/woodpecker/tag/woodpecker Pipeline was successful
Details
2022-08-16 19:50:26 +00:00
Ariadne Conill
6a66b312b4
libpkgconf: increase API level to 10903
2022-08-16 19:49:42 +00:00
Ariadne Conill
4c38d3f60c
update NEWS for pkgconf 1.9.3
ci/woodpecker/push/woodpecker Pipeline was successful
Details
2022-08-16 19:49:02 +00:00
Ariadne Conill
b7593aea27
build: automake: use top_srcdir as needed
2022-08-16 19:48:44 +00:00
Ariadne Conill
dbd78db67f
tests: add regression test for github #259
ci/woodpecker/push/woodpecker Pipeline was successful
Details
2022-08-16 19:42:13 +00:00
Ariadne Conill
80bc5ac3b9
tuple: if a global tuple is explicitly defined with --define-variable, prefer it
...
ci/woodpecker/push/woodpecker Pipeline was successful
Details
fixes github #259
2022-08-16 19:39:05 +00:00
Ariadne Conill
5044491f43
queue: add function to free a compiled solution
ci/woodpecker/push/woodpecker Pipeline was successful
Details
2022-08-16 19:27:35 +00:00
Ariadne Conill
c6d14e6fa1
cli: renderer-msvc: remove pointless buf_remaining store
ci/woodpecker/push/woodpecker Pipeline was successful
Details
2022-08-16 18:53:29 +00:00
Ariadne Conill
ced9bee613
pkg: remove dead store in pkgconf_compare_version
ci/woodpecker/push/woodpecker Pipeline was successful
Details
2022-08-16 18:51:11 +00:00
Ariadne Conill
2c89541101
bomtool: return EXIT_FAILURE if solver fails to solve
2022-08-16 18:50:35 +00:00
Ariadne Conill
5500a15133
fragment: avoid trying to merge fragments where data == NULL
2022-08-16 18:46:43 +00:00
Ariadne Conill
74faf8d0e2
queue: do not enqueue unsolved nodes as part of a solution
ci/woodpecker/push/woodpecker Pipeline was successful
Details
2022-08-16 18:38:46 +00:00
Ariadne Conill
c918b6e225
bomtool: enable PKGCONF_PKG_PKGF_SEARCH_PRIVATE to collect dev dependencies
ci/woodpecker/push/woodpecker Pipeline was successful
Details
2022-08-13 06:44:40 +00:00
Ariadne Conill
12f3a30980
bomtool: write dependency relationships in both directions
2022-08-13 06:44:19 +00:00
Ariadne Conill
01c1d9f4cc
bomtool: remove empty creation date field
ci/woodpecker/push/woodpecker Pipeline was successful
Details
2022-08-12 13:07:58 +00:00
Ariadne Conill
9e8052b699
bomtool: add enough to generate a basic SBOM
ci/woodpecker/push/woodpecker Pipeline was successful
Details
2022-08-12 12:57:53 +00:00
Ariadne Conill
696124b608
pkg: add support for parsing the URL from pc files
2022-08-12 12:36:21 +00:00
Ariadne Conill
79327b8967
add bomtool skeleton
ci/woodpecker/push/woodpecker Pipeline was successful
Details
2022-08-12 12:07:56 +00:00
Ariadne Conill
f3021a82c5
libpkgconf.pc: add license
2022-08-12 11:59:11 +00:00
Ariadne Conill
194ad3e656
man: pc.5: document copyright/maintainer fields
ci/woodpecker/push/woodpecker Pipeline was successful
Details
2022-08-11 16:01:30 +00:00