Hello community, here is the log from the commit of package libdnf for openSUSE:Factory checked in at 2018-01-05 01:02:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libdnf (Old) and /work/SRC/openSUSE:Factory/.libdnf.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libdnf" Fri Jan 5 01:02:17 2018 rev:4 rq:561502 version:0.11.1 Changes: -------- --- /work/SRC/openSUSE:Factory/libdnf/libdnf.changes 2017-11-14 12:59:32.713852061 +0100 +++ /work/SRC/openSUSE:Factory/.libdnf.new/libdnf.changes 2018-01-05 01:02:22.672876508 +0100 @@ -1,0 +2,6 @@ +Thu Jan 4 00:29:05 UTC 2018 - [email protected] + +- Ensure SUSE kernel packages are recognized properly + * New patch: 0001-Add-multiversion-kernel-as-a-recognized-installonlyp.patch + +------------------------------------------------------------------- New: ---- 0001-Add-multiversion-kernel-as-a-recognized-installonlyp.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libdnf.spec ++++++ --- /var/tmp/diff_new_pack.fxnRAQ/_old 2018-01-05 01:02:23.996436142 +0100 +++ /var/tmp/diff_new_pack.fxnRAQ/_new 2018-01-05 01:02:23.996436142 +0100 @@ -2,7 +2,7 @@ # spec file for package libdnf # # Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. -# Copyright (c) 2017 Neal Gompa <[email protected]>. +# Copyright (c) 2018 Neal Gompa <[email protected]>. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -43,6 +43,10 @@ Url: https://github.com/rpm-software-management/%{name} Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz +# PATCH-FIX-UPSTREAM: Ensure SUSE kernel packages are recognized properly +# Proposed upstream: https://github.com/rpm-software-management/libdnf/pull/400 +Patch0001: 0001-Add-multiversion-kernel-as-a-recognized-installonlyp.patch + # PATCH-FIX-OPENSUSE libdnf-0.9.3-with-static-libsolvext.patch [email protected] -- Fix libdnf build with static libsolvext Patch1000: libdnf-0.9.3-with-static-libsolvext.patch ++++++ 0001-Add-multiversion-kernel-as-a-recognized-installonlyp.patch ++++++ >From f0b20b80435aab159bb34f7e6460435cd0a8ae4b Mon Sep 17 00:00:00 2001 From: Neal Gompa <[email protected]> Date: Wed, 3 Jan 2018 19:21:52 -0500 Subject: [PATCH] Add multiversion(kernel) as a recognized installonlypkg name The multiversion(kernel) Provides is used to mark kernel packages as installonlypkgs on SUSE Linux and its derivatives. --- libdnf/dnf-context.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libdnf/dnf-context.c b/libdnf/dnf-context.c index ccc45ad..0676bfc 100644 --- a/libdnf/dnf-context.c +++ b/libdnf/dnf-context.c @@ -741,6 +741,7 @@ dnf_context_get_installonly_pkgs(DnfContext *context) "installonlypkg(kernel)", "installonlypkg(kernel-module)", "installonlypkg(vm)", + "multiversion(kernel)", NULL }; return installonly_pkgs; } -- 2.15.1
