~jugmac00/launchpad:fix-typo-calculate

Last commit made on 2022-03-31
Get this branch:
git clone -b fix-typo-calculate https://git.launchpad.net/~jugmac00/launchpad
Only Jürgen Gmach can upload to this branch. If you are Jürgen Gmach please log in for upload directions.

Branch merges

Branch information

Name:
fix-typo-calculate
Repository:
lp:~jugmac00/launchpad

Recent commits

8ee2054... by Jürgen Gmach

fix typo

d81f48f... by Colin Watson

Push DiskPool construction down to Config.getDiskPool

Merged from https://code.launchpad.net/~cjwatson/launchpad/+git/launchpad/+merge/416113

8668e93... by Colin Watson

Pass logger from CIBuildSet.requestBuildsForRefs to hosting client

Merged from https://code.launchpad.net/~cjwatson/launchpad/+git/launchpad/+merge/417798

682458d... by Colin Watson

Pass logger from CIBuildSet.requestBuildsForRefs to hosting client

This allows us to see a little more logging about which commit details
are being requested.

fab748c... by Colin Watson

Batch queue items in process-accepted

Merged from https://code.launchpad.net/~cjwatson/launchpad/+git/launchpad/+merge/416091

2477892... by Colin Watson

Add basic index/retry/cancel/rescore views for CI builds

Merged from https://code.launchpad.net/~cjwatson/launchpad/+git/launchpad/+merge/417630

886d9d8... by Colin Watson

Move publishing queries from DistroSeries to PublishingSet

Merged from https://code.launchpad.net/~cjwatson/launchpad/+git/launchpad/+merge/417751

c387328... by Colin Watson

update-copyright: Fix handling of find-changed-files output

Merged from https://code.launchpad.net/~cjwatson/launchpad/+git/launchpad/+merge/417753

b36b449... by Colin Watson

update-copyright: Fix handling of find-changed-files output

Since 2809101db8 ("Improve quoting in shell scripts"),
`find-changed-files.sh` prints changed file names separated by newlines
rather than spaces. That confuses `update-copyright`, which tries to
split the output on spaces. We could revert that and pacify
`shellcheck` in some other way, but newline-separation is really a bit
more sensible for file names anyway, so let's just adapt
`update-copyright` instead.

9934601... by Colin Watson

Move publishing queries from DistroSeries to PublishingSet

The existence of `DistroSeries.getSourcePackagePublishing` and
`DistroSeries.getBinaryPackagePublishing` was a historical anomaly, as
this sort of publishing-specific code should live in `lp.soyuz` or
`lp.archivepublisher`. Move these to the more appropriate
`PublishingSet.getSourcesForPublishing` and
`PublishingSet.getBinariesForPublishing`.

As well as cleaning up some minor technical debt, this helps to prepare
for Artifactory publishing, where we're likely to need to be able to
query for publications in an archive without filtering by series.