On 2018-09-23 19:43, Adam D. Barratt wrote: > On Sun, 2018-09-23 at 15:40 +0200, Andreas Beckmann wrote: >> Followup-For: Bug #902582 >> >> Hi, >> >> the ben file is bad since it misses -dbg packages, the following >> should >> work better: >> >> is_affected = .build-depends ~ /python3-all-dev/; >> is_good = .depends ~ /python3 \(<< 3\.8\)/ | .depends ~ /python3.7/ | >> /python3-dbg \(<< 3\.8\)/ | .depends ~ /python3.7-dbg/; > > That's missing a ".depends ~" on the third clause, making ben unhappy; > fixed.
Thanks. Copy+paste error, not tested :-) The lines looked already long enough ... And as Frederic-Emmanuel Picca pointed out, there is also python3-all-dbg, so is_affected = .build-depends ~ /python3-all-dev/ | .build-depends ~ /python3-all-dbg/; (or something like that) Andreas