~git-ubuntu-ci/git-ubuntu:gated

Last commit made on 2025-08-28
Get this branch:
git clone -b gated https://git.launchpad.net/~git-ubuntu-ci/git-ubuntu
Members of git-ubuntu CI can upload to this branch. Log in for directions.

Branch merges

Branch information

Name:
gated
Repository:
lp:~git-ubuntu-ci/git-ubuntu

Recent commits

8c65228... by Bryce Harrington

build.py: Fix typing

8b12296... by Bryce Harrington

update for 1.2 release

4d5457d... by Bryce Harrington

snap-other-archs.py: Fix misdetection of official releases

Analysis by paride:

Looks like snap-other-archs.py (in the git-ubuntu repo) expects that
snap versions in edge have the form 1.1-67-g0bafe61c27.
see https://git.launchpad.net/git-ubuntu/tree/snap-other-archs.py#n142
That line splits that string at -g (the split("-g")), and then only
keeps the hex digits (tr -dc '[0-9A-Fa-f]'), to get a
working (truncated) git commit hash.
Currently in amd edge we have 1.2, which after that treatment becomes
12 (the tr discards the .). The script then tries to git checkout 12,
which of course fails.
So we either stick with the version string pattern that this script
expects, or rethink publication on non-amd64.

5ffa30d... by Bryce Harrington

snap-other-archs.py: Fix f-string

ac5b3bd... by Bryce Harrington

version: bump to 1.2

ee0f12d... by Bryce Harrington

Update authors of git-ubuntu

The man page still listed Nish as the software maintainer, however he's
been inactive for many years. While it currently does not have a
specific active maintainer, since the server team has been covering
basic maintenance needs we'll list it.

I've also brought the AUTHORS file up to date, that acknowledges all
contributors of 10+ commits according to
`git log | grep ^Author: | sort | uniq -c | sort -nr`

01a90aa... by Bryce Harrington

README: Add intro text, and link from top level dir

32184e6... by Jonas Jelten

fix multiple maintainer email changelog parsing

6e28c3a... by Bryce Harrington

doc: Update snap filename pattern

Since git-ubuntu is > 1.0, the earlier pattern no longer matches. Git
snapshots are designated differently, as well.

a4f0172... by Bryce Harrington

test_util: Fix typing (lint)