./devel/pkgconf, API-driven pkg-config replacement

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 2.4.3nb1, Package name: pkgconf-2.4.3nb1, Maintainer: nico

pkgconf is a program which helps to configure compiler and linker flags for
development frameworks. It is similar to pkg-config, but was written from
scratch in the summer of 2011 to replace pkg-config, which now needs itself
to build itself (or you can set a bunch of environment variables, both are
pretty ugly).


Required to build:
[pkgtools/cwrappers]

Master sites:

Filesize: 457.957 KB

Version history: (Expand)


CVS history: (Expand)


   2025-05-18 05:00:19 by Mark Davies | Files touched by this commit (1)
Log message:
pkgconf: Linux (at least ArchLinux) installs some pkgconfig files in
/usr/share/pkgconfig so add it to the search path.
   2025-05-01 21:34:59 by Amitai Schleier | Files touched by this commit (1)
Log message:
pkgconf: on OS X < 10.10, link MacportsLegacySupport for readlinkat().
   2025-03-09 07:06:45 by Thomas Klausner | Files touched by this commit (3) | Package updated
Log message:
pkgconf: update to 2.4.3.

Changes from 2.4.2 to 2.4.3:
----------------------------

* Fix additional logic errors relating to the new fragment trees
  functionality.

Changes from 2.4.1 to 2.4.2:
----------------------------

* Fix several logic errors in the pkg-config file parser that were
  surfaced by recent refactoring work.

* Fix BSD make compatibility so that it generates the test data
  before running kyua on BSD make implementations.

Changes from 2.4.0 to 2.4.1:
----------------------------

* Ensure the full DAG is solved for all query types.
   2025-03-06 23:40:56 by Thomas Klausner | Files touched by this commit (3)
Log message:
pkgconf: downgrade to 2.3.0

because of
https://github.com/pkgconf/pkgconf/issues/383

but keep the changes to enable tests.
   2025-03-06 09:51:54 by Thomas Klausner | Files touched by this commit (2)
Log message:
pkgconf: get tests to do something at all
   2025-03-06 09:50:06 by Thomas Klausner | Files touched by this commit (1)
Log message:
pkgconf: add test dependency and set test target
   2025-03-06 09:47:09 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
pkgconf: updated to 2.4.0

Changes from 2.3.0 to 2.4.0:

* Allow multiple package names in solution-based queries such as
  `--print-requires`, `--print-requires-private` and `--print-provides`.

* Use `_DEFAULT_SOURCE` where appropriate on Meson.

* Add an abstract buffer type and use it when loading files from disk
  instead of a 64KB buffer.  This ensures large pkg-config files are
  not truncated.

* Disable graph recursion in `--variable` queries as it was generating
  duplicate output.

* Add infrastructure for tracking fragment group relations and convert
  storage of fragments to use a tree-like structure instead of string
  concatenation.

* Add support for tracking linker groups, e.g.

    -Wl,--start-group -la -lb -lc -Wl,--end-group

  as fragment groups.

* Properly contextualize the sysroot directory when processing package
  information, ensuring packages where ${pc_sysrootdir} does not match
  the default are properly processed.
   2024-05-16 23:31:47 by Taylor R Campbell | Files touched by this commit (3)
Log message:
devel/pkgconf: Fix ctype(3) abuse.