]> git.donarmstrong.com Git - wannabuild.git/blob - bin/wanna-build
add_packages / generic version check:
[wannabuild.git] / bin / wanna-build
1 #!/usr/bin/perl
2
3 # wanna-build: coordination script for Debian buildds
4 # Copyright (C) 1998 Roman Hodek <Roman.Hodek@informatik.uni-erlangen.de>
5 # Copyright (C) 2005-2008 Ryan Murray <rmurray@debian.org>
6 # Copyright (C) 2010      Andreas Barth <aba@not.so.argh.org>
7 #
8 # This program is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU General Public License as
10 # published by the Free Software Foundation; either version 2 of the
11 # License, or (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 # General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 #
22 use strict;
23 use warnings;
24 use 5.010;
25
26 package conf;
27
28 use vars qw< $basedir $dbbase $transactlog $mailprog $buildd_domain >;
29 # defaults
30 $basedir ||= "/var/lib/debbuild";
31 $dbbase ||= "build-db";
32 $transactlog ||= "transactions.log";
33 $mailprog ||= "/usr/sbin/sendmail";
34 require "/org/wanna-build/etc/wanna-build.conf";
35 die "$conf::basedir is not a directory\n" if ! -d $conf::basedir;
36 die "dbbase is empty\n" if ! $dbbase;
37 die "transactlog is empty\n" if ! $transactlog;
38 die "mailprog binary $conf::mailprog does not exist or isn't executable\n"
39         if !-x $conf::mailprog;
40 package main;
41
42 use POSIX;
43 use FileHandle;
44 use File::Copy;
45 use DBI;
46 use Getopt::Long qw ( :config gnu_getopt );
47 use lib '/org/wanna-build/lib';
48 #use lib 'lib';
49 use WannaBuild;
50 use YAML::Tiny;
51 use Data::Dumper;
52 use Hash::Merge qw ( merge );
53 use String::Format;
54 use Date::Parse;
55 use List::Util qw[max];
56 use Dpkg::Version (); # import nothing
57 if ( defined $Dpkg::Version::VERSION ) {
58     *vercmp = \&Dpkg::Version::version_compare;
59 } else {
60     *vercmp = \&Dpkg::Version::vercmp;
61 }
62
63 use Dpkg::Deps; # TODO: same
64
65 our ($verbose, $mail_logs, $list_order, $list_state,
66     $curr_date, $op_mode, $user, $real_user, $distribution,
67     $fail_reason, $opt_override, $import_from, $export_to,
68     %prioval, %sectval,
69     $info_all_dists, $arch,
70     $short_date, $list_min_age, $list_max_age, $dbbase, @curr_time,
71     $build_priority, %new_vers, $binNMUver, %merge_srcvers, %merge_binsrc,
72     $printformat, $ownprintformat, $privmode, $extra_depends, $extra_conflicts,
73     %distributions, %distribution_aliases, $actions
74     );
75 our $Pas = '/org/buildd.debian.org/etc/packages-arch-specific/Packages-arch-specific';
76 our $simulate = 0;
77 our $simulate_edos = 0;
78 our $api = undef; # allow buildds to specify an different api
79 our $recorduser = undef;
80
81 # global vars
82 $ENV{'PATH'} = "/bin:/usr/bin:/usr/local/bin:/org/wanna-build/bin/";
83 $ENV{'LC_ALL'} = 'C';
84 $verbose = 0;
85 $mail_logs = "";
86 @curr_time = gmtime;
87 $curr_date = strftime("%Y %b %d %H:%M:%S",@curr_time);
88 $short_date = strftime("%m/%d/%y",@curr_time);
89 $| = 1;
90
91 # set mode of operation based on command line switch. Should be used
92 # by GetOptions below.
93 sub _set_mode_set { $op_mode = "set-$_[0]" }
94 sub _set_mode { $op_mode = "$_[0]" }
95
96 sub _option_deprecated { warn "Option $_[0] is deprecated" }
97
98 GetOptions(
99     # this is not supported by all operations (yet)!
100     'simulate'      => \$simulate,
101     'simulate-edos' => \$simulate_edos,
102     'simulate-all'  => sub { $simulate = 1; $simulate_edos = 1; },
103     'api=i'         => sub {
104         $api = $_[1];
105         die "$api too large" unless $api <= 1;
106     },
107     'verbose|v'       => \$verbose,
108     'override|o'      => \$opt_override,
109     'correct-compare' => \$WannaBuild::opt_correct_version_cmp,
110
111     # TODO: remove after buildds no longer pass to wanna-build
112     'no-propagation|N'      => \&_option_deprecated,
113     'no-down-propagation|D' => \&_option_deprecated,
114
115     # normal actions
116     'building|take'         => \&_set_mode_set,
117     'failed|f'              => \&_set_mode_set,
118     'uploaded|u'            => \&_set_mode_set,
119     'not-for-us|no-build|n' => \&_set_mode_set,
120     'built'                 => \&_set_mode_set,
121     'attempted'             => \&_set_mode_set,
122     'needs-build|give-back' => \&_set_mode_set,
123     'dep-wait'              => \&_set_mode_set,
124     'update'                => \&_set_mode_set,
125     'forget'                => \&_set_mode,
126     'forget-user'           => \&_set_mode,
127     'merge-v3'              => \&_set_mode,
128     'info|i'                => \&_set_mode,
129     'binary-nmu|binNMU=i'   => sub {
130         _set_mode_set(@_);
131         $binNMUver = $_[1];
132     },
133     'permanent-build-priority|perm-build-priority=i' => sub {
134         _set_mode_set(@_);
135         $build_priority = $_[1];
136     },
137     'build-priority=i' => sub {
138         _set_mode_set(@_);
139         $build_priority = $_[1];
140     },
141     'list|l=s' => sub {
142         _set_mode(@_);
143         $list_state = $_[1];
144         die "Unknown state to list: $list_state\n"
145           if not $list_state ~~ [
146               qw( needs-build building uploaded built
147                   build-attempted failed installed
148                   dep-wait not-for-us auto-not-for-us
149                   all failed-removed install-wait
150                   reupload-wait bd-uninstallable ) ];
151     },
152     'dist|d=s' => sub {
153         $distribution = $_[1];
154         given ( $_[1] ) {
155             when ( [qw< a all >] ) {
156                 $info_all_dists = 1;
157                 $distribution   = '';
158             }
159             when ('o') { $distribution = 'oldstable'; }
160             when ('s') { $distribution = 'stable'; }
161             when ('t') { $distribution = 'testing'; }
162             when ('u') { $distribution = 'unstable'; }
163         }
164     },
165     'order|O=s' => sub {
166         $list_order = $_[1];
167         die "Bad ordering character\n"
168           if $list_order !~ /^[PSpsncbCWT]+$/;
169     },
170     'message|m=s'  => \$fail_reason,
171     'database|b=s' => sub {
172         warn "database is deprecated, please use 'arch' instead.\n";
173         $conf::dbbase = $_[1];
174     },
175     'arch|A=s'     => \$arch,
176     'user|U=s'     => \$user,
177     'min-age|a=i'       => \$list_min_age,
178     'max-age=i'         => \$list_max_age,
179     'format=s'          => \$printformat,
180     'own-format=s'      => \$ownprintformat,
181     'Pas=s'             => \$Pas,
182     'extra-depends=s'   => \$extra_depends,
183     'extra-conflicts=s' => \$extra_conflicts,
184
185     # special actions
186     'export=s' => sub { _set_mode(@_); $export_to   = $_[1]; },
187     'import=s' => sub { _set_mode(@_); $import_from = $_[1]; },
188     'manual-edit'                => \&_set_mode,
189     'distribution-architectures' => \&_set_mode,
190     'distribution-aliases'       => \&_set_mode,
191 ) or usage();
192 $list_min_age = -1 * $list_max_age if $list_max_age;
193
194 my $dbh;
195
196 END {
197         if (defined $dbh)
198         {
199                 $dbh->disconnect or warn $dbh->errstr;
200         }
201 }
202
203 $distribution ||= "sid";
204 if ($distribution eq 'any-priv') {
205     $privmode = 1;
206     $distribution = 'any';
207 }
208 if ($distribution eq 'any-unpriv') {
209     $privmode = 0;
210     $distribution = 'any';
211 }
212
213 my $schema_suffix = '';
214 $recorduser //= (not -t and $user//"" =~ /^buildd_/);
215 if ((isin( $op_mode, qw(list info distribution-architectures distribution-aliases)) && $distribution !~ /security/ && !$recorduser && !($privmode)) || $simulate) {
216         $dbh = DBI->connect("DBI:Pg:service=wanna-build") || 
217                 die "FATAL: Cannot open database: $DBI::errstr\n";
218         $schema_suffix = '_public';
219 }
220 else
221 {
222         $dbh = DBI->connect("DBI:Pg:service=wanna-build-privileged") || 
223                 die "FATAL: Cannot open database: $DBI::errstr\n";
224 }
225
226 # TODO: This shouldn't be needed, file a bug.
227 $dbh->{pg_server_prepare} = 0;
228
229 $dbh->begin_work or die $dbh->errstr;
230
231 my $q = 'SELECT distribution, public, auto_dep_wait, build_dep_resolver, suppress_successful_logs, archive FROM distributions';
232 my $rows = $dbh->selectall_hashref($q, 'distribution');
233 foreach my $name (keys %$rows) {
234         $distributions{$name} = {};
235         $distributions{$name}->{'noadw'} = 1 if !($rows->{$name}->{'auto_dep_wait'});
236         $distributions{$name}->{'hidden'} = 1 if !($rows->{$name}->{'public'});
237         $distributions{$name}->{'build_dep_resolver'} = $rows->{$name}->{'build_dep_resolver'} if $rows->{$name}->{'build_dep_resolver'};
238         $distributions{$name}->{'suppress_successful_logs'} = $rows->{$name}->{'suppress_successful_logs'} if $rows->{$name}->{'suppress_successful_logs'};
239         $distributions{$name}->{'archive'} = $rows->{$name}->{'archive'} if $rows->{$name}->{'archive'};
240 }
241
242 $q = 'SELECT alias, distribution FROM distribution_aliases';
243 $rows = $dbh->selectall_hashref($q, 'alias');
244 foreach my $name (keys %$rows) {
245         $distribution_aliases{$name} = $rows->{$name}->{'distribution'};
246 }
247 $distribution = $distribution_aliases{$distribution} if (isin($distribution, keys %distribution_aliases));
248
249 $op_mode ||= "set-building";
250 undef $distribution if $distribution eq 'any';
251 if ($distribution) {
252     my @dists = split(/[, ]+/, $distribution);
253     foreach my $dist (@dists) {
254         die "Bad distribution '$distribution'\n"
255             if !isin($dist, keys %distributions);
256     }
257 }
258 if (!isin ( $op_mode, qw(list) ) && ( !$distribution || $distribution =~ /[ ,]/)) {
259     die "multiple distributions are only allowed for list";
260 }
261
262 # If they didn't specify an arch, try to get it from database name which
263 # is in the form of $arch/build-db
264 # This is for backwards compatibity with older versions that didn't
265 # specify the arch yet.
266 $conf::dbbase =~ m#^([^/]+)#;
267 $arch ||= $1;
268
269 # TODO: Check that it's an known arch (for that dist), and give
270 # a proper error.
271
272 if ($verbose) {
273         my $version = '$Revision: db181a534e9d $ $Date: 2008/03/26 06:20:22 $ $Author: rmurray $';
274         $version =~ s/(^\$| \$ .*$)//g;
275         print "wanna-build $version for $distribution on $arch\n";
276 }
277
278 if (!@ARGV && !isin( $op_mode, qw(list merge-quinn merge-partial-quinn import export
279                                   merge-packages manual-edit
280                                   merge-sources distribution-architectures
281                                   distribution-aliases))) {
282         warn "No packages given.\n";
283         usage();
284 }
285
286 $real_user = (getpwuid($<))[0];
287 die "Can't determine your user name\n"
288         if $op_mode ne "list" && !$user &&
289            !($user = $real_user);
290
291 if (!$fail_reason) {
292         if ($op_mode eq "set-failed" ) {
293                 print "Enter reason for failing (end with '.' alone on ".
294                       "its line):\n";
295                 my $line;
296                 while(!eof(STDIN)) {
297                         $line = <STDIN>;
298                         last if $line eq ".\n";
299                         $fail_reason .= $line;
300                 }
301                 chomp( $fail_reason );
302         } elsif ($op_mode eq "set-dep-wait") {
303                 print "Enter dependencies (one line):\n";
304                 my $line;
305                 while( !$line && !eof(STDIN) ) {
306                         chomp( $line = <STDIN> );
307                 }
308                 die "No dependencies given\n" if !$line;
309                 $fail_reason = $line;
310         } elsif ($op_mode eq "set-binary-nmu" and $binNMUver > 0) {
311                 print "Enter changelog entry (one line):\n";
312                 my $line;
313                 while( !$line && !eof(STDIN) ) {
314                         chomp( $line = <STDIN> );
315                 }
316                 die "No changelog entry given\n" if !$line;
317                 $fail_reason = $line;
318         }
319 }
320
321 my $yamlmap = ();
322 my $yamldir = "/org/wanna-build/etc/yaml";
323 my @files = ('wanna-build.yaml');
324 if ((getpwuid($>))[7]) { push (@files, ((getpwuid($>))[7])."/.wanna-build.yaml"); }
325 if ($user && $user =~ /(buildd.*)-/) { push (@files, "$1.yaml") };
326 if ($user) { push ( @files, "$user.yaml"); }
327 foreach my $file (@files) {
328         my $cfile = File::Spec->rel2abs( $file, $yamldir );
329         if ($verbose >= 2) { print "Trying to read $file ($cfile) ...\n"; }
330         next unless -f $cfile;
331         if ($verbose >= 2) { print "Read $file ($cfile) ...\n"; }
332         my $m = YAML::Tiny->read( $cfile )->[0];
333         $yamlmap = merge($m, $yamlmap);
334 }
335 if (not $yamlmap) {
336         die "FATAL: no configuration found\n";
337 }
338 $list_order = $yamlmap->{"list-order"}{$list_state} if !$list_order and $list_state;
339 $list_order ||= $yamlmap->{"list-order"}{'default'};
340 $api //= $yamlmap->{"api"};
341 $api //= 0;
342
343 process();
344
345 $dbh->commit;
346 $dbh->disconnect;
347
348 if ($mail_logs && $conf::log_mail) {
349         send_mail( $conf::log_mail,
350                            "wanna-build $distribution state changes $curr_date",
351                            "State changes at $curr_date for distribution ".
352                            "$distribution:\n\n$mail_logs\n" );
353 }
354
355 exit 0;
356
357
358 sub process {
359
360         SWITCH: foreach ($op_mode) {
361                 /^set-(.+)/ && do {
362                         add_packages( $1, @ARGV );
363                         last SWITCH;
364                 };
365                 /^list/ && do {
366                         list_packages( $list_state );
367                         last SWITCH;
368                 };
369                 /^info/ && do {
370                         info_packages( @ARGV );
371                         last SWITCH;
372                 };
373                 /^forget-user/ && do {
374                         die "This operation is restricted to admin users\n"
375                                 if (defined @conf::admin_users and
376                                     !isin( $real_user, @conf::admin_users));
377                         forget_users( @ARGV );
378                         last SWITCH;
379                 };
380                 /^forget/ && do {
381                         forget_packages( @ARGV );
382                         last SWITCH;
383                 };
384                 /^merge-v3/ && do {
385                         die "This operation is restricted to admin users\n"
386                             if (defined @conf::admin_users and !isin( $real_user, @conf::admin_users) and !$simulate);
387                         # call with installed-packages+ . installed-sources+ [ . available-for-build-packages* [ . consider-as-installed-source* ]  ]
388                         # in case available-for-build-packages is not specified, installed-packages are used
389                         lock_table() unless $simulate;
390                         my $replacemap = { '%ARCH%' => $arch, '%SUITE%' => $distribution };
391                         map { my $k = $_; grep { $k =~ s,$_,$replacemap->{$_}, } keys %{$replacemap}; $_ = $k; } @ARGV;
392                         my @ipkgs = &parse_argv( \@ARGV, '.');
393                         my @isrcs = &parse_argv( \@ARGV, '.');
394                         my @bpkgs = &parse_argv( \@ARGV, '.');
395                         my @psrcs = &parse_argv( \@ARGV, '.');
396                         use WB::QD;
397                         my $srcs = WB::QD::readsourcebins($arch, $Pas, \@isrcs, \@ipkgs);
398                         if (@psrcs) {
399                             my $psrcs = WB::QD::readsourcebins($arch, $Pas, \@psrcs, []);
400                             foreach my $k (keys %$$psrcs) {
401                                 next if $$srcs->{$k};
402                                 my $pkg = $$psrcs->{$k};
403                                 $pkg->{'status'} = 'related';
404                                 $$srcs->{$k} = $pkg;
405                             }
406                         }
407                         parse_all_v3($$srcs, {'arch' => $arch, 'suite' => $distribution, 'time' => $curr_date});
408                         @bpkgs = @ipkgs unless @bpkgs;
409                         call_edos_depcheck( {'arch' => $arch, 'pkgs' => \@bpkgs, 'srcs' => $$srcs, 'depwait' => 1 });
410                         last SWITCH;
411                 };
412                 /^import/ && do {
413                         die "This operation is restricted to admin users\n"
414                                 if (defined @conf::admin_users and
415                                     !isin( $real_user, @conf::admin_users));
416                         $dbh->do("DELETE from " . table_name() . 
417                                 " WHERE distribution = ?", undef,
418                                 $distribution)
419                                 or die $dbh->errstr;
420                         forget_users();
421                         read_db( $import_from );
422                         last SWITCH;
423                 };
424                 /^export/ && do {
425                         export_db( $export_to );
426                         last SWITCH;
427                 };
428                 /^distribution-architectures/ && do {
429                         show_distribution_architectures();
430                         last SWITCH;
431                 };
432                 /^distribution-aliases/ && do {
433                         show_distribution_aliases();
434                         last SWITCH;
435                 };
436
437                 die "Unexpected operation mode $op_mode\n";
438         }
439         if ($recorduser) {
440                 my $userinfo = get_user_info($user);
441                 if (!defined $userinfo)
442                 {
443                         add_user_info($user);
444                 }
445                 else
446                 {
447                         update_user_info($user);
448                 }
449         }
450 }
451
452
453 BEGIN {
454     $actions = {
455         'set-building'  => { 'noversion' => 1, 'nopkgdef' => 1, },
456         'set-built'     => { 'builder' => 1, to => 'Built', action => 'built', 'from' => [qw<Building Build-Attempted>]},
457         'set-attempted' => { 'builder' => 1, to => 'Build-Attempted', action => 'attempted', 'from' => [qw<Building Build-Attempted>]},
458         'set-uploaded'  => { 'builder' => 1, to => 'Uploaded', action => 'uploaded', 'from' => [qw<Building Built Build-Attempted>], binversion => 1, },
459         'set-failed'    => { 'builder' => 1, to => 'Failed', action => 'failed', from => [qw<Building Built Build-Attempted Dep-Wait Failed>], warnfrom => [qw<Needs-Build Uploaded Dep-Wait BD-Uninstallable>], },
460         'set-dep-wait'  => { 'builder' => 1, warnfrom => [qw<Needs-Build Failed BD-Uninstallable>], },
461         'set-update'    => { 'noversion' => 1, }
462     };
463 }
464
465 sub add_packages {
466     my $newstate = shift;
467     my( $package, $name, $version, $ok, $reason );
468
469     foreach $package (@_) {
470         $package =~ s,^.*/,,; # strip path
471         $package =~ s/\.(dsc|diff\.gz|tar\.gz|deb)$//; # strip extension
472         $package =~ s/_[a-zA-Z\d-]+\.changes$//; # strip extension
473         if ($package =~ /^([\w\d.+-]+)_([\w\d:.+~-]+)/) {
474             ($name,$version) = ($1,$2);
475         } else {
476             warn "$package: can't extract package name and version (bad format)\n";
477             next;
478         }
479
480         my $pkg = get_source_info($name);
481         if (!($actions->{$op_mode}) || !($actions->{$op_mode}->{'nopkgdef'})) {
482             if (!defined($pkg)) {
483                 print "$name: not registered yet.\n";
484                 next;
485             }
486         }
487         if ($actions->{$op_mode} && $actions->{$op_mode}->{'builder'}) {
488             if ($pkg->{'builder'} && $user ne $pkg->{'builder'}) {
489                 print "$pkg->{'package'}: not taken by you, but by $pkg->{'builder'}. Skipping.\n";
490                 next;
491             }
492         }
493         if (!($actions->{$op_mode}) || !($actions->{$op_mode}->{'noversion'})) {
494             my $nmuver = binNMU_version($pkg->{version}, $pkg->{'binary_nmu_version'});
495             if ((!pkg_version_eq($pkg,$version) || $actions->{$op_mode}->{'binversion'}) && !version_eq( $nmuver, $version )) {
496                 print "$pkg->{package}: version mismatch ($nmuver";
497                 print " by $pkg->{'builder'}" if $pkg->{'builder'};
498                 print ")\n";
499                 next;
500             }
501         }
502
503         if ($actions->{$op_mode} && $actions->{$op_mode}->{'from'}) {
504             if (!isin($pkg->{'state'}, @{$actions->{$op_mode}->{'from'}}, @{$actions->{$op_mode}->{'warnfrom'}})) {
505                 print "$name: skiping: state is $pkg->{'state'}, not in ".join(", ",@{$actions->{$op_mode}->{'from'}}, @{$actions->{$op_mode}->{'warnfrom'}})."\n";
506                 next;
507             }
508         }
509         if ($actions->{$op_mode} && $actions->{$op_mode}->{'warnfrom'}) {
510             if (isin($pkg->{'state'}, @{$actions->{$op_mode}->{'warnfrom'}})) {
511                 print "$name: warning: state is $pkg->{'state'}, processing anyways.\n";
512             }
513         }
514
515         if ($op_mode eq "set-building") {
516             add_one_building( $name, $version, $pkg );
517         }
518         elsif ($op_mode eq "set-failed") {
519             print "$pkg->{'package'}: already registered as failed; will append new message\n" if $pkg->{'state'} eq "Failed";
520             $pkg->{'builder'} = $user;
521             $pkg->{'failed'} .= "\n" if $pkg->{'failed'};
522             $pkg->{'failed'} .= $fail_reason;
523         }
524         elsif ($op_mode eq "set-not-for-us") {
525             add_one_notforus( $pkg );
526         }
527         elsif ($op_mode eq "set-needs-build") {
528             add_one_needsbuild( $pkg );
529         }
530         elsif ($op_mode eq "set-dep-wait") {
531             add_one_depwait( $pkg );
532         }
533         elsif ($op_mode eq "set-build-priority") {
534             set_one_buildpri( 'buildpri', $pkg );
535         }
536         elsif ($op_mode eq "set-permanent-build-priority") {
537             set_one_buildpri( 'permbuildpri', $pkg );
538         }
539         elsif ($op_mode eq "set-binary-nmu") {
540             set_one_binnmu( $name, $version, $pkg );
541         }
542         elsif ($op_mode eq "set-update") {
543             $pkg->{'version'} =~ s/\+b[0-9]+$//;
544
545             log_ta( $pkg, "--update" );
546             update_source_info($pkg);
547         }
548
549         if ($actions->{$op_mode} && $actions->{$op_mode}->{'action'} && $actions->{$op_mode}->{'to'}) {
550             change_state( \$pkg, $actions->{$op_mode}->{'to'} );
551             log_ta( $pkg, "--".$actions->{$op_mode}->{'action'} );
552             update_source_info($pkg);
553             print "$name: registered as ".$actions->{$op_mode}->{'action'}."\n" if $verbose;
554         }
555     }
556 }
557
558 sub add_one_building {
559         my $name = shift;
560         my $version = shift;
561         my( $ok, $reason );
562
563         $ok = 1;
564         my $pkg = shift;
565         if (defined($pkg)) {
566                 if ($pkg->{'state'} eq "Not-For-Us") {
567                         $ok = 0;
568                         $reason = "not suitable for this architecture";
569                 }
570                 elsif ($pkg->{'state'} =~ /^Dep-Wait/) {
571                         $ok = 0;
572                         $reason = "not all source dependencies available yet";
573                 }
574                 elsif ($pkg->{'state'} =~ /^BD-Uninstallable/) {
575                         $ok = 0;
576                         $reason = "source dependencies are not installable";
577                 }
578                 elsif ($pkg->{'state'} eq "Uploaded" &&
579                            (version_lesseq($version, $pkg->{'version'}))) {
580                         $ok = 0;
581                         $reason = "already uploaded by $pkg->{'builder'}";
582                         $reason .= " (in newer version $pkg->{'version'})"
583                                 if !version_eq($pkg, $version);
584                 }
585                 elsif ($pkg->{'state'} eq "Installed" &&
586                            version_less($version,$pkg->{'version'})) {
587                         if ($opt_override) {
588                                 print "$name: Warning: newer version $pkg->{'version'} ".
589                                           "already installed, but overridden.\n";
590                         }
591                         else {
592                                 $ok = 0;
593                                 $reason = "newer version $pkg->{'version'} already in ".
594                                                   "archive; doesn't need rebuilding";
595                                 print "$name: Note: If the following is due to an epoch ",
596                                           " change, use --override\n";
597                         }
598                 }
599                 elsif ($pkg->{'state'} eq "Installed" &&
600                            pkg_version_eq($pkg,$version)) {
601                         $ok = 0;
602                         $reason = "is up-to-date in the archive; doesn't need rebuilding";
603                 }
604                 elsif ($pkg->{'state'} eq "Needs-Build" &&
605                            version_less($version,$pkg->{'version'})) {
606                         if ($opt_override) {
607                                 print "$name: Warning: newer version $pkg->{'version'} ".
608                                           "needs building, but overridden.";
609                         }
610                         else {
611                                 $ok = 0;
612                                 $reason = "newer version $pkg->{'version'} needs building, ".
613                                                   "not $version";
614                         }
615                 }
616                 elsif (isin($pkg->{'state'},qw(Building Built Build-Attempted))) {
617                         if (version_less($pkg->{'version'},$version)) {
618                                 print "$name: Warning: Older version $pkg->{'version'} ",
619                                       "is being built by $pkg->{'builder'}\n";
620                                 if ($pkg->{'builder'} ne $user) {
621                                         send_mail( $pkg->{'builder'},
622                                                            "package takeover in newer version",
623                                                            "You are building package '$name' in ".
624                                                            "version $version\n".
625                                                            "(as far as I'm informed).\n".
626                                                            "$user now has taken the newer ".
627                                                            "version $version for building.".
628                                                            "You can abort the build if you like.\n" );
629                                 }
630                         }
631                         else {
632                                 if ($opt_override) {
633                                         print "User $pkg->{'builder'} had already ",
634                                               "taken the following package,\n",
635                                                   "but overriding this as you request:\n";
636                                         send_mail( $pkg->{'builder'}, "package takeover",
637                                                            "The package '$name' (version $version) that ".
638                                                            "was taken by you\n".
639                                                            "has been taken over by $user\n" );
640                                 }
641                                 elsif ($pkg->{'builder'} eq $user) {
642                                         print "$name: Note: already taken by you.\n";
643                                         print "$name: ok\n" if $verbose;
644                                         return;
645                                 }
646                                 else {
647                                         $ok = 0;
648                                         $reason = "already taken by $pkg->{'builder'}";
649                                         $reason .= " (in newer version $pkg->{'version'})"
650                                                 if !version_eq($pkg->{'version'}, $version);
651                                 }
652                         }
653                 }
654                 elsif ($pkg->{'state'} =~ /^Failed/ &&
655                            pkg_version_eq($pkg, $version)) {
656                         if ($opt_override) {
657                                 print "The following package previously failed ",
658                                           "(by $pkg->{'builder'})\n",
659                                           "but overriding this as you request:\n";
660                                 send_mail( $pkg->{'builder'}, "failed package takeover",
661                                                    "The package '$name' (version $version) that ".
662                                                    "is taken by you\n".
663                                                    "and has failed previously has been taken over ".
664                                                    "by $user\n" )
665                                         if $pkg->{'builder'} ne $user;
666                         }
667                         else {
668                                 $ok = 0;
669                                 $reason = "build of $version failed previously:\n    ";
670                                 $reason .= join( "\n    ", split( "\n", $pkg->{'failed'} ));
671                                 $reason .= "\nalso the package doesn't need builing"
672                                         if $pkg->{'state'} eq 'Failed-Removed';
673                         }
674                 }
675         }
676         if ($ok) {
677             if ($api < 1) {
678                 my $ok = 'ok';
679                 if ($pkg->{'binary_nmu_version'}) {
680                         print "$name: Warning: needs binary NMU $pkg->{'binary_nmu_version'}\n" .
681                               "$pkg->{'binary_nmu_changelog'}\n";
682                         $ok = 'aok';
683                 } else {
684                         print "$name: Warning: Previous version failed!\n"
685                                 if $pkg->{'previous_state'} =~ /^Failed/ ||
686                                    $pkg->{'state'} =~ /^Failed/;
687                 }
688                 print "$name: $ok\n" if $verbose;
689             } else {
690                 print  "- $name:\n";
691                 print  "    - status: ok\n";
692                 printf "    - pkg-ver: %s_%s\n", $name, $version;
693                 print  "    - binNMU: $pkg->{'binary_nmu_version'}\n" if $pkg->{'binary_nmu_version'};
694                 print  "    - extra-changelog: $pkg->{'binary_nmu_changelog'}\n" if $pkg->{'binary_nmu_changelog'} && $pkg->{'binary_nmu_version'};
695                 print  "    - extra-depends: $pkg->{'extra_depends'}\n" if $pkg->{'extra_depends'};
696                 print  "    - extra-conflicts: $pkg->{'extra_conflicts'}\n" if $pkg->{'extra_conflicts'};
697                 print  "    - archive: $distributions{$distribution}->{'archive'}\n" if $distributions{$distribution}->{'archive'};
698                 print  "    - build_dep_resolver: $distributions{$distribution}->{'build_dep_resolver'}\n" if $distributions{$distribution}->{'build_dep_resolver'};
699                 print  "    - arch_all: $pkg->{'build_arch_all'}\n" if $pkg->{'build_arch_all'};
700                 print  "    - suppress_successful_logs: $distributions{$distribution}->{'suppress_successful_logs'}\n" if $distributions{$distribution}->{'suppress_successful_logs'};
701             }
702                 change_state( \$pkg, 'Building' );
703                 $pkg->{'package'} = $name;
704                 $pkg->{'version'} = $version;
705                 $pkg->{'builder'} = $user;
706                 log_ta( $pkg, "--take" );
707                 update_source_info($pkg);
708         }
709         else {
710             if ($api < 1) {
711                 print "$name: NOT OK!\n  $reason\n";
712             } else {
713                 print "- $name:\n    - status: not ok\n    - reason: \"$reason\"\n";
714             }
715         }
716 }
717
718
719 sub add_one_notforus {
720         my $pkg = shift;
721         my $state = $pkg->{'state'};
722         my $name = $pkg->{'package'};
723
724         if ($pkg->{'state'} eq 'Not-For-Us') {
725                 # reset Not-For-Us state in case it's called twice; this is
726                 # the only way to get a package out of this state...
727                 # There is no really good state in which such packages should
728                 # be put :-( So use Failed for now.
729                 change_state( \$pkg, 'Failed' );
730                 $pkg->{'package'} = $name;
731                 $pkg->{'failed'} = "Was Not-For-Us previously";
732                 delete $pkg->{'builder'};
733                 delete $pkg->{'depends'};
734                 log_ta( $pkg, "--no-build(rev)" );
735                 print "$name: now not unsuitable anymore\n";
736
737                 send_mail( $conf::notforus_maint,
738                                    "$name moved out of Not-For-Us state",
739                                    "The package '$name' has been moved out of the Not-For-Us ".
740                                    "state by $user.\n".
741                                    "It should probably also be removed from ".
742                                    "Packages-arch-specific or\n".
743                                    "the action was wrong.\n" )
744                         if $conf::notforus_maint;
745         }
746         else {
747                 change_state( \$pkg, 'Not-For-Us' );
748                 $pkg->{'package'} = $name;
749                 delete $pkg->{'builder'};
750                 delete $pkg->{'depends'};
751                 delete $pkg->{'binary_nmu_version'};
752                 delete $pkg->{'binary_nmu_changelog'};
753                 log_ta( $pkg, "--no-build" );
754                 print "$name: registered as unsuitable\n" if $verbose;
755
756                 send_mail( $conf::notforus_maint,
757                                    "$name set to Not-For-Us",
758                                    "The package '$name' has been set to state Not-For-Us ".
759                                    "by $user.\n".
760                                    "It should probably also be added to ".
761                                    "Packages-arch-specific or\n".
762                                    "the Not-For-Us state is wrong.\n" )
763                         if $conf::notforus_maint;
764         }
765         update_source_info($pkg);
766 }
767
768 sub add_one_needsbuild {
769         my $pkg = shift;
770         my $state = $pkg->{'state'};
771         my $name = $pkg->{'package'};
772
773         if ($state eq "BD-Uninstallable") {
774                 if ($opt_override) {
775                         print "$name: Forcing uninstallability mark to be removed. This is not permanent and might be reset with the next trigger run\n";
776
777                         change_state( \$pkg, 'Needs-Build' );
778                         delete $pkg->{'builder'};
779                         delete $pkg->{'depends'};
780                         log_ta( $pkg, "--give-back" );
781                         update_source_info($pkg);
782                         print "$name: given back\n" if $verbose;
783                         return;
784                 }
785                 else {
786                         print "$name: has uninstallable build-dependencies. Skipping\n",
787                                   "  (use --override to clear dependency list and ",
788                                   "give back anyway)\n";
789                         return;
790                 }
791         }
792         elsif ($state eq "Dep-Wait") {
793                 if ($opt_override) {
794                         print "$name: Forcing source dependency list to be cleared\n";
795                 }
796                 else {
797                         print "$name: waiting for source dependencies. Skipping\n",
798                                   "  (use --override to clear dependency list and ",
799                                   "give back anyway)\n";
800                         return;
801                 }
802         }
803         elsif (!isin( $state, qw(Building Built Build-Attempted))) {
804                 print "$name: not taken for building (state is $state).";
805                 if ($opt_override) {
806                         print "\n$name: Forcing give-back\n";
807                 }
808                 else {
809                         print " Skipping.\n";
810                         return;
811                 }
812         }
813         if (defined ($pkg->{'builder'}) && $user ne $pkg->{'builder'} &&
814                 !($pkg->{'builder'} =~ /^(\w+)-\w+/ && $1 eq $user) &&
815                 !$opt_override) {
816                 print "$name: not taken by you, but by ".
817                           "$pkg->{'builder'}. Skipping.\n";
818                 return;
819         }
820         change_state( \$pkg, 'BD-Uninstallable' );
821         $pkg->{'builder'} = undef;
822         $pkg->{'depends'} = undef;
823         log_ta( $pkg, "--give-back" );
824         update_source_info($pkg);
825         print "$name: given back\n" if $verbose;
826 }
827
828 sub set_one_binnmu {
829         my $name = shift;
830         my $version = shift;
831         my $pkg = shift;
832         my $state = $pkg->{'state'};
833
834         if (defined $pkg->{'binary_nmu_version'}) {
835                 if ($binNMUver == 0) {
836                         change_state( \$pkg, 'Installed' );
837                         delete $pkg->{'builder'};
838                         delete $pkg->{'depends'};
839                         delete $pkg->{'binary_nmu_version'};
840                         delete $pkg->{'binary_nmu_changelog'};
841                         delete $pkg->{'buildpri'};
842                 } elsif ($binNMUver <= $pkg->{'binary_nmu_version'}) {
843                         print "$name: already building binNMU $pkg->{'binary_nmu_version'}\n";
844                         return;
845                 } else {
846                         $pkg->{'binary_nmu_version'} = $binNMUver;
847                         $pkg->{'binary_nmu_changelog'} = $fail_reason;
848                         $pkg->{'notes'} = 'out-of-date';
849                         delete $pkg->{'buildpri'};
850                         change_state( \$pkg, 'BD-Uninstallable' );
851                 }
852                 log_ta( $pkg, "--binNMU" );
853                 update_source_info($pkg);
854                 return;
855         } elsif ($binNMUver == 0) {
856                 print "${name}_$version: no scheduled binNMU to cancel.\n";
857                 return;
858         }
859
860         if ($state ne 'Installed') {
861                 print "${name}_$version: not installed; can't register for binNMU.\n";
862                 return;
863         }
864
865         my $fullver = binNMU_version($version,$binNMUver);
866         if ( version_lesseq( $fullver, $pkg->{'installed_version'} ) )
867         {
868                 print "$name: binNMU $fullver is not newer than current version $pkg->{'installed_version'}\n";
869                 return;
870         }
871
872         change_state( \$pkg, 'BD-Uninstallable' );
873         delete $pkg->{'builder'};
874         delete $pkg->{'depends'};
875         $pkg->{'binary_nmu_version'} = $binNMUver;
876         $pkg->{'binary_nmu_changelog'} = $fail_reason;
877         $pkg->{'notes'} = 'out-of-date';
878         delete $pkg->{'buildpri'};
879         log_ta( $pkg, "--binNMU" );
880         update_source_info($pkg);
881         print "${name}: registered for binNMU $fullver\n" if $verbose;
882 }
883
884 sub set_one_buildpri {
885         my $key = shift;
886         my $pkg = shift;
887         my $name = $pkg->{'package'};
888
889         if ( $build_priority ) {
890                 $pkg->{$key} = $build_priority;
891         } else {
892                 delete $pkg->{$key};
893         }
894         update_source_info($pkg);
895         print "$name: set to build priority $build_priority\n" if $verbose;
896 }
897
898 sub add_one_depwait {
899         my $pkg = shift;
900         my $state = $pkg->{'state'};
901         my $name = $pkg->{'package'};
902
903         if ($state eq "Dep-Wait") {
904                 print "$name: merging with previously registered dependencies\n";
905         }
906         
907         if (isin( $state, qw<Installed Not-For-Us>)) {
908             print "add_one_depwait: $name: skiping in state $state\n";
909             return;
910         }
911         
912         if ($fail_reason =~ /^\s*$/ ||
913                    !parse_deplist( $fail_reason, 1 )) {
914                 print "$name: Bad dependency list\n";
915                 return;
916         }
917         change_state( \$pkg, 'Dep-Wait' );
918         $pkg->{'builder'} = $user;
919         my $deplist = parse_deplist( $pkg->{'depends'} );
920         my $new_deplist = parse_deplist( $fail_reason );
921         # add new dependencies, maybe overwriting old entries
922         foreach (keys %$new_deplist) {
923                 $deplist->{$_} = $new_deplist->{$_};
924         }
925         $pkg->{'depends'} = build_deplist($deplist);
926         log_ta( $pkg, "--dep-wait" ) unless $simulate;
927         update_source_info($pkg) unless $simulate;
928         print "$name: registered as waiting for dependencies\n" if $verbose || $simulate;
929 }
930
931
932 # for sorting priorities and sections
933 BEGIN {
934         %prioval = ( required             => -5,
935                                  important            => -4,
936                                  standard             => -3,
937                                  optional             => -2,
938                                  extra                => -1,
939                                  unknown              => -1 );
940         %sectval = ( 
941                                  libs                   => -200,
942                                  'debian-installer'     => -199,
943                                  base                   => -198,
944                                  devel                  => -197,
945                                  kernel                 => -196,
946                                  shells                 => -195,
947                                  perl                   => -194,
948                                  python                 => -193,
949                                  graphics               => -192,
950                                  admin                  => -191,
951                                  utils                  => -190,
952                                  x11                    => -189,
953                                  editors                => -188,
954                                  net                    => -187,
955                                  httpd                  => -186,
956                                  mail                   => -185,
957                                  news                   => -184,
958                                  tex                    => -183,
959                                  text                   => -182,
960                                  web                    => -181,
961                                  vcs                    => -180,
962                                  doc                    => -179,
963                                  localizations          => -178,
964                                  interpreters           => -177,
965                                  ruby                   => -176,
966                                  java                   => -175,
967                                  ocaml                  => -174,
968                                  lisp                   => -173,
969                                  haskell                => -172,
970                                  'cli-mono'             => -171,
971                                  gnome                  => -170,
972                                  kde                    => -169,
973                                  xfce                   => -168,
974                                  gnustep                => -167,
975                                  database               => -166,
976                                  video                  => -165,
977                                  debug                  => -164,
978                                  games                  => -163,
979                                  misc                   => -162,
980                                  fonts                  => -161,
981                                  otherosfs              => -160,
982                                  oldlibs                => -159,
983                                  libdevel               => -158,
984                                  sound                  => -157,
985                                  math                   => -156,
986                                  'gnu-r'                => -155,
987                                  science                => -154,
988                                  comm                   => -153,
989                                  electronics            => -152,
990                                  hamradio               => -151,
991                                  embedded               => -150,
992                                  php                    => -149,
993                                  zope                   => -148,
994         );
995         foreach my $i (keys %sectval) {
996                 $sectval{"contrib/$i"} = $sectval{$i}+40;
997                 $sectval{"non-free/$i"} = $sectval{$i}+80;
998         }
999         $sectval{'unknown'}     = -165;
1000
1001 }
1002
1003 sub sort_list_func {
1004     my $map_funcs = {
1005         'C' => ['<->', sub { return $_[0]->{'calprio'}; }],
1006         'W' => ['<->', sub { return $_[0]->{'state_days'}; }],
1007         'P' => ['<->', sub { return ($_[0]->{'buildpri'}//0) + ($_[0]->{'permbuildpri'}//0); }],
1008         'p' => ['<=>', sub { return $prioval{$_[0]->{'priority'}//""}//0; }],
1009         's' => ['<=>', sub { return $sectval{$_[0]->{'section'}//""}//0; }],
1010         'n' => ['cmp', sub { return $_[0]->{'package'}; }],
1011         'b' => ['cmp', sub { return $_[0]->{'builder'}; }],
1012         'c' => ['<=>', sub { return ($_[0]->{'notes'}//"" =~ /^(out-of-date|partial)/) ? 0: ($_[0]->{'notes'}//"" =~ /^uncompiled/) ? 2 : 1; }],
1013         'S' => ['<->', sub { return isin($_[0]->{'priority'}, qw(required important standard)); }],
1014         'T' => ['<->', sub { return $_[0]->{'state_time'} % 86400;} ], # Fractions of a day
1015     };
1016
1017         foreach my $letter (split( //, $list_order )) {
1018             my $r;
1019             $r = (&{$map_funcs->{$letter}[1]}($b)//0 ) <=> (&{$map_funcs->{$letter}[1]}($a)//0 ) if $map_funcs->{$letter}[0] eq '<->';
1020             $r = (&{$map_funcs->{$letter}[1]}($a)//0 ) <=> (&{$map_funcs->{$letter}[1]}($b)//0 ) if $map_funcs->{$letter}[0] eq '<=>';
1021             $r = (&{$map_funcs->{$letter}[1]}($a)//"") cmp (&{$map_funcs->{$letter}[1]}($b)//"") if $map_funcs->{$letter}[0] eq 'cmp';
1022             return $r if $r != 0;
1023         }
1024         return 0;
1025 }
1026
1027 sub calculate_prio {
1028         my $priomap = $yamlmap->{priority};
1029         my $pkg = shift;
1030         my @s=split("/", $pkg->{'section'}//"");
1031         $pkg->{'component'} = $s[0] if $s[1];
1032         $pkg->{'component'} ||= 'main';
1033         $pkg->{'calprio'} = 0;
1034         foreach my $k (keys %{$priomap->{keys}}) {
1035                 $pkg->{'calprio'} += $priomap->{keys}->{$k}{$pkg->{$k}} if $pkg->{$k} and $priomap->{keys}->{$k}{$pkg->{$k}};
1036         }
1037
1038         my $days = $pkg->{'state_days'};
1039         $days = $priomap->{'waitingdays'}->{'min'} if $priomap->{'waitingdays'}->{'min'} and $days < $priomap->{'waitingdays'}->{'min'};
1040         $days = $priomap->{'waitingdays'}->{'max'} if $priomap->{'waitingdays'}->{'max'} and $days > $priomap->{'waitingdays'}->{'max'};
1041         my $scale = $priomap->{'waitingdays'}->{'scale'} || 1;
1042         $pkg->{'calprio'} += $days * $scale;
1043
1044         my $btime = max($pkg->{'anytime'}//0, $pkg->{'successtime'}//0);
1045         my $bhours = $btime ? int($btime/3600) : ($priomap->{'buildhours'}->{'default'} || 2);
1046         $bhours = $priomap->{'buildhours'}->{'min'} if $priomap->{'buildhours'}->{'min'} and $bhours < $priomap->{'buildhours'}->{'min'};
1047         $bhours = $priomap->{'buildhours'}->{'max'} if $priomap->{'buildhours'}->{'max'} and $bhours > $priomap->{'buildhours'}->{'max'};
1048         $scale = $priomap->{'buildhours'}->{'scale'} || 1;
1049         $pkg->{'calprio'} -= $bhours * $scale;
1050
1051         $pkg->{'calprio'} += $pkg->{'permbuildpri'} if  $pkg->{'permbuildpri'};
1052         $pkg->{'calprio'} += $pkg->{'buildpri'} if  $pkg->{'buildpri'};
1053
1054         return $pkg;
1055 }
1056
1057
1058 sub seconds2time {
1059     my $t = shift;
1060     return "" unless $t;
1061     my $sec = $t % 60;
1062     my $min = int($t/60) % 60;
1063     my $hours = int($t / 3600);
1064     return sprintf("%d:%02d:%02d", $hours, $min, $sec) if $hours;
1065     return sprintf("%d:%02d", $min, $sec);
1066 }
1067
1068
1069 sub use_fmt {
1070     my $r;
1071
1072     if (ref($_[0]) eq 'CODE') {
1073         $r = &{$_[0]};
1074     } else {
1075         $r = $_[0];
1076     }
1077
1078     shift;
1079     my $t = shift;
1080
1081     $r ||= "";
1082     return $r unless $t;
1083
1084     my $pkg = shift;
1085     my $var = shift;
1086     if (substr($t,0,1) eq '!') {
1087         $t = substr($t,1);
1088         return "" if $r;
1089     } else {
1090         return "" unless $r;
1091     }
1092     if ($t =~ /%/) {
1093         return print_format($t, $pkg, $var);
1094     }
1095     return $t;
1096 }
1097 sub make_fmt { my $c = shift; my $pkg = shift; my $var = shift; return sub { use_fmt($c, $_[0], $pkg, $var); } };
1098
1099 sub print_format {
1100     my $printfmt = shift;
1101     my $pkg = shift;
1102     my $var = shift;
1103
1104 =pod
1105
1106 Within an format string, the following values are allowed (need to be preceded by %).
1107 This can be combined to e.g.
1108 wanna-build --format='wanna-build -A %a --give-back %p_%v' -A mipsel --list=failed
1109
1110 a Architecture
1111 c section (e.g. libs or utils)
1112 D in case of BD-Uninstallable the reason for the uninstallability
1113 d distribution
1114 E in case of Dep-Wait the packages being waited on, in case of Needs-Build the number in the queue
1115 F in case of Failed the fail reason
1116 n newline
1117 o time of last successful build (seconds)
1118 O time of last successful build (formated)
1119 P previous state
1120 p Package name
1121 q time of last build (seconds)
1122 Q time of last build (formated)
1123 r max time of last (successful) build (seconds)
1124 R max time of last (successful) build (formated)
1125 S Package state
1126 s Time in this state in full seconds since epoch
1127 t time of state change
1128 T time since state change
1129 u Builder (e.g. buildd_mipsel-rem)
1130 v Package version
1131 V full Package version (i.e. with +b.., = %v%{+b}B%B
1132 X the string normally between [], e.g. optional:out-of-date:calprio{61}:days{25}
1133
1134 %{Text}?  print Text in case ? is not empty; ? is never printed
1135 %{!Text}? print Text in case ? is empty; ? is never printed
1136 Text could contain further %. To start with !, use %!
1137
1138 =cut
1139
1140     return stringf($printfmt, (
1141         'p' => make_fmt( $pkg->{'package'}, $pkg, $var),
1142         'a' => make_fmt( $arch, $pkg, $var),
1143         's' => make_fmt( sub { return floor(str2time($pkg->{'state_change'})); }, $pkg, $var),
1144         'v' => make_fmt( $pkg->{'version'}, $pkg, $var),
1145         'V' => make_fmt( sub { $pkg->{'binary_nmu_version'} ? $pkg->{'version'}."+b".$pkg->{'binary_nmu_version'} : $pkg->{'version'} }, $pkg, $var),
1146         'S' => make_fmt( $pkg->{'state'}, $pkg, $var),
1147         'u' => make_fmt( $pkg->{'builder'}, $pkg, $var),
1148         'X' => make_fmt( sub {
1149             no warnings;
1150             my $c = "$pkg->{'priority'}:$pkg->{'notes'}";
1151             $c .= ":PREV-FAILED" if $pkg->{'previous_state'} && $pkg->{'previous_state'} =~ /^Failed/;
1152             $c .= ":bp{" . (($pkg->{'buildpri'}//0)+($pkg->{'permbuildpri'}//0)) . "}" if (($pkg->{'buildpri'}//0)+($pkg->{'permbuildpri'}//0));
1153             $c .= ":binNMU{" . $pkg->{'binary_nmu_version'} . "}" if defined $pkg->{'binary_nmu_version'};
1154             $c .= ":calprio{". $pkg->{'calprio'}."}";
1155             $c .= ":days{". $pkg->{'state_days'}."}";
1156             return $c;
1157             }, $pkg, $var),
1158         'c' => make_fmt( $pkg->{'section'}, $pkg, $var),
1159         'P' => make_fmt( $pkg->{'previous_state'} || "unknwon", $pkg, $var),
1160         'E' => make_fmt( sub { return $pkg->{'depends'} if $pkg->{'state'} eq "Dep-Wait";
1161             return $var->{scnt}{'Needs-Build'} + 1 if $pkg->{'state'} eq 'Needs-Build';
1162             return ""; }, $pkg, $var),
1163         'F' => make_fmt( sub { return "" unless $pkg->{'failed'};
1164             my $failed = $pkg->{'failed'};
1165             $failed =~ s/\\/\\\\/g;
1166             return $pkg->{'package'}."#".$arch."-failure\n ".
1167             join("\\0a",split("\n",$failed))."\\0a\n"; }, $pkg, $var),
1168         'D' => make_fmt( sub { return "" unless $pkg->{'bd_problem'};
1169             return $pkg->{'package'}."#".$arch."-bd-problem\n".
1170             join("\\0a",split("\n",$pkg->{'bd_problem'}))."\\0a\n"; }, $pkg, $var),
1171         'B' => make_fmt( sub { return $pkg->{'binary_nmu_version'} if defined $pkg->{'binary_nmu_version'}; }, $pkg, $var),
1172         'd' => make_fmt( $pkg->{'distribution'}, $pkg, $var),
1173         't' => make_fmt( $pkg->{'state_change'}, $pkg, $var),
1174         'T' => make_fmt( sub { return seconds2time(time() - floor(str2time($pkg->{'state_change'}))); }, $pkg, $var),
1175         'o' => make_fmt( $pkg->{'successtime'}, $pkg, $var),
1176         'O' => make_fmt( sub { return seconds2time ( $pkg->{'successtime'}); }, $pkg, $var),
1177         'q' => make_fmt( $pkg->{'anytime'}, $pkg, $var),
1178         'Q' => make_fmt( sub { return seconds2time ( $pkg->{'anytime'}); }, $pkg, $var),
1179         'r' => make_fmt( sub { my $c = max($pkg->{'successtime'}//0, $pkg->{'anytime'}//0); return $c if $c; return; }, $pkg, $var),
1180         'R' => make_fmt( sub { return seconds2time ( max($pkg->{'successtime'}//0, $pkg->{'anytime'}//0)); }, $pkg, $var),
1181     ));
1182 }
1183
1184 sub list_packages {
1185         my $state = shift;
1186         my @list;
1187         my $cnt = 0;
1188         my %scnt;
1189         my $ctime = time;
1190
1191         my $db = get_all_source_info(state => $state, user => $user, list_min_age => $list_min_age, multisuite => 1);
1192         foreach my $key (keys %$db) {
1193                 next if $key =~ /^_/;
1194                 push @list, calculate_prio($db->{$key});
1195         }
1196
1197         # filter components
1198         @list = grep { my $i = $_->{'component'}; grep { $i eq $_ } split /[, ]+/, $yamlmap->{"restrict"}{'component'} } @list;
1199         # extra depends / conflicts only from api 1 on
1200         @list = grep { !$_->{'extra_depends'} and !$_->{'extra_conflicts'} } @list if $api < 1 ;
1201
1202         # first adjust ownprintformat, then set printformat accordingly
1203         $printformat ||= $yamlmap->{"format"}{$ownprintformat} if $ownprintformat;
1204         $printformat ||= $yamlmap->{"format"}{"default"}{$state};
1205         $printformat ||= $yamlmap->{"format"}{"default"}{"default"};
1206         undef $printformat if ($ownprintformat && $ownprintformat eq 'none');
1207
1208         foreach my $pkg (sort sort_list_func @list) {
1209                 no warnings;
1210                 if ($printformat) {
1211                     print print_format($printformat, $pkg, {'cnt' => $cnt, 'scnt' => \%scnt})."\n";
1212                     ++$cnt;
1213                     $scnt{$pkg->{'state'}}++;
1214                     next;
1215                 }
1216                 print print_format("%c/%p_%v", $pkg, {});
1217                 print print_format(": %S", $pkg, {})
1218                         if $state eq "all";
1219                 print print_format("%{ by }u%u", $pkg, {})
1220                         if $pkg->{'state'} ne "Needs-Build";
1221                 print print_format(" [%X]\n", $pkg, {});
1222                 print "  Reasons for failing:\n",
1223                           join("\n    ",split("\n",$pkg->{'failed'})), "\n"
1224                         if $pkg->{'state'} =~ /^Failed/;
1225                 print "  Dependencies: $pkg->{'depends'}\n"
1226                         if $pkg->{'state'} eq "Dep-Wait";
1227                 print "  Reasons for BD-Uninstallable:\n    ",
1228                           join("\n    ",split("\n",$pkg->{'bd_problem'})), "\n"
1229                         if $pkg->{'state'} eq "BD-Uninstallable";
1230                 print "  Previous state was $pkg->{'previous_state'}\n"
1231                         if $verbose && $pkg->{'previous_state'};
1232                 print "  No previous state recorded\n"
1233                         if $verbose && !$pkg->{'previous_state'};
1234                 print "  State changed at $pkg->{'state_change'}\n"
1235                         if $verbose && $pkg->{'state_change'};
1236                 print "  Previous state $pkg->{'previous_state'} left $pkg->{'state_time'} ago\n"
1237                         if $verbose && $pkg->{'previous_state'};
1238                 print "  Previous failing reasons:\n    ",
1239                       join("\n    ",split("\n",$pkg->{'old_failed'})), "\n"
1240                         if $verbose && $pkg->{'old_failed'};
1241                 ++$cnt;
1242                 $scnt{$pkg->{'state'}}++ if $state eq "all";
1243         }
1244         if ($state eq "all" && !$printformat) {
1245                 foreach (sort keys %scnt) {
1246                         print "Total $scnt{$_} package(s) in state $_.\n";
1247                 }
1248         }
1249         print "Total $cnt package(s)\n" unless $printformat;
1250         
1251 }
1252
1253 sub info_packages {
1254         my( $name, $pkg, $key, $dist );
1255         my @firstkeys = qw(package version builder state section priority
1256                                            installed_version previous_state state_change);
1257         my @dists = $info_all_dists ? keys %distributions : ($distribution);
1258         my %beautykeys = ( 'package' => 'Package', 'version' => 'Version', 'builder' => 'Builder',
1259                 'state' => 'State', 'section' => 'Section', 'priority' => 'Priority',
1260                 'installed_version' => 'Installed-Version', 'previous_state' => 'Previous-State',
1261                 'state_change' => 'State-Change',
1262                 'bd_problem' => 'BD-Problem', 
1263                 'binary_nmu_changelog' => 'Binary-NMU-Changelog', 'binary_nmu_version' => 'Binary-NMU-Version',
1264                 'buildpri' => 'BuildPri', 'depends' => 'Depends', 'failed' => 'Failed',
1265                 'notes' => 'Notes',
1266                 'distribution' => 'Distribution', 'old_failed' => 'Old-Failed',
1267                 'permbuildpri' => 'PermBuildPri', 'rel' => 'Rel',
1268                 'calprio' => 'CalculatedPri', 'state_days' => 'State-Days', 'state_time' => 'State-Time',
1269                 'successtime' => 'Success-build-time',
1270                 'anytime' => 'Build-time',
1271                 'extra_depends' => 'Extra-Dependencies',
1272                 'extra_conflicts' => 'Extra-Conflicts',
1273                 'build_arch_all' => 'Build-Arch-All',
1274                          );
1275         
1276         foreach $name (@_) {
1277                 $name =~ s/_.*$//; # strip version
1278                 foreach $dist (@dists) {
1279                         my $pname = "$name" . ($info_all_dists ? "($dist)" : "");
1280                         
1281                         $pkg = get_readonly_source_info($name);
1282                         if (!defined( $pkg )) {
1283                                 print "$pname: not registered\n";
1284                                 next;
1285                         }
1286                         $pkg = calculate_prio($pkg);
1287
1288                         print "$pname:\n";
1289                         foreach $key (@firstkeys) {
1290                                 next if !defined $pkg->{$key};
1291                                 my $val = $pkg->{$key};
1292                                 chomp( $val );
1293                                 $val = "\n$val" if isin( $key, qw(Failed Old-Failed));
1294                                 $val =~ s/\n/\n    /g;
1295                                 my $print_key = $key;
1296                                 $print_key = $beautykeys{$print_key} if $beautykeys{$print_key};
1297                                 printf "  %-20s: %s\n", $print_key, $val;
1298                         }
1299                         foreach $key (sort keys %$pkg) {
1300                                 next if isin( $key, @firstkeys );
1301                                 my $val = $pkg->{$key};
1302                                 next if !defined($val);
1303                                 chomp( $val );
1304                                 $val = "\n$val" if isin( $key, qw(Failed Old-Failed));
1305                                 $val =~ s/\n/\n    /g;
1306                                 my $print_key = $key;
1307                                 $print_key = $beautykeys{$print_key} if $beautykeys{$print_key};
1308                                 printf "  %-20s: %s\n", $print_key, $val;
1309                         }
1310                 }
1311         }
1312 }
1313
1314 sub forget_packages {
1315         no warnings;
1316         my( $name, $pkg, $key, $data );
1317         
1318         foreach $name (@_) {
1319                 $name =~ s/_.*$//; # strip version
1320                 $pkg = get_source_info($name);
1321                 if (!defined( $pkg )) {
1322                         print "$name: not registered\n";
1323                         next;
1324                 }
1325
1326                 $data = "";
1327                 foreach $key (sort keys %$pkg) {
1328                         my $val = $pkg->{$key};
1329                         chomp( $val );
1330                         $val =~ s/\n/\n /g;
1331                         $data .= sprintf "  %-20s: %s\n", $key, $val;
1332                 }
1333                 send_mail( $conf::db_maint,
1334                                    "$name deleted from DB " . table_name() . " " . $distribution,
1335                                    "The package '$name' has been deleted from the database ".
1336                                    "by $user.\n\n".
1337                                    "Data registered about the deleted package:\n".
1338                                    "$data\n" ) if $conf::db_maint;
1339                 change_state( \$pkg, 'deleted' );
1340                 log_ta( $pkg, "--forget" );
1341                 del_source_info($name);
1342                 print "$name: deleted from database\n" if $verbose;
1343         }
1344 }
1345
1346 sub forget_users {
1347         $dbh->do("DELETE from " . user_table_name() . 
1348                 " WHERE distribution = ?", undef, $distribution) or die $dbh->errstr;
1349 }
1350
1351 sub read_db {
1352         my $file = shift;
1353
1354         print "Reading ASCII database from $file..." if $verbose >= 1;
1355         open( my $fh, '<', $file ) or
1356                 die "Can't open database $file: $!\n";
1357
1358         local($/) = ""; # read in paragraph mode
1359         while( <$fh> ) {
1360                 my( %thispkg, $name );
1361                 s/[\s\n]+$//;
1362                 s/\n[ \t]+/\376\377/g;  # fix continuation lines
1363                 s/\376\377\s*\376\377/\376\377/og;
1364   
1365                 while( /^(\S+):[ \t]*(.*)[ \t]*$/mg ) {
1366                         my ($key, $val) = ($1, $2);
1367                         $key =~ s/-/_/g;
1368                         $key =~ tr/A-Z/a-z/;
1369                         $val =~ s/\376\377/\n/g;
1370                         $thispkg{$key} = $val;
1371                 }
1372                 check_entry( \%thispkg );
1373                 # add to db
1374                 if (exists($thispkg{'package'})) {
1375                         update_source_info(\%thispkg);
1376                 }
1377                 elsif(exists($thispkg{'user'})) {
1378                         # user in import, username in database.
1379                         $dbh->do('INSERT INTO ' . user_table_name() .
1380                                         ' (username, distribution, last_seen)' .
1381                                         ' values (?, ?, ?)',
1382                                 undef, $thispkg{'user'}, $distribution,
1383                                 $thispkg{'last_seen'})
1384                                 or die $dbh->errstr;
1385                  }
1386         }
1387         close( $fh );
1388         print "done\n" if $verbose >= 1;
1389 }
1390
1391 sub check_entry {
1392         my $pkg = shift;
1393         my $field;
1394
1395         return if $op_mode eq "manual-edit"; # no checks then
1396         
1397         # check for required fields
1398         if (exists $pkg->{'user'}) {
1399                 return;
1400         }
1401         if (!exists $pkg->{'package'}) {
1402                 print STDERR "Bad entry: ",
1403                           join( "\n", map { "$_: $pkg->{$_}" } keys %$pkg ), "\n";
1404                 die "Database entry lacks package or username field\n";
1405         }
1406         # if no State: field, generate one (for old db compat)
1407         if (!exists($pkg->{'state'})) {
1408                 $pkg->{'state'} =
1409                         exists $pkg->{'failed'} ? 'Failed' : 'Building';
1410         }
1411         if (!exists $pkg->{'version'} and $pkg->{'state'} ne 'Not-For-Us') {
1412                 die "Database entry for $pkg->{'package'} lacks Version: field\n";
1413         }
1414         # check state field
1415         die "Bad state $pkg->{'state'} of package $pkg->{Package}\n"
1416                 if !isin( $pkg->{'state'},
1417                                   qw(Needs-Build Building Built Build-Attempted Uploaded Installed Dep-Wait Dep-Wait-Removed
1418                                          Failed Failed-Removed Not-For-Us BD-Uninstallable Auto-Not-For-Us
1419                                          ) );
1420 }
1421
1422 sub export_db {
1423         my $file = shift;
1424         my($name,$pkg,$key);
1425
1426         print "Writing ASCII database to $file..." if $verbose >= 1;
1427         open( my $fh, '>', $file ) or
1428                 die "Can't open export $file: $!\n";
1429
1430         my $db = get_all_source_info();
1431         foreach $name (keys %$db) {
1432                 next if $name =~ /^_/;
1433                 my $pkg = $db->{$name};
1434                 foreach $key (keys %{$pkg}) {
1435                         my $val = $pkg->{$key};
1436                         next if !defined($val);
1437                         $val =~ s/\n*$//;
1438                         $val =~ s/^/ /mg;
1439                         $val =~ s/^ +$/ ./mg;
1440                         print $fh "$key: $val\n";
1441                 }
1442                 print $fh "\n";
1443        }
1444        close( $fh );
1445        print "done\n" if $verbose >= 1;
1446 }
1447
1448 sub change_state {
1449         my $pkgr = shift;
1450         my $pkg = $$pkgr;
1451         my $newstate = shift;
1452         my $state = \$pkg->{'state'};
1453         
1454         $newstate = 'Needs-Build' if $newstate eq 'BD-Uninstallable' && $distributions{$distribution}{noadw};
1455         return if defined($$state) and $$state eq $newstate;
1456         $pkg->{'previous_state'} = $$state if defined($$state);
1457         $pkg->{'state_change'} = $curr_date;
1458         $pkg->{'do_state_change'} = 1;
1459
1460         if (defined($$state) and $$state eq 'Failed') {
1461                 $pkg->{'old_failed'} =
1462                         "-"x20 . " $pkg->{'version'} " . "-"x20 . "\n" .
1463                         ($pkg->{'failed'} // ""). "\n" .
1464                         ($pkg->{'old_failed'} // "");
1465                 delete $pkg->{'failed'};
1466         }
1467         delete $pkg->{'bd_problem'} if ($$state//"") eq 'BD-Uninstallable';
1468         $pkg->{'bd_problem'} = "Installability of build dependencies not tested yet" if $newstate eq 'BD-Uninstallable';
1469         $$state = $newstate;
1470 }
1471
1472 sub log_ta {
1473         my $pkg = shift;
1474         my $action = shift;
1475         my $dist = $distribution;
1476         my $str;
1477         my $prevstate;
1478
1479         $prevstate = $pkg->{'previous_state'};
1480         $str = "$action($dist): $pkg->{'package'}_$pkg->{'version'} ".
1481                    "changed from $prevstate to $pkg->{'state'} ".
1482                    "by $real_user as $user";
1483         
1484         if ($simulate) {
1485             printf "update transactions: %s %s %s %s %s %s %s %s\n",
1486                 $pkg->{'package'}, $distribution,
1487                 $pkg->{'version'}, $action, $prevstate, $pkg->{'state'},
1488                 $real_user, $user;
1489             return;
1490         }
1491         $dbh->do('INSERT INTO ' . transactions_table_name() .
1492                         ' (package, distribution, version, action, ' .
1493                         ' prevstate, state, real_user, set_user, time) ' .
1494                         ' values (?, ?, ?, ?, ?, ?, ?, ?, ?)',
1495                 undef, $pkg->{'package'}, $distribution,
1496                 $pkg->{'version'}, $action, $prevstate, $pkg->{'state'},
1497                 $real_user, $user, 'now()') or die $dbh->errstr;
1498
1499         if (!($prevstate eq 'Failed' && $pkg->{'state'} eq 'Failed')) {
1500                 $str .= " (with --override)"
1501                         if $opt_override;
1502                 $mail_logs .= "$str\n";
1503         }
1504 }
1505
1506
1507 sub send_mail {
1508         my $to = shift;
1509         my $subject = shift;
1510         my $text = shift;
1511
1512         my $from = $conf::db_maint;
1513         my $domain = $conf::buildd_domain;
1514
1515         $from .= "\@$domain" if $from !~ /\@/;
1516
1517         $to .= '@' . $domain if $to !~ /\@/;
1518         $text =~ s/^\.$/../mg;
1519         local $SIG{'PIPE'} = 'IGNORE';
1520         open( my $pipe,  '|-', "$conf::mailprog -oem $to" )
1521                 or die "Can't open pipe to $conf::mailprog: $!\n";
1522         chomp $text;
1523         print $pipe "From: $from\n";
1524         print $pipe "Subject: $subject\n\n";
1525         print $pipe "$text\n";
1526         close( $pipe );
1527 }
1528
1529 # for parsing input to dep-wait
1530 sub parse_deplist {
1531     my $deps = shift;
1532     my $verify = shift;
1533     my %result;
1534     
1535     return $verify ? 0 : \%result unless $deps;
1536     foreach (split( /\s*,\s*/, $deps )) {
1537         if ($verify) {
1538             # verification requires > starting prompts, no | crap
1539             if (!/^(\S+)\s*(\(\s*(>(?:[>=])?)\s*(\S+)\s*\))?\s*$/) {
1540                 return 0;
1541             }
1542             next;
1543         }
1544         my @alts = split( /\s*\|\s*/, $_ );
1545         # Anything with an | is ignored, as it can be configured on a
1546         # per-buildd basis what will be installed
1547         next if $#alts != 0;
1548         $_ = shift @alts;
1549
1550         if (!/^(\S+)\s*(\(\s*(>=|=|==|>|>>|<<|<=)\s*(\S+)\s*\))?\s*$/) {
1551             warn( "parse_deplist: bad dependency $_\n" );
1552             next;
1553         }
1554         my($dep, $rel, $relv) = ($1, $3, $4);
1555         $rel = ">>" if defined($rel) and $rel eq ">";
1556         $result{$dep}->{'package'} = $dep;
1557         if ($rel && $relv) {
1558             $result{$dep}->{'rel'} = $rel;
1559             $result{$dep}->{'version'} = $relv;
1560         }
1561     }
1562     return 1 if $verify;
1563     return \%result;
1564 }
1565
1566 sub build_deplist {
1567         my $list = shift;
1568         my($key, $result);
1569         
1570         foreach $key (keys %$list) {
1571                 $result .= ", " if $result;
1572                 $result .= $key;
1573                 $result .= " ($list->{$key}->{'rel'} $list->{$key}->{'version'})"
1574                         if $list->{$key}->{'rel'} && $list->{$key}->{'version'};
1575         }
1576         return $result;
1577 }
1578
1579
1580 sub filterarch {
1581     return "" unless $_[0];
1582     return Dpkg::Deps::parse($_[0], ("reduce_arch" => 1, "host_arch" => $_[1]))->dump();
1583 }
1584
1585 sub wb_edos_builddebcheck {
1586 # Copyright (C) 2008 Ralf Treinen <treinen@debian.org>
1587 # This program is free software: you can redistribute it and/or modify it under
1588 # the terms of the GNU General Public License as published by the Free Software
1589 # Foundation, version 2 of the License.
1590 # integrated into wanna-builds code by Andreas Barth 2010
1591
1592     my $args = shift;
1593     my $sourceprefix="source---";
1594     my $architecture=$args->{'arch'};
1595     my $edosoptions = "-failures -explain -quiet";
1596     my $packagefiles = $args->{'pkgs'};
1597     my $sourcesfile = $args->{'src'};
1598
1599     my $packagearch="";
1600     foreach my $packagefile (@$packagefiles) {
1601         open(my $fh,'<', $packagefile);
1602         while (<$fh>) {
1603             next unless /^Architecture/;
1604             next if /^Architecture:\s*all/;
1605             /Architecture:\s*([^\s]*)/;
1606             if ($packagearch eq "") {
1607                 $packagearch = $1;
1608             } elsif ( $packagearch ne $1) {
1609                 return "Package file contains different architectures: $packagearch, $1";
1610             }
1611         }
1612         close $fh;
1613     }
1614
1615     if ( $architecture eq "" ) {
1616         if ( $packagearch eq "" ) {
1617         return "No architecture option given, " .
1618             "and no non-all architecture found in the Packages file";
1619         } else {
1620             $architecture = $packagearch;
1621         }
1622     } else {
1623         if ( $packagearch ne "" & $architecture ne $packagearch) {
1624             return "Architecture option is $architecture ".
1625             "but the package file contains architecture $packagearch";
1626         }   
1627     }
1628
1629     print "calling: edos-debcheck $edosoptions < $sourcesfile ".join('', map {" '-base FILE' ".$_ } @$packagefiles)."\n";
1630     open(my $result_cmd, '-|',
1631         "edos-debcheck $edosoptions < $sourcesfile ".join('', map {" '-base FILE' ".$_ } @$packagefiles));
1632
1633     my $explanation="";
1634     my $result={};
1635     my $binpkg="";
1636
1637     while (<$result_cmd>) {
1638 # source---pulseaudio (= 0.9.15-4.1~bpo50+1): FAILED
1639 #   source---pulseaudio (= 0.9.15-4.1~bpo50+1) depends on missing:
1640 #   - libltdl-dev (>= 2.2.6a-2)
1641 # source---libcanberra (= 0.22-1~bpo50+1): FAILED
1642 #   source---libcanberra (= 0.22-1~bpo50+1) depends on missing:
1643 #   - libltdl-dev
1644 #   - libltdl7-dev (>= 2.2.6)
1645
1646         if (/^\s+/) {
1647             s/^(\s*)$sourceprefix(.*)depends on/$1$2build-depends on/o;
1648             s/^(\s*)$sourceprefix(.*) and (.*) conflict/$1$2 build-conflicts with $3/o;
1649             $explanation .= $_;
1650         } else {
1651             if (/^$sourceprefix(.*) \(.*\): FAILED/o) {
1652                 $result->{$binpkg} = $explanation if $binpkg;
1653                 $explanation = "";
1654                 $binpkg = $1;
1655             } elsif (/^(depwait---.*) \(.*\): FAILED/o) {
1656                 $result->{$binpkg} = $explanation if $binpkg;
1657                 $explanation = "";
1658                 $binpkg = $1;
1659             } else { # else something broken is happening
1660                 #print "ignoring $_\n";
1661                 1;
1662             }
1663         }
1664     }
1665
1666     close $result_cmd;
1667     $result->{$binpkg} = $explanation if $binpkg;
1668     return $result;
1669
1670 }
1671
1672
1673 sub call_edos_depcheck {
1674     return if $simulate_edos;
1675     my $args = shift;
1676     my $srcs = $args->{'srcs'};
1677     my $key;
1678     
1679     return if defined ($distributions{$distribution}{noadw}) && not defined $args->{'depwait'};
1680
1681     # We need to check all of needs-build, as any new upload could make
1682     # something in needs-build have uninstallable deps
1683     # We also check everything in bd-uninstallable, as any new upload could
1684     # make that work again
1685     my (%interesting_packages, %interesting_packages_depwait);
1686     my $db = get_all_source_info();
1687     foreach $key (keys %$db) {
1688         my $pkg = $db->{$key};
1689         if (defined $pkg and isin($pkg->{'state'}, qw/Needs-Build BD-Uninstallable/) and not defined ($distributions{$distribution}{noadw})) {
1690                 $interesting_packages{$key} = undef;
1691         }
1692         if (defined $pkg and isin($pkg->{'state'}, qw/Dep-Wait/) and defined $args->{'depwait'}) {
1693                 $interesting_packages_depwait{$key} = undef;
1694                 # we always check for BD-Uninstallability in depwait - could be that depwait is satisfied but package is uninstallable
1695                 $interesting_packages{$key} = undef unless defined ($distributions{$distribution}{noadw});
1696         }
1697     }
1698     
1699     #print "I would look at these sources with edos-depcheck:\n";
1700     #print join " ", keys %interesting_packages,"\n";
1701     return unless %interesting_packages || %interesting_packages_depwait;
1702
1703     my $tmpfile_pattern = "/tmp/wanna-build-interesting-sources-$distribution.$$-XXXXX";
1704     use File::Temp qw/ tempfile /;
1705     my ($SOURCES, $tmpfile) = tempfile( $tmpfile_pattern, UNLINK => 1 );
1706     for my $key (keys %interesting_packages) {
1707         my $pkg = $db->{$key};
1708         # we print the source files as binary ones (with "source---"-prefixed),
1709         # so we can try if these "binary" packages are installable.
1710         # If such a "binary" package is installable, the corresponding source package is buildable.
1711         print $SOURCES "Package: source---$key\n";
1712         print $SOURCES "Version: $pkg->{'version'}\n";
1713         my $t = &filterarch($srcs->{$key}{'dep'} || $srcs->{$key}{'depends'}, $arch);
1714         my $tt = &filterarch($pkg->{'extra_depends'}, $arch);
1715         $t = $t ? ($tt ? "$t, $tt" : $t) : $tt;
1716         print $SOURCES "Depends: $t\n" if $t;
1717         my $u = &filterarch($srcs->{$key}{'conf'} || $srcs->{$key}{'conflicts'}, $arch);
1718         my $uu = &filterarch($pkg->{'extra_conflicts'}, $arch);
1719         $u = $u ? ($uu ? "$u, $uu" : $u) : $uu;
1720         print $SOURCES "Conflicts: $u\n" if $u;
1721         print $SOURCES "Architecture: all\n";
1722         print $SOURCES "\n";
1723     }
1724     for my $key (keys %interesting_packages_depwait) {
1725         my $pkg = $db->{$key};
1726         # we print the source files as binary ones (with "depwait---"-prefixed),
1727         # so we can try if these "binary" packages are installable.
1728         # If such a "binary" package is installable, the corresponding source package goes out of depwait
1729         print $SOURCES "Package: depwait---$key\n";
1730         print $SOURCES "Version: $pkg->{'version'}\n";
1731         print $SOURCES "Depends: $pkg->{'depends'}\n";
1732         print $SOURCES "Architecture: all\n";
1733         print $SOURCES "\n";
1734     }
1735     close $SOURCES;
1736
1737     my $edosresults = wb_edos_builddebcheck({'arch' => $args->{'arch'}, 'pkgs' => $args->{'pkgs'}, 'src' => $tmpfile});
1738     if (ref($edosresults) eq 'HASH') {
1739         foreach my $key (grep { $_ !~ /^depwait---/ } keys %$edosresults) {
1740                 if (exists $interesting_packages{$key}) {
1741                     $interesting_packages{$key} = $edosresults->{$key};
1742                 } else {
1743                     #print "TODO: edos reported a package we do not care about now\n" if $verbose;
1744                 }
1745         }
1746         foreach my $key (grep { $_ =~ /^depwait---/ } keys %$edosresults) {
1747                 $key =~ /^depwait---(.*)/ and $key = $1;
1748                 if (exists $interesting_packages_depwait{$key}) {
1749                     $interesting_packages_depwait{$key} = $edosresults->{"depwait---".$key};
1750                 } else {
1751                     #print "TODO: edos reported a package we do not care about now\n" if $verbose;
1752                 }
1753         }
1754     } else {
1755         # if $edosresults isn't an hash, then something went wrong and the string is the error message
1756         print "ERROR: Could not run wb-edos-builddebcheck. I am continuing, assuming\n" .
1757              "all packages have installable build-dependencies."
1758     }
1759     
1760     unlink( $tmpfile );
1761
1762     for my $key (keys %interesting_packages) {
1763         next if defined $interesting_packages_depwait{$key};
1764         my $pkg = $db->{$key};
1765         my $change = 
1766             (defined $interesting_packages{$key} and $pkg->{'state'} eq 'Needs-Build') ||
1767             (not defined $interesting_packages{$key} and $pkg->{'state'} eq 'BD-Uninstallable');
1768         my $problemchange = ($interesting_packages{$key}//"") ne ($pkg->{'bd_problem'}//"");
1769         if ($change) {
1770             if (defined $interesting_packages{$key}) {
1771                     change_state( \$pkg, 'BD-Uninstallable' );
1772                     $pkg->{'bd_problem'} = $interesting_packages{$key};
1773             } else {
1774                     change_state( \$pkg, 'Needs-Build' );
1775             }
1776         }
1777         if ($problemchange) {
1778             if (defined $interesting_packages{$key}) {
1779                     $pkg->{'bd_problem'} = $interesting_packages{$key};
1780             }   
1781         }
1782         if ($change) {
1783             log_ta( $pkg, "--merge-all (edos)" ) unless $simulate;
1784             print "edos-builddebchange changed state of ${key}_$pkg->{'version'} ($args->{'arch'}) to $pkg->{'state'}\n" if $verbose || $simulate;
1785         }
1786         if ($change || $problemchange) {
1787             update_source_info($pkg) unless $simulate;
1788         }
1789     }
1790
1791     for my $key (keys %interesting_packages_depwait) {
1792         if ($interesting_packages_depwait{$key}) {
1793             print "dep-wait for $key ($args->{'arch'}) not fullfiled yet\n" if $verbose || $simulate;
1794             next;
1795         }
1796         my $pkg = $db->{$key};
1797             if (defined $interesting_packages{$key}) {
1798                     change_state( \$pkg, 'BD-Uninstallable' );
1799                     $pkg->{'bd_problem'} = $interesting_packages{$key};
1800             } else {
1801                     change_state( \$pkg, 'Needs-Build' );
1802             }
1803         log_ta( $pkg, "edos_depcheck: depwait" ) unless $simulate;
1804         update_source_info($pkg) unless $simulate;
1805         print "edos-builddebchange changed state of ${key}_$pkg->{'version'} ($args->{'arch'}) from dep-wait to $pkg->{'state'}\n" if $verbose || $simulate;
1806     }
1807 }
1808
1809 sub usage {
1810         my $prgname;
1811         ($prgname = $0) =~ s,^.*/,,;
1812         print <<"EOF";
1813 Usage: $prgname <options...> <package_version...>
1814 Options:
1815     -v, --verbose: Verbose execution.
1816     -A arch: Architecture this operation is for.
1817     --take: Take package for building [default operation]
1818     -f, --failed: Record in database that a build failed due to
1819         deficiencies in the package (that aren't fixable without a new
1820         source version).
1821     -u, --uploaded: Record in the database that the packages build
1822         correctly and were uploaded.
1823     -n, --no-build: Record in the database that the packages aren't
1824         desired for this architecture and shouldn't appear in listings even
1825         if they're out of date.
1826     --dep-wait: Record in the database that the packages are waiting
1827         for some source dependencies to become available
1828     --binNMU num: Schedule a re-build of the package with unchanged source, but
1829          a new version number (source-version + "+b<num>")
1830     --give-back: Mark a package as ready to build that is in state Building,
1831          Built or Build-Attempted. To give back a package in state Failed, use
1832          --override. This command will actually put the package in state
1833          BD-Uninstallable, until the installability of its Build-Dependencies
1834          were verified. This happens at each call of --merge-all, usually
1835          every 15 minutes.
1836     -i SRC_PKG, --info SRC_PKG: Show information for source package
1837     -l STATE, --list=STATE: List all packages in state STATE; can be
1838         combined with -U to restrict to a specific user; STATE can
1839         also be 'all'
1840     -m MESSAGE, --message=MESSAGE: Give reason why package failed or
1841         source dependency list
1842         (used with -f, --dep-wait, and --binNMU)
1843     -o, --override: Override another user's lock on a package, i.e.
1844         take it over; a notice mail will be sent to the other user
1845     -U USER, --user=USER: select user name for which listings should
1846         apply, if not given all users are listed.
1847         if -l is missing, set user name to be entered in db; usually
1848         automatically choosen
1849     --import FILE: Import database from a ASCII file FILE
1850     --export FILE: Export database to a ASCII file FILE
1851
1852 The remaining arguments (depending on operation) usually start with
1853 "name_version", the trailer is ignored. This allows to pass the names
1854 of .dsc files, for which file name completion can be used.
1855 --merge-packages and --merge-quinn take Package/quin--diff file names
1856 on the command line or read stdin. --list needs nothing more on the
1857 command line. --info takes source package names (without version).
1858 EOF
1859         exit 1;
1860 }
1861
1862 sub pkg_version_eq {
1863         my $pkg = shift;
1864         my $version = shift;
1865
1866         return 1
1867                if (defined $pkg->{'binary_nmu_version'}) and 
1868                version_compare(binNMU_version($pkg->{'version'},
1869                         $pkg->{'binary_nmu_version'}),'=', $version);
1870         return version_compare( $pkg->{'version'}, "=", $version );
1871 }
1872
1873 sub table_name {
1874         return '"' . $arch . $schema_suffix . '".packages';
1875 }
1876
1877 sub user_table_name {
1878         return '"' . $arch . $schema_suffix . '".users';
1879 }
1880
1881 sub transactions_table_name {
1882         return '"' . $arch . $schema_suffix . '".transactions';
1883 }
1884
1885 sub pkg_history_table_name {
1886         return '"' . $arch . $schema_suffix . '".pkg_history';
1887 }
1888
1889 sub get_readonly_source_info {
1890         my $name = shift;
1891         # SELECT FLOOR(EXTRACT('epoch' FROM age(localtimestamp, '2010-01-22  23:45')) / 86400) -- change to that?
1892         my $q = "SELECT rel, priority, state_change, permbuildpri, section, buildpri, failed, state, binary_nmu_changelog, bd_problem, version, package, distribution, installed_version, notes, builder, old_failed, previous_state, binary_nmu_version, depends, extract(days from date_trunc('days', now() - state_change)) as state_days, floor(extract(epoch from now()) - extract(epoch from state_change)) as state_time"
1893             . ", (SELECT max(build_time) FROM ".pkg_history_table_name()." WHERE pkg_history.package = packages.package AND pkg_history.distribution = packages.distribution AND result = 'successful') AS successtime"
1894             . ", (SELECT max(build_time) FROM ".pkg_history_table_name()." WHERE pkg_history.package = packages.package AND pkg_history.distribution = packages.distribution ) AS anytime"
1895             . ", extra_depends, extra_conflicts, build_arch_all"
1896             . " FROM " .  table_name()
1897             . ' WHERE package = ? AND distribution = ?';
1898         my $pkg = $dbh->selectrow_hashref( $q,
1899                 undef, $name, $distribution);
1900         return $pkg;
1901 }
1902
1903 sub get_source_info {
1904         my $name = shift;
1905         return get_readonly_source_info($name) if $simulate;
1906         my $pkg = $dbh->selectrow_hashref('SELECT *, extract(days from date_trunc(\'days\', now() - state_change)) as state_days, floor(extract(epoch from now()) - extract(epoch from state_change)) as state_time FROM ' . 
1907                 table_name() . ' WHERE package = ? AND distribution = ?' .
1908                 ' FOR UPDATE',
1909                 undef, $name, $distribution);
1910         return $pkg;
1911 }
1912
1913 sub get_all_source_info {
1914         my %options = @_;
1915
1916         my $q = "SELECT rel, priority, state_change, permbuildpri, section, buildpri, failed, state, binary_nmu_changelog, bd_problem, version, package, distribution, installed_version, notes, builder, old_failed, previous_state, binary_nmu_version, depends, extract(days from date_trunc('days', now() - state_change)) as state_days, floor(extract(epoch from now()) - extract(epoch from state_change)) as state_time"
1917 #            . ", (SELECT max(build_time) FROM ".pkg_history_table_name()." WHERE pkg_history.package = packages.package AND pkg_history.distribution = packages.distribution AND result = 'successful') AS successtime"
1918 #            . ", (SELECT max(build_time) FROM ".pkg_history_table_name()." WHERE pkg_history.package = packages.package AND pkg_history.distribution = packages.distribution ) AS anytime"
1919             . ", successtime.build_time as successtime, anytime.build_time as anytime, extra_depends, extra_conflicts"
1920             . " FROM " .  table_name()
1921                 . " left join ( "
1922                   . "select distinct on (package, distribution) build_time, package, distribution from ".pkg_history_table_name()." where result = 'successful' order by package, distribution, timestamp "
1923                   . " ) as successtime using (package, distribution) "
1924                 . " left join ( "
1925                   . "select distinct on (package, distribution) build_time, package, distribution from ".pkg_history_table_name()." order by package, distribution, timestamp desc"
1926                   . " ) as anytime using (package, distribution) "
1927             . " WHERE TRUE ";
1928         my @args = ();
1929         if ($distribution) {
1930             my @dists = split(/[, ]+/, $distribution);
1931             $q .= ' AND ( distribution = ? '.(' OR distribution = ? ' x $#dists).' )';
1932             foreach my $d ( @dists ) {
1933                 push @args, ($d);
1934             }
1935         }
1936         if ($options{state} && uc($options{state}) ne "ALL") {
1937                 $q .= ' AND upper(state) = ? ';
1938                 push @args, uc($options{state});
1939         }
1940
1941         if ($options{user} && uc($options{state}) ne "NEEDS-BUILD") { # if it's NEEDS-BUILD, we don't look at users
1942                 #this basically means "this user, or no user at all":
1943                 $q .= " AND (builder = ? OR upper(state) = 'NEEDS-BUILD')";
1944                 push @args, $options{user};
1945         }
1946
1947         if ($options{list_min_age} && $options{list_min_age} > 0) {
1948                 $q .= ' AND age(state_change) > ? ';
1949                 push @args, $options{list_min_age} . " days";
1950         }
1951
1952         if ($options{list_min_age} && $options{list_min_age} < 0) {
1953                 $q .= ' AND age(state_change) < ? ';
1954                 push @args, -$options{list_min_age} . " days";
1955         }
1956
1957         my $db;
1958         if (($options{multisuite}) && (!$distribution || $distribution =~ / /)) {
1959             # return packages in multiple suites - only for those functions marked as clean for that api change
1960             $db = $dbh->selectall_hashref($q, [qw<package distribution>], undef, @args);
1961             my $dbk = {};
1962             foreach my $p ( keys %$db ) {
1963                 foreach my $d (keys %{$db->{$p}}) {
1964                     $dbk->{"$p/$d"} = $db->{$p}->{$d};
1965                 }
1966             }
1967             $db = $dbk;
1968         } else {
1969             $db = $dbh->selectall_hashref($q, [qw<package>], undef, @args);
1970         }
1971         return $db;
1972 }
1973
1974 sub show_distribution_architectures {
1975         my $q = 'SELECT distribution, spacecat_all(architecture) AS architectures '.
1976                 'FROM distribution_architectures '.
1977                 'GROUP BY distribution';
1978         my $rows = $dbh->selectall_hashref($q, 'distribution');
1979         foreach my $name (keys %$rows) {
1980                 print $name.': '.$rows->{$name}->{'architectures'}."\n";
1981         }
1982 }
1983
1984 sub show_distribution_aliases {
1985         foreach my $alias (keys %distribution_aliases) {
1986                 print $alias.': '.$distribution_aliases{$alias}."\n";
1987         }
1988 }
1989
1990 sub update_source_info {
1991         my $pkg = shift;
1992         $pkg->{'extra_depends'} = $extra_depends if defined $extra_depends;
1993         undef $pkg->{'extra_depends'} unless $pkg->{'extra_depends'};
1994         $pkg->{'extra_conflicts'} = $extra_conflicts if defined $extra_conflicts;
1995         undef $pkg->{'extra_conflicts'} unless $pkg->{'extra_conflicts'};
1996         print Dumper $pkg if $verbose and $simulate;
1997         return if $simulate;
1998
1999         my $pkg2 = get_source_info($pkg->{'package'});
2000         if (! defined $pkg2)
2001         {
2002                 add_source_info($pkg);
2003         }
2004
2005         $dbh->do('UPDATE ' . table_name() . ' SET ' .
2006                         'version = ?, ' .
2007                         'state = ?, ' .
2008                         'section = ?, ' .
2009                         'priority = ?, ' .
2010                         'installed_version = ?, ' .
2011                         'previous_state = ?, ' .
2012                         (($pkg->{'do_state_change'}) ? "state_change = now()," : "").
2013                         'notes = ?, ' .
2014                         'builder = ?, ' .
2015                         'failed = ?, ' .
2016                         'old_failed = ?, ' .
2017                         'binary_nmu_version = ?, ' .
2018                         'binary_nmu_changelog = ?, ' .
2019                         'permbuildpri = ?, ' .
2020                         'buildpri = ?, ' .
2021                         'depends = ?, ' .
2022                         'rel = ?, ' .
2023                         'extra_depends = ?, ' .
2024                         'extra_conflicts = ?, ' .
2025                         'bd_problem = ? ' .
2026                         'WHERE package = ? AND distribution = ?',
2027                 undef,
2028                 $pkg->{'version'},
2029                 $pkg->{'state'},
2030                 $pkg->{'section'},
2031                 $pkg->{'priority'},
2032                 $pkg->{'installed_version'},
2033                 $pkg->{'previous_state'},
2034                 $pkg->{'notes'},
2035                 $pkg->{'builder'},
2036                 $pkg->{'failed'},
2037                 $pkg->{'old_failed'},
2038                 $pkg->{'binary_nmu_version'},
2039                 $pkg->{'binary_nmu_changelog'},
2040                 $pkg->{'permbuildpri'},
2041                 $pkg->{'buildpri'},
2042                 $pkg->{'depends'},
2043                 $pkg->{'rel'},
2044                 $pkg->{'extra_depends'},
2045                 $pkg->{'extra_conflicts'},
2046                 $pkg->{'bd_problem'},
2047                 $pkg->{'package'},
2048                 $distribution) or die $dbh->errstr;
2049 }
2050
2051 sub add_source_info {
2052         return if $simulate;
2053         my $pkg = shift;
2054         $dbh->do('INSERT INTO ' . table_name() .
2055                         ' (package, distribution) values (?, ?)',
2056                 undef, $pkg->{'package'}, $distribution) or die $dbh->errstr;
2057 }
2058
2059 sub del_source_info {
2060         return if $simulate;
2061         my $name = shift;
2062         $dbh->do('DELETE FROM ' . table_name() .
2063                         ' WHERE package = ? AND distribution = ?',
2064                 undef, $name, $distribution) or die $dbh->errstr;
2065 }
2066
2067 sub get_user_info {
2068         my $name = shift;
2069         my $user = $dbh->selectrow_hashref('SELECT * FROM ' . 
2070                 user_table_name() . ' WHERE username = ? AND distribution = ?',
2071                 undef, $name, $distribution);
2072         return $user;
2073 }
2074
2075 sub update_user_info {
2076         return if $simulate;
2077         my $user = shift;
2078         $dbh->do('UPDATE ' . user_table_name() .
2079                         ' SET last_seen = now() WHERE username = ?' .
2080                         ' AND distribution = ?',
2081                 undef, $user, $distribution)
2082                 or die $dbh->errstr;
2083 }
2084
2085
2086 sub add_user_info {
2087         return if $simulate;
2088         my $user = shift;
2089         $dbh->do('INSERT INTO ' . user_table_name() .
2090                         ' (username, distribution, last_seen)' .
2091                         ' values (?, ?, now())',
2092                 undef, $user, $distribution)
2093                 or die $dbh->errstr;
2094 }
2095
2096 sub lock_table {
2097         return if $simulate;
2098         $dbh->do('LOCK TABLE ' . table_name() .
2099                 ' IN EXCLUSIVE MODE', undef) or die $dbh->errstr;
2100 }
2101
2102 sub parse_argv {
2103 # parts the array $_[0] and $_[1] and returns the sub-array (modifies the original one)
2104     my @ret = ();
2105     my $args = shift;
2106     my $separator = shift;
2107     while($args->[0] && $args->[0] ne $separator) { 
2108         push @ret, shift @$args;
2109     }
2110     shift @$args if @$args;
2111     return @ret;
2112 }
2113
2114 sub parse_all_v3 {
2115     my $srcs = shift;
2116     my $vars = shift;
2117     my $db = get_all_source_info();
2118     my $binary = $srcs->{'_binary'};
2119
2120     SRCS:
2121     foreach my $name (keys %$srcs) {
2122         next if $name eq '_binary';
2123
2124         # state = installed, out-of-date, uncompiled, packages-arch-specific, overwritten-by-arch-all, arch-not-in-arch-list, arch-all-only
2125         my $pkgs = $srcs->{$name};
2126         next if isin($pkgs->{'status'}, qw <arch-all-only>);
2127         my $pkg = $db->{$name};
2128
2129         unless ($pkg) {
2130             next SRCS if $pkgs->{'status'} eq 'packages-arch-specific';
2131             my $logstr = sprintf("merge-v3 %s %s_%s (%s, %s):", $vars->{'time'}, $name, $pkgs->{'version'}, $vars->{'arch'}, $vars->{'suite'});
2132
2133             # does at least one binary exist in the database and is more recent - if so, we're probably just outdated, ignore the source package
2134             for my $bin (@{$pkgs->{'binary'}}) {
2135                 if ($binary->{$bin} and vercmp($pkgs->{'version'}, $binary->{$bin}->{'version'}) < 0) {
2136                     print "$logstr skipped because binaries (assumed to be) overwritten\n" if $verbose || $simulate;
2137                     next SRCS;
2138                 }
2139             }
2140             $pkg->{'package'}  = $name;
2141         }
2142         $pkg->{'version'} ||= "";
2143         $pkg->{'state'} ||= "";
2144         my $logstr = sprintf("merge-v3 %s %s_%s", $vars->{'time'}, $name, $pkgs->{'version'}).
2145             ($pkgs->{'binnmu'} ? ";b".$pkgs->{'binnmu'} : "").
2146             sprintf(" (%s, %s, previous: %s", $vars->{'arch'}, $vars->{'suite'}, $pkg->{'version'}//"").
2147             ($pkg->{'binary_nmu_version'} ? ";b".$pkg->{'binary_nmu_version'} : "").
2148             ", $pkg->{'state'}".($pkg->{'notes'} ? "/".$pkg->{'notes'} : "")."):";
2149
2150         if (isin($pkgs->{'status'}, qw (installed related)) && $pkgs->{'version'} eq $pkg->{'version'} && ($pkgs->{'binnmu'}//0) < int($pkg->{'binary_nmu_version'}//0)) {
2151                 $pkgs->{'status'} = 'out-of-date';
2152         }
2153         if (isin($pkgs->{'status'}, qw <installed related arch-not-in-arch-list packages-arch-specific overwritten-by-arch-all arch-all-only>)) {
2154             my $change = 0;
2155             my $tstate = {'installed' => 'Installed', 'related' => 'Installed', 
2156                 'arch-not-in-arch-list' => 'Auto-Not-For-Us', 'packages-arch-specific' => 'Auto-Not-For-Us', 'overwritten-by-arch-all' => 'Auto-Not-For-Us', 'arch-all-only' => 'Auto-Not-For-Us',
2157                 }->{$pkgs->{'status'}};
2158             next if isin( $pkg->{'state'}, qw<Not-For-Us Failed Failed-Removed Dep-Wait Dep-Wait-Removed>) && isin( $tstate, qw<Auto-Not-For-Us>);
2159             # if the package is currently current, the status is Installed, not not-for-us
2160             if ($pkg->{'state'} ne $tstate) {
2161                 change_state( \$pkg, $tstate);
2162                 if (isin( $tstate, qw<Installed>)) {
2163                     delete $pkg->{'depends'};
2164                     delete $pkg->{'extra_depends'};
2165                     delete $pkg->{'extra_conflicts'};
2166                 }
2167                 $change++;
2168             }
2169             my $attrs = { 'version' => 'version', 'installed_version' => 'version', 'binary_nmu_version' => 'binnmu', 'section' => 'section', 'priority' => 'priority' };
2170             foreach my $k (keys %$attrs) {
2171                 next if isin( $tstate, qw<Auto-Not-For-Us>) && isin( $k, qw<installed_version binary_nmu_version>);
2172                 if (($pkg->{$k}//"") ne ($pkgs->{$attrs->{$k}}//"")) {
2173                     $pkg->{$k} = $pkgs->{$attrs->{$k}};
2174                     $change++;
2175                 }
2176             }
2177             if (isin($pkgs->{'status'}, qw <related packages-arch-specific overwritten-by-arch-all arch-not-in-arch-list arch-all-only>)) {
2178                 my $tnotes = $pkgs->{'status'};
2179                 if (($pkg->{'notes'}//"") ne $tnotes) {
2180                     $pkg->{'notes'} = $tnotes;
2181                     $change++;
2182                 }
2183             }
2184             if ($change) {
2185                 print "$logstr set to $tstate/".($pkg->{'notes'}//"")."\n" if $verbose || $simulate;
2186                 log_ta( $pkg, "--merge-v3: $tstate" ) unless $simulate;
2187                 update_source_info($pkg) unless $simulate;
2188             }
2189             next;
2190         }
2191
2192         # only uncompiled / out-of-date are left, so check if anything new
2193         if (!(isin($pkgs->{'status'}, qw (uncompiled out-of-date)))) {
2194             print "$logstr package in unknown state: $pkgs->{'status'}\n";
2195             next SRCS;
2196         }
2197         next if $pkgs->{'version'} eq $pkg->{'version'} and $pkgs->{'binnmu'}//0 >= int($pkg->{'binary_nmu_version'}//0);
2198         next if $pkgs->{'version'} eq $pkg->{'version'} and !isin( $pkg->{'state'}, qw(Installed));
2199         next if isin( $pkg->{'state'}, qw(Not-For-Us Failed-Removed));
2200
2201         if (defined( $pkg->{'state'} ) && isin( $pkg->{'state'}, qw(Building Built Build-Attempted))) {
2202             send_mail( $pkg->{'builder'},
2203                 "new version of $name (dist=$distribution)",
2204                 "As far as I'm informed, you're currently building the package $name\n".
2205                 "in version $pkg->{'version'}.\n\n".
2206                 "Now there's a new source version $pkgs->{'version'}. If you haven't finished\n".
2207                 "compiling $name yet, you can stop it to save some work.\n".
2208                 "Just to inform you...\n".
2209                 "(This is an automated message)\n" ) unless $simulate;
2210             print "$logstr new version while building $pkg->{'version'} -- sending mail to builder ($pkg->{'builder'})\n"
2211                                   if $verbose || $simulate;
2212             }
2213         change_state( \$pkg, 'Needs-Build');
2214         $pkg->{'notes'} = $pkgs->{'status'};
2215         $pkg->{'version'} = $pkgs->{'version'};
2216         $pkg->{'section'} = $pkgs->{'section'};
2217         $pkg->{'priority'} = $pkgs->{'priority'};
2218         $pkg->{'dep'} = $pkgs->{'depends'};
2219         $pkg->{'conf'} = $pkgs->{'conflicts'};
2220         delete $pkg->{'builder'};
2221         delete $pkg->{'binary_nmu_version'} unless $pkgs->{'binnmu'};
2222         delete $pkg->{'binary_nmu_changelog'} unless $pkgs->{'binnmu'};
2223         delete $pkg->{'buildpri'};
2224         log_ta( $pkg, "--merge-v3: needs-build" ) unless $simulate;
2225         update_source_info($pkg) unless $simulate;
2226         print "$logstr set to needs-builds\n" if $simulate || $verbose;
2227     }
2228
2229     foreach my $name (keys %$db) {
2230         next if $srcs->{$name};
2231         my $pkg = $db->{$name};
2232         my $logstr = "merge-v3 $vars->{'time'} ".$name."_$pkg->{'version'} ($vars->{'arch'}, $vars->{'suite'}, previous: $pkg->{'state'}):";
2233         # package disappeared - delete
2234         change_state( \$pkg, 'deleted' );
2235         log_ta( $pkg, "--merge-v3: deleted" ) unless $simulate;
2236         print "$logstr deleted from database\n" if $verbose || $simulate;
2237         del_source_info($name) unless $simulate;
2238         delete $db->{$name};
2239     }
2240 }