diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-04-25 14:43:53 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-04-25 14:43:53 +0200 |
commit | 06086d3c122444d080ad093b93890acaf29737a2 (patch) | |
tree | 5c21e6d7727c436a40b1f748bc313b31c0988612 /job-cfg | |
parent | 585496642ce34572d31b21487574743211153122 (diff) | |
download | jenkins.debian.net-06086d3c122444d080ad093b93890acaf29737a2.tar.xz |
fixup 5854966: chroot-installation: also test parl-desktop* packages in sid and stretch
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'job-cfg')
-rwxr-xr-x | job-cfg/chroot-installation.yaml.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/job-cfg/chroot-installation.yaml.py b/job-cfg/chroot-installation.yaml.py index ce0a3915..38734661 100755 --- a/job-cfg/chroot-installation.yaml.py +++ b/job-cfg/chroot-installation.yaml.py @@ -164,10 +164,11 @@ spoken_names = { 'developer': 'four desktop environments and the most commonly used applications and packages - and the build depends for all of these', 'debconf-video': 'all packages relevant for the DebConf videoteam', } + def get_spoken_name(target): if target[:12] == 'parl-desktop': return 'the Debian Parl metapackage '+target - elif target[:13] == 'education-': + elif target[:10] == 'education-': return 'the Debian Edu metapackage '+target elif target in spoken_names: return spoken_names[target] |