]> git.donarmstrong.com Git - wannabuild.git/blob - bin/wanna-build
1abf5dfc01911e69e30bdecfc6dc69ff30cb43ae
[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         # filter out packages for needs-build in noautobuild state - same could exist for weaknoautobuild if buildds would tell us what they do
1189         if (($state eq 'needs-build') && ($yamlmap->{"restrict"}) && ($yamlmap->{"restrict"}{"noautobuild"})) {
1190             foreach my $key (@{$yamlmap->{"restrict"}{"noautobuild"}}) {
1191                 foreach my $k (keys %$key) {
1192                     @list = grep { $_->{'package'} ne $k } @list;
1193                 }
1194             }
1195         }
1196
1197         # first adjust ownprintformat, then set printformat accordingly
1198         $printformat ||= $yamlmap->{"format"}{$ownprintformat} if $ownprintformat;
1199         $printformat ||= $yamlmap->{"format"}{"default"}{$state};
1200         $printformat ||= $yamlmap->{"format"}{"default"}{"default"};
1201         undef $printformat if ($ownprintformat && $ownprintformat eq 'none');
1202
1203         foreach my $pkg (sort sort_list_func @list) {
1204                 no warnings;
1205                 if ($printformat) {
1206                     print print_format($printformat, $pkg, {'cnt' => $cnt, 'scnt' => \%scnt})."\n";
1207                     ++$cnt;
1208                     $scnt{$pkg->{'state'}}++;
1209                     next;
1210                 }
1211                 print print_format("%c/%p_%v", $pkg, {});
1212                 print print_format(": %S", $pkg, {})
1213                         if $state eq "all";
1214                 print print_format("%{ by }u%u", $pkg, {})
1215                         if $pkg->{'state'} ne "Needs-Build";
1216                 print print_format(" [%X]\n", $pkg, {});
1217                 print "  Reasons for failing:\n",
1218                           join("\n    ",split("\n",$pkg->{'failed'})), "\n"
1219                         if $pkg->{'state'} =~ /^Failed/;
1220                 print "  Dependencies: $pkg->{'depends'}\n"
1221                         if $pkg->{'state'} eq "Dep-Wait";
1222                 print "  Reasons for BD-Uninstallable:\n    ",
1223                           join("\n    ",split("\n",$pkg->{'bd_problem'})), "\n"
1224                         if $pkg->{'state'} eq "BD-Uninstallable";
1225                 print "  Previous state was $pkg->{'previous_state'}\n"
1226                         if $verbose && $pkg->{'previous_state'};
1227                 print "  No previous state recorded\n"
1228                         if $verbose && !$pkg->{'previous_state'};
1229                 print "  State changed at $pkg->{'state_change'}\n"
1230                         if $verbose && $pkg->{'state_change'};
1231                 print "  Previous state $pkg->{'previous_state'} left $pkg->{'state_time'} ago\n"
1232                         if $verbose && $pkg->{'previous_state'};
1233                 print "  Previous failing reasons:\n    ",
1234                       join("\n    ",split("\n",$pkg->{'old_failed'})), "\n"
1235                         if $verbose && $pkg->{'old_failed'};
1236                 ++$cnt;
1237                 $scnt{$pkg->{'state'}}++ if $state eq "all";
1238         }
1239         if ($state eq "all" && !$printformat) {
1240                 foreach (sort keys %scnt) {
1241                         print "Total $scnt{$_} package(s) in state $_.\n";
1242                 }
1243         }
1244         print "Total $cnt package(s)\n" unless $printformat;
1245         
1246 }
1247
1248 sub info_packages {
1249         my( $name, $pkg, $key, $dist );
1250         my @firstkeys = qw(package version builder state section priority
1251                                            installed_version previous_state state_change);
1252         my @dists = $info_all_dists ? keys %distributions : ($distribution);
1253         my %beautykeys = ( 'package' => 'Package', 'version' => 'Version', 'builder' => 'Builder',
1254                 'state' => 'State', 'section' => 'Section', 'priority' => 'Priority',
1255                 'installed_version' => 'Installed-Version', 'previous_state' => 'Previous-State',
1256                 'state_change' => 'State-Change',
1257                 'bd_problem' => 'BD-Problem', 
1258                 'binary_nmu_changelog' => 'Binary-NMU-Changelog', 'binary_nmu_version' => 'Binary-NMU-Version',
1259                 'buildpri' => 'BuildPri', 'depends' => 'Depends', 'failed' => 'Failed',
1260                 'notes' => 'Notes',
1261                 'distribution' => 'Distribution', 'old_failed' => 'Old-Failed',
1262                 'permbuildpri' => 'PermBuildPri', 'rel' => 'Rel',
1263                 'calprio' => 'CalculatedPri', 'state_days' => 'State-Days', 'state_time' => 'State-Time',
1264                 'successtime' => 'Success-build-time',
1265                 'anytime' => 'Build-time',
1266                 'extra_depends' => 'Extra-Dependencies',
1267                 'extra_conflicts' => 'Extra-Conflicts',
1268                 'build_arch_all' => 'Build-Arch-All',
1269                          );
1270         
1271         foreach $name (@_) {
1272                 $name =~ s/_.*$//; # strip version
1273                 foreach $dist (@dists) {
1274                         my $pname = "$name" . ($info_all_dists ? "($dist)" : "");
1275                         
1276                         $pkg = get_readonly_source_info($name);
1277                         if (!defined( $pkg )) {
1278                                 print "$pname: not registered\n";
1279                                 next;
1280                         }
1281                         $pkg = calculate_prio($pkg);
1282
1283                         print "$pname:\n";
1284                         foreach $key (@firstkeys) {
1285                                 next if !defined $pkg->{$key};
1286                                 my $val = $pkg->{$key};
1287                                 chomp( $val );
1288                                 $val = "\n$val" if isin( $key, qw(Failed Old-Failed));
1289                                 $val =~ s/\n/\n    /g;
1290                                 my $print_key = $key;
1291                                 $print_key = $beautykeys{$print_key} if $beautykeys{$print_key};
1292                                 printf "  %-20s: %s\n", $print_key, $val;
1293                         }
1294                         foreach $key (sort keys %$pkg) {
1295                                 next if isin( $key, @firstkeys );
1296                                 my $val = $pkg->{$key};
1297                                 next if !defined($val);
1298                                 chomp( $val );
1299                                 $val = "\n$val" if isin( $key, qw(Failed Old-Failed));
1300                                 $val =~ s/\n/\n    /g;
1301                                 my $print_key = $key;
1302                                 $print_key = $beautykeys{$print_key} if $beautykeys{$print_key};
1303                                 printf "  %-20s: %s\n", $print_key, $val;
1304                         }
1305                 }
1306         }
1307 }
1308
1309 sub forget_packages {
1310         no warnings;
1311         my( $name, $pkg, $key, $data );
1312         
1313         foreach $name (@_) {
1314                 $name =~ s/_.*$//; # strip version
1315                 $pkg = get_source_info($name);
1316                 if (!defined( $pkg )) {
1317                         print "$name: not registered\n";
1318                         next;
1319                 }
1320
1321                 $data = "";
1322                 foreach $key (sort keys %$pkg) {
1323                         my $val = $pkg->{$key};
1324                         chomp( $val );
1325                         $val =~ s/\n/\n /g;
1326                         $data .= sprintf "  %-20s: %s\n", $key, $val;
1327                 }
1328                 send_mail( $conf::db_maint,
1329                                    "$name deleted from DB " . table_name() . " " . $distribution,
1330                                    "The package '$name' has been deleted from the database ".
1331                                    "by $user.\n\n".
1332                                    "Data registered about the deleted package:\n".
1333                                    "$data\n" ) if $conf::db_maint;
1334                 change_state( \$pkg, 'deleted' );
1335                 log_ta( $pkg, "--forget" );
1336                 del_source_info($name);
1337                 print "$name: deleted from database\n" if $verbose;
1338         }
1339 }
1340
1341 sub forget_users {
1342         $dbh->do("DELETE from " . user_table_name() . 
1343                 " WHERE distribution = ?", undef, $distribution) or die $dbh->errstr;
1344 }
1345
1346 sub read_db {
1347         my $file = shift;
1348
1349         print "Reading ASCII database from $file..." if $verbose >= 1;
1350         open( my $fh, '<', $file ) or
1351                 die "Can't open database $file: $!\n";
1352
1353         local($/) = ""; # read in paragraph mode
1354         while( <$fh> ) {
1355                 my( %thispkg, $name );
1356                 s/[\s\n]+$//;
1357                 s/\n[ \t]+/\376\377/g;  # fix continuation lines
1358                 s/\376\377\s*\376\377/\376\377/og;
1359   
1360                 while( /^(\S+):[ \t]*(.*)[ \t]*$/mg ) {
1361                         my ($key, $val) = ($1, $2);
1362                         $key =~ s/-/_/g;
1363                         $key =~ tr/A-Z/a-z/;
1364                         $val =~ s/\376\377/\n/g;
1365                         $thispkg{$key} = $val;
1366                 }
1367                 check_entry( \%thispkg );
1368                 # add to db
1369                 if (exists($thispkg{'package'})) {
1370                         update_source_info(\%thispkg);
1371                 }
1372                 elsif(exists($thispkg{'user'})) {
1373                         # user in import, username in database.
1374                         $dbh->do('INSERT INTO ' . user_table_name() .
1375                                         ' (username, distribution, last_seen)' .
1376                                         ' values (?, ?, ?)',
1377                                 undef, $thispkg{'user'}, $distribution,
1378                                 $thispkg{'last_seen'})
1379                                 or die $dbh->errstr;
1380                  }
1381         }
1382         close( $fh );
1383         print "done\n" if $verbose >= 1;
1384 }
1385
1386 sub check_entry {
1387         my $pkg = shift;
1388         my $field;
1389
1390         return if $op_mode eq "manual-edit"; # no checks then
1391         
1392         # check for required fields
1393         if (exists $pkg->{'user'}) {
1394                 return;
1395         }
1396         if (!exists $pkg->{'package'}) {
1397                 print STDERR "Bad entry: ",
1398                           join( "\n", map { "$_: $pkg->{$_}" } keys %$pkg ), "\n";
1399                 die "Database entry lacks package or username field\n";
1400         }
1401         # if no State: field, generate one (for old db compat)
1402         if (!exists($pkg->{'state'})) {
1403                 $pkg->{'state'} =
1404                         exists $pkg->{'failed'} ? 'Failed' : 'Building';
1405         }
1406         if (!exists $pkg->{'version'} and $pkg->{'state'} ne 'Not-For-Us') {
1407                 die "Database entry for $pkg->{'package'} lacks Version: field\n";
1408         }
1409         # check state field
1410         die "Bad state $pkg->{'state'} of package $pkg->{Package}\n"
1411                 if !isin( $pkg->{'state'},
1412                                   qw(Needs-Build Building Built Build-Attempted Uploaded Installed Dep-Wait Dep-Wait-Removed
1413                                          Failed Failed-Removed Not-For-Us BD-Uninstallable Auto-Not-For-Us
1414                                          ) );
1415 }
1416
1417 sub export_db {
1418         my $file = shift;
1419         my($name,$pkg,$key);
1420
1421         print "Writing ASCII database to $file..." if $verbose >= 1;
1422         open( my $fh, '>', $file ) or
1423                 die "Can't open export $file: $!\n";
1424
1425         my $db = get_all_source_info();
1426         foreach $name (keys %$db) {
1427                 next if $name =~ /^_/;
1428                 my $pkg = $db->{$name};
1429                 foreach $key (keys %{$pkg}) {
1430                         my $val = $pkg->{$key};
1431                         next if !defined($val);
1432                         $val =~ s/\n*$//;
1433                         $val =~ s/^/ /mg;
1434                         $val =~ s/^ +$/ ./mg;
1435                         print $fh "$key: $val\n";
1436                 }
1437                 print $fh "\n";
1438        }
1439        close( $fh );
1440        print "done\n" if $verbose >= 1;
1441 }
1442
1443 sub change_state {
1444         my $pkgr = shift;
1445         my $pkg = $$pkgr;
1446         my $newstate = shift;
1447         my $state = \$pkg->{'state'};
1448         
1449         $newstate = 'Needs-Build' if $newstate eq 'BD-Uninstallable' && $distributions{$distribution}{noadw};
1450         return if defined($$state) and $$state eq $newstate;
1451         $pkg->{'previous_state'} = $$state if defined($$state);
1452         $pkg->{'state_change'} = $curr_date;
1453         $pkg->{'do_state_change'} = 1;
1454
1455         if (defined($$state) and $$state eq 'Failed') {
1456                 $pkg->{'old_failed'} =
1457                         "-"x20 . " $pkg->{'version'} " . "-"x20 . "\n" .
1458                         ($pkg->{'failed'} // ""). "\n" .
1459                         ($pkg->{'old_failed'} // "");
1460                 delete $pkg->{'failed'};
1461         }
1462         delete $pkg->{'bd_problem'} if ($$state//"") eq 'BD-Uninstallable';
1463         $pkg->{'bd_problem'} = "Installability of build dependencies not tested yet" if $newstate eq 'BD-Uninstallable';
1464         $$state = $newstate;
1465 }
1466
1467 sub log_ta {
1468         my $pkg = shift;
1469         my $action = shift;
1470         my $dist = $distribution;
1471         my $str;
1472         my $prevstate;
1473
1474         $prevstate = $pkg->{'previous_state'};
1475         $str = "$action($dist): $pkg->{'package'}_$pkg->{'version'} ".
1476                    "changed from $prevstate to $pkg->{'state'} ".
1477                    "by $real_user as $user";
1478         
1479         if ($simulate) {
1480             printf "update transactions: %s %s %s %s %s %s %s %s\n",
1481                 $pkg->{'package'}, $distribution,
1482                 $pkg->{'version'}, $action, $prevstate, $pkg->{'state'},
1483                 $real_user, $user;
1484             return;
1485         }
1486         $dbh->do('INSERT INTO ' . transactions_table_name() .
1487                         ' (package, distribution, version, action, ' .
1488                         ' prevstate, state, real_user, set_user, time) ' .
1489                         ' values (?, ?, ?, ?, ?, ?, ?, ?, ?)',
1490                 undef, $pkg->{'package'}, $distribution,
1491                 $pkg->{'version'}, $action, $prevstate, $pkg->{'state'},
1492                 $real_user, $user, 'now()') or die $dbh->errstr;
1493
1494         if (!($prevstate eq 'Failed' && $pkg->{'state'} eq 'Failed')) {
1495                 $str .= " (with --override)"
1496                         if $opt_override;
1497                 $mail_logs .= "$str\n";
1498         }
1499 }
1500
1501
1502 sub send_mail {
1503         my $to = shift;
1504         my $subject = shift;
1505         my $text = shift;
1506
1507         my $from = $conf::db_maint;
1508         my $domain = $conf::buildd_domain;
1509
1510         $from .= "\@$domain" if $from !~ /\@/;
1511
1512         $to .= '@' . $domain if $to !~ /\@/;
1513         $text =~ s/^\.$/../mg;
1514         local $SIG{'PIPE'} = 'IGNORE';
1515         open( my $pipe,  '|-', "$conf::mailprog -oem $to" )
1516                 or die "Can't open pipe to $conf::mailprog: $!\n";
1517         chomp $text;
1518         print $pipe "From: $from\n";
1519         print $pipe "Subject: $subject\n\n";
1520         print $pipe "$text\n";
1521         close( $pipe );
1522 }
1523
1524 # for parsing input to dep-wait
1525 sub parse_deplist {
1526     my $deps = shift;
1527     my $verify = shift;
1528     my %result;
1529     
1530     return $verify ? 0 : \%result unless $deps;
1531     foreach (split( /\s*,\s*/, $deps )) {
1532         if ($verify) {
1533             # verification requires > starting prompts, no | crap
1534             if (!/^(\S+)\s*(\(\s*(>(?:[>=])?)\s*(\S+)\s*\))?\s*$/) {
1535                 return 0;
1536             }
1537             next;
1538         }
1539         my @alts = split( /\s*\|\s*/, $_ );
1540         # Anything with an | is ignored, as it can be configured on a
1541         # per-buildd basis what will be installed
1542         next if $#alts != 0;
1543         $_ = shift @alts;
1544
1545         if (!/^(\S+)\s*(\(\s*(>=|=|==|>|>>|<<|<=)\s*(\S+)\s*\))?\s*$/) {
1546             warn( "parse_deplist: bad dependency $_\n" );
1547             next;
1548         }
1549         my($dep, $rel, $relv) = ($1, $3, $4);
1550         $rel = ">>" if defined($rel) and $rel eq ">";
1551         $result{$dep}->{'package'} = $dep;
1552         if ($rel && $relv) {
1553             $result{$dep}->{'rel'} = $rel;
1554             $result{$dep}->{'version'} = $relv;
1555         }
1556     }
1557     return 1 if $verify;
1558     return \%result;
1559 }
1560
1561 sub build_deplist {
1562         my $list = shift;
1563         my($key, $result);
1564         
1565         foreach $key (keys %$list) {
1566                 $result .= ", " if $result;
1567                 $result .= $key;
1568                 $result .= " ($list->{$key}->{'rel'} $list->{$key}->{'version'})"
1569                         if $list->{$key}->{'rel'} && $list->{$key}->{'version'};
1570         }
1571         return $result;
1572 }
1573
1574
1575 sub filterarch {
1576     return "" unless $_[0];
1577     return Dpkg::Deps::deps_parse($_[0], ("reduce_arch" => 1, "host_arch" => $_[1]))->output();
1578 }
1579
1580 sub wb_edos_builddebcheck {
1581 # Copyright (C) 2008 Ralf Treinen <treinen@debian.org>
1582 # This program is free software: you can redistribute it and/or modify it under
1583 # the terms of the GNU General Public License as published by the Free Software
1584 # Foundation, version 2 of the License.
1585 # integrated into wanna-builds code by Andreas Barth 2010
1586
1587     my $args = shift;
1588     my $sourceprefix="source---";
1589     my $architecture=$args->{'arch'};
1590     my $edosoptions = "-failures -explain -quiet";
1591     my $packagefiles = $args->{'pkgs'};
1592     my $sourcesfile = $args->{'src'};
1593
1594     my $packagearch="";
1595     foreach my $packagefile (@$packagefiles) {
1596         open(my $fh,'<', $packagefile);
1597         while (<$fh>) {
1598             next unless /^Architecture/;
1599             next if /^Architecture:\s*all/;
1600             /Architecture:\s*([^\s]*)/;
1601             if ($packagearch eq "") {
1602                 $packagearch = $1;
1603             } elsif ( $packagearch ne $1) {
1604                 return "Package file contains different architectures: $packagearch, $1";
1605             }
1606         }
1607         close $fh;
1608     }
1609
1610     if ( $architecture eq "" ) {
1611         if ( $packagearch eq "" ) {
1612         return "No architecture option given, " .
1613             "and no non-all architecture found in the Packages file";
1614         } else {
1615             $architecture = $packagearch;
1616         }
1617     } else {
1618         if ( $packagearch ne "" & $architecture ne $packagearch) {
1619             return "Architecture option is $architecture ".
1620             "but the package file contains architecture $packagearch";
1621         }   
1622     }
1623
1624     print "calling: edos-debcheck $edosoptions < $sourcesfile ".join('', map {" -I ".$_ } @$packagefiles)."\n";
1625     open(my $result_cmd, '-|',
1626         "edos-debcheck $edosoptions < $sourcesfile ".join('', map {" -I ".$_ } @$packagefiles));
1627
1628     my $explanation="";
1629     my $result={};
1630     my $binpkg="";
1631
1632     while (<$result_cmd>) {
1633 # source---pulseaudio (= 0.9.15-4.1~bpo50+1): FAILED
1634 #   source---pulseaudio (= 0.9.15-4.1~bpo50+1) depends on missing:
1635 #   - libltdl-dev (>= 2.2.6a-2)
1636 # source---libcanberra (= 0.22-1~bpo50+1): FAILED
1637 #   source---libcanberra (= 0.22-1~bpo50+1) depends on missing:
1638 #   - libltdl-dev
1639 #   - libltdl7-dev (>= 2.2.6)
1640
1641         if (/^\s+/) {
1642             s/^(\s*)$sourceprefix(.*)depends on/$1$2build-depends on/o;
1643             s/^(\s*)$sourceprefix(.*) and (.*) conflict/$1$2 build-conflicts with $3/o;
1644             $explanation .= $_;
1645         } else {
1646             if (/^$sourceprefix(.*) \(.*\): FAILED/o) {
1647                 $result->{$binpkg} = $explanation if $binpkg;
1648                 $explanation = "";
1649                 $binpkg = $1;
1650             } elsif (/^(depwait---.*) \(.*\): FAILED/o) {
1651                 $result->{$binpkg} = $explanation if $binpkg;
1652                 $explanation = "";
1653                 $binpkg = $1;
1654             } else { # else something broken is happening
1655                 #print "ignoring $_\n";
1656                 1;
1657             }
1658         }
1659     }
1660
1661     close $result_cmd;
1662     $result->{$binpkg} = $explanation if $binpkg;
1663     return $result;
1664
1665 }
1666
1667
1668 sub call_edos_depcheck {
1669     return if $simulate_edos;
1670     my $args = shift;
1671     my $srcs = $args->{'srcs'};
1672     my $key;
1673    
1674     # Do not dispatch edos-debcheck if BD-Uninstallable is deactivated for the target.
1675     # ("noadw")  Depwait will always be 1 in normal use.
1676     return if defined ($distributions{$distribution}{noadw}) && not defined $args->{'depwait'};
1677
1678     # We need to check all of needs-build, as any new upload could make
1679     # something in needs-build have uninstallable deps
1680     # We also check everything in bd-uninstallable, as any new upload could
1681     # make that work again
1682     my (%interesting_packages, %interesting_packages_depwait);
1683     my $db = get_all_source_info(); # TODO: Filter for needs-build bd-uninst dep-wait, that's all we need.
1684     foreach $key (keys %$db) {
1685         my $pkg = $db->{$key};
1686         if (defined $pkg and isin($pkg->{'state'}, qw/Needs-Build BD-Uninstallable/) and not defined ($distributions{$distribution}{noadw})) {
1687                 $interesting_packages{$key} = undef; # add key to interesting packages
1688         }
1689         if (defined $pkg and isin($pkg->{'state'}, qw/Dep-Wait/) and defined $args->{'depwait'}) {
1690                 # Depwaits are checked by creating pseudo binaries for edos-debcheck, so collect them.
1691                 $interesting_packages_depwait{$key} = undef;
1692                 # we always check for BD-Uninstallability in depwait - could be that depwait is satisfied but package is uninstallable
1693                 $interesting_packages{$key} = undef unless defined ($distributions{$distribution}{noadw});
1694         }
1695     }
1696     
1697     #print "I would look at these sources with edos-depcheck:\n";
1698     #print join " ", keys %interesting_packages,"\n";
1699     return unless %interesting_packages || %interesting_packages_depwait;
1700
1701     my $tmpfile_pattern = "/tmp/wanna-build-interesting-sources-$distribution.$$-XXXXX";
1702     use File::Temp qw/ tempfile /;
1703     my ($SOURCES, $tmpfile) = tempfile( $tmpfile_pattern, UNLINK => 1 );
1704     for my $key (keys %interesting_packages) {
1705         my $pkg = $db->{$key};
1706         # we print the source files as binary ones (with "source---"-prefixed),
1707         # so we can try if these "binary" packages are installable.
1708         # If such a "binary" package is installable, the corresponding source package is buildable.
1709         print $SOURCES "Package: source---$key\n";
1710         print $SOURCES "Version: $pkg->{'version'}\n";
1711         my $t = &filterarch($srcs->{$key}{'dep'} || $srcs->{$key}{'depends'}, $args->{'arch'});
1712         my $tt = &filterarch($pkg->{'extra_depends'}, $args->{'arch'});
1713         $t = $t ? ($tt ? "$t, $tt" : $t) : $tt;
1714         print $SOURCES "Depends: $t\n" if $t;
1715         my $u = &filterarch($srcs->{$key}{'conf'} || $srcs->{$key}{'conflicts'}, $args->{'arch'});
1716         my $uu = &filterarch($pkg->{'extra_conflicts'}, $args->{'arch'});
1717         $u = $u ? ($uu ? "$u, $uu" : $u) : $uu;
1718         print $SOURCES "Conflicts: $u\n" if $u;
1719         print $SOURCES "Architecture: all\n";
1720         print $SOURCES "\n";
1721     }
1722     for my $key (keys %interesting_packages_depwait) {
1723         my $pkg = $db->{$key};
1724         # we print the source files as binary ones (with "depwait---"-prefixed),
1725         # so we can try if these "binary" packages are installable.
1726         # If such a "binary" package is installable, the corresponding source package goes out of depwait
1727         print $SOURCES "Package: depwait---$key\n";
1728         print $SOURCES "Version: $pkg->{'version'}\n";
1729         print $SOURCES "Depends: $pkg->{'depends'}\n";
1730         print $SOURCES "Architecture: all\n";
1731         print $SOURCES "\n";
1732     }
1733     close $SOURCES;
1734
1735     my $edosresults = wb_edos_builddebcheck({'arch' => $args->{'arch'}, 'pkgs' => $args->{'pkgs'}, 'src' => $tmpfile});
1736     if (ref($edosresults) eq 'HASH') {
1737         foreach my $key (grep { $_ !~ /^depwait---/ } keys %$edosresults) {
1738                 if (exists $interesting_packages{$key}) {
1739                     $interesting_packages{$key} = $edosresults->{$key};
1740                 } else {
1741                     #print "TODO: edos reported a package we do not care about now\n" if $verbose;
1742                 }
1743         }
1744         foreach my $key (grep { $_ =~ /^depwait---/ } keys %$edosresults) {
1745                 $key =~ /^depwait---(.*)/ and $key = $1;
1746                 if (exists $interesting_packages_depwait{$key}) {
1747                     $interesting_packages_depwait{$key} = $edosresults->{"depwait---".$key};
1748                 } else {
1749                     #print "TODO: edos reported a package we do not care about now\n" if $verbose;
1750                 }
1751         }
1752     } else {
1753         # if $edosresults isn't an hash, then something went wrong and the string is the error message
1754         print "ERROR: Could not run wb-edos-builddebcheck. I am continuing, assuming\n" .
1755              "all packages have installable build-dependencies."
1756     }
1757     
1758     unlink( $tmpfile );
1759
1760     for my $key (keys %interesting_packages) {
1761         next if defined $interesting_packages_depwait{$key};
1762         my $pkg = $db->{$key};
1763         # (defined $interesting_packages{$key}) => edos found an uninstallability
1764         my $change = 
1765             (defined $interesting_packages{$key} and $pkg->{'state'} eq 'Needs-Build') ||
1766             (not defined $interesting_packages{$key} and $pkg->{'state'} eq 'BD-Uninstallable');
1767         my $problemchange = ($interesting_packages{$key}//"") ne ($pkg->{'bd_problem'}//"");
1768         if ($change) {
1769             if (defined $interesting_packages{$key}) {
1770                     change_state( \$pkg, 'BD-Uninstallable' );
1771                     $pkg->{'bd_problem'} = $interesting_packages{$key};
1772             } else {
1773                     change_state( \$pkg, 'Needs-Build' );
1774             }
1775         }
1776         if ($problemchange) {
1777             if (defined $interesting_packages{$key}) {
1778                     $pkg->{'bd_problem'} = $interesting_packages{$key};
1779             }   
1780         }
1781         if ($change) {
1782             log_ta( $pkg, "--merge-all (edos)" ) unless $simulate;
1783             print "edos-builddebchange changed state of ${key}_$pkg->{'version'} ($args->{'arch'}) to $pkg->{'state'}\n" if $verbose || $simulate;
1784         }
1785         if ($change || $problemchange) {
1786             update_source_info($pkg) unless $simulate;
1787         }
1788     }
1789
1790     for my $key (keys %interesting_packages_depwait) {
1791         if ($interesting_packages_depwait{$key}) {
1792             print "dep-wait for $key ($args->{'arch'}) not fullfiled yet\n" if $verbose || $simulate;
1793             next;
1794         }
1795         my $pkg = $db->{$key};
1796         # The depwait could be cleared with the result still being uninstallable.
1797         if (defined $interesting_packages{$key}) {
1798             change_state( \$pkg, 'BD-Uninstallable' );
1799             $pkg->{'bd_problem'} = $interesting_packages{$key};
1800         } else {
1801             change_state( \$pkg, 'Needs-Build' );
1802         }
1803         log_ta( $pkg, "edos_depcheck: depwait" ) unless $simulate;
1804         update_source_info($pkg) unless $simulate;
1805         print "edos-builddebchange changed state of ${key}_$pkg->{'version'} ($args->{'arch'}) from dep-wait to $pkg->{'state'}\n" if $verbose || $simulate;
1806     }
1807 }
1808
1809 sub usage {
1810         my $prgname;
1811         ($prgname = $0) =~ s,^.*/,,;
1812         print <<"EOF";
1813 Usage: $prgname <options...> <package_version...>
1814 Options:
1815     -v, --verbose: Verbose execution.
1816     --simulate: Do not actually execute the action.
1817         (Not yet implemented for all operations.  Check the source.)
1818     -A arch: Architecture this operation is for.  (REQUIRED)
1819     -d dist: Distribution/suite this operation is for. Defaults to unstable.
1820     --take: Take package for building [default operation]
1821     -f, --failed: Record in database that a build failed due to
1822         deficiencies in the package (that aren't fixable without a new
1823         source version).
1824     -u, --uploaded: Record in the database that the packages build
1825         correctly and were uploaded.
1826     -n, --no-build: Record in the database that the packages aren't
1827         desired for this architecture and shouldn't appear in listings even
1828         if they're out of date.
1829     --dep-wait: Record in the database that the packages are waiting
1830         for some source dependencies to become available
1831     --binNMU num: Schedule a re-build of the package with unchanged source, but
1832          a new version number (source-version + "+b<num>")
1833     --give-back: Mark a package as ready to build that is in state Building,
1834          Built or Build-Attempted. To give back a package in state Failed, use
1835          --override. This command will actually put the package in state
1836          BD-Uninstallable, until the installability of its Build-Dependencies
1837          were verified. This happens at each call of --merge-all, usually
1838          every 15 minutes.
1839     --build-priority=VALUE: Adjust the build priority of the currently
1840         queued build.
1841     --permanent-build-priority=VALUE: Adjust the permanent build
1842         priority of a source package in a given distribution.
1843     --extra-depends=BUILD-DEPENDS: Specify additional build-dependencies
1844         used for the build.
1845     --extra-conflicts=BUILD-DEPENDS: Specify additional build-conflicts
1846         used for the build.
1847     -i SRC_PKG, --info SRC_PKG: Show information for source package
1848     -l STATE, --list=STATE: List all packages in state STATE; can be
1849         combined with -U to restrict to a specific user; STATE can
1850         also be 'all'
1851     --min-age=VALUE, --max-age=VALUE: Filter the output of --list
1852         by the age of the builds.
1853     -m MESSAGE, --message=MESSAGE: Give reason why package failed or
1854         source dependency list
1855         (used with -f, --dep-wait, and --binNMU)
1856     -o, --override: Override another user's lock on a package, i.e.
1857         take it over; a notice mail will be sent to the other user
1858     -U USER, --user=USER: select user name for which listings should
1859         apply, if not given all users are listed.
1860         if -l is missing, set user name to be entered in db; usually
1861         automatically choosen
1862     --import FILE: Import database from a ASCII file FILE
1863     --export FILE: Export database to a ASCII file FILE
1864     --format string, --own-format name: specify how the listing of packages
1865         should look like. Please check the source for details. Own-Format
1866         definitions are in ~/.wanna-build.yaml within the format section.
1867
1868 There are more options not relevant for normal usage - please check source
1869 if you need them.
1870
1871 The remaining arguments (depending on operation) usually start with
1872 "name_version", the trailer is ignored. This allows to pass the names
1873 of .dsc files, for which file name completion can be used.
1874 EOF
1875         exit 1;
1876 }
1877
1878 sub pkg_version_eq {
1879         my $pkg = shift;
1880         my $version = shift;
1881
1882         return 1
1883                if (defined $pkg->{'binary_nmu_version'}) and 
1884                version_compare(binNMU_version($pkg->{'version'},
1885                         $pkg->{'binary_nmu_version'}),'=', $version);
1886         return version_compare( $pkg->{'version'}, "=", $version );
1887 }
1888
1889 sub table_name {
1890         return '"' . $arch . $schema_suffix . '".packages';
1891 }
1892
1893 sub user_table_name {
1894         return '"' . $arch . $schema_suffix . '".users';
1895 }
1896
1897 sub transactions_table_name {
1898         return '"' . $arch . $schema_suffix . '".transactions';
1899 }
1900
1901 sub pkg_history_table_name {
1902         return '"' . $arch . $schema_suffix . '".pkg_history';
1903 }
1904
1905 sub get_readonly_source_info {
1906         my $name = shift;
1907         # SELECT FLOOR(EXTRACT('epoch' FROM age(localtimestamp, '2010-01-22  23:45')) / 86400) -- change to that?
1908         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"
1909             . ", (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"
1910             . ", (SELECT max(build_time) FROM ".pkg_history_table_name()." WHERE pkg_history.package = packages.package AND pkg_history.distribution = packages.distribution ) AS anytime"
1911             . ", extra_depends, extra_conflicts, build_arch_all"
1912             . " FROM " .  table_name()
1913             . ' WHERE package = ? AND distribution = ?';
1914         my $pkg = $dbh->selectrow_hashref( $q,
1915                 undef, $name, $distribution);
1916         return $pkg;
1917 }
1918
1919 sub get_source_info {
1920         my $name = shift;
1921         return get_readonly_source_info($name) if $simulate;
1922         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 ' . 
1923                 table_name() . ' WHERE package = ? AND distribution = ?' .
1924                 ' FOR UPDATE',
1925                 undef, $name, $distribution);
1926         return $pkg;
1927 }
1928
1929 sub get_all_source_info {
1930         my %options = @_;
1931
1932         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"
1933 #            . ", (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"
1934 #            . ", (SELECT max(build_time) FROM ".pkg_history_table_name()." WHERE pkg_history.package = packages.package AND pkg_history.distribution = packages.distribution ) AS anytime"
1935             . ", successtime.build_time as successtime, anytime.build_time as anytime, extra_depends, extra_conflicts"
1936             . " FROM " .  table_name()
1937                 . " left join ( "
1938                   . "select distinct on (package, distribution) build_time, package, distribution from ".pkg_history_table_name()." where result = 'successful' order by package, distribution, timestamp "
1939                   . " ) as successtime using (package, distribution) "
1940                 . " left join ( "
1941                   . "select distinct on (package, distribution) build_time, package, distribution from ".pkg_history_table_name()." order by package, distribution, timestamp desc"
1942                   . " ) as anytime using (package, distribution) "
1943             . " WHERE TRUE ";
1944         my @args = ();
1945         if ($distribution) {
1946             my @dists = split(/[, ]+/, $distribution);
1947             $q .= ' AND ( distribution = ? '.(' OR distribution = ? ' x $#dists).' )';
1948             foreach my $d ( @dists ) {
1949                 push @args, ($d);
1950             }
1951         }
1952         if ($options{state} && uc($options{state}) ne "ALL") {
1953                 $q .= ' AND upper(state) = ? ';
1954                 push @args, uc($options{state});
1955         }
1956
1957         if ($options{user} && uc($options{state}) ne "NEEDS-BUILD") { # if it's NEEDS-BUILD, we don't look at users
1958                 #this basically means "this user, or no user at all":
1959                 $q .= " AND (builder = ? OR upper(state) = 'NEEDS-BUILD')";
1960                 push @args, $options{user};
1961         }
1962
1963         if ($options{list_min_age} && $options{list_min_age} > 0) {
1964                 $q .= ' AND age(state_change) > ? ';
1965                 push @args, $options{list_min_age} . " days";
1966         }
1967
1968         if ($options{list_min_age} && $options{list_min_age} < 0) {
1969                 $q .= ' AND age(state_change) < ? ';
1970                 push @args, -$options{list_min_age} . " days";
1971         }
1972
1973         my $db;
1974         if (($options{multisuite}) && (!$distribution || $distribution =~ / /)) {
1975             # return packages in multiple suites - only for those functions marked as clean for that api change
1976             $db = $dbh->selectall_hashref($q, [qw<package distribution>], undef, @args);
1977             my $dbk = {};
1978             foreach my $p ( keys %$db ) {
1979                 foreach my $d (keys %{$db->{$p}}) {
1980                     $dbk->{"$p/$d"} = $db->{$p}->{$d};
1981                 }
1982             }
1983             $db = $dbk;
1984         } else {
1985             $db = $dbh->selectall_hashref($q, [qw<package>], undef, @args);
1986         }
1987         return $db;
1988 }
1989
1990 sub show_distribution_architectures {
1991         my $args = shift;
1992         my $q = 'SELECT distribution, spacecat_all(architecture) AS architectures '.
1993                 'FROM distribution_architectures '.
1994                 'GROUP BY distribution';
1995         my $rows = $dbh->selectall_hashref($q, 'distribution');
1996         if ($args->{suite}) {
1997             print $rows->{$args->{'suite'}}->{'architectures'}."\n";
1998         } else {
1999             foreach my $name (keys %$rows) {
2000                 print $name.': '.$rows->{$name}->{'architectures'}."\n";
2001             }
2002         }
2003 }
2004
2005 sub show_distribution_aliases {
2006         foreach my $alias (keys %distribution_aliases) {
2007                 print $alias.': '.$distribution_aliases{$alias}."\n";
2008         }
2009 }
2010
2011 sub update_source_info {
2012         my $pkg = shift;
2013         $pkg->{'extra_depends'} = $extra_depends if defined $extra_depends;
2014         undef $pkg->{'extra_depends'} unless $pkg->{'extra_depends'};
2015         $pkg->{'extra_conflicts'} = $extra_conflicts if defined $extra_conflicts;
2016         undef $pkg->{'extra_conflicts'} unless $pkg->{'extra_conflicts'};
2017         print Dumper $pkg if $verbose and $simulate;
2018         return if $simulate;
2019
2020         my $pkg2 = get_source_info($pkg->{'package'});
2021         if (! defined $pkg2)
2022         {
2023                 add_source_info($pkg);
2024         }
2025
2026         $dbh->do('UPDATE ' . table_name() . ' SET ' .
2027                         'version = ?, ' .
2028                         'state = ?, ' .
2029                         'section = ?, ' .
2030                         'priority = ?, ' .
2031                         'installed_version = ?, ' .
2032                         'previous_state = ?, ' .
2033                         (($pkg->{'do_state_change'}) ? "state_change = now()," : "").
2034                         'notes = ?, ' .
2035                         'builder = ?, ' .
2036                         'failed = ?, ' .
2037                         'old_failed = ?, ' .
2038                         'binary_nmu_version = ?, ' .
2039                         'binary_nmu_changelog = ?, ' .
2040                         'permbuildpri = ?, ' .
2041                         'buildpri = ?, ' .
2042                         'depends = ?, ' .
2043                         'rel = ?, ' .
2044                         'extra_depends = ?, ' .
2045                         'extra_conflicts = ?, ' .
2046                         'bd_problem = ? ' .
2047                         'WHERE package = ? AND distribution = ?',
2048                 undef,
2049                 $pkg->{'version'},
2050                 $pkg->{'state'},
2051                 $pkg->{'section'},
2052                 $pkg->{'priority'},
2053                 $pkg->{'installed_version'},
2054                 $pkg->{'previous_state'},
2055                 $pkg->{'notes'},
2056                 $pkg->{'builder'},
2057                 $pkg->{'failed'},
2058                 $pkg->{'old_failed'},
2059                 $pkg->{'binary_nmu_version'},
2060                 $pkg->{'binary_nmu_changelog'},
2061                 $pkg->{'permbuildpri'},
2062                 $pkg->{'buildpri'},
2063                 $pkg->{'depends'},
2064                 $pkg->{'rel'},
2065                 $pkg->{'extra_depends'},
2066                 $pkg->{'extra_conflicts'},
2067                 $pkg->{'bd_problem'},
2068                 $pkg->{'package'},
2069                 $distribution) or die $dbh->errstr;
2070 }
2071
2072 sub add_source_info {
2073         return if $simulate;
2074         my $pkg = shift;
2075         $dbh->do('INSERT INTO ' . table_name() .
2076                         ' (package, distribution) values (?, ?)',
2077                 undef, $pkg->{'package'}, $distribution) or die $dbh->errstr;
2078 }
2079
2080 sub del_source_info {
2081         return if $simulate;
2082         my $name = shift;
2083         $dbh->do('DELETE FROM ' . table_name() .
2084                         ' WHERE package = ? AND distribution = ?',
2085                 undef, $name, $distribution) or die $dbh->errstr;
2086 }
2087
2088 sub get_user_info {
2089         my $name = shift;
2090         my $user = $dbh->selectrow_hashref('SELECT * FROM ' . 
2091                 user_table_name() . ' WHERE username = ? AND distribution = ?',
2092                 undef, $name, $distribution);
2093         return $user;
2094 }
2095
2096 sub update_user_info {
2097         return if $simulate;
2098         my $user = shift;
2099         $dbh->do('UPDATE ' . user_table_name() .
2100                         ' SET last_seen = now() WHERE username = ?' .
2101                         ' AND distribution = ?',
2102                 undef, $user, $distribution)
2103                 or die $dbh->errstr;
2104 }
2105
2106
2107 sub add_user_info {
2108         return if $simulate;
2109         my $user = shift;
2110         $dbh->do('INSERT INTO ' . user_table_name() .
2111                         ' (username, distribution, last_seen)' .
2112                         ' values (?, ?, now())',
2113                 undef, $user, $distribution)
2114                 or die $dbh->errstr;
2115 }
2116
2117 sub lock_table {
2118         return if $simulate;
2119         $dbh->do('SELECT 1 FROM ' . table_name() .
2120                 ' WHERE distribution = ? FOR UPDATE', undef, $distribution) or die $dbh->errstr;
2121 }
2122
2123 sub parse_argv {
2124 # parts the array $_[0] and $_[1] and returns the sub-array (modifies the original one)
2125     my @ret = ();
2126     my $args = shift;
2127     my $separator = shift;
2128     while($args->[0] && $args->[0] ne $separator) { 
2129         push @ret, shift @$args;
2130     }
2131     shift @$args if @$args;
2132     return @ret;
2133 }
2134
2135 sub parse_all_v3 {
2136     my $srcs = shift;
2137     my $vars = shift;
2138     my $db = get_all_source_info();
2139     my $binary = $srcs->{'_binary'};
2140
2141     SRCS:
2142     foreach my $name (keys %$srcs) {
2143         next if $name eq '_binary';
2144
2145         # state = installed, out-of-date, uncompiled, packages-arch-specific, overwritten-by-arch-all, arch-not-in-arch-list, arch-all-only
2146         my $pkgs = $srcs->{$name};
2147         next if isin($pkgs->{'status'}, qw <arch-all-only>);
2148         my $pkg = $db->{$name};
2149
2150         unless ($pkg) {
2151             next SRCS if $pkgs->{'status'} eq 'packages-arch-specific';
2152             my $logstr = sprintf("merge-v3 %s %s_%s (%s, %s):", $vars->{'time'}, $name, $pkgs->{'version'}, $vars->{'arch'}, $vars->{'suite'});
2153
2154             # does at least one binary exist in the database and is more recent - if so, we're probably just outdated, ignore the source package
2155             for my $bin (@{$pkgs->{'binary'}}) {
2156                 if ($binary->{$bin} and vercmp($pkgs->{'version'}, $binary->{$bin}->{'version'}) < 0) {
2157                     print "$logstr skipped because binaries (assumed to be) overwritten\n" if $verbose || $simulate;
2158                     next SRCS;
2159                 }
2160             }
2161             $pkg->{'package'}  = $name;
2162         }
2163         $pkg->{'version'} ||= "";
2164         $pkg->{'state'} ||= "";
2165         my $logstr = sprintf("merge-v3 %s %s_%s", $vars->{'time'}, $name, $pkgs->{'version'}).
2166             ($pkgs->{'binnmu'} ? ";b".$pkgs->{'binnmu'} : "").
2167             sprintf(" (%s, %s, previous: %s", $vars->{'arch'}, $vars->{'suite'}, $pkg->{'version'}//"").
2168             ($pkg->{'binary_nmu_version'} ? ";b".$pkg->{'binary_nmu_version'} : "").
2169             ", $pkg->{'state'}".($pkg->{'notes'} ? "/".$pkg->{'notes'} : "")."):";
2170
2171         if (isin($pkgs->{'status'}, qw (installed related)) && $pkgs->{'version'} eq $pkg->{'version'} && ($pkgs->{'binnmu'}//0) < int($pkg->{'binary_nmu_version'}//0)) {
2172                 $pkgs->{'status'} = 'out-of-date';
2173         }
2174         if (isin($pkgs->{'status'}, qw <installed related arch-not-in-arch-list packages-arch-specific overwritten-by-arch-all arch-all-only>)) {
2175             my $change = 0;
2176             my $tstate = {'installed' => 'Installed', 'related' => 'Installed', 
2177                 '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',
2178                 }->{$pkgs->{'status'}};
2179             next if isin( $pkg->{'state'}, qw<Not-For-Us Failed Failed-Removed Dep-Wait Dep-Wait-Removed>) && isin( $tstate, qw<Auto-Not-For-Us>);
2180             # if the package is currently current, the status is Installed, not not-for-us
2181             if ($pkg->{'state'} ne $tstate) {
2182                 change_state( \$pkg, $tstate);
2183                 if (isin( $tstate, qw<Installed>)) {
2184                     delete $pkg->{'depends'};
2185                     delete $pkg->{'extra_depends'};
2186                     delete $pkg->{'extra_conflicts'};
2187                 }
2188                 $change++;
2189             }
2190             my $attrs = { 'version' => 'version', 'installed_version' => 'version', 'binary_nmu_version' => 'binnmu', 'section' => 'section', 'priority' => 'priority' };
2191             foreach my $k (keys %$attrs) {
2192                 next if isin( $tstate, qw<Auto-Not-For-Us>) && isin( $k, qw<installed_version binary_nmu_version>);
2193                 if (($pkg->{$k}//"") ne ($pkgs->{$attrs->{$k}}//"")) {
2194                     $pkg->{$k} = $pkgs->{$attrs->{$k}};
2195                     $change++;
2196                 }
2197             }
2198             if (isin($pkgs->{'status'}, qw <related packages-arch-specific overwritten-by-arch-all arch-not-in-arch-list arch-all-only>)) {
2199                 my $tnotes = $pkgs->{'status'};
2200                 if (($pkg->{'notes'}//"") ne $tnotes) {
2201                     $pkg->{'notes'} = $tnotes;
2202                     $change++;
2203                 }
2204             }
2205             if ($change) {
2206                 print "$logstr set to $tstate/".($pkg->{'notes'}//"")."\n" if $verbose || $simulate;
2207                 log_ta( $pkg, "--merge-v3: $tstate" ) unless $simulate;
2208                 update_source_info($pkg) unless $simulate;
2209             }
2210             next;
2211         }
2212
2213         # only uncompiled / out-of-date are left, so check if anything new
2214         if (!(isin($pkgs->{'status'}, qw (uncompiled out-of-date)))) {
2215             print "$logstr package in unknown state: $pkgs->{'status'}\n";
2216             next SRCS;
2217         }
2218         next if $pkgs->{'version'} eq $pkg->{'version'} and $pkgs->{'binnmu'}//0 >= int($pkg->{'binary_nmu_version'}//0);
2219         next if $pkgs->{'version'} eq $pkg->{'version'} and !isin( $pkg->{'state'}, qw(Installed));
2220         next if isin( $pkg->{'state'}, qw(Not-For-Us Failed-Removed));
2221
2222         if (defined( $pkg->{'state'} ) && isin( $pkg->{'state'}, qw(Building Built Build-Attempted))) {
2223             send_mail( $pkg->{'builder'},
2224                 "new version of $name (dist=$distribution)",
2225                 "As far as I'm informed, you're currently building the package $name\n".
2226                 "in version $pkg->{'version'}.\n\n".
2227                 "Now there's a new source version $pkgs->{'version'}. If you haven't finished\n".
2228                 "compiling $name yet, you can stop it to save some work.\n".
2229                 "Just to inform you...\n".
2230                 "(This is an automated message)\n" ) unless $simulate;
2231             print "$logstr new version while building $pkg->{'version'} -- sending mail to builder ($pkg->{'builder'})\n"
2232                                   if $verbose || $simulate;
2233             }
2234         change_state( \$pkg, 'Needs-Build');
2235         $pkg->{'notes'} = $pkgs->{'status'};
2236         $pkg->{'version'} = $pkgs->{'version'};
2237         $pkg->{'section'} = $pkgs->{'section'};
2238         $pkg->{'priority'} = $pkgs->{'priority'};
2239         $pkg->{'dep'} = $pkgs->{'depends'};
2240         $pkg->{'conf'} = $pkgs->{'conflicts'};
2241         delete $pkg->{'builder'};
2242         delete $pkg->{'binary_nmu_version'} unless $pkgs->{'binnmu'};
2243         delete $pkg->{'binary_nmu_changelog'} unless $pkgs->{'binnmu'};
2244         delete $pkg->{'buildpri'};
2245         log_ta( $pkg, "--merge-v3: needs-build" ) unless $simulate;
2246         update_source_info($pkg) unless $simulate;
2247         print "$logstr set to needs-builds\n" if $simulate || $verbose;
2248     }
2249
2250     foreach my $name (keys %$db) {
2251         next if $srcs->{$name};
2252         my $pkg = $db->{$name};
2253         my $logstr = "merge-v3 $vars->{'time'} ".$name."_$pkg->{'version'} ($vars->{'arch'}, $vars->{'suite'}, previous: $pkg->{'state'}):";
2254         # package disappeared - delete
2255         change_state( \$pkg, 'deleted' );
2256         log_ta( $pkg, "--merge-v3: deleted" ) unless $simulate;
2257         print "$logstr deleted from database\n" if $verbose || $simulate;
2258         del_source_info($name) unless $simulate;
2259         delete $db->{$name};
2260     }
2261 }