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>
This commit is contained in:
Chen Qi
2025-09-08 10:21:00 +08:00
committed by Richard Purdie
parent 1cad0ccc89
commit 66ed4bccd6

View File

@@ -513,10 +513,7 @@ def create_packages_dir(d, subrepo_dir, deploydir, taskname, filterbydependencie
for l in f:
l = l.strip()
deploydir = os.path.normpath(deploydir)
if bb.data.inherits_class('packagefeed-stability', d):
dest = l.replace(deploydir + "-prediff", "")
else:
dest = l.replace(deploydir, "")
dest = l.replace(deploydir, "")
dest = subrepo_dir + dest
if l.endswith("/"):
if dest not in seendirs: