ad1451fac2
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
108 lines
3.9 KiB
Plaintext
108 lines
3.9 KiB
Plaintext
# Copyright (C) 2015 Colin Walters <walters@verbum.org>
|
|
#
|
|
# This library is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
# License as published by the Free Software Foundation; either
|
|
# version 2 of the License, or (at your option) any later version.
|
|
#
|
|
# This library is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
# License along with this library; if not, write to the
|
|
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
# Boston, MA 02111-1307, USA.
|
|
|
|
noinst_LTLIBRARIES += librpmostreepriv.la
|
|
|
|
librpmostreepriv_la_SOURCES = \
|
|
src/libpriv/rpmostree-postprocess.c \
|
|
src/libpriv/rpmostree-postprocess.h \
|
|
src/libpriv/rpmostree-json-parsing.c \
|
|
src/libpriv/rpmostree-json-parsing.h \
|
|
src/libpriv/rpmostree-util.c \
|
|
src/libpriv/rpmostree-util.h \
|
|
src/libpriv/rpmostree-types.h \
|
|
src/libpriv/rpmostree-passwd-util.c \
|
|
src/libpriv/rpmostree-passwd-util.h \
|
|
src/libpriv/rpmostree-refts.h \
|
|
src/libpriv/rpmostree-refts.c \
|
|
src/libpriv/rpmostree-core.c \
|
|
src/libpriv/rpmostree-core.h \
|
|
src/libpriv/rpmostree-core-private.h \
|
|
src/libpriv/rpmostree-bwrap.c \
|
|
src/libpriv/rpmostree-bwrap.h \
|
|
src/libpriv/rpmostree-kernel.c \
|
|
src/libpriv/rpmostree-kernel.h \
|
|
src/libpriv/rpmostree-origin.c \
|
|
src/libpriv/rpmostree-origin.h \
|
|
src/libpriv/rpmostree-scripts.c \
|
|
src/libpriv/rpmostree-scripts.h \
|
|
src/libpriv/rpmostree-refsack.h \
|
|
src/libpriv/rpmostree-refsack.c \
|
|
src/libpriv/rpmostree-rpm-util.c \
|
|
src/libpriv/rpmostree-rpm-util.h \
|
|
src/libpriv/rpmostree-importer.c \
|
|
src/libpriv/rpmostree-importer.h \
|
|
src/libpriv/rpmostree-rojig-build.c \
|
|
src/libpriv/rpmostree-rojig-build.h \
|
|
src/libpriv/rpmostree-rojig-assembler.c \
|
|
src/libpriv/rpmostree-rojig-assembler.h \
|
|
src/libpriv/rpmostree-rojig-core.h \
|
|
src/libpriv/rpmostree-rojig-client.c \
|
|
src/libpriv/rpmostree-unpacker-core.c \
|
|
src/libpriv/rpmostree-unpacker-core.h \
|
|
src/libpriv/rpmostree-output.c \
|
|
src/libpriv/rpmostree-output.h \
|
|
src/libpriv/rpmostree-kargs-process.c \
|
|
src/libpriv/rpmostree-kargs-process.h \
|
|
src/libpriv/rpmostree-editor.c \
|
|
src/libpriv/rpmostree-editor.h \
|
|
src/libpriv/libsd-locale-util.c \
|
|
src/libpriv/libsd-locale-util.h \
|
|
src/libpriv/libsd-time-util.c \
|
|
src/libpriv/libsd-time-util.h \
|
|
src/libpriv/rpmostree-libarchive-input-stream.c \
|
|
src/libpriv/rpmostree-libarchive-input-stream.h \
|
|
$(NULL)
|
|
|
|
librpmostreepriv_la_CFLAGS = \
|
|
$(AM_CFLAGS) \
|
|
-I$(srcdir)/src/lib \
|
|
-I$(srcdir)/src/libpriv \
|
|
-I$(libglnx_srcpath) \
|
|
-DPKGLIBDIR=\"$(pkglibdir)\" \
|
|
-fvisibility=hidden \
|
|
$(PKGDEP_RPMOSTREE_CFLAGS) \
|
|
$(NULL)
|
|
|
|
librpmostreepriv_la_LIBADD = \
|
|
$(PKGDEP_RPMOSTREE_LIBS) \
|
|
libglnx.la \
|
|
$(CAP_LIBS) \
|
|
$(NULL)
|
|
|
|
# bundled libdnf
|
|
EXTRA_librpmostreepriv_la_DEPENDENCIES = libdnf.so.2
|
|
|
|
gperf_gperf_sources = src/libpriv/rpmostree-script-gperf.gperf
|
|
BUILT_SOURCES += $(gperf_gperf_sources:-gperf.gperf=-gperf.c)
|
|
CLEANFILES += $(gperf_gperf_sources:-gperf.gperf=-gperf.c)
|
|
|
|
nodist_librpmostreepriv_la_SOURCES = src/libpriv/rpmostree-script-gperf.c
|
|
|
|
rpmostree-libpriv-gresources.c: src/libpriv/gresources.xml Makefile $(shell glib-compile-resources --sourcedir=$(srcdir)/src/libpriv --generate-dependencies $(srcdir)/src/libpriv/gresources.xml)
|
|
$(AM_V_GEN) glib-compile-resources --target=$@ --sourcedir=$(srcdir)/src/libpriv --generate-source --c-name _rpmostree_ $<
|
|
BUILT_SOURCES += rpmostree-libpriv-gresources.c
|
|
librpmostreepriv_la_SOURCES += rpmostree-libpriv-gresources.c
|
|
|
|
AM_V_GPERF = $(AM_V_GPERF_$(V))
|
|
AM_V_GPERF_ = $(AM_V_GPERF_$(AM_DEFAULT_VERBOSITY))
|
|
AM_V_GPERF_0 = @echo " GPERF " $@;
|
|
|
|
src/%.c: src/%.gperf Makefile
|
|
$(AM_V_at)$(MKDIR_P) $(dir $@)
|
|
$(AM_V_GPERF)$(GPERF) < $< > $@.tmp && mv $@.tmp $@
|