File: sb2-cmp-checkbuilddeps-output.pl

package info (click to toggle)
scratchbox2 2.2.4-1debian1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 5,392 kB
  • ctags: 5,239
  • sloc: ansic: 21,734; sh: 4,360; perl: 2,170; cpp: 1,913; makefile: 610; python: 184
file content (517 lines) | stat: -rwxr-xr-x 13,445 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
#!/usr/bin/perl
#
# Copyright (c) 2009 Nokia Corporation. All rights reserved.
# Author: Lauri T. Aarnio;
#
# Licensed under GPL version 2
#
# -------------------
# "Mechanics" of the new dpkg-checkbuilddeps dependency checker.
#
# This takes results from two runs of dpkg-checkbuilddeps (once
# against the target's db, and once tools package db) and
# compares the results.
#
# FIXME: Hopefully this will be developed to a full-featured
# replacement for sb2's old dpkg-checkbuilddeps wrapper (which
# is a shell script). Currently that wrapper just feeds all needed
# variables to us...

use strict;

my $target_missing_deps=$ARGV[0];
my $host_missing_deps=$ARGV[1];
my $both_required=$ARGV[2];
my $accepted_from_tools=$ARGV[3];
my $ignored_from_tools=$ARGV[4];

my $scratchbox2_dir = $ENV{'HOME'}."/.scratchbox2";

my $verbose_messages_env_var=$ENV{'SBOX_CHECKBUILDDEPS_VERBOSE'};
my $sbox_target=$ENV{'SBOX_TARGET'};
if (! defined $sbox_target) {
	die "SBOX_TARGET not set"; 
}

my $verbose_messages = 0;
if (defined $verbose_messages_env_var && $verbose_messages_env_var ne '') {
	$verbose_messages = 1;
}

my @both_required = split(/\s/,$both_required);

my @accepted_from_tools = split(/\s/,$accepted_from_tools);
my %accepted_from_tools;
my $n;
foreach $n (@accepted_from_tools) {
	$accepted_from_tools{$n} = 1;
}

my @ignored_from_tools = split(/\s/,$ignored_from_tools);
my %ignored_from_tools;
my $n;
foreach $n (@ignored_from_tools) {
	$ignored_from_tools{$n} = 1;
}

my $debug = 0;

if ($debug) {
	print "T: $target_missing_deps\n";
	print "H: $host_missing_deps\n";
	print "B: $both_required\n";
}

sub check_debian_vrs_req {
	my $requirement = shift;
	my $tool_version = shift;

	if ($debug) {
		print "check_debian_vrs_req: $requirement, $tool_version\n";
	}
	if ($requirement =~ m/\((\S+)\s*(\S+)\)/) {
		my $condition = $1;
		my $vrs = $2;

		if ($debug) {
			print "check_debian_vrs_req: test $condition, $vrs\n";
		}
		
		if ($condition eq "=") {
			return 1 if ($tool_version eq $vrs);
			return 0;
		}
		# FIXME: Rest of the compares use alphanumeric cmps,
		# which do not always produce correct results here.
		if ($condition eq ">=") {
			return 1 if ($tool_version ge $vrs);
			return 0;
		}
		if ($condition eq ">>") {
			return 1 if ($tool_version gt $vrs);
			return 0;
		}
		if ($condition eq "<<") {
			return 1 if ($tool_version lt $vrs);
			return 0;
		}
		if ($condition eq "<=") {
			return 1 if ($tool_version le $vrs);
			return 0;
		}
	}
	return 0;
}

