source: ProjectBuilder/devel/pb-modules/bin/pbdistrocheck@ 1071

Last change on this file since 1071 was 1071, checked in by Bruno Cornec, 14 years ago

r3947@sge91-1-82-234-15-218: bruno | 2010-07-10 18:40:35 +0200

  • Adds function pb_distro_getlsb and make pbdistrocheck fully lsb_release compatible
File size: 3.7 KB
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
10use strict 'vars';
11use Getopt::Long qw(:config auto_abbrev no_ignore_case);
12use Data::Dumper;
13use lib qw (lib);
14use ProjectBuilder::Distribution;
15use ProjectBuilder::Base;
16
17=pod
18
19=head1 NAME
20
21pb, aka project-builder.org - builds packages for your projects
22
23=head1 DESCRIPTION
24
25pb helps you build various packages directly from your project sources.
26pbdistrocheck is a command from the pb project providing the same type of services as lsb_release, but extended.
27
28=head1 SYNOPSIS
29
30pbdistrocheck [-d][-v][-l [-c][-i][-r][-a]][-s] [distro-ver-arch]
31
32=head1 OPTIONS
33
34=over 4
35
36=item B<-v|--verbose>
37
38Print a brief help message and exits.
39
40=item B<-a|--all>
41
42print all parameters
43
44=item B<-s|--short>
45
46generate a short format user friendly, comma separated allowing parsing
47
48=item B<-l|--lsb>
49
50generate an LSB compliant output
51
52=item B<-d|--description>
53
54print only description (LSB only)
55
56=item B<-r|--release>
57
58print only release (LSB only)
59
60=item B<-c|--codename>
61
62print only codename (LSB only)
63
64=item B<-i|--id>
65
66print only distribution identificator (LSB only)
67
68=item B<-a|--all>
69
70print all LSB fields
71
72=back
73
74=head1 ARGUMENTS
75
76arguments are optional. If none given, analyzes the underlying operating system
77If one is given, it should have the format osname-version-architecture, and in that case pbdistrocheck will provide all the information related to that OS needed by pb.
78
79=head1 WEB SITES
80
81The main Web site of the project is available at L<http://www.project-builder.org/>. Bug reports should be filled using the trac instance of the project at L<http://trac.project-builder.org/>.
82
83=head1 USER MAILING LIST
84
85Cf: L<http://www.mondorescue.org/sympa/info/pb-announce> for announces and L<http://www.mondorescue.org/sympa/info/pb-devel> for the development of the pb project.
86
87=head1 CONFIGURATION FILES
88
89Uses the main /etc/pb/pb.conf (or /usr/local/etc/pb/pb.conf if installed from files) configuration file to give its answers.
90
91=head1 AUTHORS
92
93The Project-Builder.org team L<http://trac.project-builder.org/> lead by Bruno Cornec L<mailto:bruno@project-builder.org>.
94
95=head1 COPYRIGHT
96
97Project-Builder.org is distributed under the GPL v2.0 license
98described in the file C<COPYING> included with the distribution.
99
100=cut
101
102my %opts; # CLI Options
103
104GetOptions(
105 "verbose|v+" => \$opts{'v'},
106 "short|s" => \$opts{'s'},
107 "description|d" => \$opts{'d'},
108 "id|i" => \$opts{'i'},
109 "release|r" => \$opts{'r'},
110 "codename|c" => \$opts{'c'},
111 "all|a" => \$opts{'a'},
112 "lsb|l" => \$opts{'l'},
113);
114if (defined $opts{'v'}) {
115 $pbdebug = $opts{'v'};
116}
117pb_log_init($pbdebug, \*STDOUT);
118
119my $dist = shift @ARGV || undef ;
120my @param = undef;
121@param = split(/-/,$dist) if (defined $dist);
122
123my ($ddir, $dver, $dfam, $dtype, $dos, $pbsuf, $pbupd, $arch) = pb_distro_init(@param);
124my $sep = "\n";
125if (defined $opts{'l'}) {
126 # Simulate lsb_release output
127 my ($l,$i,$d,$r,$c) = pb_distro_getlsb($opts{'s'});
128 $sep = " " if (defined $opts{'s'});
129 print $l.$sep;
130 print $i.$sep if (defined $opts{'i'} or defined $opts{'a'});
131 print $d.$sep if (defined $opts{'d'} or defined $opts{'a'});
132 print $r.$sep if (defined $opts{'r'} or defined $opts{'a'});
133 $sep = "" if (defined $opts{'s'});
134 print $c.$sep if (defined $opts{'c'} or defined $opts{'a'});
135 print "\n" if (defined $opts{'s'});
136} else {
137 $sep = "," if (defined $opts{'s'});
138 if (not defined $opts{'s'}) {
139 $dos = "OS:\t$dos";
140 $ddir = "Name:\t$ddir";
141 $dver = "Ver:\t$dver";
142 $dfam = "Family:\t$dfam";
143 $dtype = "Type:\t$dtype";
144 $pbsuf = "Suffix:\t$pbsuf";
145 $pbupd = "Update:\t$pbupd";
146 $arch = "Arch:\t$arch";
147 print "Project-Builder tuple:\n";
148 }
149 print join($sep,($dos, $ddir, $dver, $arch, $dtype, $dfam, $pbsuf, $pbupd))."\n";
150}
Note: See TracBrowser for help on using the repository browser.