summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-09-15 08:42:50 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-09-17 07:47:08 +0100
commit8c110b69f9f1cdc15349b2b8b373fd8f9fa3a00c (patch)
treeb83741efa9f0890ffb84674f748a2c304c9e2e48
parenta442006c811425cfcc9cd6ce2f45e15f2075c4c7 (diff)
downloadpoky-8c110b69f9f1cdc15349b2b8b373fd8f9fa3a00c.tar.gz
librepo: upgrade 1.14.4 -> 1.14.5
(From OE-Core rev: 4291f53127f0740a1004f0b6fb823b9823562c58) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-devtools/librepo/librepo/0001-metadata_downloader-Include-unistd.h-for-lseek.patch34
-rw-r--r--meta/recipes-devtools/librepo/librepo_1.14.5.bb (renamed from meta/recipes-devtools/librepo/librepo_1.14.4.bb)3
2 files changed, 1 insertions, 36 deletions
diff --git a/meta/recipes-devtools/librepo/librepo/0001-metadata_downloader-Include-unistd.h-for-lseek.patch b/meta/recipes-devtools/librepo/librepo/0001-metadata_downloader-Include-unistd.h-for-lseek.patch
deleted file mode 100644
index 22b3110a61..0000000000
--- a/meta/recipes-devtools/librepo/librepo/0001-metadata_downloader-Include-unistd.h-for-lseek.patch
+++ /dev/null
@@ -1,34 +0,0 @@
1From 5c63ec2e2d4726268ace85e5c61727cbd811d982 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sat, 27 Aug 2022 09:00:24 -0700
4Subject: [PATCH] metadata_downloader: Include unistd.h for lseek()
5
6This is found when compiling on musl systems
7
8Fixes
9
10metadata_downloader.c:331:9: error: call to undeclared function 'lseek'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
11 lseek(fd_value, SEEK_SET, 0);
12 ^
13
14Upstream-Status: Submitted [https://github.com/rpm-software-management/librepo/pull/263]
15Signed-off-by: Khem Raj <raj.khem@gmail.com>
16---
17 librepo/metadata_downloader.c | 1 +
18 1 file changed, 1 insertion(+)
19
20diff --git a/librepo/metadata_downloader.c b/librepo/metadata_downloader.c
21index 123c77b..6604255 100644
22--- a/librepo/metadata_downloader.c
23+++ b/librepo/metadata_downloader.c
24@@ -24,6 +24,7 @@
25 #include <assert.h>
26 #include <string.h>
27 #include <errno.h>
28+#include <unistd.h>
29 #include <sys/stat.h>
30
31 #include "librepo/librepo.h"
32--
332.37.2
34
diff --git a/meta/recipes-devtools/librepo/librepo_1.14.4.bb b/meta/recipes-devtools/librepo/librepo_1.14.5.bb
index 2b8bd132f3..46cfce53ff 100644
--- a/meta/recipes-devtools/librepo/librepo_1.14.4.bb
+++ b/meta/recipes-devtools/librepo/librepo_1.14.5.bb
@@ -8,10 +8,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
8SRC_URI = "git://github.com/rpm-software-management/librepo.git;branch=master;protocol=https \ 8SRC_URI = "git://github.com/rpm-software-management/librepo.git;branch=master;protocol=https \
9 file://0002-Do-not-try-to-obtain-PYTHON_INSTALL_DIR-by-running-p.patch \ 9 file://0002-Do-not-try-to-obtain-PYTHON_INSTALL_DIR-by-running-p.patch \
10 file://0004-Set-gpgme-variables-with-pkg-config-not-with-cmake-m.patch \ 10 file://0004-Set-gpgme-variables-with-pkg-config-not-with-cmake-m.patch \
11 file://0001-metadata_downloader-Include-unistd.h-for-lseek.patch \
12 " 11 "
13 12
14SRCREV = "2bd1041c741c85bc196ca01dcca1eae6099eb742" 13SRCREV = "f4b915be5e04e88263097f65addfcac5919fef41"
15 14
16S = "${WORKDIR}/git" 15S = "${WORKDIR}/git"
17 16