sub check_gcc_dependency {
	my $required_gcc = shift;
	my $r_missing = shift;

	my $version_req = $r_missing->{'version'};
	$version_req =~ s/[0-9]+://;

	if (defined($version_req) && ($version_req ne "")) {
		if ($debug) {
			print "$required_gcc vers must be $version_req\n";
		}
	}

	if (-f "$scratchbox2_dir/$sbox_target/sb2.config.d/gcc.config.sh") {
                # a cross compiler has been configured
                if ((("$required_gcc" eq "gcc") || ("$required_gcc" eq "gcc")) &&
		    (!defined($version_req))) {
                        # requires gcc or g++, but does not depend on version
			if ($debug) {
				print "Requires $required_gcc, no version requirement,".
					"SB2 has it => OK\n";
			}
                        return 1;
                }
                #
                # Find out if gcc version is suitable, try all configured
                # toolchains
		my $gcc_conf_file;
                foreach $gcc_conf_file (<$scratchbox2_dir/$sbox_target/sb2.config.d/gcc*.config.sh>) {
			if ($debug) {
				print "try $required_gcc, $gcc_conf_file..\n";
			}

			if (-f $gcc_conf_file) {
				open GCC_CONF,"<$gcc_conf_file";
				my $short_vrs = undef;
				my $long_vrs = undef;
				my $line;
				while ($line = <GCC_CONF>) {
					if ($line =~ m/SBOX_CROSS_GCC_SHORTVERSION="(.*)"/) {
						$short_vrs = $1;
					} elsif ($line =~ m/SBOX_CROSS_GCC_VERSION="(.*)"/) {
						$long_vrs = $1;
					}
				}
				close GCC_CONF;
				if ($debug) {
					print "vrs: '$short_vrs', '$long_vrs'\n";
				}
				if ((($required_gcc =~ m/g..-$short_vrs/) ||
				     ($required_gcc =~ m/g..-$long_vrs/)) &&
				    !defined ($version_req)) {
					if ($debug) {
						print "vrs: OK by name\n";
					}
					return 1;
				}
				if (defined ($version_req)) {
					# Check the debian-style requirement.
					if (check_debian_vrs_req($version_req,$short_vrs) ||
					    check_debian_vrs_req($version_req,$long_vrs)) {
						if ($debug) {
							print "vrs: OK\n";
						}
						return 1;	
					}
				}
			}
		}
        } # else a cross-compiler is not available, gcc must come from tools

	if ($debug) {
		print "\t$required_gcc: sb2 doesn't have it\n";
	}
	return(0);
}

sub provided_by_sb2 {
	my $name = shift;
	my $r_missing = shift;

	if (($name =~ m/^gcc/) ||
	    ($name =~ m/^g\+\+/)) {
		return (check_gcc_dependency($name,$r_missing));
	}
	return(0);
}

sub is_accepted_from_tools {
	my $r_host_missing;
	my $name = shift;
	my $vers = shift;

	if ($accepted_from_tools{$name}) {
		if (defined $r_host_missing->{$name}) {
			return(0, "$name $vers can be used from tools, but is is not installed there");
		}
		return(1, "$name $vers found from tools");
	}

	# not allowed from tools
	if (defined $r_host_missing->{$name}) {
		return(0, "$name $vers can not be used from tools (not found and not allowed)");
	}
	return(0, "$name $vers can not be used from tools (installed, but not allowed)");
}

# Parse one required package name from output of "dpkg-checkbuilddeps"
# returns ($pkg_name, $version, $leftovers)
sub parse_requirement {
	my $list = shift;
	my $debug_prefix = shift;

	if ($debug) {
		print "$debug_prefix"."parse_requirement($list)\n";
	}
	if ($list =~ s/^\s*(\S+)\s+(\([^)]*\))\s*//) {
		if ($debug) {
			print "$debug_prefix=> VERS $1 : $2\n";
		}
		return($1, $2, $list);	
	} elsif ($list =~ s/^\s*(\S+)\s*//) {
		if ($debug) {
			print "$debug_prefix=> SINGLE $1\n";
		}
		return($1, undef, $list);	
	}
	
	# else failed to recognize enything from $list
	print "dpkg-checkbuilddeps: Parse error in '$list'\n";
	return(undef, undef, undef);	
}

