You've already forked wine-staging
mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-09-12 18:50:20 -07:00
patchupdate.py: Also list indirect dependencies for each patch in patchinstall.sh.
This commit is contained in:
5
debian/tools/patchupdate.py
vendored
5
debian/tools/patchupdate.py
vendored
@@ -684,9 +684,10 @@ def generate_script(all_patches):
|
||||
|
||||
# List dependencies (if any)
|
||||
if len(patch.depends):
|
||||
lines.append("# | This patchset has the following dependencies:\n")
|
||||
depends = resolve_dependencies(all_patches, i)
|
||||
lines.append("# | This patchset has the following (direct or indirect) dependencies:\n")
|
||||
lines.append("# | *\t%s\n" % "\n# | \t".join(textwrap.wrap(
|
||||
", ".join([all_patches[j].name for j in sorted(patch.depends)]), 120)))
|
||||
", ".join([all_patches[j].name for j in depends]), 120)))
|
||||
lines.append("# |\n")
|
||||
|
||||
# List all bugs fixed by this patchset
|
||||
|
Reference in New Issue
Block a user