~canonical-launchpad-branches/launchpad/+git/bzr-personal:cjwatson/snap-check-request-private-git

Last commit made on 2019-07-31
Get this branch:
git clone -b cjwatson/snap-check-request-private-git https://git.launchpad.net/~canonical-launchpad-branches/launchpad/+git/bzr-personal
Members of Canonical Launchpad Branches can upload to this branch. Log in for directions.

Branch merges

Branch information

Name:
cjwatson/snap-check-request-private-git
Repository:
lp:~canonical-launchpad-branches/launchpad/+git/bzr-personal

Recent commits

5856d42... by Colin Watson

Merge devel.

b12d740... by Launchpad PQM Bot

[r=twom][no-qa] Don't treat the case where a snap store upload is
 queued behind others for review as an error.

f60262c... by Colin Watson

Don't treat the case where a snap store upload is queued behind others for review as an error.

bb5ab1e... by Launchpad PQM Bot

[r=maxiberta][no-qa] Remove Python 2.4-style
 KeyboardInterrupt/SystemExit handling.

68d3797... by Colin Watson

Remove Python 2.4-style KeyboardInterrupt/SystemExit handling.

As of Python 2.5, it's better style to use:

  except Exception:
      ...

... rather than:

  except (KeyboardInterrupt, SystemExit):
      raise
  except:
      ...

Switch to this style across the board. The only unusual cases are some
where we really want very robust last-ditch exception handling, and in those
cases I used "except (GeneratorExit, Exception):" instead to make sure we
catch any weirdness.

48c92e4... by Launchpad PQM Bot

[r=maxiberta][no-qa] Update copyright dates for developer
 documentation.

1fafd6a... by Colin Watson

Update copyright dates for developer documentation.

Also bring the copyright holder into sync with that asserted elsewhere in
the tree.

7a62bc9... by Launchpad PQM Bot

[r=cjwatson][no-qa] Add gina_target.bullseye.

f6ba061... by Launchpad PQM Bot

[r=wgrant][bug=1819196] Honour "base: bare" and "build-base" when
 requesting snap builds.

7fb4514... by Colin Watson

Honour "base: bare" rather than "base: none".

According to Sergio, this is the new consensus for what snapcraft will
support.