mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 00:39:46 +00:00
createrepo-c: update 0.20.1 -> 0.21.1
(From OE-Core rev: 9012ad6f3bdda5ca669c20ade397ec45d2bed731) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
14261b3f74
commit
cf8610beb7
@@ -1,7 +1,7 @@
|
|||||||
From 8defe6aaf91613c3fcb540df65a94cd56d377367 Mon Sep 17 00:00:00 2001
|
From eb66326c3fc6e942282d01ddd56659c78ed7400b Mon Sep 17 00:00:00 2001
|
||||||
From: Khem Raj <raj.khem@gmail.com>
|
From: Khem Raj <raj.khem@gmail.com>
|
||||||
Date: Fri, 13 Jan 2023 13:21:51 -0800
|
Date: Fri, 13 Jan 2023 13:21:51 -0800
|
||||||
Subject: [PATCH 1/2] include rpm/rpmstring.h
|
Subject: [PATCH] include rpm/rpmstring.h
|
||||||
|
|
||||||
Its needed for rasprintf declaration
|
Its needed for rasprintf declaration
|
||||||
|
|
||||||
@@ -11,10 +11,13 @@ on 'rasprintf'; ISO C99 and later do not support implicit function declarations
|
|||||||
|
|
||||||
Upstream-Status: Submitted [https://github.com/rpm-software-management/createrepo_c/pull/340]
|
Upstream-Status: Submitted [https://github.com/rpm-software-management/createrepo_c/pull/340]
|
||||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||||
|
|
||||||
---
|
---
|
||||||
src/xml_file.c | 1 +
|
src/xml_file.c | 1 +
|
||||||
1 file changed, 1 insertion(+)
|
1 file changed, 1 insertion(+)
|
||||||
|
|
||||||
|
diff --git a/src/xml_file.c b/src/xml_file.c
|
||||||
|
index d2400b8..871109c 100644
|
||||||
--- a/src/xml_file.c
|
--- a/src/xml_file.c
|
||||||
+++ b/src/xml_file.c
|
+++ b/src/xml_file.c
|
||||||
@@ -19,6 +19,7 @@
|
@@ -19,6 +19,7 @@
|
||||||
@@ -23,5 +26,5 @@ Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|||||||
#include <glib/gstdio.h>
|
#include <glib/gstdio.h>
|
||||||
+#include <rpm/rpmstring.h>
|
+#include <rpm/rpmstring.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
#include <rpm/rpmstring.h>
|
||||||
#include "xml_file.h"
|
#include "xml_file.h"
|
||||||
#include <errno.h>
|
|
||||||
|
|||||||
+39
@@ -0,0 +1,39 @@
|
|||||||
|
From 970b901e1999f415da8bac205f526c808ddad0ba Mon Sep 17 00:00:00 2001
|
||||||
|
From: Alexander Kanavin <alex@linutronix.de>
|
||||||
|
Date: Mon, 8 May 2023 10:40:43 +0200
|
||||||
|
Subject: [PATCH] src/cmd_parser.c: add a missing parameter name
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
This resolves the following error with older versions of gcc:
|
||||||
|
| /srv/storage/alex/yocto/build-32/tmp/work/x86_64-linux/createrepo-c-native/0.21.1-r0/git/src/cmd_parser.c: In function ‘duplicated_nevra_option_parser’:
|
||||||
|
| /srv/storage/alex/yocto/build-32/tmp/work/x86_64-linux/createrepo-c-native/0.21.1-r0/git/src/cmd_parser.c:76:32: error: parameter name omitted
|
||||||
|
| 76 | duplicated_nevra_option_parser(const gchar *,
|
||||||
|
| | ^~~~~~~~~~~~~
|
||||||
|
| /srv/storage/alex/yocto/build-32/tmp/work/x86_64-linux/createrepo-c-native/0.21.1-r0/git/src/cmd_parser.c:78:32: error: parameter name omitted
|
||||||
|
| 78 | gpointer,
|
||||||
|
| | ^~~~~~~~
|
||||||
|
|
||||||
|
Upstream-Status: Submitted [https://github.com/rpm-software-management/createrepo_c/pull/366]
|
||||||
|
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
|
||||||
|
---
|
||||||
|
src/cmd_parser.c | 4 ++--
|
||||||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/src/cmd_parser.c b/src/cmd_parser.c
|
||||||
|
index 97c9ea7..63af7ea 100644
|
||||||
|
--- a/src/cmd_parser.c
|
||||||
|
+++ b/src/cmd_parser.c
|
||||||
|
@@ -73,9 +73,9 @@ struct CmdOptions _cmd_options = {
|
||||||
|
|
||||||
|
|
||||||
|
gboolean
|
||||||
|
-duplicated_nevra_option_parser(const gchar *,
|
||||||
|
+duplicated_nevra_option_parser(const gchar *option_name,
|
||||||
|
const gchar *value,
|
||||||
|
- gpointer,
|
||||||
|
+ gpointer data,
|
||||||
|
GError **error)
|
||||||
|
{
|
||||||
|
if (!g_strcmp0(value, "keep"))
|
||||||
+2
-1
@@ -7,9 +7,10 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|||||||
SRC_URI = "git://github.com/rpm-software-management/createrepo_c;branch=master;protocol=https \
|
SRC_URI = "git://github.com/rpm-software-management/createrepo_c;branch=master;protocol=https \
|
||||||
file://0001-Do-not-set-PYTHON_INSTALL_DIR-by-running-python.patch \
|
file://0001-Do-not-set-PYTHON_INSTALL_DIR-by-running-python.patch \
|
||||||
file://0001-include-rpm-rpmstring.h.patch \
|
file://0001-include-rpm-rpmstring.h.patch \
|
||||||
|
file://0001-src-cmd_parser.c-add-a-missing-parameter-name.patch \
|
||||||
"
|
"
|
||||||
|
|
||||||
SRCREV = "af14e164a3e4ab9dfaef1212e852b9ecebc326a2"
|
SRCREV = "0652d7303ce236e596c83c29ccc9bee7868fce6e"
|
||||||
|
|
||||||
S = "${WORKDIR}/git"
|
S = "${WORKDIR}/git"
|
||||||
|
|
||||||
Reference in New Issue
Block a user