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
|
# Global variables:
# $v - value parameter to function
# $sourcepackage - name of sourcepackage
# %capit - map to get properly capitilized version of fields
# %fi - map of fields values. keys are of the form "S# key"
# where S is source (L is changelog, C is control)
# and # is an index
# %p2i - map from datafile+packagename to index in controlfile
# (used if multiple packages can be listed). Key is
# "S key" where S is the source and key is the packagename
# %substvar - map with substitution variables
$parsechangelog= 'dpkg-parsechangelog';
grep($capit{lc $_}=$_, qw(Pre-Depends Standards-Version Installed-Size
Build-Depends Build-Depends-Indep
Build-Conflicts Build-Conflicts-Indep));
$substvar{'Format'}= 1.7;
$substvar{'Newline'}= "\n";
$substvar{'Space'}= " ";
$substvar{'Tab'}= "\t";
$maxsubsts=50;
$warnable_error= 1;
$progname= $0; $progname= $& if $progname =~ m,[^/]+$,;
$getlogin = getlogin();
if(!defined($getlogin)) {
open(SAVEIN, "<&STDIN");
close(STDIN);
open(STDIN, "<&STDERR");
$getlogin = getlogin();
close(STDIN);
open(STDIN, "<&SAVEIN");
close(SAVEIN);
}
if(!defined($getlogin)) {
open(SAVEIN, "<&STDIN");
close(STDIN);
open(STDIN, "<&STDOUT");
$getlogin = getlogin();
close(STDIN);
open(STDIN, "<&SAVEIN");
close(SAVEIN);
}
if (defined ($ENV{'LOGNAME'})) {
@fowner = getpwnam ($ENV{'LOGNAME'});
if (! @fowner) { die (sprintf ('unable to get login information for username "%s"', $ENV{'LOGNAME'})); }
} elsif (defined ($getlogin)) {
@fowner = getpwnam ($getlogin);
if (! @fowner) { die (sprintf ('unable to get login information for username "%s"', $getlogin)); }
} else {
&warn (sprintf ('no utmp entry available and LOGNAME not defined; using uid of process (%d)', $<));
@fowner = getpwuid ($<);
if (! @fowner) { die (sprintf ('unable to get login information for uid %d', $<)); }
}
@fowner = @fowner[2,3];
sub capit {
return defined($capit{lc $_[0]}) ? $capit{lc $_[0]} :
(uc substr($_[0],0,1)).(lc substr($_[0],1));
}
sub findarch {
$arch=`dpkg-architecture -qDEB_HOST_ARCH`;
$? && &subprocerr("dpkg-architecture -qDEB_HOST_ARCH");
chomp $arch;
$substvar{'Arch'}= $arch;
}
sub substvars {
my ($v) = @_;
my ($lhs,$vn,$rhs,$count);
$count=0;
while ($v =~ m/\$\{([-:0-9a-z]+)\}/i) {
$count < $maxsubsts ||
&error("too many substitutions - recursive ? - in \`$v'");
$lhs=$`; $vn=$1; $rhs=$';
if (defined($substvar{$vn})) {
$v= $lhs.$substvar{$vn}.$rhs;
$count++;
} else {
&warn("unknown substitution variable \${$vn}");
$v= $lhs.$rhs;
}
}
return $v;
}
sub outputclose {
my ($dosubstvars) = @_;
for $f (keys %f) { $substvar{"F:$f"}= $f{$f}; }
if (length($varlistfile) and $dosubstvars) {
$varlistfile="./$varlistfile" if $varlistfile =~ m/\s/;
if (open(SV,"< $varlistfile")) {
while (<SV>) {
next if m/^\#/ || !m/\S/;
s/\s*\n$//;
m/^(\w[-:0-9A-Za-z]*)\=/ ||
&error("bad line in substvars file $varlistfile at line $.");
$substvar{$1}= $';
}
close(SV);
} elsif ($! != ENOENT ) {
&error("unable to open substvars file $varlistfile: $!");
}
}
for $f (sort { $fieldimps{$b} <=> $fieldimps{$a} } keys %f) {
$v= $f{$f};
if ($dosubstvars) {
$v= &substvars($v);
}
$v =~ m/\S/ || next; # delete whitespace-only fields
$v =~ m/\n\S/ && &internerr("field $f has newline then non whitespace >$v<");
$v =~ m/\n[ \t]*\n/ && &internerr("field $f has blank lines >$v<");
$v =~ m/\n$/ && &internerr("field $f has trailing newline >$v<");
if ($dosubstvars) {
$v =~ s/,[\s,]*,/,/g;
$v =~ s/^\s*,\s*//;
$v =~ s/\s*,\s*$//;
}
$v =~ s/\$\{\}/\$/g;
print("$f: $v\n") || &syserr("write error on control data");
}
close(STDOUT) || &syserr("write error on close control data");
}
sub parsecontrolfile {
$controlfile="./$controlfile" if $controlfile =~ m/^\s/;
open(CDATA,"< $controlfile") || &error("cannot read control file $controlfile: $!");
$indices= &parsecdata('C',1,"control file $controlfile");
$indices >= 2 || &error("control file must have at least one binary package part");
for ($i=1;$i<$indices;$i++) {
defined($fi{"C$i Package"}) ||
&error("per-package paragraph $i in control info file is ".
"missing Package line");
}
}
sub parsechangelog {
defined($c=open(CDATA,"-|")) || &syserr("fork for parse changelog");
if (!$c) {
@al=($parsechangelog);
push(@al,"-F$changelogformat") if length($changelogformat);
push(@al,"-v$since") if length($since);
push(@al,"-l$changelogfile");
exec(@al) || &syserr("exec parsechangelog $parsechangelog");
}
&parsecdata('L',0,"parsed version of changelog");
close(CDATA); $? && &subprocerr("parse changelog");
$substvar{'Source-Version'}= $fi{"L Version"};
}
sub setsourcepackage {
if (length($sourcepackage)) {
$v eq $sourcepackage ||
&error("source package has two conflicting values - $sourcepackage and $v");
} else {
$sourcepackage= $v;
}
}
sub parsecdata {
local ($source,$many,$whatmsg) = @_;
# many=0: ordinary control data like output from dpkg-parsechangelog
# many=1: many paragraphs like in source control file
# many=-1: single paragraph of control data optionally signed
local ($index,$cf);
$index=''; $cf='';
while (<CDATA>) {
s/\s*\n$//;
if (m/^(\S+)\s*:\s*(.*)$/) {
$cf=$1; $v=$2;
$cf= &capit($cf);
$fi{"$source$index $cf"}= $v;
if (lc $cf eq 'package') { $p2i{"$source $v"}= $index; }
} elsif (m/^\s+\S/) {
length($cf) || &syntax("continued value line not in field");
$fi{"$source$index $cf"}.= "\n$_";
} elsif (m/^-----BEGIN PGP/ && $many<0) {
$many == -2 && syntax("expected blank line before PGP signature");
while (<CDATA>) { last if m/^$/; }
$many= -2;
} elsif (m/^$/) {
if ($many>0) {
$index++; $cf='';
} elsif ($many == -2) {
$_= <CDATA>;
length($_) ||
&syntax("expected PGP signature, found EOF after blank line");
s/\n$//;
m/^-----BEGIN PGP/ ||
&syntax("expected PGP signature, found something else \`$_'");
$many= -3; last;
} else {
&syntax("found several \`paragraphs' where only one expected");
}
} else {
&syntax("line with unknown format (not field-colon-value)");
}
}
$many == -2 && &syntax("found start of PGP body but no signature");
if (length($cf)) { $index++; }
$index || &syntax("empty file");
return $index;
}
sub unknown {
&warn("unknown information field $_ in input data in $_[0]");
}
sub syntax {
&error("syntax error in $whatmsg at line $.: $_[0]");
}
sub failure { die "$progname: failure: $_[0]\n"; }
sub syserr { die "$progname: failure: $_[0]: $!\n"; }
sub error { die "$progname: error: $_[0]\n"; }
sub internerr { die "$progname: internal error: $_[0]\n"; }
sub warn { warn "$progname: warning: $_[0]\n"; }
sub usageerr { print(STDERR "$progname: @_\n\n"); &usageversion; exit(2); }
sub warnerror { if ($warnable_error) { &warn( @_ ); } else { &error( @_ ); } }
sub subprocerr {
local ($p) = @_;
if (WIFEXITED($?)) {
die "$progname: failure: $p gave error exit status ".WEXITSTATUS($?)."\n";
} elsif (WIFSIGNALED($?)) {
die "$progname: failure: $p died from signal ".WTERMSIG($?)."\n";
} else {
die "$progname: failure: $p failed with unknown exit code $?\n";
}
}
1;
|