Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/.custom_wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ ABIs
Ayatana
allowlist
apport
baz
archs
auditable
autobuilders
Expand Down Expand Up @@ -163,6 +164,7 @@ rasdaemon
recompiles
repo
retracer
recurse
RFPs
Rockcraft
Rosbrook
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,15 @@ If the package, as shown in [update_excuses](https://ubuntu-archive-team.ubuntu.

### Parse the {file}`update_output.txt` file

The {file}`update_output.txt` file is the complete output of the proposed-migration scripts as they recurse through candidate packages. It is terse, but understanding its line types helps:

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what d'you mean by "complete output"?


* **`trying:`** — the script is evaluating whether this package can migrate.
* **`accepted:`** — the package (or group) appears to make things better and is accepted into the release pocket.
* **`skipped:`** — the package makes things worse and is not accepted.
* **`recur:`** — shows the recursion path. For example, `recur: [foo bar] baz` means "having already found that foo and bar make things better, now trying baz to see what happens, even though it breaks things."

After all candidates have been tried, the script compares the total number of broken packages before and after. If the result is better, the changes are accepted; otherwise they are discarded.

Using the {pkg}`exim4` package as an example.

1. Find the package in [update output.txt](https://ubuntu-archive-team.ubuntu.com/proposed-migration/update_output.txt):
Expand Down
Loading