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