summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-pendulum
diff options
context:
space:
mode:
authorTim Orling <tim.orling@konsulko.com>2026-02-03 11:13:54 -0800
committerKhem Raj <raj.khem@gmail.com>2026-02-06 10:06:19 -0800
commitc6a7350f7c4e395cc43b172324379bd493a4a60f (patch)
treea0d8f6abd6722c9aa0252dff3b88c6b741a51375 /meta-python/recipes-devtools/python/python3-pendulum
parent8dd259ff4dfa1da1203a7b7f55c49492dd45f267 (diff)
downloadmeta-openembedded-c6a7350f7c4e395cc43b172324379bd493a4a60f.tar.gz
python3-pendulum: add at v3.2.0
Python datetimes made easy. * Add patch to not strip .so * Enable ptests * Use git fetcher so we have tests/ Testsuite summary TOTAL: 1835 PASS: 1832 SKIP: 3 XFAIL: 0 FAIL: 0 XPASS: 0 ERROR: 0 DURATION: 102 Dependency for python3-orjson ptest. Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-pendulum')
-rw-r--r--meta-python/recipes-devtools/python/python3-pendulum/0001-rust-Cargo.toml-inhibit-strip.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pendulum/0001-rust-Cargo.toml-inhibit-strip.patch b/meta-python/recipes-devtools/python/python3-pendulum/0001-rust-Cargo.toml-inhibit-strip.patch
new file mode 100644
index 0000000000..f721b9fe40
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-pendulum/0001-rust-Cargo.toml-inhibit-strip.patch
@@ -0,0 +1,31 @@
1From 74db4bc77be0e02912975ea198e58addf97bc218 Mon Sep 17 00:00:00 2001
2From: Tim Orling <tim.orling@konsulko.com>
3Date: Fri, 30 Jan 2026 07:06:05 -0800
4Subject: [PATCH] rust/Cargo.toml: inhibit strip
5
6For OpenEmbedded builds, we want debug symbols which will be stripped
7later by us.
8
9Upstream-Status: Inappropriate [oe specific]
10
11Signed-off-by: Tim Orling <tim.orling@konsulko.com>
12---
13 rust/Cargo.toml | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16diff --git a/rust/Cargo.toml b/rust/Cargo.toml
17index 097321f..8bde1fd 100644
18--- a/rust/Cargo.toml
19+++ b/rust/Cargo.toml
20@@ -10,7 +10,7 @@ crate-type = ["cdylib"]
21 [profile.release]
22 lto = "fat"
23 codegen-units = 1
24-strip = true
25+strip = false
26 overflow-checks = false
27
28 [dependencies]
29--
302.43.0
31