dpkg-buildpackage.pl 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593
  1. #!/usr/bin/perl
  2. #
  3. # dpkg-buildpackage
  4. #
  5. # Copyright © 1996 Ian Jackson
  6. # Copyright © 2000 Wichert Akkerman
  7. # Copyright © 2006-2010,2012-2013 Guillem Jover <guillem@debian.org>
  8. # Copyright © 2007 Frank Lichtenheld
  9. #
  10. # This program is free software; you can redistribute it and/or modify
  11. # it under the terms of the GNU General Public License as published by
  12. # the Free Software Foundation; either version 2 of the License, or
  13. # (at your option) any later version.
  14. #
  15. # This program is distributed in the hope that it will be useful,
  16. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. # GNU General Public License for more details.
  19. #
  20. # You should have received a copy of the GNU General Public License
  21. # along with this program. If not, see <https://www.gnu.org/licenses/>.
  22. use strict;
  23. use warnings;
  24. use Carp;
  25. use Cwd;
  26. use File::Basename;
  27. use POSIX qw(:sys_wait_h);
  28. use Dpkg ();
  29. use Dpkg::Gettext;
  30. use Dpkg::ErrorHandling;
  31. use Dpkg::BuildOptions;
  32. use Dpkg::BuildProfiles qw(set_build_profiles);
  33. use Dpkg::Compression;
  34. use Dpkg::Version;
  35. use Dpkg::Control;
  36. use Dpkg::Changelog::Parse;
  37. use Dpkg::Path qw(find_command);
  38. use Dpkg::IPC;
  39. textdomain('dpkg-dev');
  40. sub showversion {
  41. printf _g("Debian %s version %s.\n"), $Dpkg::PROGNAME, $Dpkg::PROGVERSION;
  42. print _g('
  43. This is free software; see the GNU General Public License version 2 or
  44. later for copying conditions. There is NO warranty.
  45. ');
  46. }
  47. sub usage {
  48. printf _g(
  49. 'Usage: %s [<option>...]')
  50. . "\n\n" . _g(
  51. 'Options:
  52. -F (default) normal full build (binaries and sources).
  53. -b binary-only, do not build source.
  54. -B binary-only, no arch-indep files.
  55. -A binary-only, only arch-indep files.
  56. -S source-only, no binary files.
  57. -nc do not clean source tree (implies -b).
  58. -tc clean source tree when finished.
  59. -D (default) check build dependencies and conflicts.
  60. -d do not check build dependencies and conflicts.
  61. -P<profiles> assume given build profiles as active (comma-separated list).
  62. -R<rules> rules file to execute (default is debian/rules).
  63. -T<target> call debian/rules <target> with the proper environment.
  64. --as-root ensure -T calls the target with root rights.
  65. -j[<number>] specify jobs to run simultaneously (passed to <rules>).
  66. -r<gain-root-command>
  67. command to gain root privileges (default is fakeroot).
  68. --check-command=<check-command>
  69. command to check the .changes file (no default).
  70. --check-option=<opt>
  71. pass <opt> to <check-command>.
  72. -p<sign-command>
  73. command to sign .dsc and/or .changes files
  74. (default is gpg2 or gpg).
  75. -k<keyid> the key to use for signing.
  76. -ap add pause before starting signature process.
  77. -us unsigned source package.
  78. -uc unsigned .changes file.
  79. --force-sign
  80. force signing the resulting files.
  81. --admindir=<directory>
  82. change the administrative directory.
  83. -?, --help show this help message.
  84. --version show the version.')
  85. . "\n\n" . _g(
  86. 'Options passed to dpkg-architecture:
  87. -a<arch> Debian architecture we build for.
  88. -t<system> set GNU system type.')
  89. . "\n\n" . _g(
  90. 'Options passed to dpkg-genchanges:
  91. -si (default) source includes orig if new upstream.
  92. -sa uploaded source always includes orig.
  93. -sd uploaded source is diff and .dsc only.
  94. -v<version> changes since version <version>.
  95. -m<maint> maintainer for package is <maint>.
  96. -e<maint> maintainer for release is <maint>.
  97. -C<descfile> changes are described in <descfile>.
  98. --changes-option=<opt>
  99. pass option <opt> to dpkg-genchanges.')
  100. . "\n\n" . _g(
  101. 'Options passed to dpkg-source:
  102. -sn force Debian native source format.
  103. -s[sAkurKUR] see dpkg-source for explanation.
  104. -z<level> compression level to use for source.
  105. -Z<compressor> compression to use for source (gz|xz|bzip2|lzma).
  106. -i[<regex>] ignore diffs of files matching regex.
  107. -I[<pattern>] filter out files when building tarballs.
  108. --source-option=<opt>
  109. pass option <opt> to dpkg-source.
  110. '), $Dpkg::PROGNAME;
  111. }
  112. my $admindir;
  113. my @debian_rules = ('debian/rules');
  114. my @rootcommand = ();
  115. my $signcommand;
  116. my $noclean;
  117. my $cleansource;
  118. my $parallel;
  119. my $checkbuilddep = 1;
  120. my @checkbuilddep_opts;
  121. my @source_opts;
  122. my $check_command = $ENV{DEB_CHECK_COMMAND};
  123. my @check_opts;
  124. my $signpause;
  125. my $signkey = $ENV{DEB_SIGN_KEYID};
  126. my $signforce = 0;
  127. my $signreleased = 1;
  128. my $signsource = 1;
  129. my $signchanges = 1;
  130. my $buildtarget = 'build';
  131. my $binarytarget = 'binary';
  132. my $targetarch = '';
  133. my $targetgnusystem = '';
  134. my @build_profiles = ();
  135. my $call_target = '';
  136. my $call_target_as_root = 0;
  137. my $since;
  138. my $maint;
  139. my $changedby;
  140. my $desc;
  141. my @changes_opts;
  142. use constant BUILD_DEFAULT => 1;
  143. use constant BUILD_SOURCE => 2;
  144. use constant BUILD_ARCH_DEP => 4;
  145. use constant BUILD_ARCH_INDEP => 8;
  146. use constant BUILD_BINARY => BUILD_ARCH_DEP | BUILD_ARCH_INDEP;
  147. use constant BUILD_ALL => BUILD_BINARY | BUILD_SOURCE;
  148. my $include = BUILD_ALL | BUILD_DEFAULT;
  149. sub build_normal() { return ($include & BUILD_ALL) == BUILD_ALL; }
  150. sub build_sourceonly() { return $include == BUILD_SOURCE; }
  151. sub build_binaryonly() { return !($include & BUILD_SOURCE); }
  152. sub build_binaryindep() { return ($include == BUILD_ARCH_INDEP); }
  153. sub build_opt {
  154. if ($include == BUILD_BINARY) {
  155. return '-b';
  156. } elsif ($include == BUILD_ARCH_DEP) {
  157. return '-B';
  158. } elsif ($include == BUILD_ARCH_INDEP) {
  159. return '-A';
  160. } elsif ($include == BUILD_SOURCE) {
  161. return '-S';
  162. } else {
  163. croak "build_opt called with include=$include";
  164. }
  165. }
  166. while (@ARGV) {
  167. $_ = shift @ARGV;
  168. if (/^(--help|-\?)$/) {
  169. usage;
  170. exit 0;
  171. } elsif (/^--version$/) {
  172. showversion;
  173. exit 0;
  174. } elsif (/^--admindir$/) {
  175. $admindir = shift @ARGV;
  176. } elsif (/^--admindir=(.*)$/) {
  177. $admindir = $1;
  178. } elsif (/^--source-option=(.*)$/) {
  179. push @source_opts, $1;
  180. } elsif (/^--changes-option=(.*)$/) {
  181. push @changes_opts, $1;
  182. } elsif (/^-j(\d*)$/) {
  183. $parallel = $1 || '';
  184. } elsif (/^-r(.*)$/) {
  185. @rootcommand = split /\s+/, $1;
  186. } elsif (/^--check-command=(.*)$/) {
  187. $check_command = $1;
  188. } elsif (/^--check-option=(.*)$/) {
  189. push @check_opts, $1;
  190. } elsif (/^-p(.*)$/) {
  191. $signcommand = $1;
  192. } elsif (/^-k(.*)$/) {
  193. $signkey = $1;
  194. } elsif (/^-([dD])$/) {
  195. $checkbuilddep = ($1 eq 'D');
  196. } elsif (/^-s(gpg|pgp)$/) {
  197. # Deprecated option
  198. warning(_g('-s%s is deprecated; always using gpg style interface'), $1);
  199. } elsif (/^--force-sign$/) {
  200. $signforce = 1;
  201. } elsif (/^-us$/) {
  202. $signsource = 0;
  203. } elsif (/^-uc$/) {
  204. $signchanges = 0;
  205. } elsif (/^-ap$/) {
  206. $signpause = 1;
  207. } elsif (/^-a(.*)$/) {
  208. $targetarch = $1;
  209. } elsif (/^-P(.*)$/) {
  210. @build_profiles = split /,/, $1;
  211. } elsif (/^-s[iad]$/) {
  212. push @changes_opts, $_;
  213. } elsif (/^-(?:s[insAkurKUR]|[zZ].*|i.*|I.*)$/) {
  214. push @source_opts, $_; # passed to dpkg-source
  215. } elsif (/^-tc$/) {
  216. $cleansource = 1;
  217. } elsif (/^-t(.*)$/) {
  218. $targetgnusystem = $1; # Order DOES matter!
  219. } elsif (/^(--target|-T)$/) {
  220. $call_target = shift @ARGV;
  221. } elsif (/^(--target=|-T)(.+)$/) {
  222. $call_target = $2;
  223. } elsif (/^--as-root$/) {
  224. $call_target_as_root = 1;
  225. } elsif (/^-nc$/) {
  226. $noclean = 1;
  227. } elsif (/^-b$/) {
  228. usageerr(_g('cannot combine %s and %s'), build_opt(), $_)
  229. if build_sourceonly;
  230. $include = BUILD_BINARY;
  231. push @changes_opts, '-b';
  232. @checkbuilddep_opts = ();
  233. $buildtarget = 'build';
  234. $binarytarget = 'binary';
  235. } elsif (/^-B$/) {
  236. usageerr(_g('cannot combine %s and %s'), build_opt(), $_)
  237. if build_sourceonly;
  238. $include = BUILD_ARCH_DEP;
  239. push @changes_opts, '-B';
  240. @checkbuilddep_opts = qw(-B);
  241. $buildtarget = 'build-arch';
  242. $binarytarget = 'binary-arch';
  243. } elsif (/^-A$/) {
  244. usageerr(_g('cannot combine %s and %s'), build_opt(), $_)
  245. if build_sourceonly;
  246. $include = BUILD_ARCH_INDEP;
  247. push @changes_opts, '-A';
  248. @checkbuilddep_opts = qw(-A);
  249. $buildtarget = 'build-indep';
  250. $binarytarget = 'binary-indep';
  251. } elsif (/^-S$/) {
  252. usageerr(_g('cannot combine %s and %s'), build_opt(), $_)
  253. if build_binaryonly;
  254. $include = BUILD_SOURCE;
  255. push @changes_opts, '-S';
  256. @checkbuilddep_opts = qw(-A -B);
  257. } elsif (/^-F$/) {
  258. usageerr(_g('cannot combine %s and %s'), build_opt(), $_)
  259. if not build_normal;
  260. $include = BUILD_ALL;
  261. @checkbuilddep_opts = ();
  262. } elsif (/^-v(.*)$/) {
  263. $since = $1;
  264. } elsif (/^-m(.*)$/) {
  265. $maint = $1;
  266. } elsif (/^-e(.*)$/) {
  267. $changedby = $1;
  268. } elsif (/^-C(.*)$/) {
  269. $desc = $1;
  270. } elsif (m/^-[EW]$/) {
  271. # Deprecated option
  272. warning(_g('-E and -W are deprecated, they are without effect'));
  273. } elsif (/^-R(.*)$/) {
  274. @debian_rules = split /\s+/, $1;
  275. } else {
  276. usageerr(_g('unknown option or argument %s'), $_);
  277. }
  278. }
  279. if ($noclean) {
  280. # -nc without -b/-B/-A/-S/-F implies -b
  281. $include = BUILD_BINARY if ($include & BUILD_DEFAULT);
  282. }
  283. if ($< == 0) {
  284. warning(_g('using a gain-root-command while being root')) if (@rootcommand);
  285. } else {
  286. push @rootcommand, 'fakeroot' unless @rootcommand;
  287. }
  288. if (@rootcommand and not find_command($rootcommand[0])) {
  289. if ($rootcommand[0] eq 'fakeroot' and $< != 0) {
  290. error(_g("fakeroot not found, either install the fakeroot\n" .
  291. 'package, specify a command with the -r option, ' .
  292. 'or run this as root'));
  293. } else {
  294. error(_g("gain-root-commmand '%s' not found"), $rootcommand[0]);
  295. }
  296. }
  297. if ($check_command and not find_command($check_command)) {
  298. error(_g("check-commmand '%s' not found"), $check_command);
  299. }
  300. if ($signcommand) {
  301. if (!find_command($signcommand)) {
  302. error(_g("sign-commmand '%s' not found"), $signcommand);
  303. }
  304. } elsif (($ENV{GNUPGHOME} && -e $ENV{GNUPGHOME}) ||
  305. ($ENV{HOME} && -e "$ENV{HOME}/.gnupg")) {
  306. if (find_command('gpg2')) {
  307. $signcommand = 'gpg2';
  308. } elsif (find_command('gpg')) {
  309. $signcommand = 'gpg';
  310. }
  311. }
  312. my $build_opts = Dpkg::BuildOptions->new();
  313. if (defined $parallel) {
  314. $parallel = $build_opts->get('parallel') if $build_opts->has('parallel');
  315. $ENV{MAKEFLAGS} ||= '';
  316. $ENV{MAKEFLAGS} .= " -j$parallel";
  317. $build_opts->set('parallel', $parallel);
  318. $build_opts->export();
  319. }
  320. set_build_profiles(@build_profiles) if @build_profiles;
  321. my $cwd = cwd();
  322. my $dir = basename($cwd);
  323. my $changelog = changelog_parse();
  324. my $pkg = mustsetvar($changelog->{source}, _g('source package'));
  325. my $version = mustsetvar($changelog->{version}, _g('source version'));
  326. my ($ok, $error) = version_check($version);
  327. error($error) unless $ok;
  328. (my $sversion = $version) =~ s/^\d+://;
  329. my $distribution = mustsetvar($changelog->{distribution}, _g('source distribution'));
  330. my $maintainer;
  331. if ($changedby) {
  332. $maintainer = $changedby;
  333. } elsif ($maint) {
  334. $maintainer = $maint;
  335. } else {
  336. $maintainer = mustsetvar($changelog->{maintainer}, _g('source changed by'));
  337. }
  338. open my $arch_env, '-|', 'dpkg-architecture', "-a$targetarch",
  339. "-t$targetgnusystem", '-f' or subprocerr('dpkg-architecture');
  340. while ($_ = <$arch_env>) {
  341. chomp;
  342. my ($key, $value) = split /=/, $_, 2;
  343. $ENV{$key} = $value;
  344. }
  345. close $arch_env or subprocerr('dpkg-architecture');
  346. my $arch;
  347. if (build_sourceonly) {
  348. $arch = 'source';
  349. } elsif (build_binaryindep) {
  350. $arch = 'all';
  351. } else {
  352. $arch = mustsetvar($ENV{DEB_HOST_ARCH}, _g('host architecture'));
  353. }
  354. my $pv = "${pkg}_$sversion";
  355. my $pva = "${pkg}_${sversion}_$arch";
  356. if (not $signcommand) {
  357. $signsource = 0;
  358. $signchanges = 0;
  359. } elsif ($signforce) {
  360. $signsource = 1;
  361. $signchanges = 1;
  362. } elsif (($signsource or $signchanges) and $distribution eq 'UNRELEASED') {
  363. $signreleased = 0;
  364. $signsource = 0;
  365. $signchanges = 0;
  366. }
  367. if ($signsource && build_binaryonly) {
  368. $signsource = 0;
  369. }
  370. #
  371. # Preparation of environment stops here
  372. #
  373. if (not -x 'debian/rules') {
  374. warning(_g('debian/rules is not executable; fixing that'));
  375. chmod(0755, 'debian/rules'); # No checks of failures, non fatal
  376. }
  377. unless ($call_target) {
  378. chdir('..') or syserr('chdir ..');
  379. withecho('dpkg-source', @source_opts, '--before-build', $dir);
  380. chdir($dir) or syserr("chdir $dir");
  381. }
  382. if ($checkbuilddep) {
  383. push @checkbuilddep_opts, "--admindir=$admindir" if $admindir;
  384. system('dpkg-checkbuilddeps', @checkbuilddep_opts);
  385. if (not WIFEXITED($?)) {
  386. subprocerr('dpkg-checkbuilddeps');
  387. } elsif (WEXITSTATUS($?)) {
  388. warning(_g('build dependencies/conflicts unsatisfied; aborting'));
  389. warning(_g('(Use -d flag to override.)'));
  390. if (build_sourceonly) {
  391. warning(_g('this is currently a non-fatal warning with -S, but ' .
  392. 'will probably become fatal in the future'));
  393. } else {
  394. exit 3;
  395. }
  396. }
  397. }
  398. if ($call_target) {
  399. if ($call_target_as_root or
  400. $call_target =~ /^(clean|binary(|-arch|-indep))$/)
  401. {
  402. withecho(@rootcommand, @debian_rules, $call_target);
  403. } else {
  404. withecho(@debian_rules, $call_target);
  405. }
  406. exit 0;
  407. }
  408. unless ($noclean) {
  409. withecho(@rootcommand, @debian_rules, 'clean');
  410. }
  411. if ($include & BUILD_SOURCE) {
  412. warning(_g('building a source package without cleaning up as you asked; ' .
  413. 'it might contain undesired files')) if $noclean;
  414. chdir('..') or syserr('chdir ..');
  415. withecho('dpkg-source', @source_opts, '-b', $dir);
  416. chdir($dir) or syserr("chdir $dir");
  417. }
  418. if ($buildtarget ne 'build' and scalar(@debian_rules) == 1) {
  419. # Verify that build-{arch,indep} are supported. If not, fallback to build.
  420. # This is a temporary measure to not break too many packages on a flag day.
  421. my $pid = spawn(exec => [ 'make', '-f', @debian_rules, '-qn', $buildtarget ],
  422. from_file => '/dev/null', to_file => '/dev/null',
  423. error_to_file => '/dev/null');
  424. my $cmdline = "make -f @debian_rules -qn $buildtarget";
  425. wait_child($pid, nocheck => 1, cmdline => $cmdline);
  426. my $exitcode = WEXITSTATUS($?);
  427. subprocerr($cmdline) unless WIFEXITED($?);
  428. if ($exitcode == 2) {
  429. warning(_g("%s must be updated to support the 'build-arch' and " .
  430. "'build-indep' targets (at least '%s' seems to be " .
  431. 'missing)'), "@debian_rules", $buildtarget);
  432. $buildtarget = 'build';
  433. }
  434. }
  435. if ($include & BUILD_BINARY) {
  436. withecho(@debian_rules, $buildtarget);
  437. withecho(@rootcommand, @debian_rules, $binarytarget);
  438. }
  439. push @changes_opts, "-m$maint" if defined $maint;
  440. push @changes_opts, "-e$changedby" if defined $changedby;
  441. push @changes_opts, "-v$since" if defined $since;
  442. push @changes_opts, "-C$desc" if defined $desc;
  443. my $chg = "../$pva.changes";
  444. my $changes = Dpkg::Control->new(type => CTRL_FILE_CHANGES);
  445. print { *STDERR } " dpkg-genchanges @changes_opts >$chg\n";
  446. open my $changes_fh, '-|', 'dpkg-genchanges', @changes_opts
  447. or subprocerr('dpkg-genchanges');
  448. $changes->parse($changes_fh, _g('parse changes file'));
  449. $changes->save($chg);
  450. close $changes_fh or subprocerr(_g('dpkg-genchanges'));
  451. if ($cleansource) {
  452. withecho(@rootcommand, @debian_rules, 'clean');
  453. }
  454. chdir('..') or syserr('chdir ..');
  455. withecho('dpkg-source', @source_opts, '--after-build', $dir);
  456. chdir($dir) or syserr("chdir $dir");
  457. printf "$Dpkg::PROGNAME: %s\n", describe_build($changes->{'Files'});
  458. if ($check_command) {
  459. withecho($check_command, @check_opts, $chg);
  460. }
  461. if ($signpause && ($signchanges || $signsource)) {
  462. print _g("Press the return key to start signing process\n");
  463. getc();
  464. }
  465. if ($signsource && signfile("$pv.dsc")) {
  466. error(_g('failed to sign .dsc and .changes file'));
  467. }
  468. if ($signchanges && signfile("$pva.changes")) {
  469. error(_g('failed to sign .changes file'));
  470. }
  471. if (not $signreleased) {
  472. warning(_g('not signing UNRELEASED build; use --force-sign to override'));
  473. }
  474. sub mustsetvar {
  475. my ($var, $text) = @_;
  476. error(_g('unable to determine %s'), $text)
  477. unless defined($var);
  478. print "$Dpkg::PROGNAME: $text $var\n";
  479. return $var;
  480. }
  481. sub withecho {
  482. print { *STDERR } " @_\n";
  483. system(@_)
  484. and subprocerr("@_");
  485. }
  486. sub signfile {
  487. my ($file) = @_;
  488. print { *STDERR } " signfile $file\n";
  489. my $qfile = quotemeta($file);
  490. system("(cat ../$qfile ; echo '') | " .
  491. "$signcommand --utf8-strings --local-user " .
  492. quotemeta($signkey || $maintainer) .
  493. " --clearsign --armor --textmode > ../$qfile.asc");
  494. my $status = $?;
  495. unless ($status) {
  496. system('mv', '--', "../$file.asc", "../$file")
  497. and subprocerr('mv');
  498. } else {
  499. system('rm', '-f', "../$file.asc")
  500. and subprocerr('rm -f');
  501. }
  502. print "\n";
  503. return $status
  504. }
  505. sub fileomitted {
  506. my ($files, $regex) = @_;
  507. return $files !~ /$regex/
  508. }
  509. sub describe_build {
  510. my ($files) = @_;
  511. my $ext = compression_get_file_extension_regex();
  512. if (fileomitted($files, qr/\.deb/)) {
  513. # source-only upload
  514. if (fileomitted($files, qr/\.diff\.$ext/) and
  515. fileomitted($files, qr/\.debian\.tar\.$ext/)) {
  516. return _g('source-only upload: Debian-native package');
  517. } elsif (fileomitted($files, qr/\.orig\.tar\.$ext/)) {
  518. return _g('source-only, diff-only upload (original source NOT included)');
  519. } else {
  520. return _g('source-only upload (original source is included)');
  521. }
  522. } elsif (fileomitted($files, qr/\.dsc/)) {
  523. return _g('binary-only upload (no source included)');
  524. } elsif (fileomitted($files, qr/\.diff\.$ext/) and
  525. fileomitted($files, qr/\.debian\.tar\.$ext/)) {
  526. return _g('full upload; Debian-native package (full source is included)');
  527. } elsif (fileomitted($files, qr/\.orig\.tar\.$ext/)) {
  528. return _g('binary and diff upload (original source NOT included)');
  529. } else {
  530. return _g('full upload (original source is included)');
  531. }
  532. }