From 034fb469e1325620b4e8af394d29c29bec741193 Mon Sep 17 00:00:00 2001 From: Salvatore Bonaccorso Date: Mon, 4 Sep 2023 21:30:46 +0200 Subject: bin/add-dsa-needed.sh: Package names can start with alphanumeric characters Expand the expression to include lines starting with [0-9a-z] characters, as package names can start with alphanumeric characers. Withouth this '7zip' was not found trough fetching https://security-tracker.debian.org/tracker/status/release/stable . Reported-by: Moritz Muehlenhoff Link: https://www.debian.org/doc/debian-policy/ch-controlfields.html#source Signed-off-by: Salvatore Bonaccorso --- bin/add-dsa-needed.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/add-dsa-needed.sh b/bin/add-dsa-needed.sh index 3a79b36a31..d8f5c3f37a 100755 --- a/bin/add-dsa-needed.sh +++ b/bin/add-dsa-needed.sh @@ -83,7 +83,7 @@ for release in $releases; do esac else case "$line" in - [a-z]*) + [0-9a-z]*) # a package pkg="$(echo "$line" | awk -F' ' '{ print $1 }')" if ! grep -qE "^$pkg(/$release)?( |\$)" data/dsa-needed.txt; then -- cgit v1.2.3