~paelzer/git-ubuntu:no-default-push-from-edge

Last commit made on 2017-11-20
Get this branch:
git clone -b no-default-push-from-edge https://git.launchpad.net/~paelzer/git-ubuntu
Only Christian Ehrhardt  can upload to this branch. If you are Christian Ehrhardt  please log in for upload directions.

Branch merges

Branch information

Name:
no-default-push-from-edge
Repository:
lp:~paelzer/git-ubuntu

Recent commits

9f2bda8... by Christian Ehrhardt 

avoid accidential import from master (LP: #1733278)

Since we change the format currently imports are not meant to be done
from git master or edge channel snap.
To avoid doing those by mistake add an argument that needs to be added
to froce it.

Since this does not move into the stable snap nothing will change for
"valid" imports. But on git/edge this will prevent accidential imports.

On the day we declare the new code to be complete and do the world
reimport we shall revert this patch.

Signed-off-by: Christian Ehrhardt <email address hidden>

b1551b1... by Robie Basak

Initial tests for _devel_branch_updates

8a605fe... by Robie Basak

Adjust head_versions structure

Let's simplify this a little. Instead of containing a pygit2.Reference,
resolve it to a commit hash string first to simplify testing.

While I'm there, as we only need two elements, just use a two-tuple for
the dictionary values.

f060cc4... by Robie Basak

Factor out and rework _devel_branch_updates

Move the core functionality into _devel_branch_updates, making
update_devel_branches a thin wrapper to it. _devel_branch_updates now
has no dependencies so should be easier to test.

Rename namespace, applied_prefix to ref_prefix. _devel_branch_updates
can be simplified by collapsing namespace and applied_prefix into a
single concept ref_prefix.

Move printing to wrapper function. Really the inner function should do
computation only and leave it to the caller to report warnings etc. This
will prevent noise when under test.

_devel_branch_updates returns None for commit hashes, in which case the
intention is that the caller will suppress setting those refs but will
be able to note which refs are not being set. This is useful to maintain
reporting.

The debug and warning messages are now slightly changed since less
information is available one level up the stack. It should still be
sufficient for debugging or warning purposes.

8af442a... by Nish Aravamudan

importer: rework and move devel pointer moving

After discussion with Robie on IRC, we decided that 0f3c943054ab
("import: drop publishing parent functionality") and 5aa33fa08078 ("Also
reset devel heads") introduced a regression in the semantics of the
devel pointers.

Before those changes, the devel pointers were merged up so as to be
fast-forwarding, as we imported publication entries, if the publication
entry was newer than the current devel pointer. In other words, the
devel pointers were part of the commit graph itself.

After those changes, the devel pointers are more like symbolic
references, describing meta-state about the commit graph, rather than
integral to the graph itself:

A given series devel branch, after a successful import, points to the
latest publication record in a given series.

The ubuntu/devel branch, after a successful import, points to the latest
series devel branch.

Given these 'rules', we can stop updating the devel pointers in the main
import loop and just do so after we are done importing. All series
branch pointers are updated, which is unnecessary but will generally be
a no-op. This allows the method to not be aware of reimporting or not.

LP: #1730655

Fixes: 0f3c943054ab ("import: drop publishing parent functionality")
Fixes: 5aa33fa08078 ("Also reset devel heads")

ab12071... by Nish Aravamudan

source_information: add API to obtain all series objects/names

f3ff76d... by Nish Aravamudan

source_information: cleanup formatting per style

2b8c190... by Nish Aravamudan

source_information: fix incorrect API comments

af30fd0... by Nish Aravamudan

source-package-walker.py: add script to linearly walk all source packages

It uses the same blacklist, whitelist and phasing that the other scripts
do.

8b3bbfb... by Nish Aravamudan

update-repository-alias: add script to update the default repository for a srcpkg

LP: #1661600