diff options
author | Allan McRae <allan@archlinux.org> | 2012-05-19 13:00:18 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-05-21 02:03:43 +0200 |
commit | 81bc390dc1a66841a332948fd906c2257720f37a (patch) | |
tree | 384f76d29ddafe1fc6526707f4f420da106e307f /lib/libalpm/be_sync.c | |
parent | 18e0a972094d7c4bc874ba87ce3be6b2b308a832 (diff) | |
download | pacman-81bc390dc1a66841a332948fd906c2257720f37a.tar.gz pacman-81bc390dc1a66841a332948fd906c2257720f37a.tar.xz |
repo-add: add makedepends information
This is useful for tools that automatically rebuild packages and
thus require to generate a build order. These entries are skipped
by pacman.
Signed-off-by: Allan McRae <allan@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/be_sync.c')
-rw-r--r-- | lib/libalpm/be_sync.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/libalpm/be_sync.c b/lib/libalpm/be_sync.c index 9fadff54..02f087ad 100644 --- a/lib/libalpm/be_sync.c +++ b/lib/libalpm/be_sync.c @@ -591,6 +591,12 @@ static int sync_db_read(alpm_db_t *db, struct archive *archive, READ_AND_SPLITDEP(pkg->depends); } else if(strcmp(line, "%OPTDEPENDS%") == 0) { READ_AND_SPLITDEP(pkg->optdepends); + } else if(strcmp(line, "%MAKEDEPENDS%") == 0) { + /* currently unused */ + while(1) { + READ_NEXT(); + if(strlen(line) == 0) break; + } } else if(strcmp(line, "%CONFLICTS%") == 0) { READ_AND_SPLITDEP(pkg->conflicts); } else if(strcmp(line, "%PROVIDES%") == 0) { |