# Parse output of "dpkg-checkbuilddeps"
# returns a reference to a has containing missing packages
sub parse_list_of_missing_packages {
	my $a = shift;

	my %pkgs;

	# While $a is not empty or just whitespace..
	while($a =~ m/\S+/) {

		my $pkg_name;
		my $version;
		my $leftovers;
		($pkg_name, $version, $leftovers) = parse_requirement($a, "\t");
		
		if (!defined $pkg_name) {
			print "dpkg-checkbuilddeps: FAILED to parse '$a'\n";
			exit(1);
		}

		$pkgs{$pkg_name} = {
			'version' => $version,
			'alternatives' => [],
		};

		if ($debug) {
			if (defined $version) {
				print "=> $pkg_name : $version\n";
			} else {
				print "=> $pkg_name\n";
			}
		}

		# See if there are alternatives:

		my $alternatives = "";
		while ($leftovers =~ m/^\|/) {
			if ($debug) {
				print "\tParsing alternatives $leftovers\n";
			}

			$leftovers =~ s/^\|\s*//;

			my $alt_pkg_name;
			my $alt_version;
			($alt_pkg_name, $alt_version, $leftovers) = parse_requirement($leftovers, "\t\t");

			if (!defined $alt_pkg_name) {
				print "dpkg-checkbuilddeps: FAILED to process alternatives ($leftovers)\n";
				exit(1);
			}
			$alternatives .= " ".$alt_pkg_name;

			$pkgs{$alt_pkg_name} = {
				'version' => $alt_version,
				'primary' => $pkg_name,
			};
			push(@{$pkgs{$pkg_name}->{'alternatives'}}, $alt_pkg_name);
		}
		if ($debug) {
			if ($alternatives ne "") {
				print "\talternatives for $pkg_name=[".
					join(", ", @{$pkgs{$pkg_name}->{'alternatives'}}).
					"] == $alternatives\n";
			}
		}

		$a = $leftovers;
	}
	return(\%pkgs);
}

# a debugging routine:
sub show_missing {
	my $r_missing = shift;

	my @missing_pkgs_keys = sort(keys(%$r_missing));
	print "missing: ".join("; ", @missing_pkgs_keys)."\n";

	my $n;
	foreach $n (@missing_pkgs_keys) {
		my $alt = $r_missing->{$n}->{'alternatives'};
		if (defined $alt && @$alt > 0) {
			print "alternatives for $n: ".join(", ", @$alt)."\n";
		}
		my $primary = $r_missing->{$n}->{'primary'};
		if (defined $primary) {
			print "primary for $n: $primary\n";
		}
	}
}

# XXXXXXXX host-ymaristossa on kiinnostavaa vain ne paketit
# XXXXXXXX joista myos target valittaa!!!!

my $r_host_missing = parse_list_of_missing_packages($host_missing_deps);

my @host_listed = sort(keys(%$r_host_missing));

if ($debug) {
	print "\n\nHost is missing: ".join("; ", @host_listed)."\n";
	show_missing($r_host_missing);
	print "\n\n";
}

my $r_target_missing = parse_list_of_missing_packages($target_missing_deps);

my @target_listed = sort(keys(%$r_target_missing));

if ($debug) {
	print "\n\nTarget is missing: ".join("; ", @target_listed)."\n";
	show_missing($r_target_missing);
	print "\n\n";
}

my $build_deps_ok = 1;	# assume everything is ok.
my $std_missing_pkg_msg = "";	# list of missing packages in "standard" format.

