Skip to content
Snippets Groups Projects

apertis-pkg-merge-updates: always add the 'Sync from $UPSTREAM' message

Merged Dylan Aïssi requested to merge wip/daissi/improve-merge into apertis/v2025pre
All threads resolved!
1 file
+ 4
2
Compare changes
  • Side-by-side
  • Inline
@@ -146,20 +146,22 @@ def main():
sys.exit(1)
o = git('diff', '--exit-code', args.upstream, ':!debian/changelog', ':!debian/apertis/*', _ok_code=[0,1])
msg = [f'Sync from {args.upstream}.']
if o.exit_code == 1:
# we carry some changes in addition to changelog entries
# and metadata under debian/apertis, so someone should
# re-summarize the remaining changes
version = upstream_version.full_version + args.local_suffix + '1'
msg.insert(0,'PLEASE SUMMARIZE remaining Apertis changes')
msg.append("Remaining Apertis specific changes:")
bump_version(
version,
args.osname,
['PLEASE SUMMARIZE remaining Apertis changes'],
msg,
release=False
)
else:
# no changes, but we add a suffix anyway
msg = [f'Sync from {args.upstream}.']
if rebased_commits:
msg.append(f"Rebase changes from {rebase_range}.")
version = upstream_version.full_version + args.local_suffix + '0'
Loading