This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=c91199e2a818827a4d39a16dcf61c2abf2515061 commit c91199e2a818827a4d39a16dcf61c2abf2515061 Author: Guillem Jover <[email protected]> AuthorDate: Thu Mar 3 01:29:49 2022 +0100 build: Use non-capturing groups in regex in gen-changelog --- build-aux/gen-changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-aux/gen-changelog b/build-aux/gen-changelog index 9697a7d43..314be3269 100755 --- a/build-aux/gen-changelog +++ b/build-aux/gen-changelog @@ -72,7 +72,7 @@ my %sections = ( }, 'perl-mod' => { title => 'Perl modules', - match => qr/^(Test|Dpkg).*[,:] /, + match => qr/^(?:Test|Dpkg).*[,:] /, keep => 1, }, doc => { @@ -83,7 +83,7 @@ my %sections = ( 'code-int' => { title => 'Code internals', type => 'internal', - match => qr/^lib(compat|dpkg): /, + match => qr/^lib(?:compat|dpkg): /, keep => 1, }, 'build-sys' => { -- Dpkg.Org's dpkg

