libdnf: update 0.55.2 -> 0.58.0

Sdd a patch to fix musl builds.

(From OE-Core rev: 559410af0496465f9fbe5e87849b42859328959e)

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Alexander Kanavin
2021-02-28 16:36:46 +01:00
committed by Richard Purdie
parent d7522c859d
commit d3ffc00752
2 changed files with 33 additions and 1 deletions

View File

@@ -0,0 +1,31 @@
From 8cc7ada0161a7af38351d1e70516975402f3c5c5 Mon Sep 17 00:00:00 2001
From: Alexander Kanavin <alex.kanavin@gmail.com>
Date: Fri, 26 Feb 2021 18:37:41 +0000
Subject: [PATCH] libdnf/config.h: include the correct header on musl
Problem reported at https://github.com/rpm-software-management/libdnf/issues/1146,
but this patch isn't quite the fix.
Upstream-Status: Inappropriate
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
libdnf/config.h | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/libdnf/config.h b/libdnf/config.h
index 16121f6f..51623ce4 100644
--- a/libdnf/config.h
+++ b/libdnf/config.h
@@ -18,7 +18,12 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#include <features.h>
+#ifdef __GLIBC__
#include <bits/wordsize.h>
+#else
+#include <bits/reg.h>
+#endif
#if __WORDSIZE == 32
#include "config-32.h"

View File

@@ -11,9 +11,10 @@ SRC_URI = "git://github.com/rpm-software-management/libdnf;branch=dnf-4-master \
file://0001-Add-WITH_TESTS-option.patch \
file://0001-Look-fo-sphinx-only-if-documentation-is-actually-ena.patch \
file://enable_test_data_dir_set.patch \
file://0001-libdnf-config.h-include-the-correct-header-on-musl.patch \
"
SRCREV = "d2d0ec98fd2e0a2623123fb1ddf8fdd8936c6046"
SRCREV = "85278894f21bc1957dc47a2a09ddacf59bc3cda8"
UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(\.\d+)+)"
S = "${WORKDIR}/git"