File debian-versions.patch of Package whohas
From: Yaroslav Halchenko <debian@onerussian.com>
Subject: Fetch all versions from the same page for Debian
Similarly to Ubuntu's logic supplied in the previous patch -- fetch all version
available from the same page without querying each suite separately. This way
we also get possibly present urls to backports (#655497). Also altogether
should be more efficient avoiding multiple fetches/parsings.
Origin: Debian
Bug-Debian: http://bugs.debian.org/655497
Last-Update: 2012-09-27
## Description: Add unstable and experimental Debian repositories.
## Origin/Author: Jonathan Wiltshire <debian@jwiltshire.org.uk>
## Bug: https://bugs.debian.org/511364
--- a/program/whohas
+++ b/program/whohas
@@ -938,7 +938,7 @@ sub debian_size_convert {
}
sub debian {
- my @dists = ( 'stable', 'testing' );
+ my @dists = ( 'all' );
&debuntu('http://packages.debian.org','Debian',\@dists,$_[0]);
return();
}