From: Michael Tremer Date: Thu, 30 Jan 2025 11:10:04 +0000 (+0000) Subject: repo: Since we now support virtual repositories, the don't have to be local X-Git-Tag: 0.9.30~268 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7228aaf23483bfabbe79654481429b50771257f9;p=pakfire.git repo: Since we now support virtual repositories, the don't have to be local Signed-off-by: Michael Tremer --- diff --git a/src/pakfire/repo.c b/src/pakfire/repo.c index 2554b3c0..ce1f0a68 100644 --- a/src/pakfire/repo.c +++ b/src/pakfire/repo.c @@ -430,10 +430,6 @@ int pakfire_repo_import_archive(struct pakfire_repo* self, char path[PATH_MAX]; int r; - // This repository must be local - if (!pakfire_repo_is_local(self)) - return -ENOTSUP; - // Add the metadata r = pakfire_archive_make_package(archive, self, &pkg); if (r < 0)