summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/libsolv
diff options
context:
space:
mode:
authorMaxin B. John <maxin.john@intel.com>2016-11-21 14:22:51 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-11-30 15:48:06 +0000
commit91514760a98b719d9da462f38031548eb19a535a (patch)
tree6bef076646ef15919cd800c88c6a74f8362f2564 /meta/recipes-extended/libsolv
parent9adae45005fe2b331692d4519d166794527559b3 (diff)
downloadpoky-91514760a98b719d9da462f38031548eb19a535a.tar.gz
libsolv: upgrade to 0.6.24
Refreshed the following patch: a) 0001-Add-fallback-fopencookie-implementation.patch (From OE-Core rev: 60d6c0018c6855e669ced66c420b761d9e7ddd78) Signed-off-by: Maxin B. John <maxin.john@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/libsolv')
-rw-r--r--meta/recipes-extended/libsolv/libsolv/0001-Add-fallback-fopencookie-implementation.patch16
-rw-r--r--meta/recipes-extended/libsolv/libsolv_0.6.24.bb (renamed from meta/recipes-extended/libsolv/libsolv_0.6.23.bb)2
2 files changed, 8 insertions, 10 deletions
diff --git a/meta/recipes-extended/libsolv/libsolv/0001-Add-fallback-fopencookie-implementation.patch b/meta/recipes-extended/libsolv/libsolv/0001-Add-fallback-fopencookie-implementation.patch
index 24e2228b74..851fe57569 100644
--- a/meta/recipes-extended/libsolv/libsolv/0001-Add-fallback-fopencookie-implementation.patch
+++ b/meta/recipes-extended/libsolv/libsolv/0001-Add-fallback-fopencookie-implementation.patch
@@ -1,8 +1,6 @@
1From 5b6e113f548bd8a2b100267bc5d54cee861a4b98 Mon Sep 17 00:00:00 2001 1From 0a8e50f7322832efdaf33da87839fbba05a755de Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Neal=20Gompa=20=28=E3=83=8B=E3=83=BC=E3=83=AB=E3=83=BB?= 2From: "Maxin B. John" <maxin.john@intel.com>
3 =?UTF-8?q?=E3=82=B3=E3=82=99=E3=83=B3=E3=83=8F=E3=82=9A=29?= 3Date: Mon, 21 Nov 2016 11:46:00 +0200
4 <ngompa13@gmail.com>
5Date: Wed, 11 Nov 2015 20:32:17 -0500
6Subject: [PATCH] Add fallback fopencookie() implementation 4Subject: [PATCH] Add fallback fopencookie() implementation
7MIME-Version: 1.0 5MIME-Version: 1.0
8Content-Type: text/plain; charset=UTF-8 6Content-Type: text/plain; charset=UTF-8
@@ -12,9 +10,9 @@ In environments where neither fopencookie() nor funopen()
12are implemented, we need to provide a suitable implementation 10are implemented, we need to provide a suitable implementation
13of fopencookie() that we can use. 11of fopencookie() that we can use.
14 12
15Upstream-Status: Submitted [ https://github.com/openSUSE/libsolv/pull/112 ] 13Upstream-Status: Denied [ https://github.com/openSUSE/libsolv/pull/112 ]
16 14
17Signed-off-by: Neal Gompa (ニール・ゴンパ) <ngompa13@gmail.com>com> 15Signed-off-by: Neal Gompa (ニール・ゴンパ) <ngompa13@gmail.com>
18Signed-off-by: Maxin B. John <maxin.john@intel.com> 16Signed-off-by: Maxin B. John <maxin.john@intel.com>
19--- 17---
20 ext/CMakeLists.txt | 7 ++ 18 ext/CMakeLists.txt | 7 ++
@@ -26,7 +24,7 @@ Signed-off-by: Maxin B. John <maxin.john@intel.com>
26 create mode 100644 ext/solv_xfopen_fallback_fopencookie.h 24 create mode 100644 ext/solv_xfopen_fallback_fopencookie.h
27 25
28diff --git a/ext/CMakeLists.txt b/ext/CMakeLists.txt 26diff --git a/ext/CMakeLists.txt b/ext/CMakeLists.txt
29index ad52495..4f282ce 100644 27index 586eda8..477a2ef 100644
30--- a/ext/CMakeLists.txt 28--- a/ext/CMakeLists.txt
31+++ b/ext/CMakeLists.txt 29+++ b/ext/CMakeLists.txt
32@@ -4,6 +4,13 @@ SET (libsolvext_SRCS 30@@ -4,6 +4,13 @@ SET (libsolvext_SRCS
@@ -40,7 +38,7 @@ index ad52495..4f282ce 100644
40+ solv_xfopen_fallback_fopencookie.h) 38+ solv_xfopen_fallback_fopencookie.h)
41+ENDIF (NOT HAVE_FOPENCOOKIE AND NOT HAVE_FUNOPEN) 39+ENDIF (NOT HAVE_FOPENCOOKIE AND NOT HAVE_FUNOPEN)
42+ 40+
43 IF (ENABLE_RPMDB) 41 IF (ENABLE_RPMDB OR ENABLE_RPMPKG)
44 SET (libsolvext_SRCS ${libsolvext_SRCS} 42 SET (libsolvext_SRCS ${libsolvext_SRCS}
45 pool_fileconflicts.c repo_rpmdb.c) 43 pool_fileconflicts.c repo_rpmdb.c)
46diff --git a/ext/solv_xfopen.c b/ext/solv_xfopen.c 44diff --git a/ext/solv_xfopen.c b/ext/solv_xfopen.c
diff --git a/meta/recipes-extended/libsolv/libsolv_0.6.23.bb b/meta/recipes-extended/libsolv/libsolv_0.6.24.bb
index f3f3d6e645..a5d7b5a9a7 100644
--- a/meta/recipes-extended/libsolv/libsolv_0.6.23.bb
+++ b/meta/recipes-extended/libsolv/libsolv_0.6.24.bb
@@ -11,7 +11,7 @@ SRC_URI = "git://github.com/openSUSE/libsolv.git \
11 " 11 "
12SRC_URI_append_libc-musl = " file://0001-Add-fallback-fopencookie-implementation.patch" 12SRC_URI_append_libc-musl = " file://0001-Add-fallback-fopencookie-implementation.patch"
13 13
14SRCREV = "f654c8cfa52427ed42d7142e58452dae08c0c2d0" 14SRCREV = "4049d57b026d3a67c8c164ed20db85ff62b87728"
15UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(\.\d+)+)" 15UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(\.\d+)+)"
16 16
17S = "${WORKDIR}/git" 17S = "${WORKDIR}/git"