pkg: add pkgconf_pkg_t.license field
ci/woodpecker/push/woodpecker Pipeline was successful Details

The pkgconf_pkg_t.license field maps to the new License keyword, and
should be an SPDX license expression.
pull/242/head
Ariadne Conill 2022-08-07 04:21:22 +00:00
parent dce34e9afd
commit 1389aa05ba
2 changed files with 2 additions and 0 deletions

View File

@ -136,6 +136,7 @@ struct pkgconf_pkg_ {
char *description;
char *url;
char *pc_filedir;
char *license;
pkgconf_list_t libs;
pkgconf_list_t libs_private;

View File

@ -162,6 +162,7 @@ static const pkgconf_pkg_parser_keyword_pair_t pkgconf_pkg_parser_keyword_funcs[
{"Description", pkgconf_pkg_parser_tuple_func, offsetof(pkgconf_pkg_t, description)},
{"LIBS", pkgconf_pkg_parser_fragment_func, offsetof(pkgconf_pkg_t, libs)},
{"LIBS.private", pkgconf_pkg_parser_fragment_func, offsetof(pkgconf_pkg_t, libs_private)},
{"License", pkgconf_pkg_parser_tuple_func, offsetof(pkgconf_pkg_t, license)},
{"Name", pkgconf_pkg_parser_tuple_func, offsetof(pkgconf_pkg_t, realname)},
{"Provides", pkgconf_pkg_parser_dependency_func, offsetof(pkgconf_pkg_t, provides)},
{"Requires", pkgconf_pkg_parser_dependency_func, offsetof(pkgconf_pkg_t, required)},