~paride/curtin:fix-deb-clean

Last commit made on 2020-10-16
Get this branch:
git clone -b fix-deb-clean https://git.launchpad.net/~paride/curtin
Only Paride Legovini can upload to this branch. If you are Paride Legovini please log in for upload directions.

Branch merges

Branch information

Name:
fix-deb-clean
Repository:
lp:~paride/curtin

Recent commits

a192a0b... by Paride Legovini

deb packaging: fully cleanup directory tree after build

LP: #1899698

3727577... by Sergey Bykov

udevadm_info should use maxsplit=1 instead of maxsplit=2

In udevadm_info the below code is called to split output lines:
    key, value = line.split('=', 2)

It can lead to unhandled exception if there are more than one
equal sign in the string as split will return array of three
or more elements. The correct way to get only two elements is
to use maxsplit=1:
    key, value = line.split('=', 1)

LP: #1895021

c696c8d... by Ryan Harper

vmtests/multipath-lvm: dont assume device-mapper block names

- Add comments in the early_command code to document what it is doing
- Use the /device/mapper/mpatha symlink to determine the correct
  device-mapper device name when operating on it
- Add additional commands to capture more information for future
  debugging issues with these tests.

LP: #1898758

7797d23... by Paride Legovini

vmtest: fix the groovy arm64 subarch

LP: #1898757

1a449f2... by Ryan Harper

tools/curtainer: dearmor gpg key and use apt-key add

Older versions of apt do not support ASCII-armored gpg keys in
the /etc/apt/trusted.gpg.d directory. Instead unwrap the gpg
key and import it directly into apt keyring with apt-add.

LP: #1898609

ac2c09c... by György Szombathelyi

Support imsm external metadata RAID containers

LP: #1893661

0b956ab... by Paride Legovini

Drop tools/new-upstream-snapshot

It's just an older version of the new-upstream-snapshot script
maintained in the uss-tableflip repository [1].

[1] https://github.com/canonical/uss-tableflip

486e181... by Paride Legovini

Release 20.2

Bump the version in curtin/__init__.py to be 20.2.

LP: #1896947

ac7d5e5... by Dan Watkins

* debian/control: drop Build-Depends on linting tools, they haven't been
  used by the upstream test suite in a while.

8c35ca5... by Dan Watkins

* debian/*: drop python-curtin, making the package Python 3-only.