debrepack.py: apply deb_patches after downloading through dl_path

The assumption was that 3rdParty packages don't have the debian folder,
so deb_patches didn't make sense at the time. We now extend the design
to allow packages that contain a debian folder, which means we now
account for deb_patches.

Story: 2008846
Task: 43138
Signed-off-by: Yue Tao <Yue.Tao@windriver.com>
Change-Id: Ifbed2757fb7b87cada3d34974635d90e5ef0e1d2
This commit is contained in:
Yue Tao 2021-10-15 03:40:42 -07:00 committed by Chuck Short
parent 806be6adf6
commit 50a2e1590c

View File

@ -441,6 +441,7 @@ class Parser():
run_shell_cmd(cmd % (tarball_file, self.pkginfo["srcdir"]), self.logger)
self.create_orig_tarball()
self.update_deb_folder()
self.apply_deb_patches()
return True