Rebase to latest libdnf

This brings us back in sync with the latest libdnf git master. This
required a bunch of work both on the libdnf and rpm-ostree side to get
working. See e.g.
https://github.com/rpm-software-management/libdnf/issues/645.

A few things to adapt to:

- soname bump to `libdnf.so.2`
- `DnfAdvisory` is no longer a `GObject` (annoyingly it's not replaced
  by something we can keep a ref on, so this requires some hacks to
  steal from the `GPtrArray` -- could enhance libdnf for this later)
- disable SWDB history writing
- use new reldep public API
- update for latest `hy_subject_get_best_selector()` API

This now unlocks the possibility to add support for modules. (One can
see hints of this in the diff by the fact that `libdnf` links to
`libmodulemd1`.)

Update submodule: libdnf

Closes: #1404
Approved by: cgwalters
This commit is contained in:
Jonathan Lebon 2019-03-14 10:06:31 -04:00 committed by Atomic Bot
parent 44110377c6
commit ad1451fac2
11 changed files with 30 additions and 16 deletions

2
.gitmodules vendored
View File

@ -3,4 +3,4 @@
url = https://gitlab.gnome.org/GNOME/libglnx.git url = https://gitlab.gnome.org/GNOME/libglnx.git
[submodule "libdnf"] [submodule "libdnf"]
path = libdnf path = libdnf
url = https://github.com/projectatomic/libdnf url = https://github.com/rpm-software-management/libdnf

View File

@ -21,14 +21,14 @@
ALL_LOCAL_HOOKS += libdnf-local ALL_LOCAL_HOOKS += libdnf-local
libdnf-local: libdnf-local:
cd libdnf-build && $(MAKE) $(if $(subst 0,,$(V)),VERBOSE=1,) cd libdnf-build && $(MAKE) $(if $(subst 0,,$(V)),VERBOSE=1,)
ln -sf libdnf-build/libdnf/libdnf.so.1 . ln -sf libdnf-build/libdnf/libdnf.so.2 .
libdnf.so.1: libdnf-local libdnf.so.2: libdnf-local
CLEANFILES += libdnf.so.1 CLEANFILES += libdnf.so.2
GITIGNOREFILES += libdnf-build/ GITIGNOREFILES += libdnf-build/
install-libdnf-hook: install-libdnf-hook:
install -d -m 0755 $(DESTDIR)$(libdir)/rpm-ostree install -d -m 0755 $(DESTDIR)$(libdir)/rpm-ostree
install -m 0755 $$(readlink libdnf.so.1) $(DESTDIR)$(libdir)/rpm-ostree install -m 0755 $$(readlink libdnf.so.2) $(DESTDIR)$(libdir)/rpm-ostree
INSTALL_DATA_HOOKS += install-libdnf-hook INSTALL_DATA_HOOKS += install-libdnf-hook
clean-local: clean-local-dnf clean-local: clean-local-dnf

View File

@ -85,7 +85,7 @@ librpmostreepriv_la_LIBADD = \
$(NULL) $(NULL)
# bundled libdnf # bundled libdnf
EXTRA_librpmostreepriv_la_DEPENDENCIES = libdnf.so.1 EXTRA_librpmostreepriv_la_DEPENDENCIES = libdnf.so.2
gperf_gperf_sources = src/libpriv/rpmostree-script-gperf.gperf gperf_gperf_sources = src/libpriv/rpmostree-script-gperf.gperf
BUILT_SOURCES += $(gperf_gperf_sources:-gperf.gperf=-gperf.c) BUILT_SOURCES += $(gperf_gperf_sources:-gperf.gperf=-gperf.c)

View File

@ -34,9 +34,7 @@ endif
RPM_OSTREE_GITREV=$(shell if command -v git >/dev/null 2>&1 && test -e $(srcdir)/.git; then git describe --abbrev=42 --tags --always HEAD; fi) RPM_OSTREE_GITREV=$(shell if command -v git >/dev/null 2>&1 && test -e $(srcdir)/.git; then git describe --abbrev=42 --tags --always HEAD; fi)
ACLOCAL_AMFLAGS += -I m4 ${ACLOCAL_FLAGS} ACLOCAL_AMFLAGS += -I m4 ${ACLOCAL_FLAGS}
# WITH_SWDB is a hackaround for it being used in libdnf headers
AM_CPPFLAGS += -DDATADIR='"$(datadir)"' \ AM_CPPFLAGS += -DDATADIR='"$(datadir)"' \
-DWITH_SWDB=0 \
-DLIBEXECDIR='"$(libexecdir)"' \ -DLIBEXECDIR='"$(libexecdir)"' \
-DLOCALEDIR=\"$(datadir)/locale\" \ -DLOCALEDIR=\"$(datadir)/locale\" \
-DSYSCONFDIR='"$(sysconfdir)"' \ -DSYSCONFDIR='"$(sysconfdir)"' \

View File

@ -22,6 +22,9 @@ fi
pkg_upgrade pkg_upgrade
pkg_install_if_os centos epel-release pkg_install_if_os centos epel-release
pkg_install_builddeps rpm-ostree pkg_install_builddeps rpm-ostree
# XXX: new libdnf deps until next release
pkg_install json-c-devel cppunit{,-devel} swig sqlite-devel \
libmodulemd1-devel libsmartcols-devel gpgme-devel
# Mostly dependencies for tests # Mostly dependencies for tests
pkg_install ostree{,-devel,-grub2} createrepo_c /usr/bin/jq PyYAML \ pkg_install ostree{,-devel,-grub2} createrepo_c /usr/bin/jq PyYAML \
libubsan libasan libtsan elfutils fuse sudo python-gobject-base \ libubsan libasan libtsan elfutils fuse sudo python-gobject-base \

2
libdnf

@ -1 +1 @@
Subproject commit 7ecb2f5ddc93ae6f819b95ef7940b1d4dd66eb4d Subproject commit d8e481b331137089c25528f59d9d807fa0753e4c

View File

@ -937,6 +937,14 @@ advisory_equal (gconstpointer v1,
dnf_advisory_get_id ((DnfAdvisory*)v2)); dnf_advisory_get_id ((DnfAdvisory*)v2));
} }
/* adds noop-on-NULL semantics so we can steal in advisories_variant() */
static void
advisory_free (gpointer p)
{
if (p)
dnf_advisory_free (p);
}
/* Go through the list of @pkgs and check if there are any advisories open for them. If /* Go through the list of @pkgs and check if there are any advisories open for them. If
* no advisories are found, returns %NULL. Otherwise, returns a GVariant of the type * no advisories are found, returns %NULL. Otherwise, returns a GVariant of the type
* RPMOSTREE_UPDATE_ADVISORY_GVARIANT_FORMAT. * RPMOSTREE_UPDATE_ADVISORY_GVARIANT_FORMAT.
@ -946,7 +954,7 @@ advisories_variant (DnfSack *sack,
GPtrArray *pkgs) GPtrArray *pkgs)
{ {
g_autoptr(GHashTable) advisories = g_autoptr(GHashTable) advisories =
g_hash_table_new_full (advisory_hash, advisory_equal, g_object_unref, g_hash_table_new_full (advisory_hash, advisory_equal, advisory_free,
(GDestroyNotify)g_ptr_array_unref); (GDestroyNotify)g_ptr_array_unref);
/* libdnf provides pkg -> set of advisories, but we want advisory -> set of pkgs; /* libdnf provides pkg -> set of advisories, but we want advisory -> set of pkgs;
@ -967,9 +975,12 @@ advisories_variant (DnfSack *sack,
GPtrArray *pkgs_in_advisory = g_hash_table_lookup (advisories, advisory); GPtrArray *pkgs_in_advisory = g_hash_table_lookup (advisories, advisory);
if (!pkgs_in_advisory) if (!pkgs_in_advisory)
{ {
/* take it out of the array, transferring ownership to the hash table; there's
* g_ptr_array_steal_index() we could use, but it's still very new */
advisories_with_pkg->pdata[j] = NULL;
pkgs_in_advisory = pkgs_in_advisory =
g_ptr_array_new_with_free_func ((GDestroyNotify)g_object_unref); g_ptr_array_new_with_free_func ((GDestroyNotify)g_object_unref);
g_hash_table_insert (advisories, g_object_ref (advisory), pkgs_in_advisory); g_hash_table_insert (advisories, advisory, pkgs_in_advisory);
} }
g_ptr_array_add (pkgs_in_advisory, g_object_ref (pkg)); g_ptr_array_add (pkgs_in_advisory, g_object_ref (pkg));
} }

View File

@ -425,10 +425,11 @@ rpmostree_context_new_system (OstreeRepo *repo,
dnf_context_set_solv_dir (self->dnfctx, RPMOSTREE_CORE_CACHEDIR RPMOSTREE_DIR_CACHE_SOLV); dnf_context_set_solv_dir (self->dnfctx, RPMOSTREE_CORE_CACHEDIR RPMOSTREE_DIR_CACHE_SOLV);
dnf_context_set_lock_dir (self->dnfctx, "/run/rpm-ostree/" RPMOSTREE_DIR_LOCK); dnf_context_set_lock_dir (self->dnfctx, "/run/rpm-ostree/" RPMOSTREE_DIR_LOCK);
dnf_context_set_user_agent (self->dnfctx, PACKAGE_NAME "/" PACKAGE_VERSION); dnf_context_set_user_agent (self->dnfctx, PACKAGE_NAME "/" PACKAGE_VERSION);
/* don't need SWDB: https://github.com/rpm-software-management/libdnf/issues/645 */
dnf_context_set_write_history (self->dnfctx, FALSE);
dnf_context_set_check_disk_space (self->dnfctx, FALSE); dnf_context_set_check_disk_space (self->dnfctx, FALSE);
dnf_context_set_check_transaction (self->dnfctx, FALSE); dnf_context_set_check_transaction (self->dnfctx, FALSE);
dnf_context_set_yumdb_enabled (self->dnfctx, FALSE);
return self; return self;
} }

View File

@ -34,8 +34,7 @@
#include "rpmostree-rpm-util.h" #include "rpmostree-rpm-util.h"
#include "rpmostree-output.h" #include "rpmostree-output.h"
// For the rojig Requires parsing // For the rojig Requires parsing
#include <libdnf/dnf-reldep-private.hpp> #include <libdnf/dnf-reldep-list.h>
#include <libdnf/dnf-sack-private.hpp>
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -1170,7 +1170,7 @@ rpmostree_get_matching_packages (DnfSack *sack,
HySubject subject = NULL; HySubject subject = NULL;
subject = hy_subject_create (pattern); subject = hy_subject_create (pattern);
selector = hy_subject_get_best_selector (subject, sack, false); selector = hy_subject_get_best_selector (subject, sack, NULL, FALSE, NULL);
matches = hy_selector_matches (selector); matches = hy_selector_matches (selector);
hy_selector_free (selector); hy_selector_free (selector);

View File

@ -18,7 +18,9 @@ ostree --version
# We don't want to sync all of userspace, just things # We don't want to sync all of userspace, just things
# that rpm-ostree links to or uses and tend to drift # that rpm-ostree links to or uses and tend to drift
# in important ways. # in important ways.
pkgs="libsolv" # XXX: We add libmodulemd manually for now until it's
# part of the image.
pkgs="libsolv libmodulemd1"
if rpm -q zchunk-libs 2>/dev/null; then if rpm -q zchunk-libs 2>/dev/null; then
pkgs="${pkgs} zchunk-libs" pkgs="${pkgs} zchunk-libs"
fi fi