# See if the packages that target is missing can be found from tools:
my $n;
foreach $n (@target_listed) {
	if (defined $r_target_missing->{$n}->{'primary'}) {
		if ($debug) {
			print "(skipping alternative $n)\n";
		}
	} elsif (provided_by_sb2($n,$r_target_missing->{$n})) {
		if ($verbose_messages) {
			print "\t$n: provided by sb2.\n";
		}
	} elsif ($ignored_from_tools{$n}) {
		if ($verbose_messages) {
			print "\t$n: Missing from tools, but dependency has been ignored by configuration\n";
		}
	} elsif (defined $r_host_missing->{$n}) {
		my $target_vers_req = $r_target_missing->{$n}->{'version'};
		my $tools_vers_req = $r_host_missing->{$n}->{'version'};

		if ($verbose_messages) {
			print "\t$n: Missing from tools $tools_vers_req and target $target_vers_req\n";
		}

		my $alt = $r_target_missing->{$n}->{'alternatives'};
		if (defined $alt && (@$alt > 0)) {
			# there are alternatives: see if any of those exists on the host
			
			if ($verbose_messages) {
				print "\t   There are alternatives: ".join(", ", @$alt)."\n";
			}

			my $no_alternatives_found = 1;
			my $k;
			foreach $k (@$alt) {
				if (defined $r_host_missing->{$k}) {
					if ($verbose_messages) {
						print "\t   ($k not found from tools)\n";
					}
				} elsif ($ignored_from_tools{$k}) {
					if ($verbose_messages) {
						print "\t   $k: Missing from tools, ignored by configuration, good..\n";
					}
					$no_alternatives_found = 0;
				} else {
					my ($found, $message);
					($found, $message) = is_accepted_from_tools(
						$r_host_missing, $n, $target_vers_req);
					if ($found) {
						if ($verbose_messages) {
							print "\t   $n: found from tools, good..\n";
						}
						$no_alternatives_found = 0;
					} else {
						if ($verbose_messages) {
							print "\t   $n: $message\n";
						}
					}
				}
			}

			if ($no_alternatives_found) {
				if ($verbose_messages) {
					print "\t$n: none of the alternatives exist, requirement failed.\n";
				}
				$build_deps_ok = 0;
				$std_missing_pkg_msg .= 
					" ".$n." | ".join(" | ", @$alt);
			}
		} else {
			if ($verbose_messages) {
				print "\t$n: not found, requirement failed.\n";
			}
			$build_deps_ok = 0;
			$std_missing_pkg_msg .= " ".$n;
		}
	} else {
		my ($found, $message);
		($found, $message) = is_accepted_from_tools($n);
		if ($verbose_messages) {
			if ($found) {
				print "\t$n: found from tools, good..\n";
			} else {
				print "\t$n: $message\n";
			}
		}
		if ($found == 0) {
			$build_deps_ok = 0;
			$std_missing_pkg_msg .= " ".$n;
			my $alt = $r_target_missing->{$n}->{'alternatives'};
			if (defined $alt && (@$alt > 0)) {
				$std_missing_pkg_msg .= " | ".join(" | ", @$alt);
			}
		}
	}
}

# See if there are packages that are required at both locations,
# but the host does not have:
my $n;
my @failures_in_dual_requirements;
my @failed_pkgs_in_dual_requirements;
foreach $n (@both_required) {
	if (defined $r_host_missing->{$n}) {
		# Host does not have this...
		my $tools_vers_req = $r_host_missing->{$n}->{'version'};
		my $msg = "$n: ";

		# check if it exists on the host, but fails
		# during the version check
		my $prev_mode=$ENV{'SBOX_SESSION_MODE'};
		$ENV{'SBOX_SESSION_MODE'}="tools";
		my $tools_stat=`dpkg-query -W -f=\'\${Version}\' $n 2>&1`;
		$ENV{'SBOX_SESSION_MODE'}=$prev_mode;
		chomp($tools_stat);

		if (defined $r_target_missing->{$n}) {
			# neither has it. 
			$msg .= "missing from both $tools_vers_req".
				" (tools: $tools_stat)";
		} else {
			$msg .= "only target has it $tools_vers_req".
				" (tools: $tools_stat)";

		}
		push(@failures_in_dual_requirements, $msg);
		push(@failed_pkgs_in_dual_requirements, $n);
	} elsif (defined $r_target_missing->{$n}) {
		my $target_vers_req = $r_target_missing->{$n}->{'version'};
		my $msg = "$n: only tools has it $target_vers_req\n";
		push(@failures_in_dual_requirements, $msg);
		push(@failed_pkgs_in_dual_requirements, $n);
	} else {
		if ($debug) {
			print "B: $n, both have it\n";
		}
	}
}
if (@failures_in_dual_requirements > 0) {
	if ($verbose_messages) {
		print "Some packages must exist in target and tools:\n";
		print "\t".join("\n\t", @failures_in_dual_requirements)."\n";
	} else {
		print "dpkg-checkbuilddeps: Some packages must exist in target and tools.\n";
	}
	$build_deps_ok = 0;
	$std_missing_pkg_msg .= " ".join(" ", @failed_pkgs_in_dual_requirements);
}

if ($build_deps_ok) {
	if ($verbose_messages) {
		print "Dependency checks ok\n";
	}
	exit(0);
}

if ($verbose_messages) {
	print "Dependency checks failed\n";
}
print "dpkg-checkbuilddeps: Unmet build dependencies:$std_missing_pkg_msg\n";
exit(1);