summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiu Yiding <liuyd.fnst@fujitsu.com>2026-03-31 17:27:29 +0800
committerKhem Raj <khem.raj@oss.qualcomm.com>2026-04-01 13:16:40 -0700
commit96fdcdd16a479a1afc76d3f6fc53e53674b8d653 (patch)
treeb5953366f8392ca30be5f62c5e7ebe2de0bf425e
parent61a9e3d396539036dbc1deb06c0a03e62b1f5528 (diff)
downloadmeta-openembedded-96fdcdd16a479a1afc76d3f6fc53e53674b8d653.tar.gz
libtorrent-rasterbar: upgrade 2.0.11 -> 2.0.12
1.Changelog https://github.com/arvidn/libtorrent/releases/tag/v2.0.12 2. Add 0001-Fix-Python3-site-packages-path-to-fix-package-QA-Iss.patch to fix package QA Issue: libtorrent-rasterbar-2.0.12-r0 do_package: QA Issue: libtorrent-rasterbar: Files/directories were installed but not shipped in any package: /lib/python3.14/site-packages/libtorrent.so Signed-off-by: Liu Yiding <liuyd.fnst@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
-rw-r--r--meta-oe/recipes-connectivity/libtorrent-rasterbar/files/0001-Fix-Python3-site-packages-path-to-fix-package-QA-Iss.patch27
-rw-r--r--meta-oe/recipes-connectivity/libtorrent-rasterbar/libtorrent-rasterbar_2.0.12.bb (renamed from meta-oe/recipes-connectivity/libtorrent-rasterbar/libtorrent-rasterbar_2.0.11.bb)5
2 files changed, 30 insertions, 2 deletions
diff --git a/meta-oe/recipes-connectivity/libtorrent-rasterbar/files/0001-Fix-Python3-site-packages-path-to-fix-package-QA-Iss.patch b/meta-oe/recipes-connectivity/libtorrent-rasterbar/files/0001-Fix-Python3-site-packages-path-to-fix-package-QA-Iss.patch
new file mode 100644
index 0000000000..2ed6ab8500
--- /dev/null
+++ b/meta-oe/recipes-connectivity/libtorrent-rasterbar/files/0001-Fix-Python3-site-packages-path-to-fix-package-QA-Iss.patch
@@ -0,0 +1,27 @@
1Subject: [PATCH] Fix Python3 site packages path to fix package QA Issue
2
3libtorrent-rasterbar-2.0.12-r0 do_package: QA Issue: libtorrent-rasterbar: Files/directories were installed but not shipped in any package:
4 /lib/python3.14/site-packages/libtorrent.so
5
6Upstream-Status: Inappropriate [ OE specific ]
7Signed-off-by: Liu Yiding <liuyd.fnst@fujitsu.com>
8---
9 bindings/python/CMakeLists.txt | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12diff --git a/bindings/python/CMakeLists.txt b/bindings/python/CMakeLists.txt
13index 4e8ee816b..ee9566afc 100644
14--- a/bindings/python/CMakeLists.txt
15+++ b/bindings/python/CMakeLists.txt
16@@ -96,7 +96,7 @@ else()
17 execute_process(
18 COMMAND "${Python3_EXECUTABLE}" -c [=[
19 import sysconfig
20-print(sysconfig.get_path('platlib', vars={'platbase': '', 'base': ''}))
21+print(sysconfig.get_path('platlib', vars={'platbase': '/usr', 'base': ''}))
22 ]=]
23 OUTPUT_VARIABLE _PYTHON3_SITE_ARCH
24 OUTPUT_STRIP_TRAILING_WHITESPACE
25--
262.43.0
27
diff --git a/meta-oe/recipes-connectivity/libtorrent-rasterbar/libtorrent-rasterbar_2.0.11.bb b/meta-oe/recipes-connectivity/libtorrent-rasterbar/libtorrent-rasterbar_2.0.12.bb
index ca3fe2c8ee..6a61286f7a 100644
--- a/meta-oe/recipes-connectivity/libtorrent-rasterbar/libtorrent-rasterbar_2.0.11.bb
+++ b/meta-oe/recipes-connectivity/libtorrent-rasterbar/libtorrent-rasterbar_2.0.12.bb
@@ -7,9 +7,10 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d8b6cb42d66e6b3c47a909c3ce678a7b"
7DEPENDS = "boost openssl" 7DEPENDS = "boost openssl"
8 8
9SRC_URI = "git://github.com/arvidn/libtorrent.git;branch=master;protocol=https;tag=v${PV} \ 9SRC_URI = "git://github.com/arvidn/libtorrent.git;branch=master;protocol=https;tag=v${PV} \
10 git://github.com/arvidn/try_signal.git;branch=master;protocol=https;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/deps/try_signal;name=try_signal" 10 git://github.com/arvidn/try_signal.git;branch=master;protocol=https;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/deps/try_signal;name=try_signal \
11 file://0001-Fix-Python3-site-packages-path-to-fix-package-QA-Iss.patch"
11 12
12SRCREV = "9d7443f467147d1784fb7516d2a882db1abb5a8b" 13SRCREV = "740a0b9aeabe00e762cc0efe4a0f27593db2550b"
13SRCREV_try_signal = "105cce59972f925a33aa6b1c3109e4cd3caf583d" 14SRCREV_try_signal = "105cce59972f925a33aa6b1c3109e4cd3caf583d"
14SRCREV_FORMAT .= "_try_signal" 15SRCREV_FORMAT .= "_try_signal"
15 16