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=98e16e2eb9d69fbecc1a45361c394998fe288604

commit 98e16e2eb9d69fbecc1a45361c394998fe288604
Author: Guillem Jover <guil...@debian.org>
AuthorDate: Sat May 11 21:12:33 2024 +0200

    dpkg-genbuildinfo: Parse Provides as virtual packages
    
    We did not specify that the dependencies to be parsed were virtual
    packages.
---
 scripts/dpkg-genbuildinfo.pl | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/scripts/dpkg-genbuildinfo.pl b/scripts/dpkg-genbuildinfo.pl
index ae0c125da..3b4bd5dda 100755
--- a/scripts/dpkg-genbuildinfo.pl
+++ b/scripts/dpkg-genbuildinfo.pl
@@ -116,7 +116,11 @@ sub parse_status {
         }
 
         if (/^Provides: (.*)$/m) {
-            my $provides = deps_parse($1, reduce_arch => 1, union => 1);
+            my $provides = deps_parse($1,
+                reduce_arch => 1,
+                virtual => 1,
+                union => 1,
+            );
 
             next if not defined $provides;
 

-- 
Dpkg.Org's dpkg

Reply via email to