vcswatch reports that
this package seems to have a new changelog entry (version
1.208, distribution
UNRELEASED) and new commits
in its VCS. You should consider whether it's time to make
an upload.
Here are the relevant commit messages:
commit 036708e37143fe6f4a92e0952d89c51a90465a2a
Author: D-I role <debian-boot@lists.debian.org>
Date: Mon Apr 18 20:08:53 2022 +0000
[l10n] Commit changed/added po files (from l10n-sync run at dillon)
commit 5f0dc8571c9ab3ed8bf585874abe399fd9611173
Author: D-I role <debian-boot@lists.debian.org>
Date: Fri Apr 15 20:08:54 2022 +0000
[l10n] Commit changed/added po files (from l10n-sync run at dillon)
commit aa6b7fe2eb850d8d59b9e70f59bb837a48a9ba14
Author: D-I role <debian-boot@lists.debian.org>
Date: Sat Apr 2 20:09:00 2022 +0000
[l10n] Commit changed/added po files (from l10n-sync run at dillon)
commit b3e75f5fcf70c23c54e2b73841646b80e6b64e79
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date: Sat Jan 29 15:10:50 2022 +0100
add changelog
commit b2643f1d92aa4b1d5b0bf84c8ef92a655c90d9b3
Merge: e038044 8e60882
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date: Sat Jan 29 14:10:14 2022 +0000
Merge branch 'diegoe_regular-files' into 'master'
setupcon: Check files are regular files before copying
See merge request installer-team/console-setup!5
commit e0380447177e0773900ad2862da48bf793c1b34e
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date: Sat Jan 29 15:05:43 2022 +0100
Add changelog
commit 76cb61afa400ff6602d72807b3e4954825f9d37c
Merge: 002a59f 70937d1
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date: Sat Jan 29 14:05:01 2022 +0000
Merge branch 'splashy' into 'master'
Drop splashy/usplash workaround
See merge request installer-team/console-setup!10
commit 002a59fa61a7ee0e16f4ed642307e28da963ae88
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date: Sat Jan 29 14:58:04 2022 +0100
Fix lintian override matching
commit 2fec0978e7d6f77431d0a53d0f585ac0996f0a0a
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date: Fri Jan 7 17:55:44 2022 +0100
Play cat and mice again with lintian warning suppression
commit 4dc133bc7f36ca946708aa9eb0d16c7da9c98dd0
Author: D-I role <debian-boot@lists.debian.org>
Date: Tue Dec 28 20:18:32 2021 +0000
[l10n] Commit changed/added po files (from l10n-sync run at dillon)
commit a2903dfa813f664e2aba6b5f5797e02892986b2a
Author: D-I role <debian-boot@lists.debian.org>
Date: Sat Dec 4 20:09:04 2021 +0000
[l10n] Commit changed/added po files (from l10n-sync run at dillon)
commit 70937d102312024367d005bdb13bc24753604a7e
Author: Christian Göttsche <cgzones@googlemail.com>
Date: Sat Nov 27 22:46:58 2021 +0100
Drop splashy/usplash workaround
Since splashy and usplash have been removed in Debian since 2011 drop
the targeted workaround for #540314.
commit 8e60882a8235bbae14f24acc9c3156055a06d80a
Author: Diego Escalante Urrelo <diegoe@gnome.org>
Date: Mon Aug 3 23:45:42 2020 -0500
setupcon: Check files are regular files before copying
When running setupcon with the --setup-dir option, a mysterious "null"
file was being created on dracut init images. This was because
the `fileargs()` function was checking if files existed before copying
them, but not checking if they were regular files.
`fileargs()` expects the arguments of a previous command, but was only
relaying on files existing to differentiate actual file arguments from
things like special characters, options, or special files like
`/dev/null`, for example:
$ ./setupcon --setup-dir setupdir
cp: cannot create special file 'setupdir/etc/console-setup/null': Operation not permitted
This commit changes the `-e` (exists) check to `-f` (exists and is a
regular file).