summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorChen Qi <Qi.Chen@windriver.com>2025-09-08 10:21:00 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-09-08 18:02:40 +0100
commit66ed4bccd67f53412f4dc26a1037b99695e3fa3a (patch)
tree2d4c6152524345737470bd04144d4cf849552fd4 /meta
parent1cad0ccc890b50210dce241d40e91b4415760f93 (diff)
downloadpoky-66ed4bccd67f53412f4dc26a1037b99695e3fa3a.tar.gz
package_manager/__init__.py: remove obsolete codes related to packagefeed-stability
The packagefeed-stability.bbclass has been removed. The codes related to it are also obsolete. Remove them. (From OE-Core rev: e3bf1c4a40e64acadbf3f905d898d81db762d8f4) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/lib/oe/package_manager/__init__.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/meta/lib/oe/package_manager/__init__.py b/meta/lib/oe/package_manager/__init__.py
index 2100a97c12..5c98a104be 100644
--- a/meta/lib/oe/package_manager/__init__.py
+++ b/meta/lib/oe/package_manager/__init__.py
@@ -513,10 +513,7 @@ def create_packages_dir(d, subrepo_dir, deploydir, taskname, filterbydependencie
513 for l in f: 513 for l in f:
514 l = l.strip() 514 l = l.strip()
515 deploydir = os.path.normpath(deploydir) 515 deploydir = os.path.normpath(deploydir)
516 if bb.data.inherits_class('packagefeed-stability', d): 516 dest = l.replace(deploydir, "")
517 dest = l.replace(deploydir + "-prediff", "")
518 else:
519 dest = l.replace(deploydir, "")
520 dest = subrepo_dir + dest 517 dest = subrepo_dir + dest
521 if l.endswith("/"): 518 if l.endswith("/"):
522 if dest not in seendirs: 519 if dest not in seendirs: