|
Last change
on this file since 877 was 839, checked in by Bruno Cornec, 16 years ago |
- Adds option support for pbdistrocheck (-v and -d)
- Fix a bug on pbvi/pbg for function having binary in their name
|
|
File size:
878 bytes
|
| Line | |
|---|
| 1 | #!/usr/bin/perl -w
|
|---|
| 2 | #
|
|---|
| 3 | # Project Builder Distribution Checker
|
|---|
| 4 | #
|
|---|
| 5 | # $Id$
|
|---|
| 6 | #
|
|---|
| 7 | # Copyright B. Cornec 2007
|
|---|
| 8 | # Provided under the GPL v2
|
|---|
| 9 |
|
|---|
| 10 | use strict 'vars';
|
|---|
| 11 | use Getopt::Long qw(:config auto_abbrev no_ignore_case);
|
|---|
| 12 | use Data::Dumper;
|
|---|
| 13 | use lib qw (lib);
|
|---|
| 14 | use ProjectBuilder::Distribution;
|
|---|
| 15 | use ProjectBuilder::Base;
|
|---|
| 16 |
|
|---|
| 17 | my %opts; # CLI Options
|
|---|
| 18 |
|
|---|
| 19 | GetOptions(
|
|---|
| 20 | "verbose|v+" => \$opts{'v'},
|
|---|
| 21 | "description|d" => \$opts{'d'}
|
|---|
| 22 | );
|
|---|
| 23 | if (defined $opts{'v'}) {
|
|---|
| 24 | $pbdebug = $opts{'v'};
|
|---|
| 25 | }
|
|---|
| 26 | if (defined $opts{'l'}) {
|
|---|
| 27 | open(pbLOG,"> $opts{'l'}") || die "Unable to log to $opts{'l'}: $!";
|
|---|
| 28 | $pbLOG = \*pbLOG;
|
|---|
| 29 | $pbdebug = 0 if ($pbdebug == -1);
|
|---|
| 30 | }
|
|---|
| 31 | pb_log_init($pbdebug, $pbLOG);
|
|---|
| 32 |
|
|---|
| 33 | my ($ddir, $dver, $dfam, $dtype, $pbsuf, $pbupd, $arch) = pb_distro_init();
|
|---|
| 34 | if (defined $opts{'d'}) {
|
|---|
| 35 | print "\u$ddir $dver\n";
|
|---|
| 36 | } else {
|
|---|
| 37 | print "distro tuple: ".join(',',($ddir, $dver, $dfam, $dtype, $pbsuf, $pbupd, $arch))."\n";
|
|---|
| 38 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.