1
0
mirror of https://github.com/openSUSE/libsolv.git synced 2026-02-05 12:45:46 +01:00

Switch solv to read rpm-md repos on Mageia

Mageia is using libsolv with DNF and RPM-MD repositories, thus
the solv tool should be using our RPM-MD repository configuration.
This commit is contained in:
Neal Gompa
2017-08-06 00:17:15 -04:00
parent f96788c665
commit 1773649652

View File

@@ -18,13 +18,13 @@
#include "repoinfo.h"
#include "repoinfo_cache.h"
#if defined(SUSE) || defined(FEDORA)
#if defined(SUSE) || defined(FEDORA) || defined(MAGEIA)
#include "repoinfo_config_yum.h"
#endif
#if defined(DEBIAN)
#include "repoinfo_config_debian.h"
#endif
#if defined(MANDRIVA) || defined(MAGEIA)
#if defined(MANDRIVA)
#include "repoinfo_config_urpmi.h"
#endif
@@ -80,7 +80,7 @@ free_repoinfos(struct repoinfo *repoinfos, int nrepoinfos)
solv_free(cinfo->components);
}
solv_free(repoinfos);
#if defined(SUSE) || defined(FEDORA)
#if defined(SUSE) || defined(FEDORA) || defined(MAGEIA)
yum_substitute((Pool *)0, 0); /* free data */
#endif
}
@@ -89,10 +89,10 @@ struct repoinfo *
read_repoinfos(Pool *pool, int *nrepoinfosp)
{
struct repoinfo *repoinfos = 0;
#if defined(SUSE) || defined(FEDORA)
#if defined(SUSE) || defined(FEDORA) || defined(MAGEIA)
repoinfos = read_repoinfos_yum(pool, nrepoinfosp);
#endif
#if defined(MANDRIVA) || defined(MAGEIA)
#if defined(MANDRIVA)
repoinfos = read_repoinfos_urpmi(pool, nrepoinfosp);
#endif
#if defined(DEBIAN)