summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-connectivity/samba
diff options
context:
space:
mode:
authorYi Zhao <yi.zhao@windriver.com>2023-01-29 09:42:57 +0800
committerKhem Raj <raj.khem@gmail.com>2023-01-28 21:12:21 -0800
commitc289caf7766957710774f8617da4fb862ba90672 (patch)
treef4b0d8c0412dbc9aa134749226503af3ca1882b7 /meta-networking/recipes-connectivity/samba
parente6119b2f3425613712a6075e2258cb92d77ab83c (diff)
downloadmeta-openembedded-c289caf7766957710774f8617da4fb862ba90672.tar.gz
samba: upgrade 4.17.4 -> 4.17.5
Release Notes: https://www.samba.org/samba/history/samba-4.17.5.html Drop 0007-waf-Fix-errors-with-Werror-implicit-function-declara.patch as the issue has been fixed upstream. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking/recipes-connectivity/samba')
-rw-r--r--meta-networking/recipes-connectivity/samba/samba/0007-Deleted-settiong-of-python-to-fix-the-install-confli.patch (renamed from meta-networking/recipes-connectivity/samba/samba/0008-Deleted-settiong-of-python-to-fix-the-install-confli.patch)0
-rw-r--r--meta-networking/recipes-connectivity/samba/samba/0007-waf-Fix-errors-with-Werror-implicit-function-declara.patch32
-rw-r--r--meta-networking/recipes-connectivity/samba/samba_4.17.5.bb (renamed from meta-networking/recipes-connectivity/samba/samba_4.17.4.bb)5
3 files changed, 2 insertions, 35 deletions
diff --git a/meta-networking/recipes-connectivity/samba/samba/0008-Deleted-settiong-of-python-to-fix-the-install-confli.patch b/meta-networking/recipes-connectivity/samba/samba/0007-Deleted-settiong-of-python-to-fix-the-install-confli.patch
index 45a7c82d8..45a7c82d8 100644
--- a/meta-networking/recipes-connectivity/samba/samba/0008-Deleted-settiong-of-python-to-fix-the-install-confli.patch
+++ b/meta-networking/recipes-connectivity/samba/samba/0007-Deleted-settiong-of-python-to-fix-the-install-confli.patch
diff --git a/meta-networking/recipes-connectivity/samba/samba/0007-waf-Fix-errors-with-Werror-implicit-function-declara.patch b/meta-networking/recipes-connectivity/samba/samba/0007-waf-Fix-errors-with-Werror-implicit-function-declara.patch
deleted file mode 100644
index 91eb22967..000000000
--- a/meta-networking/recipes-connectivity/samba/samba/0007-waf-Fix-errors-with-Werror-implicit-function-declara.patch
+++ /dev/null
@@ -1,32 +0,0 @@
1From 95946ce8b6317f68c51338d19d237ce6da61d1c3 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sat, 27 Aug 2022 13:05:26 -0700
4Subject: [PATCH] waf: Fix errors with Werror=implicit-function-declaration
5 turned on
6
7Clang-15 turns this option into errors by default, and it results in
8rpath check failures
9
10Upstream-Status: Pending
11
12Signed-off-by: Khem Raj <raj.khem@gmail.com>
13---
14 buildtools/wafsamba/samba_waf18.py | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/buildtools/wafsamba/samba_waf18.py b/buildtools/wafsamba/samba_waf18.py
18index e2a078b..e145c77 100644
19--- a/buildtools/wafsamba/samba_waf18.py
20+++ b/buildtools/wafsamba/samba_waf18.py
21@@ -209,7 +209,7 @@ def CHECK_LIBRARY_SUPPORT(conf, rpath=False, version_script=False, msg=None):
22 lib_node.parent.mkdir()
23 lib_node.write('int lib_func(void) { return 42; }\n', 'w')
24 main_node = bld.srcnode.make_node('main.c')
25- main_node.write('int main(void) {return !(lib_func() == 42);}', 'w')
26+ main_node.write('int lib_func(void); int main(void) {return !(lib_func() == 42);}', 'w')
27 linkflags = []
28 if version_script:
29 script = bld.srcnode.make_node('ldscript')
30--
312.25.1
32
diff --git a/meta-networking/recipes-connectivity/samba/samba_4.17.4.bb b/meta-networking/recipes-connectivity/samba/samba_4.17.5.bb
index 966eaf9bf..1548ffadc 100644
--- a/meta-networking/recipes-connectivity/samba/samba_4.17.4.bb
+++ b/meta-networking/recipes-connectivity/samba/samba_4.17.5.bb
@@ -23,8 +23,7 @@ SRC_URI = "${SAMBA_MIRROR}/stable/samba-${PV}.tar.gz \
23 file://0004-Add-options-to-configure-the-use-of-libbsd.patch \ 23 file://0004-Add-options-to-configure-the-use-of-libbsd.patch \
24 file://0005-Fix-pyext_PATTERN-for-cross-compilation.patch \ 24 file://0005-Fix-pyext_PATTERN-for-cross-compilation.patch \
25 file://0006-smbtorture-skip-test-case-tfork_cmd_send.patch \ 25 file://0006-smbtorture-skip-test-case-tfork_cmd_send.patch \
26 file://0007-waf-Fix-errors-with-Werror-implicit-function-declara.patch \ 26 file://0007-Deleted-settiong-of-python-to-fix-the-install-confli.patch \
27 file://0008-Deleted-settiong-of-python-to-fix-the-install-confli.patch \
28 " 27 "
29 28
30SRC_URI:append:libc-musl = " \ 29SRC_URI:append:libc-musl = " \
@@ -33,7 +32,7 @@ SRC_URI:append:libc-musl = " \
33 file://cmocka-uintptr_t.patch \ 32 file://cmocka-uintptr_t.patch \
34 " 33 "
35 34
36SRC_URI[sha256sum] = "c0512079db4cac707ccea4c18aebbd6b2eb3acf6e90735e7f645a326be1f4537" 35SRC_URI[sha256sum] = "ebb7880d474ffc09d73b5fc77bcbd657f6235910337331a9c24d7f69ca11442b"
37 36
38UPSTREAM_CHECK_REGEX = "samba\-(?P<pver>4\.17(\.\d+)+).tar.gz" 37UPSTREAM_CHECK_REGEX = "samba\-(?P<pver>4\.17(\.\d+)+).tar.gz"
39 38