From: Michael Schroeder Date: Wed, 12 Mar 2014 14:34:02 +0000 (+0100) Subject: support REPOKEYWORDS in the content parser X-Git-Tag: 0.6.4~66 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2d84f3efc00621de607022f3d7bb91f6c109fc69;p=thirdparty%2Flibsolv.git support REPOKEYWORDS in the content parser --- diff --git a/ext/repo_content.c b/ext/repo_content.c index 021c3b2e..2ce69409 100644 --- a/ext/repo_content.c +++ b/ext/repo_content.c @@ -290,6 +290,11 @@ repo_add_content(Repo *repo, FILE *fp, int flags) repodata_add_poolstr_array(data, SOLVID_META, REPOSITORY_REPOID, value); continue; } + if (istag ("REPOKEYWORDS")) + { + add_multiple_strings(data, SOLVID_META, REPOSITORY_KEYWORDS, value); + continue; + } if (istag ("DISTRO")) { Id dh = repodata_new_handle(data);