dpkg-genchanges.pl 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534
  1. #!/usr/bin/perl
  2. #
  3. # dpkg-genchanges
  4. #
  5. # Copyright © 1996 Ian Jackson
  6. # Copyright © 2000,2001 Wichert Akkerman
  7. # Copyright © 2006-2014 Guillem Jover <guillem@debian.org>
  8. #
  9. # This program is free software; you can redistribute it and/or modify
  10. # it under the terms of the GNU General Public License as published by
  11. # the Free Software Foundation; either version 2 of the License, or
  12. # (at your option) any later version.
  13. #
  14. # This program is distributed in the hope that it will be useful,
  15. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. # GNU General Public License for more details.
  18. #
  19. # You should have received a copy of the GNU General Public License
  20. # along with this program. If not, see <https://www.gnu.org/licenses/>.
  21. use strict;
  22. use warnings;
  23. use Carp;
  24. use Encode;
  25. use POSIX qw(:errno_h :locale_h);
  26. use Dpkg ();
  27. use Dpkg::Gettext;
  28. use Dpkg::Util qw(:list);
  29. use Dpkg::File;
  30. use Dpkg::Checksums;
  31. use Dpkg::ErrorHandling;
  32. use Dpkg::BuildProfiles qw(get_build_profiles parse_build_profiles
  33. evaluate_restriction_formula);
  34. use Dpkg::Arch qw(get_host_arch debarch_eq debarch_is);
  35. use Dpkg::Compression;
  36. use Dpkg::Control::Info;
  37. use Dpkg::Control::Fields;
  38. use Dpkg::Control;
  39. use Dpkg::Substvars;
  40. use Dpkg::Vars;
  41. use Dpkg::Changelog::Parse;
  42. use Dpkg::Dist::Files;
  43. use Dpkg::Version;
  44. textdomain('dpkg-dev');
  45. my $controlfile = 'debian/control';
  46. my $changelogfile = 'debian/changelog';
  47. my $changelogformat;
  48. my $fileslistfile = 'debian/files';
  49. my $uploadfilesdir = '..';
  50. my $sourcestyle = 'i';
  51. my $quiet = 0;
  52. my $host_arch = get_host_arch();
  53. my @profiles = get_build_profiles();
  54. my $changes_format = '1.8';
  55. my %p2f; # - package to file map, has entries for "packagename"
  56. my %f2seccf; # - package to section map, from control file
  57. my %f2pricf; # - package to priority map, from control file
  58. my %sourcedefault; # - default values as taken from source (used for Section,
  59. # Priority and Maintainer)
  60. my @descriptions;
  61. my $checksums = Dpkg::Checksums->new();
  62. my %remove; # - fields to remove
  63. my %override;
  64. my %archadded;
  65. my @archvalues;
  66. my $changesdescription;
  67. my $forcemaint;
  68. my $forcechangedby;
  69. my $since;
  70. my $substvars_loaded = 0;
  71. my $substvars = Dpkg::Substvars->new();
  72. $substvars->set_as_auto('Format', $changes_format);
  73. use constant BUILD_SOURCE => 1;
  74. use constant BUILD_ARCH_DEP => 2;
  75. use constant BUILD_ARCH_INDEP => 4;
  76. use constant BUILD_BINARY => BUILD_ARCH_DEP | BUILD_ARCH_INDEP;
  77. use constant BUILD_SOURCE_DEP => BUILD_SOURCE | BUILD_ARCH_DEP;
  78. use constant BUILD_SOURCE_INDEP => BUILD_SOURCE | BUILD_ARCH_INDEP;
  79. use constant BUILD_ALL => BUILD_BINARY | BUILD_SOURCE;
  80. my $include = BUILD_ALL;
  81. sub build_is_default() { return ($include & BUILD_ALL) == BUILD_ALL; }
  82. sub build_opt {
  83. if ($include == BUILD_BINARY) {
  84. return '-b';
  85. } elsif ($include == BUILD_ARCH_DEP) {
  86. return '-B';
  87. } elsif ($include == BUILD_ARCH_INDEP) {
  88. return '-A';
  89. } elsif ($include == BUILD_SOURCE) {
  90. return '-S';
  91. } elsif ($include == BUILD_SOURCE_DEP) {
  92. return '-G';
  93. } elsif ($include == BUILD_SOURCE_INDEP) {
  94. return '-g';
  95. } else {
  96. croak "build_opt called with include=$include";
  97. }
  98. }
  99. sub set_build_type
  100. {
  101. my ($build_type, $build_option) = @_;
  102. usageerr(g_('cannot combine %s and %s'), build_opt(), $build_option)
  103. if not build_is_default and $include != $build_type;
  104. $include = $build_type;
  105. }
  106. sub version {
  107. printf g_("Debian %s version %s.\n"), $Dpkg::PROGNAME, $Dpkg::PROGVERSION;
  108. printf g_('
  109. This is free software; see the GNU General Public License version 2 or
  110. later for copying conditions. There is NO warranty.
  111. ');
  112. }
  113. sub usage {
  114. printf g_(
  115. 'Usage: %s [<option>...]')
  116. . "\n\n" . g_(
  117. "Options:
  118. -g source and arch-indep build.
  119. -G source and arch-specific build.
  120. -b binary-only, no source files.
  121. -B binary-only, only arch-specific files.
  122. -A binary-only, only arch-indep files.
  123. -S source-only, no binary files.
  124. -c<control-file> get control info from this file.
  125. -l<changelog-file> get per-version info from this file.
  126. -f<files-list-file> get .deb files list from this file.
  127. -v<since-version> include all changes later than version.
  128. -C<changes-description> use change description from this file.
  129. -m<maintainer> override control's maintainer value.
  130. -e<maintainer> override changelog's maintainer value.
  131. -u<upload-files-dir> directory with files (default is '..').
  132. -si source includes orig, if new upstream (default).
  133. -sa source includes orig, always.
  134. -sd source is diff and .dsc only.
  135. -q quiet - no informational messages on stderr.
  136. -F<changelog-format> force changelog format.
  137. -V<name>=<value> set a substitution variable.
  138. -T<substvars-file> read variables here, not debian/substvars.
  139. -D<field>=<value> override or add a field and value.
  140. -U<field> remove a field.
  141. -?, --help show this help message.
  142. --version show the version.
  143. "), $Dpkg::PROGNAME;
  144. }
  145. while (@ARGV) {
  146. $_=shift(@ARGV);
  147. if (m/^-b$/) {
  148. set_build_type(BUILD_BINARY, $_);
  149. } elsif (m/^-B$/) {
  150. set_build_type(BUILD_ARCH_DEP, $_);
  151. } elsif (m/^-A$/) {
  152. set_build_type(BUILD_ARCH_INDEP, $_);
  153. } elsif (m/^-S$/) {
  154. set_build_type(BUILD_SOURCE, $_);
  155. } elsif (m/^-G$/) {
  156. set_build_type(BUILD_SOURCE_DEP, $_);
  157. } elsif (m/^-g$/) {
  158. set_build_type(BUILD_SOURCE_INDEP, $_);
  159. } elsif (m/^-s([iad])$/) {
  160. $sourcestyle= $1;
  161. } elsif (m/^-q$/) {
  162. $quiet= 1;
  163. } elsif (m/^-c(.*)$/) {
  164. $controlfile = $1;
  165. } elsif (m/^-l(.*)$/) {
  166. $changelogfile = $1;
  167. } elsif (m/^-C(.*)$/) {
  168. $changesdescription = $1;
  169. } elsif (m/^-f(.*)$/) {
  170. $fileslistfile = $1;
  171. } elsif (m/^-v(.*)$/) {
  172. $since = $1;
  173. } elsif (m/^-T(.*)$/) {
  174. $substvars->load($1) if -e $1;
  175. $substvars_loaded = 1;
  176. } elsif (m/^-m(.*)$/s) {
  177. $forcemaint = $1;
  178. } elsif (m/^-e(.*)$/s) {
  179. $forcechangedby = $1;
  180. } elsif (m/^-F([0-9a-z]+)$/) {
  181. $changelogformat = $1;
  182. } elsif (m/^-D([^\=:]+)[=:](.*)$/s) {
  183. $override{$1} = $2;
  184. } elsif (m/^-u(.*)$/) {
  185. $uploadfilesdir = $1;
  186. } elsif (m/^-U([^\=:]+)$/) {
  187. $remove{$1} = 1;
  188. } elsif (m/^-V(\w[-:0-9A-Za-z]*)[=:](.*)$/s) {
  189. $substvars->set($1, $2);
  190. } elsif (m/^-(?:\?|-help)$/) {
  191. usage();
  192. exit(0);
  193. } elsif (m/^--version$/) {
  194. version();
  195. exit(0);
  196. } else {
  197. usageerr(g_("unknown option '%s'"), $_);
  198. }
  199. }
  200. # Retrieve info from the current changelog entry
  201. my %options = (file => $changelogfile);
  202. $options{changelogformat} = $changelogformat if $changelogformat;
  203. $options{since} = $since if defined($since);
  204. my $changelog = changelog_parse(%options);
  205. # Change options to retrieve info of the former changelog entry
  206. delete $options{since};
  207. $options{count} = 1;
  208. $options{offset} = 1;
  209. my $prev_changelog = changelog_parse(%options);
  210. # Other initializations
  211. my $control = Dpkg::Control::Info->new($controlfile);
  212. my $fields = Dpkg::Control->new(type => CTRL_FILE_CHANGES);
  213. my $sourceversion = $changelog->{'Binary-Only'} ?
  214. $prev_changelog->{'Version'} : $changelog->{'Version'};
  215. my $binaryversion = $changelog->{'Version'};
  216. $substvars->set_version_substvars($sourceversion, $binaryversion);
  217. $substvars->set_arch_substvars();
  218. $substvars->load('debian/substvars') if -e 'debian/substvars' and not $substvars_loaded;
  219. if (defined($prev_changelog) and
  220. version_compare_relation($changelog->{'Version'}, REL_LT,
  221. $prev_changelog->{'Version'}))
  222. {
  223. warning(g_('the current version (%s) is earlier than the previous one (%s)'),
  224. $changelog->{'Version'}, $prev_changelog->{'Version'})
  225. # ~bpo and ~vola are backports and have lower version number by definition
  226. unless $changelog->{'Version'} =~ /~(?:bpo|vola)/;
  227. }
  228. # Scan control info of source package
  229. my $src_fields = $control->get_source();
  230. foreach (keys %{$src_fields}) {
  231. my $v = $src_fields->{$_};
  232. if (m/^Source$/) {
  233. set_source_package($v);
  234. } elsif (m/^Section$|^Priority$/i) {
  235. $sourcedefault{$_} = $v;
  236. } else {
  237. field_transfer_single($src_fields, $fields);
  238. }
  239. }
  240. my $dist = Dpkg::Dist::Files->new();
  241. my $origsrcmsg;
  242. if ($include & BUILD_SOURCE) {
  243. my $sec = $sourcedefault{'Section'} // '-';
  244. my $pri = $sourcedefault{'Priority'} // '-';
  245. warning(g_('missing Section for source files')) if $sec eq '-';
  246. warning(g_('missing Priority for source files')) if $pri eq '-';
  247. my $spackage = get_source_package();
  248. (my $sversion = $substvars->get('source:Version')) =~ s/^\d+://;
  249. my $dsc = "${spackage}_${sversion}.dsc";
  250. my $dsc_pathname = "$uploadfilesdir/$dsc";
  251. my $dsc_fields = Dpkg::Control->new(type => CTRL_PKG_SRC);
  252. $dsc_fields->load($dsc_pathname) or error(g_('%s is empty'), $dsc_pathname);
  253. $checksums->add_from_file($dsc_pathname, key => $dsc);
  254. $checksums->add_from_control($dsc_fields, use_files_for_md5 => 1);
  255. # Compare upstream version to previous upstream version to decide if
  256. # the .orig tarballs must be included
  257. my $include_tarball;
  258. if (defined($prev_changelog)) {
  259. my $cur = Dpkg::Version->new($changelog->{'Version'});
  260. my $prev = Dpkg::Version->new($prev_changelog->{'Version'});
  261. $include_tarball = ($cur->version() ne $prev->version()) ? 1 : 0;
  262. } else {
  263. # No previous entry means first upload, tarball required
  264. $include_tarball = 1;
  265. }
  266. my $ext = compression_get_file_extension_regex();
  267. if ((($sourcestyle =~ m/i/ && !$include_tarball) ||
  268. $sourcestyle =~ m/d/) &&
  269. any { m/\.(?:debian\.tar|diff)\.$ext$/ } $checksums->get_files())
  270. {
  271. $origsrcmsg = g_('not including original source code in upload');
  272. foreach my $f (grep { m/\.orig(-.+)?\.tar\.$ext$/ } $checksums->get_files()) {
  273. $checksums->remove_file($f);
  274. }
  275. } else {
  276. if ($sourcestyle =~ m/d/ &&
  277. none { m/\.(?:debian\.tar|diff)\.$ext$/ } $checksums->get_files()) {
  278. warning(g_('ignoring -sd option for native Debian package'));
  279. }
  280. $origsrcmsg = g_('including full source code in upload');
  281. }
  282. # Only add attributes for files being distributed.
  283. for my $f ($checksums->get_files()) {
  284. $dist->add_file($f, $sec, $pri);
  285. }
  286. } elsif ($include == BUILD_ARCH_DEP) {
  287. $origsrcmsg = g_('binary-only arch-specific upload ' .
  288. '(source code and arch-indep packages not included)');
  289. } elsif ($include == BUILD_ARCH_INDEP) {
  290. $origsrcmsg = g_('binary-only arch-indep upload ' .
  291. '(source code and arch-specific packages not included)');
  292. } else {
  293. $origsrcmsg = g_('binary-only upload (no source code included)');
  294. }
  295. if ($include & BUILD_BINARY) {
  296. my $dist_count = 0;
  297. $dist_count = $dist->load($fileslistfile) if -e $fileslistfile;
  298. error(g_('binary build with no binary artifacts found; cannot distribute'))
  299. if $dist_count == 0;
  300. foreach my $file ($dist->get_files()) {
  301. if (defined $file->{package} && $file->{package_type} =~ m/^u?deb$/) {
  302. $p2f{$file->{package}} //= [];
  303. push @{$p2f{$file->{package}}}, $file->{filename};
  304. }
  305. if (defined $file->{arch}) {
  306. push @archvalues, $file->{arch}
  307. if $file->{arch} and not $archadded{$file->{arch}}++;
  308. }
  309. }
  310. }
  311. # Scan control info of all binary packages
  312. foreach my $pkg ($control->get_packages()) {
  313. my $p = $pkg->{'Package'};
  314. my $a = $pkg->{'Architecture'} // '';
  315. my $bp = $pkg->{'Build-Profiles'};
  316. my $d = $pkg->{'Description'} || 'no description available';
  317. $d = $1 if $d =~ /^(.*)\n/;
  318. my $pkg_type = $pkg->{'Package-Type'} ||
  319. $pkg->get_custom_field('Package-Type') || 'deb';
  320. my @f; # List of files for this binary package
  321. push @f, @{$p2f{$p}} if defined $p2f{$p};
  322. # Add description of all binary packages
  323. my $desc = encode_utf8(sprintf('%-10s - %-.65s', $p, decode_utf8($d)));
  324. $desc .= " ($pkg_type)" if $pkg_type ne 'deb';
  325. push @descriptions, $desc;
  326. my @restrictions;
  327. @restrictions = parse_build_profiles($bp) if defined $bp;
  328. if (not defined($p2f{$p})) {
  329. # No files for this package... warn if it's unexpected
  330. if (((debarch_eq('all', $a) and ($include & BUILD_ARCH_INDEP)) ||
  331. ((any { debarch_is($host_arch, $_) } split /\s+/, $a)
  332. and ($include & BUILD_ARCH_DEP))) and
  333. (@restrictions == 0 or
  334. evaluate_restriction_formula(\@restrictions, \@profiles)))
  335. {
  336. warning(g_('package %s in control file but not in files list'),
  337. $p);
  338. }
  339. next; # and skip it
  340. }
  341. foreach (keys %{$pkg}) {
  342. my $v = $pkg->{$_};
  343. if (m/^Section$/) {
  344. $f2seccf{$_} = $v foreach (@f);
  345. } elsif (m/^Priority$/) {
  346. $f2pricf{$_} = $v foreach (@f);
  347. } elsif (m/^Architecture$/) {
  348. if ((any { debarch_is($host_arch, $_) } split /\s+/, $v)
  349. and ($include & BUILD_ARCH_DEP)) {
  350. $v = $host_arch;
  351. } elsif (!debarch_eq('all', $v)) {
  352. $v = '';
  353. }
  354. push(@archvalues, $v) if $v and not $archadded{$v}++;
  355. } elsif (m/^Description$/) {
  356. # Description in changes is computed, do not copy this field
  357. } else {
  358. field_transfer_single($pkg, $fields);
  359. }
  360. }
  361. }
  362. # Scan fields of dpkg-parsechangelog
  363. foreach (keys %{$changelog}) {
  364. my $v = $changelog->{$_};
  365. if (m/^Source$/i) {
  366. set_source_package($v);
  367. } elsif (m/^Maintainer$/i) {
  368. $fields->{'Changed-By'} = $v;
  369. } else {
  370. field_transfer_single($changelog, $fields);
  371. }
  372. }
  373. if ($changesdescription) {
  374. open(my $changes_fh, '<', $changesdescription)
  375. or syserr(g_('cannot read %s'), $changesdescription);
  376. $fields->{'Changes'} = "\n" . file_slurp($changes_fh);
  377. close($changes_fh);
  378. }
  379. for my $p (keys %p2f) {
  380. if (not defined $control->get_pkg_by_name($p)) {
  381. warning(g_('package %s listed in files list but not in control info'), $p);
  382. next;
  383. }
  384. foreach my $f (@{$p2f{$p}}) {
  385. my $file = $dist->get_file($f);
  386. my $sec = $f2seccf{$f} || $sourcedefault{'Section'} // '-';
  387. if ($sec eq '-') {
  388. warning(g_("missing Section for binary package %s; using '-'"), $p);
  389. }
  390. if ($sec ne $file->{section}) {
  391. error(g_('package %s has section %s in control file but %s in ' .
  392. 'files list'), $p, $sec, $file->{section});
  393. }
  394. my $pri = $f2pricf{$f} || $sourcedefault{'Priority'} // '-';
  395. if ($pri eq '-') {
  396. warning(g_("missing Priority for binary package %s; using '-'"), $p);
  397. }
  398. if ($pri ne $file->{priority}) {
  399. error(g_('package %s has priority %s in control file but %s in ' .
  400. 'files list'), $p, $pri, $file->{priority});
  401. }
  402. }
  403. }
  404. print { *STDERR } "$Dpkg::PROGNAME: $origsrcmsg\n"
  405. or syserr(g_('write original source message')) unless $quiet;
  406. $fields->{'Format'} = $substvars->get('Format');
  407. if (!defined($fields->{'Date'})) {
  408. setlocale(LC_TIME, 'C');
  409. $fields->{'Date'} = POSIX::strftime('%a, %d %b %Y %T %z', localtime);
  410. setlocale(LC_TIME, '');
  411. }
  412. $fields->{'Binary'} = join(' ', map { $_->{'Package'} } $control->get_packages());
  413. # Avoid overly long line by splitting over multiple lines
  414. if (length($fields->{'Binary'}) > 980) {
  415. $fields->{'Binary'} =~ s/(.{0,980}) /$1\n/g;
  416. }
  417. unshift @archvalues, 'source' if $include & BUILD_SOURCE;
  418. @archvalues = ('all') if $include == BUILD_ARCH_INDEP;
  419. @archvalues = grep { !debarch_eq('all', $_) } @archvalues
  420. unless $include & BUILD_ARCH_INDEP;
  421. @archvalues = grep { !debarch_eq($host_arch, $_) } @archvalues
  422. unless $include & BUILD_ARCH_DEP;
  423. $fields->{'Architecture'} = join ' ', @archvalues;
  424. $fields->{'Built-For-Profiles'} = join ' ', get_build_profiles();
  425. $fields->{'Description'} = "\n" . join("\n", sort @descriptions);
  426. $fields->{'Files'} = '';
  427. for my $file ($dist->get_files()) {
  428. my $f = $file->{filename};
  429. if (defined $file->{package} && $file->{package_type} =~ m/^u?deb$/) {
  430. my $arch_all = debarch_eq('all', $file->{arch});
  431. next if (not ($include & BUILD_ARCH_INDEP) and $arch_all);
  432. next if (not ($include & BUILD_ARCH_DEP) and not $arch_all);
  433. }
  434. $checksums->add_from_file("$uploadfilesdir/$f", key => $f);
  435. }
  436. foreach my $f ($checksums->get_files()) {
  437. my $file = $dist->get_file($f);
  438. $fields->{'Files'} .= "\n" . $checksums->get_checksum($f, 'md5') .
  439. ' ' . $checksums->get_size($f) .
  440. " $file->{section} $file->{priority} $f";
  441. }
  442. $checksums->export_to_control($fields);
  443. # redundant with the Files field
  444. delete $fields->{'Checksums-Md5'};
  445. $fields->{'Source'} = get_source_package();
  446. if ($fields->{'Version'} ne $substvars->get('source:Version')) {
  447. $fields->{'Source'} .= ' (' . $substvars->get('source:Version') . ')';
  448. }
  449. $fields->{'Maintainer'} = $forcemaint if defined($forcemaint);
  450. $fields->{'Changed-By'} = $forcechangedby if defined($forcechangedby);
  451. for my $f (qw(Version Distribution Maintainer Changes)) {
  452. error(g_('missing information for critical output field %s'), $f)
  453. unless defined $fields->{$f};
  454. }
  455. for my $f (qw(Urgency)) {
  456. warning(g_('missing information for output field %s'), $f)
  457. unless defined $fields->{$f};
  458. }
  459. for my $f (keys %override) {
  460. $fields->{$f} = $override{$f};
  461. }
  462. for my $f (keys %remove) {
  463. delete $fields->{$f};
  464. }
  465. # Note: do not perform substitution of variables, one of the reasons is that
  466. # they could interfere with field values, for example the Changes field.
  467. $fields->output(\*STDOUT);