From 9925db0c4f23cc82dd2f44aabc462a4ec09567d0 Mon Sep 17 00:00:00 2001 From: Kari Sivonen Date: Thu, 25 Apr 2024 17:54:22 +0300 Subject: bitbake: fetch2/svn: Fix mirroring issue with svn Add return false to supports_checksum for svn fetcher which fhis fixes MIRROR usage for svn uris. Also add a testcase. [YOCTO #15473] (Bitbake rev: 21cfc7ae9a19f39ac8904e1c3466e7e499ac523f) Signed-off-by: Kari Sivonen Signed-off-by: Richard Purdie --- bitbake/lib/bb/fetch2/svn.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'bitbake/lib/bb/fetch2') diff --git a/bitbake/lib/bb/fetch2/svn.py b/bitbake/lib/bb/fetch2/svn.py index d40e4d2909..0852108e7d 100644 --- a/bitbake/lib/bb/fetch2/svn.py +++ b/bitbake/lib/bb/fetch2/svn.py @@ -210,3 +210,6 @@ class Svn(FetchMethod): def _build_revision(self, ud, d): return ud.revision + + def supports_checksum(self, urldata): + return False -- cgit v1.2.3-54-g00ecf