[Git][security-tracker-team/security-tracker][master] bin/add-dsa-needed.sh: Package names can start with alphanumeric characters
Salvatore Bonaccorso (@carnil)
carnil at debian.org
Mon Sep 4 20:33:33 BST 2023
Salvatore Bonaccorso pushed to branch master at Debian Security Tracker / security-tracker
Commits:
034fb469 by Salvatore Bonaccorso at 2023-09-04T21:33:10+02:00
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 <jmm at debian.org>
Link: https://www.debian.org/doc/debian-policy/ch-controlfields.html#source
Signed-off-by: Salvatore Bonaccorso <carnil at debian.org>
- - - - -
1 changed file:
- bin/add-dsa-needed.sh
Changes:
=====================================
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
View it on GitLab: https://salsa.debian.org/security-tracker-team/security-tracker/-/commit/034fb469e1325620b4e8af394d29c29bec741193
--
View it on GitLab: https://salsa.debian.org/security-tracker-team/security-tracker/-/commit/034fb469e1325620b4e8af394d29c29bec741193
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-security-tracker-commits/attachments/20230904/48ce7912/attachment.htm>
More information about the debian-security-tracker-commits
mailing list