Merge lp://qastaging/~jelmer/brz/join-debian into lp://qastaging/brz
Proposed by
Jelmer Vernooij
Status: | Needs review |
---|---|
Proposed branch: | lp://qastaging/~jelmer/brz/join-debian |
Merge into: | lp://qastaging/brz |
Diff against target: |
29480 lines (+28430/-97) 115 files modified
.github/workflows/pythonpackage.yml (+2/-1) Cargo.lock (+145/-57) breezy/bugtracker.py (+2/-0) breezy/commands.py (+2/-2) breezy/git/bzr_receive_pack.py (+24/-6) breezy/git/bzr_upload_pack.py (+24/-6) breezy/git/git_remote_bzr.py (+16/-13) breezy/merge.py (+2/-2) breezy/plugins/debian/Dockerfile.deb-auto-backport (+7/-0) breezy/plugins/debian/Dockerfile.deb-import-uncommitted (+7/-0) breezy/plugins/debian/Dockerfile.deb-move-orphaned (+7/-0) breezy/plugins/debian/Dockerfile.deb-new-upstream (+7/-0) breezy/plugins/debian/Makefile (+46/-0) breezy/plugins/debian/README.rst (+342/-0) breezy/plugins/debian/__init__.py (+271/-0) breezy/plugins/debian/apt_repo.py (+280/-0) breezy/plugins/debian/builder.py (+142/-0) breezy/plugins/debian/byov.conf (+21/-0) breezy/plugins/debian/bzrtools_import.py (+241/-0) breezy/plugins/debian/changelog.py (+124/-0) breezy/plugins/debian/cmds.py (+2021/-0) breezy/plugins/debian/config.py (+406/-0) breezy/plugins/debian/default.conf (+6/-0) breezy/plugins/debian/dep3.py (+255/-0) breezy/plugins/debian/directory.py (+266/-0) breezy/plugins/debian/doc/user_manual/building.rst (+99/-0) breezy/plugins/debian/doc/user_manual/configuration.rst (+160/-0) breezy/plugins/debian/doc/user_manual/hooks.rst (+71/-0) breezy/plugins/debian/doc/user_manual/html4css1.css (+279/-0) breezy/plugins/debian/doc/user_manual/index.rst (+74/-0) breezy/plugins/debian/doc/user_manual/installing.rst (+57/-0) breezy/plugins/debian/doc/user_manual/license.rst (+41/-0) breezy/plugins/debian/doc/user_manual/merge.rst (+147/-0) breezy/plugins/debian/doc/user_manual/mode_selector.rst (+33/-0) breezy/plugins/debian/doc/user_manual/native.rst (+140/-0) breezy/plugins/debian/doc/user_manual/normal.rst (+316/-0) breezy/plugins/debian/doc/user_manual/split.rst (+99/-0) breezy/plugins/debian/doc/user_manual/upstream_tarballs.rst (+34/-0) breezy/plugins/debian/doc/user_manual/user_manual.css (+55/-0) breezy/plugins/debian/errors.py (+28/-0) breezy/plugins/debian/extract.py (+254/-0) breezy/plugins/debian/hooks.py (+42/-0) breezy/plugins/debian/import_dsc.py (+1647/-0) breezy/plugins/debian/import_uncommitted.py (+663/-0) breezy/plugins/debian/info.py (+42/-0) breezy/plugins/debian/launchpad.py (+82/-0) breezy/plugins/debian/local.conf (+2/-0) breezy/plugins/debian/merge_changelog.py (+110/-0) breezy/plugins/debian/merge_package.py (+627/-0) breezy/plugins/debian/merge_upstream.py (+275/-0) breezy/plugins/debian/move_orphaned.py (+416/-0) breezy/plugins/debian/new_upstream.py (+1674/-0) breezy/plugins/debian/quilt_refresh.py (+100/-0) breezy/plugins/debian/release.py (+92/-0) breezy/plugins/debian/repack_tarball.py (+233/-0) breezy/plugins/debian/revspec.py (+122/-0) breezy/plugins/debian/scripts/deb-new-upstream (+24/-0) breezy/plugins/debian/source_distiller.py (+284/-0) breezy/plugins/debian/specs/build-against-remote (+36/-0) breezy/plugins/debian/specs/builddeb-setup-command (+52/-0) breezy/plugins/debian/specs/do-command (+38/-0) breezy/plugins/debian/specs/hooks (+30/-0) breezy/plugins/debian/specs/import-dsc (+154/-0) breezy/plugins/debian/specs/new-upstream-release-handling (+130/-0) breezy/plugins/debian/specs/svn-support (+27/-0) breezy/plugins/debian/specs/upstream-patch-handling (+24/-0) breezy/plugins/debian/specs/upstream-tarball-fetching (+28/-0) breezy/plugins/debian/tagging.py (+36/-0) breezy/plugins/debian/tests/__init__.py (+477/-0) breezy/plugins/debian/tests/blackbox/__init__.py (+37/-0) breezy/plugins/debian/tests/blackbox/test_builddeb.py (+212/-0) breezy/plugins/debian/tests/blackbox/test_debrelease.py (+120/-0) breezy/plugins/debian/tests/blackbox/test_dep3.py (+159/-0) breezy/plugins/debian/tests/blackbox/test_do.py (+219/-0) breezy/plugins/debian/tests/blackbox/test_get_tar.py (+122/-0) breezy/plugins/debian/tests/blackbox/test_import_dsc.py (+140/-0) breezy/plugins/debian/tests/blackbox/test_import_upstream.py (+170/-0) breezy/plugins/debian/tests/blackbox/test_merge_package.py (+233/-0) breezy/plugins/debian/tests/blackbox/test_merge_upstream.py (+340/-0) breezy/plugins/debian/tests/test_apt_repo.py (+202/-0) breezy/plugins/debian/tests/test_builder.py (+81/-0) breezy/plugins/debian/tests/test_bzrtools_import.py (+234/-0) breezy/plugins/debian/tests/test_commit_message.py (+166/-0) breezy/plugins/debian/tests/test_config.py (+185/-0) breezy/plugins/debian/tests/test_dep3.py (+265/-0) breezy/plugins/debian/tests/test_directory.py (+114/-0) breezy/plugins/debian/tests/test_extract.py (+190/-0) breezy/plugins/debian/tests/test_hooks.py (+86/-0) breezy/plugins/debian/tests/test_import_dsc.py (+2114/-0) breezy/plugins/debian/tests/test_merge_changelog.py (+411/-0) breezy/plugins/debian/tests/test_merge_package.py (+649/-0) breezy/plugins/debian/tests/test_merge_upstream.py (+45/-0) breezy/plugins/debian/tests/test_repack_tarball.py (+146/-0) breezy/plugins/debian/tests/test_repack_tarball_extra.py (+150/-0) breezy/plugins/debian/tests/test_revspec.py (+112/-0) breezy/plugins/debian/tests/test_source_distiller.py (+277/-0) breezy/plugins/debian/tests/test_tagging.py (+34/-0) breezy/plugins/debian/tests/test_upstream.py (+1648/-0) breezy/plugins/debian/tests/test_upstream_uscan.py (+125/-0) breezy/plugins/debian/tests/test_util.py (+1068/-0) breezy/plugins/debian/update_packaging.py (+133/-0) breezy/plugins/debian/upstream/__init__.py (+554/-0) breezy/plugins/debian/upstream/branch.py (+846/-0) breezy/plugins/debian/upstream/pristinetar.py (+1162/-0) breezy/plugins/debian/upstream/tags.py (+186/-0) breezy/plugins/debian/upstream/uscan.py (+349/-0) breezy/plugins/debian/user.conf (+3/-0) breezy/plugins/debian/util.py (+901/-0) breezy/plugins/debian/vcs_up_to_date.py (+183/-0) breezy/tests/test_foreign.py (+1/-1) crates/debian/Cargo.toml (+11/-0) crates/debian/src/lib.rs (+1/-0) pyproject.toml (+23/-1) setup.py (+0/-6) tarmac.conf (+3/-2) |
To merge this branch: | bzr merge lp://qastaging/~jelmer/brz/join-debian |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
Jelmer Vernooij | Approve | ||
Review via email:
|
Commit message
Import debian plugin
Description of the change
Import debian plugin
To post a comment you must log in.
Unmerged revisions
- 7913. By Jelmer Vernooij
-
Run ruff
- 7912. By Jelmer Vernooij
-
Merge trunk
- 7911. By Jelmer Vernooij
-
Install python3-debian
- 7910. By Jelmer Vernooij
-
Merge lp:brz
- 7909. By Jelmer Vernooij
-
Fix clippy
- 7908. By Jelmer Vernooij
-
Merge trunk
- 7907. By Jelmer Vernooij
-
Install apt from git
- 7906. By Jelmer Vernooij
-
Install python3-apt
- 7905. By Jelmer Vernooij
-
Merge truk:
- 7904. By Jelmer Vernooij
-
Fix tests
Fixup command "sudo apt -y update && sudo apt -y install git quilt cargo rustc python3-venv python3-tdb python3-pyinotify python3-gpg libpython3-dev make python3- setuptools- rust openssh-client patch mypy rustfmt xz-utils" failed: Command exited with 2