]> git.donarmstrong.com Git - bugscan.git/blobdiff - scanlib.pm
Add make-britney-counts to the crontab.
[bugscan.git] / scanlib.pm
index 4ef4191d28b25d73bd02204c5d4dd60e9df2a652..50a695102301cc91917d04101824ad94083b1645 100644 (file)
@@ -83,6 +83,7 @@ sub readpackages() {
                                next unless m/^Package:\s/;     # We're only interested in the packagenames
                                s/^Package:\s*//;                       # Strip the fieldname
                                $section{$_} = "$archive/$sect";
+                               print "$root/$sect/binary-$arch/Packages.gz\n" if ($_ eq 'xtla');
                        }
                        close(P);
                }
@@ -180,8 +181,9 @@ sub scanspooldir() {
                $disttags{'unstable'}     = grep(/^sid$/, @tags);
                $disttags{'experimental'} = grep(/^experimental$/, @tags);
                        
-               # default according to dondelelcaro 2006-11-11
+               # default according to vorlon 2007-06-17
                if (!$disttags{'oldstable'} && !$disttags{'stable'} && !$disttags{'testing'} && !$disttags{'unstable'} && !$disttags{'experimental'}) {
+                       $disttags{'stable'} = 1;
                        $disttags{'testing'} = 1;
                        $disttags{'unstable'} = 1;
                        $disttags{'experimental'} = 1;
@@ -325,6 +327,12 @@ sub check_worry_stable {
        return ($bi->{'stable'} && !$bi->{'etch-ignore'});
 }
 
+sub check_worry_unstable {
+       my ($bi) = @_;
+
+       return ($bi->{'unstable'});
+}
+
 sub get_taginfo {
     my $bi = shift;