Skip to content
Snippets Groups Projects

tests: Run debos with verbose logging

Merged Emanuele Aina requested to merge wip/em/verbose-tests into apertis/v2022dev1
Files
5
@@ -16,13 +16,15 @@ import sys
import tempfile
import urllib.request
from sh import dch
from sh.contrib import git
from pathlib import Path
from debian.debian_support import Version
from debian.changelog import Changelog
from debian.changelog import Changelog, VersionError, format_date
APERTIS_CI_NAME = 'Apertis CI'
APERTIS_CI_EMAIL = 'devel@lists.apertis.org'
def git_dir() -> str:
return git('rev-parse', '--git-dir').strip('\n')
@@ -49,7 +51,7 @@ def configure_git_user(name, email):
def prepare_git_repo(upstream_branch):
run(['git', 'branch', '-f', upstream_branch, 'origin/' + upstream_branch])
configure_git_user('Apertis CI', 'devel@lists.apertis.org')
configure_git_user(APERTIS_CI_NAME, APERTIS_CI_EMAIL)
configure_git_merge()
def get_package_name():
@@ -69,6 +71,24 @@ def get_current_branch_name():
branch = git('rev-parse', '-q', '--verify', '--symbolic-full-name', 'HEAD', _ok_code=[0, 1]).strip('\n')
return branch.replace('refs/heads/', '', 1)
def bump_version(version: Version, changes: list, release: bool = False):
with Path("debian/changelog") as f:
ch = Changelog(f.read_text())
if version <= ch.version:
raise VersionError("The new version must be greater than the last one.")
ch.new_block(package=ch.package,
version=version,
distributions='apertis' if release else 'UNRELEASED',
urgency='medium',
author=('%s <%s>' % (APERTIS_CI_NAME, APERTIS_CI_EMAIL)),
date=format_date())
ch.add_change('')
for change in changes:
ch.add_change(f' * {change}')
ch.add_change('')
f.write_text(str(ch))
git.add('-f', f)
def main():
parser = argparse.ArgumentParser(description='Merge updates from the upstream repositories to the derivative branch')
parser.add_argument('--package', dest='package', type=str, help='the package name (e.g. glib2.0)') # TODO: figure this out from the repo
@@ -96,14 +116,26 @@ def main():
print(e)
sys.exit(1)
o = git('diff', '--exit-code', args.upstream, 'debian/changelog', _ok_code=[0,1])
o = git('diff', '--exit-code', args.upstream, ':!debian/changelog', ':!debian/apertis/*', _ok_code=[0,1])
if o.exit_code == 1:
# debian/changelog isn't as is from debian, so someone should
# 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 + 'co1'
dch('--no-auto-nmu', f"--newversion={version}",
'PLEASE SUMMARIZE remaining Apertis changes')
git('commit', '--amend', '--no-edit', 'debian/changelog')
bump_version(
version,
['PLEASE SUMMARIZE remaining Apertis changes'],
release=False
)
else:
# no changes, but we add a suffix anyway
version = upstream_version.full_version + 'co0'
bump_version(
version,
[f'Sync from Debian {args.upstream}.'],
release=True
)
git('commit', '--amend', '--no-edit', 'debian/changelog')
if __name__ == '__main__':
main()
Loading