3 # Integration between git and Debian-style archives
5 # Copyright (C)2013 Ian Jackson
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21 $SIG{__WARN__} = sub { die $_[0]; };
26 use Dpkg::Control::Hash;
28 use File::Temp qw(tempdir);
38 our $our_version = 'UNRELEASED'; ###substituted###
40 our $rpushprotovsn = 2;
42 our $isuite = 'unstable';
48 our $dryrun_level = 0;
50 our $buildproductsdir = '..';
56 our $existing_package = 'dpkg';
57 our $cleanmode = 'dpkg-source';
58 our $changes_since_version;
60 our $quilt_modes_re = 'linear|smash|auto|nofix|nocheck';
61 our $we_are_responder;
62 our $initiator_tempdir;
64 our %format_ok = map { $_=>1 } ("1.0","3.0 (native)","3.0 (quilt)");
66 our $suite_re = '[-+.0-9a-z]+';
69 our (@dget) = qw(dget);
70 our (@curl) = qw(curl -f);
71 our (@dput) = qw(dput);
72 our (@debsign) = qw(debsign);
74 our (@sbuild) = qw(sbuild -A);
76 our (@dgit) = qw(dgit);
77 our (@dpkgbuildpackage) = qw(dpkg-buildpackage -i\.git/ -I.git);
78 our (@dpkgsource) = qw(dpkg-source -i\.git/ -I.git);
79 our (@dpkggenchanges) = qw(dpkg-genchanges);
80 our (@mergechanges) = qw(mergechanges -f);
81 our (@changesopts) = ('');
83 our %opts_opt_map = ('dget' => \@dget, # accept for compatibility
86 'debsign' => \@debsign,
91 'dpkg-source' => \@dpkgsource,
92 'dpkg-buildpackage' => \@dpkgbuildpackage,
93 'dpkg-genchanges' => \@dpkggenchanges,
94 'ch' => \@changesopts,
95 'mergechanges' => \@mergechanges);
97 our %opts_opt_cmdonly = ('gpg' => 1);
103 our $remotename = 'dgit';
104 our @ourdscfield = qw(Dgit Vcs-Dgit-Master);
108 sub lbranch () { return "$branchprefix/$csuite"; }
109 my $lbranch_re = '^refs/heads/'.$branchprefix.'/([^/.]+)$';
110 sub lref () { return "refs/heads/".lbranch(); }
111 sub lrref () { return "refs/remotes/$remotename/".server_branch($csuite); }
112 sub rrref () { return server_ref($csuite); }
122 return "${package}_".(stripepoch $vsn).$sfx
127 return srcfn($vsn,".dsc");
136 foreach my $f (@end) {
138 warn "$us: cleanup: $@" if length $@;
142 sub badcfg { print STDERR "$us: invalid configuration: @_\n"; exit 12; }
144 sub no_such_package () {
145 print STDERR "$us: package $package does not exist in suite $isuite\n";
151 return "+".rrref().":".lrref();
156 printdebug "CD $newdir\n";
157 chdir $newdir or die "chdir: $newdir: $!";
160 sub deliberately ($) {
162 return !!grep { $_ eq "--deliberately-$enquiry" } @deliberatelies;
165 #---------- remote protocol support, common ----------
167 # remote push initiator/responder protocol:
168 # < dgit-remote-push-ready [optional extra info ignored by old initiators]
170 # > file parsed-changelog
171 # [indicates that output of dpkg-parsechangelog follows]
172 # > data-block NBYTES
173 # > [NBYTES bytes of data (no newline)]
174 # [maybe some more blocks]
186 # [indicates that signed tag is wanted]
187 # < data-block NBYTES
188 # < [NBYTES bytes of data (no newline)]
189 # [maybe some more blocks]
193 # > want signed-dsc-changes
194 # < data-block NBYTES [transfer of signed dsc]
196 # < data-block NBYTES [transfer of signed changes]
204 sub i_child_report () {
205 # Sees if our child has died, and reap it if so. Returns a string
206 # describing how it died if it failed, or undef otherwise.
207 return undef unless $i_child_pid;
208 my $got = waitpid $i_child_pid, WNOHANG;
209 return undef if $got <= 0;
210 die unless $got == $i_child_pid;
211 $i_child_pid = undef;
212 return undef unless $?;
213 return "build host child ".waitstatusmsg();
218 fail "connection lost: $!" if $fh->error;
219 fail "protocol violation; $m not expected";
222 sub badproto_badread ($$) {
224 fail "connection lost: $!" if $!;
225 my $report = i_child_report();
226 fail $report if defined $report;
227 badproto $fh, "eof (reading $wh)";
230 sub protocol_expect (&$) {
231 my ($match, $fh) = @_;
234 defined && chomp or badproto_badread $fh, "protocol message";
242 badproto $fh, "\`$_'";
245 sub protocol_send_file ($$) {
246 my ($fh, $ourfn) = @_;
247 open PF, "<", $ourfn or die "$ourfn: $!";
250 my $got = read PF, $d, 65536;
251 die "$ourfn: $!" unless defined $got;
253 print $fh "data-block ".length($d)."\n" or die $!;
254 print $fh $d or die $!;
256 PF->error and die "$ourfn $!";
257 print $fh "data-end\n" or die $!;
261 sub protocol_read_bytes ($$) {
262 my ($fh, $nbytes) = @_;
263 $nbytes =~ m/^[1-9]\d{0,5}$/ or badproto \*RO, "bad byte count";
265 my $got = read $fh, $d, $nbytes;
266 $got==$nbytes or badproto_badread $fh, "data block";
270 sub protocol_receive_file ($$) {
271 my ($fh, $ourfn) = @_;
272 printdebug "() $ourfn\n";
273 open PF, ">", $ourfn or die "$ourfn: $!";
275 my ($y,$l) = protocol_expect {
276 m/^data-block (.*)$/ ? (1,$1) :
277 m/^data-end$/ ? (0,) :
281 my $d = protocol_read_bytes $fh, $l;
282 print PF $d or die $!;
287 #---------- remote protocol support, responder ----------
289 sub responder_send_command ($) {
291 return unless $we_are_responder;
292 # called even without $we_are_responder
293 printdebug ">> $command\n";
294 print PO $command, "\n" or die $!;
297 sub responder_send_file ($$) {
298 my ($keyword, $ourfn) = @_;
299 return unless $we_are_responder;
300 printdebug "]] $keyword $ourfn\n";
301 responder_send_command "file $keyword";
302 protocol_send_file \*PO, $ourfn;
305 sub responder_receive_files ($@) {
306 my ($keyword, @ourfns) = @_;
307 die unless $we_are_responder;
308 printdebug "[[ $keyword @ourfns\n";
309 responder_send_command "want $keyword";
310 foreach my $fn (@ourfns) {
311 protocol_receive_file \*PI, $fn;
314 protocol_expect { m/^files-end$/ } \*PI;
317 #---------- remote protocol support, initiator ----------
319 sub initiator_expect (&) {
321 protocol_expect { &$match } \*RO;
324 #---------- end remote code ----------
327 if ($we_are_responder) {
329 responder_send_command "progress ".length($m) or die $!;
330 print PO $m or die $!;
340 $ua = LWP::UserAgent->new();
344 progress "downloading $what...";
345 my $r = $ua->get(@_) or die $!;
346 return undef if $r->code == 404;
347 $r->is_success or fail "failed to fetch $what: ".$r->status_line;
348 return $r->decoded_content(charset => 'none');
351 our ($dscdata,$dscurl,$dsc,$dsc_checked,$skew_warning_vsn);
356 failedcmd @_ if system @_;
359 sub act_local () { return $dryrun_level <= 1; }
360 sub act_scary () { return !$dryrun_level; }
363 if (!$dryrun_level) {
364 progress "dgit ok: @_";
366 progress "would be ok: @_ (but dry run only)";
371 printcmd(\*STDERR,$debugprefix."#",@_);
374 sub runcmd_ordryrun {
382 sub runcmd_ordryrun_local {
391 my ($first_shell, @cmd) = @_;
392 return qw(sh -ec), $first_shell.'; exec "$@"', 'x', @cmd;
395 our $helpmsg = <<END;
397 dgit [dgit-opts] clone [dgit-opts] package [suite] [./dir|/dir]
398 dgit [dgit-opts] fetch|pull [dgit-opts] [suite]
399 dgit [dgit-opts] build [git-buildpackage-opts|dpkg-buildpackage-opts]
400 dgit [dgit-opts] push [dgit-opts] [suite]
401 dgit [dgit-opts] rpush build-host:build-dir ...
402 important dgit options:
403 -k<keyid> sign tag and package with <keyid> instead of default
404 --dry-run -n do not change anything, but go through the motions
405 --damp-run -L like --dry-run but make local changes, without signing
406 --new -N allow introducing a new package
407 --debug -D increase debug level
408 -c<name>=<value> set git config option (used directly by dgit too)
411 our $later_warning_msg = <<END;
412 Perhaps the upload is stuck in incoming. Using the version from git.
416 print STDERR "$us: @_\n", $helpmsg or die $!;
421 @ARGV or badusage "too few arguments";
422 return scalar shift @ARGV;
426 print $helpmsg or die $!;
430 our $td = $ENV{DGIT_TEST_DUMMY_DIR} || "DGIT_TEST_DUMMY_DIR-unset";
432 our %defcfg = ('dgit.default.distro' => 'debian',
433 'dgit.default.username' => '',
434 'dgit.default.archive-query-default-component' => 'main',
435 'dgit.default.ssh' => 'ssh',
436 'dgit.default.archive-query' => 'madison:',
437 'dgit.default.sshpsql-dbname' => 'service=projectb',
438 'dgit-distro.debian.archive-query' => 'ftpmasterapi:',
439 'dgit-distro.debian.git-host' => 'dgit-git.debian.net',
440 'dgit-distro.debian.git-user-force' => 'dgit',
441 'dgit-distro.debian.git-proto' => 'git+ssh://',
442 'dgit-distro.debian.git-path' => '/dgit/debian/repos',
443 'dgit-distro.debian.git-check' => 'ssh-cmd',
444 'dgit-distro.debian.archive-query-url', 'https://api.ftp-master.debian.org/',
445 'dgit-distro.debian.archive-query-tls-key',
446 '/etc/ssl/certs/%HOST%.pem:/etc/dgit/%HOST%.pem',
447 'dgit-distro.debian.diverts.alioth' => '/alioth',
448 'dgit-distro.debian/alioth.git-host' => 'git.debian.org',
449 'dgit-distro.debian/alioth.git-user-force' => '',
450 'dgit-distro.debian/alioth.git-proto' => 'git+ssh://',
451 'dgit-distro.debian/alioth.git-path' => '/git/dgit-repos/repos',
452 'dgit-distro.debian/alioth.git-create' => 'ssh-cmd',
453 'dgit-distro.debian.upload-host' => 'ftp-master', # for dput
454 'dgit-distro.debian.mirror' => 'http://ftp.debian.org/debian/',
455 'dgit-distro.debian.backports-quirk' => '(squeeze)-backports*',
456 'dgit-distro.debian-backports.mirror' => 'http://backports.debian.org/debian-backports/',
457 'dgit-distro.ubuntu.git-check' => 'false',
458 'dgit-distro.ubuntu.mirror' => 'http://archive.ubuntu.com/ubuntu',
459 'dgit-distro.test-dummy.ssh' => "$td/ssh",
460 'dgit-distro.test-dummy.username' => "alice",
461 'dgit-distro.test-dummy.git-check' => "ssh-cmd",
462 'dgit-distro.test-dummy.git-create' => "ssh-cmd",
463 'dgit-distro.test-dummy.git-url' => "$td/git",
464 'dgit-distro.test-dummy.git-host' => "git",
465 'dgit-distro.test-dummy.git-path' => "$td/git",
466 'dgit-distro.test-dummy.archive-query' => "ftpmasterapi:",
467 'dgit-distro.test-dummy.archive-query-url' => "file://$td/aq/",
468 'dgit-distro.test-dummy.mirror' => "file://$td/mirror/",
469 'dgit-distro.test-dummy.upload-host' => 'test-dummy',
474 return undef if $c =~ /RETURN-UNDEF/;
475 my @cmd = (@git, qw(config --), $c);
478 local ($debuglevel) = $debuglevel-2;
479 $v = cmdoutput_errok @cmd;
486 my $dv = $defcfg{$c};
487 return $dv if defined $dv;
489 badcfg "need value for one of: @_\n".
490 "$us: distro or suite appears not to be (properly) supported";
493 sub access_basedistro () {
494 if (defined $idistro) {
497 return cfg("dgit-suite.$isuite.distro",
498 "dgit.default.distro");
502 sub access_quirk () {
503 # returns (quirk name, distro to use instead or undef, quirk-specific info)
504 my $basedistro = access_basedistro();
505 my $backports_quirk = cfg("dgit-distro.$basedistro.backports-quirk",
507 if (defined $backports_quirk) {
508 my $re = $backports_quirk;
509 $re =~ s/[^-0-9a-z_\%*()]/\\$&/ig;
511 $re =~ s/\%/([-0-9a-z_]+)/
512 or $re =~ m/[()]/ or badcfg "backports-quirk needs \% or ( )";
513 if ($isuite =~ m/^$re$/) {
514 return ('backports',"$basedistro-backports",$1);
517 return ('none',undef);
520 sub access_distros () {
521 # Returns list of distros to try, in order
524 # 0. `instead of' distro name(s) we have been pointed to
525 # 1. the access_quirk distro, if any
526 # 2a. the user's specified distro, or failing that } basedistro
527 # 2b. the distro calculated from the suite }
528 my @l = access_basedistro();
530 my (undef,$quirkdistro) = access_quirk();
531 unshift @l, $quirkdistro;
532 unshift @l, $instead_distro;
533 return grep { defined } @l;
539 # The nesting of these loops determines the search order. We put
540 # the key loop on the outside so that we search all the distros
541 # for each key, before going on to the next key. That means that
542 # if access_cfg is called with a more specific, and then a less
543 # specific, key, an earlier distro can override the less specific
544 # without necessarily overriding any more specific keys. (If the
545 # distro wants to override the more specific keys it can simply do
546 # so; whereas if we did the loop the other way around, it would be
547 # impossible to for an earlier distro to override a less specific
548 # key but not the more specific ones without restating the unknown
549 # values of the more specific keys.
552 # We have to deal with RETURN-UNDEF specially, so that we don't
553 # terminate the search prematurely.
555 if (m/RETURN-UNDEF/) { push @rundef, $_; last; }
558 foreach my $d (access_distros()) {
559 push @cfgs, map { "dgit-distro.$d.$_" } @realkeys;
561 push @cfgs, map { "dgit.default.$_" } @realkeys;
563 my $value = cfg(@cfgs);
567 sub string_to_ssh ($) {
569 if ($spec =~ m/\s/) {
570 return qw(sh -ec), 'exec '.$spec.' "$@"', 'x';
576 sub access_cfg_ssh () {
577 my $gitssh = access_cfg('ssh', 'RETURN-UNDEF');
578 if (!defined $gitssh) {
581 return string_to_ssh $gitssh;
585 sub access_runeinfo ($) {
587 return ": dgit ".access_basedistro()." $info ;";
590 sub access_someuserhost ($) {
592 my $user = access_cfg("$some-user-force", 'RETURN-UNDEF');
593 defined($user) && length($user) or
594 $user = access_cfg("$some-user",'username');
595 my $host = access_cfg("$some-host");
596 return length($user) ? "$user\@$host" : $host;
599 sub access_gituserhost () {
600 return access_someuserhost('git');
603 sub access_giturl (;$) {
605 my $url = access_cfg('git-url','RETURN-UNDEF');
607 my $proto = access_cfg('git-proto', 'RETURN-UNDEF');
608 return undef unless defined $proto;
611 access_gituserhost().
612 access_cfg('git-path');
614 return "$url/$package.git";
617 sub parsecontrolfh ($$;$) {
618 my ($fh, $desc, $allowsigned) = @_;
619 our $dpkgcontrolhash_noissigned;
622 my %opts = ('name' => $desc);
623 $opts{allow_pgp}= $allowsigned || !$dpkgcontrolhash_noissigned;
624 $c = Dpkg::Control::Hash->new(%opts);
625 $c->parse($fh,$desc) or die "parsing of $desc failed";
626 last if $allowsigned;
627 last if $dpkgcontrolhash_noissigned;
628 my $issigned= $c->get_option('is_pgp_signed');
629 if (!defined $issigned) {
630 $dpkgcontrolhash_noissigned= 1;
631 seek $fh, 0,0 or die "seek $desc: $!";
632 } elsif ($issigned) {
633 fail "control file $desc is (already) PGP-signed. ".
634 " Note that dgit push needs to modify the .dsc and then".
635 " do the signature itself";
644 my ($file, $desc) = @_;
645 my $fh = new IO::Handle;
646 open $fh, '<', $file or die "$file: $!";
647 my $c = parsecontrolfh($fh,$desc);
648 $fh->error and die $!;
654 my ($dctrl,$field) = @_;
655 my $v = $dctrl->{$field};
656 return $v if defined $v;
657 fail "missing field $field in ".$v->get_option('name');
661 my $c = Dpkg::Control::Hash->new();
662 my $p = new IO::Handle;
663 my @cmd = (qw(dpkg-parsechangelog), @_);
664 open $p, '-|', @cmd or die $!;
666 $?=0; $!=0; close $p or failedcmd @cmd;
670 sub git_get_ref ($) {
672 my $got = cmdoutput_errok @git, qw(show-ref --), $refname;
674 $?==256 or fail "git show-ref failed (status $?)";
675 printdebug "ref $refname= [show-ref exited 1]\n";
678 if ($got =~ m/^(\w+) \Q$refname\E$/m) {
679 printdebug "ref $refname=$1\n";
682 printdebug "ref $refname= [no match]\n";
689 defined $d or fail "getcwd failed: $!";
695 sub archive_query ($) {
697 my $query = access_cfg('archive-query','RETURN-UNDEF');
698 $query =~ s/^(\w+):// or badcfg "invalid archive-query method \`$query'";
701 { no strict qw(refs); &{"${method}_${proto}"}($proto,$data); }
704 sub pool_dsc_subpath ($$) {
705 my ($vsn,$component) = @_; # $package is implict arg
706 my $prefix = substr($package, 0, $package =~ m/^l/ ? 4 : 1);
707 return "/pool/$component/$prefix/$package/".dscfn($vsn);
710 #---------- `ftpmasterapi' archive query method (nascent) ----------
712 sub archive_api_query_cmd ($) {
714 my @cmd = qw(curl -sS);
715 my $url = access_cfg('archive-query-url');
716 if ($url =~ m#^https://([-.0-9a-z]+)/#) {
718 my $keys = access_cfg('archive-query-tls-key','RETURN-UNDEF');
719 foreach my $key (split /\:/, $keys) {
720 $key =~ s/\%HOST\%/$host/g;
722 fail "for $url: stat $key: $!" unless $!==ENOENT;
725 push @cmd, "--ca-certificate=$key", "--ca-directory=/dev/enoent";
729 push @cmd, $url.$subpath;
735 my ($data, $subpath) = @_;
736 badcfg "ftpmasterapi archive query method takes no data part"
738 my @cmd = archive_api_query_cmd($subpath);
739 my $json = cmdoutput @cmd;
740 return decode_json($json);
743 sub canonicalise_suite_ftpmasterapi () {
744 my ($proto,$data) = @_;
745 my $suites = api_query($data, 'suites');
747 foreach my $entry (@$suites) {
749 my $v = $entry->{$_};
750 defined $v && $v eq $isuite;
752 push @matched, $entry;
754 fail "unknown suite $isuite" unless @matched;
757 @matched==1 or die "multiple matches for suite $isuite\n";
758 $cn = "$matched[0]{codename}";
759 defined $cn or die "suite $isuite info has no codename\n";
760 $cn =~ m/^$suite_re$/ or die "suite $isuite maps to bad codename\n";
762 die "bad ftpmaster api response: $@\n".Dumper(\@matched)
767 sub archive_query_ftpmasterapi () {
768 my ($proto,$data) = @_;
769 my $info = api_query($data, "dsc_in_suite/$isuite/$package");
771 my $digester = Digest::SHA->new(256);
772 foreach my $entry (@$info) {
774 my $vsn = "$entry->{version}";
775 my ($ok,$msg) = version_check $vsn;
776 die "bad version: $msg\n" unless $ok;
777 my $component = "$entry->{component}";
778 $component =~ m/^$component_re$/ or die "bad component";
779 my $filename = "$entry->{filename}";
780 $filename && $filename !~ m#[^-+:._~0-9a-zA-Z/]|^[/.]|/[/.]#
781 or die "bad filename";
782 my $sha256sum = "$entry->{sha256sum}";
783 $sha256sum =~ m/^[0-9a-f]+$/ or die "bad sha256sum";
784 push @rows, [ $vsn, "/pool/$component/$filename",
785 $digester, $sha256sum ];
787 die "bad ftpmaster api response: $@\n".Dumper($entry)
790 @rows = sort { -version_compare($a->[0],$b->[0]) } @rows;
794 #---------- `madison' archive query method ----------
796 sub archive_query_madison {
797 return map { [ @$_[0..1] ] } madison_get_parse(@_);
800 sub madison_get_parse {
801 my ($proto,$data) = @_;
802 die unless $proto eq 'madison';
804 $data= access_cfg('madison-distro','RETURN-UNDEF');
805 $data //= access_basedistro();
807 $rmad{$proto,$data,$package} ||= cmdoutput
808 qw(rmadison -asource),"-s$isuite","-u$data",$package;
809 my $rmad = $rmad{$proto,$data,$package};
812 foreach my $l (split /\n/, $rmad) {
813 $l =~ m{^ \s*( [^ \t|]+ )\s* \|
814 \s*( [^ \t|]+ )\s* \|
815 \s*( [^ \t|/]+ )(?:/([^ \t|/]+))? \s* \|
816 \s*( [^ \t|]+ )\s* }x or die "$rmad ?";
817 $1 eq $package or die "$rmad $package ?";
824 $component = access_cfg('archive-query-default-component');
826 $5 eq 'source' or die "$rmad ?";
827 push @out, [$vsn,pool_dsc_subpath($vsn,$component),$newsuite];
829 return sort { -version_compare($a->[0],$b->[0]); } @out;
832 sub canonicalise_suite_madison {
833 # madison canonicalises for us
834 my @r = madison_get_parse(@_);
836 "unable to canonicalise suite using package $package".
837 " which does not appear to exist in suite $isuite;".
838 " --existing-package may help";
842 #---------- `sshpsql' archive query method ----------
845 my ($data,$runeinfo,$sql) = @_;
847 $data= access_someuserhost('sshpsql').':'.
848 access_cfg('sshpsql-dbname');
850 $data =~ m/:/ or badcfg "invalid sshpsql method string \`$data'";
851 my ($userhost,$dbname) = ($`,$'); #';
853 my @cmd = (access_cfg_ssh, $userhost,
854 access_runeinfo("ssh-psql $runeinfo").
855 " export LC_MESSAGES=C; export LC_CTYPE=C;".
856 " ".shellquote qw(psql -A), $dbname, qw(-c), $sql);
858 open P, "-|", @cmd or die $!;
861 printdebug("$debugprefix>|$_|\n");
864 $!=0; $?=0; close P or failedcmd @cmd;
866 my $nrows = pop @rows;
867 $nrows =~ s/^\((\d+) rows?\)$/$1/ or die "$nrows ?";
868 @rows == $nrows+1 or die "$nrows ".(scalar @rows)." ?";
869 @rows = map { [ split /\|/, $_ ] } @rows;
870 my $ncols = scalar @{ shift @rows };
871 die if grep { scalar @$_ != $ncols } @rows;
875 sub sql_injection_check {
876 foreach (@_) { die "$_ $& ?" if m{[^-+=:_.,/0-9a-zA-Z]}; }
879 sub archive_query_sshpsql ($$) {
880 my ($proto,$data) = @_;
881 sql_injection_check $isuite, $package;
882 my @rows = sshpsql($data, "archive-query $isuite $package", <<END);
883 SELECT source.version, component.name, files.filename, files.sha256sum
885 JOIN src_associations ON source.id = src_associations.source
886 JOIN suite ON suite.id = src_associations.suite
887 JOIN dsc_files ON dsc_files.source = source.id
888 JOIN files_archive_map ON files_archive_map.file_id = dsc_files.file
889 JOIN component ON component.id = files_archive_map.component_id
890 JOIN files ON files.id = dsc_files.file
891 WHERE ( suite.suite_name='$isuite' OR suite.codename='$isuite' )
892 AND source.source='$package'
893 AND files.filename LIKE '%.dsc';
895 @rows = sort { -version_compare($a->[0],$b->[0]) } @rows;
896 my $digester = Digest::SHA->new(256);
898 my ($vsn,$component,$filename,$sha256sum) = @$_;
899 [ $vsn, "/pool/$component/$filename",$digester,$sha256sum ];
904 sub canonicalise_suite_sshpsql ($$) {
905 my ($proto,$data) = @_;
906 sql_injection_check $isuite;
907 my @rows = sshpsql($data, "canonicalise-suite $isuite", <<END);
908 SELECT suite.codename
909 FROM suite where suite_name='$isuite' or codename='$isuite';
911 @rows = map { $_->[0] } @rows;
912 fail "unknown suite $isuite" unless @rows;
913 die "ambiguous $isuite: @rows ?" if @rows>1;
917 #---------- `dummycat' archive query method ----------
919 sub canonicalise_suite_dummycat ($$) {
920 my ($proto,$data) = @_;
921 my $dpath = "$data/suite.$isuite";
922 if (!open C, "<", $dpath) {
923 $!==ENOENT or die "$dpath: $!";
924 printdebug "dummycat canonicalise_suite $isuite $dpath ENOENT\n";
928 chomp or die "$dpath: $!";
930 printdebug "dummycat canonicalise_suite $isuite $dpath = $_\n";
934 sub archive_query_dummycat ($$) {
935 my ($proto,$data) = @_;
936 canonicalise_suite();
937 my $dpath = "$data/package.$csuite.$package";
938 if (!open C, "<", $dpath) {
939 $!==ENOENT or die "$dpath: $!";
940 printdebug "dummycat query $csuite $package $dpath ENOENT\n";
948 printdebug "dummycat query $csuite $package $dpath | $_\n";
949 my @row = split /\s+/, $_;
950 @row==2 or die "$dpath: $_ ?";
953 C->error and die "$dpath: $!";
955 return sort { -version_compare($a->[0],$b->[0]); } @rows;
958 #---------- archive query entrypoints and rest of program ----------
960 sub canonicalise_suite () {
961 return if defined $csuite;
962 fail "cannot operate on $isuite suite" if $isuite eq 'UNRELEASED';
963 $csuite = archive_query('canonicalise_suite');
964 if ($isuite ne $csuite) {
965 progress "canonical suite name for $isuite is $csuite";
969 sub get_archive_dsc () {
970 canonicalise_suite();
971 my @vsns = archive_query('archive_query');
972 foreach my $vinfo (@vsns) {
973 my ($vsn,$subpath,$digester,$digest) = @$vinfo;
974 $dscurl = access_cfg('mirror').$subpath;
975 $dscdata = url_get($dscurl);
977 $skew_warning_vsn = $vsn if !defined $skew_warning_vsn;
982 $digester->add($dscdata);
983 my $got = $digester->hexdigest();
985 fail "$dscurl has hash $got but".
986 " archive told us to expect $digest";
988 my $dscfh = new IO::File \$dscdata, '<' or die $!;
989 printdebug Dumper($dscdata) if $debuglevel>1;
990 $dsc = parsecontrolfh($dscfh,$dscurl,1);
991 printdebug Dumper($dsc) if $debuglevel>1;
992 my $fmt = getfield $dsc, 'Format';
993 fail "unsupported source format $fmt, sorry" unless $format_ok{$fmt};
994 $dsc_checked = !!$digester;
1000 sub check_for_git ();
1001 sub check_for_git () {
1003 my $how = access_cfg('git-check');
1004 if ($how eq 'ssh-cmd') {
1006 (access_cfg_ssh, access_gituserhost(),
1007 access_runeinfo("git-check $package").
1008 " set -e; cd ".access_cfg('git-path').";".
1009 " if test -d $package.git; then echo 1; else echo 0; fi");
1010 my $r= cmdoutput @cmd;
1011 if ($r =~ m/^divert (\w+)$/) {
1013 my ($usedistro,) = access_distros();
1014 $instead_distro= cfg("dgit-distro.$usedistro.diverts.$divert");
1015 $instead_distro =~ s{^/}{ access_basedistro()."/" }e;
1016 printdebug "diverting $divert so using distro $instead_distro\n";
1017 return check_for_git();
1019 failedcmd @cmd unless $r =~ m/^[01]$/;
1021 } elsif ($how eq 'true') {
1023 } elsif ($how eq 'false') {
1026 badcfg "unknown git-check \`$how'";
1030 sub create_remote_git_repo () {
1031 my $how = access_cfg('git-create');
1032 if ($how eq 'ssh-cmd') {
1034 (access_cfg_ssh, access_gituserhost(),
1035 access_runeinfo("git-create $package").
1036 "set -e; cd ".access_cfg('git-path').";".
1037 " cp -a _template $package.git");
1038 } elsif ($how eq 'true') {
1041 badcfg "unknown git-create \`$how'";
1045 our ($dsc_hash,$lastpush_hash);
1047 our $ud = '.git/dgit/unpack';
1052 mkdir $ud or die $!;
1055 sub mktree_in_ud_here () {
1056 runcmd qw(git init -q);
1057 rmtree('.git/objects');
1058 symlink '../../../../objects','.git/objects' or die $!;
1061 sub git_write_tree () {
1062 my $tree = cmdoutput @git, qw(write-tree);
1063 $tree =~ m/^\w+$/ or die "$tree ?";
1067 sub mktree_in_ud_from_only_subdir () {
1068 # changes into the subdir
1070 die unless @dirs==1;
1071 $dirs[0] =~ m#^([^/]+)/\.$# or die;
1074 fail "source package contains .git directory" if stat_exists '.git';
1075 mktree_in_ud_here();
1076 my $format=get_source_format();
1077 if (madformat($format)) {
1080 runcmd @git, qw(add -Af);
1081 my $tree=git_write_tree();
1082 return ($tree,$dir);
1085 sub dsc_files_info () {
1086 foreach my $csumi (['Checksums-Sha256','Digest::SHA', 'new(256)'],
1087 ['Checksums-Sha1', 'Digest::SHA', 'new(1)'],
1088 ['Files', 'Digest::MD5', 'new()']) {
1089 my ($fname, $module, $method) = @$csumi;
1090 my $field = $dsc->{$fname};
1091 next unless defined $field;
1092 eval "use $module; 1;" or die $@;
1094 foreach (split /\n/, $field) {
1096 m/^(\w+) (\d+) (\S+)$/ or
1097 fail "could not parse .dsc $fname line \`$_'";
1098 my $digester = eval "$module"."->$method;" or die $@;
1103 Digester => $digester,
1108 fail "missing any supported Checksums-* or Files field in ".
1109 $dsc->get_option('name');
1113 map { $_->{Filename} } dsc_files_info();
1116 sub is_orig_file ($;$) {
1119 m/\.orig(?:-\w+)?\.tar\.\w+$/ or return 0;
1120 defined $base or return 1;
1124 sub make_commit ($) {
1126 return cmdoutput @git, qw(hash-object -w -t commit), $file;
1129 sub clogp_authline ($) {
1131 my $author = getfield $clogp, 'Maintainer';
1132 $author =~ s#,.*##ms;
1133 my $date = cmdoutput qw(date), '+%s %z', qw(-d), getfield($clogp,'Date');
1134 my $authline = "$author $date";
1135 $authline =~ m/^[^<>]+ \<\S+\> \d+ [-+]\d+$/ or
1136 fail "unexpected commit author line format \`$authline'".
1137 " (was generated from changelog Maintainer field)";
1141 sub generate_commit_from_dsc () {
1145 foreach my $fi (dsc_files_info()) {
1146 my $f = $fi->{Filename};
1147 die "$f ?" if $f =~ m#/|^\.|\.dsc$|\.tmp$#;
1149 link "../../../$f", $f
1153 complete_file_from_dsc('.', $fi);
1155 if (is_orig_file($f)) {
1156 link $f, "../../../../$f"
1162 my $dscfn = "$package.dsc";
1164 open D, ">", $dscfn or die "$dscfn: $!";
1165 print D $dscdata or die "$dscfn: $!";
1166 close D or die "$dscfn: $!";
1167 my @cmd = qw(dpkg-source);
1168 push @cmd, '--no-check' if $dsc_checked;
1169 push @cmd, qw(-x --), $dscfn;
1172 my ($tree,$dir) = mktree_in_ud_from_only_subdir();
1173 runcmd qw(sh -ec), 'dpkg-parsechangelog >../changelog.tmp';
1174 my $clogp = parsecontrol('../changelog.tmp',"commit's changelog");
1175 my $authline = clogp_authline $clogp;
1176 my $changes = getfield $clogp, 'Changes';
1177 open C, ">../commit.tmp" or die $!;
1178 print C <<END or die $!;
1185 # imported from the archive
1188 my $outputhash = make_commit qw(../commit.tmp);
1189 my $cversion = getfield $clogp, 'Version';
1190 progress "synthesised git commit from .dsc $cversion";
1191 if ($lastpush_hash) {
1192 runcmd @git, qw(reset --hard), $lastpush_hash;
1193 runcmd qw(sh -ec), 'dpkg-parsechangelog >>../changelogold.tmp';
1194 my $oldclogp = parsecontrol('../changelogold.tmp','previous changelog');
1195 my $oversion = getfield $oldclogp, 'Version';
1197 version_compare($oversion, $cversion);
1199 # git upload/ is earlier vsn than archive, use archive
1200 open C, ">../commit2.tmp" or die $!;
1201 print C <<END or die $!;
1203 parent $lastpush_hash
1208 Record $package ($cversion) in archive suite $csuite
1210 $outputhash = make_commit qw(../commit2.tmp);
1211 } elsif ($vcmp > 0) {
1212 print STDERR <<END or die $!;
1214 Version actually in archive: $cversion (older)
1215 Last allegedly pushed/uploaded: $oversion (newer or same)
1218 $outputhash = $lastpush_hash;
1220 $outputhash = $lastpush_hash;
1223 changedir '../../../..';
1224 runcmd @git, qw(update-ref -m),"dgit fetch import $cversion",
1225 'DGIT_ARCHIVE', $outputhash;
1226 cmdoutput @git, qw(log -n2), $outputhash;
1227 # ... gives git a chance to complain if our commit is malformed
1232 sub complete_file_from_dsc ($$) {
1233 our ($dstdir, $fi) = @_;
1234 # Ensures that we have, in $dir, the file $fi, with the correct
1235 # contents. (Downloading it from alongside $dscurl if necessary.)
1237 my $f = $fi->{Filename};
1238 my $tf = "$dstdir/$f";
1241 if (stat_exists $tf) {
1242 progress "using existing $f";
1245 $furl =~ s{/[^/]+$}{};
1247 die "$f ?" unless $f =~ m/^${package}_/;
1248 die "$f ?" if $f =~ m#/#;
1249 runcmd_ordryrun_local @curl,qw(-o),$tf,'--',"$furl";
1250 next if !act_local();
1254 open F, "<", "$tf" or die "$tf: $!";
1255 $fi->{Digester}->reset();
1256 $fi->{Digester}->addfile(*F);
1257 F->error and die $!;
1258 my $got = $fi->{Digester}->hexdigest();
1259 $got eq $fi->{Hash} or
1260 fail "file $f has hash $got but .dsc".
1261 " demands hash $fi->{Hash} ".
1262 ($downloaded ? "(got wrong file from archive!)"
1263 : "(perhaps you should delete this file?)");
1266 sub ensure_we_have_orig () {
1267 foreach my $fi (dsc_files_info()) {
1268 my $f = $fi->{Filename};
1269 next unless is_orig_file($f);
1270 complete_file_from_dsc('..', $fi);
1275 return cmdoutput @git, qw(rev-parse), "$_[0]~0";
1278 sub is_fast_fwd ($$) {
1279 my ($ancestor,$child) = @_;
1280 my @cmd = (@git, qw(merge-base), $ancestor, $child);
1281 my $mb = cmdoutput_errok @cmd;
1283 return rev_parse($mb) eq rev_parse($ancestor);
1285 $?==256 or failedcmd @cmd;
1290 sub git_fetch_us () {
1291 runcmd_ordryrun_local @git, qw(fetch),access_giturl(),fetchspec();
1294 sub fetch_from_archive () {
1295 # ensures that lrref() is what is actually in the archive,
1296 # one way or another
1300 foreach my $field (@ourdscfield) {
1301 $dsc_hash = $dsc->{$field};
1302 last if defined $dsc_hash;
1304 if (defined $dsc_hash) {
1305 $dsc_hash =~ m/\w+/ or fail "invalid hash in .dsc \`$dsc_hash'";
1307 progress "last upload to archive specified git hash";
1309 progress "last upload to archive has NO git hash";
1312 progress "no version available from the archive";
1315 $lastpush_hash = git_get_ref(lrref());
1316 printdebug "previous reference hash=$lastpush_hash\n";
1318 if (defined $dsc_hash) {
1319 fail "missing remote git history even though dsc has hash -".
1320 " could not find ref ".lrref().
1321 " (should have been fetched from ".access_giturl()."#".rrref().")"
1322 unless $lastpush_hash;
1324 ensure_we_have_orig();
1325 if ($dsc_hash eq $lastpush_hash) {
1326 } elsif (is_fast_fwd($dsc_hash,$lastpush_hash)) {
1327 print STDERR <<END or die $!;
1329 Git commit in archive is behind the last version allegedly pushed/uploaded.
1330 Commit referred to by archive: $dsc_hash
1331 Last allegedly pushed/uploaded: $lastpush_hash
1334 $hash = $lastpush_hash;
1336 fail "git head (".lrref()."=$lastpush_hash) is not a ".
1337 "descendant of archive's .dsc hash ($dsc_hash)";
1340 $hash = generate_commit_from_dsc();
1341 } elsif ($lastpush_hash) {
1342 # only in git, not in the archive yet
1343 $hash = $lastpush_hash;
1344 print STDERR <<END or die $!;
1346 Package not found in the archive, but has allegedly been pushed using dgit.
1350 printdebug "nothing found!\n";
1351 if (defined $skew_warning_vsn) {
1352 print STDERR <<END or die $!;
1354 Warning: relevant archive skew detected.
1355 Archive allegedly contains $skew_warning_vsn
1356 But we were not able to obtain any version from the archive or git.
1362 printdebug "current hash=$hash\n";
1363 if ($lastpush_hash) {
1364 fail "not fast forward on last upload branch!".
1365 " (archive's version left in DGIT_ARCHIVE)"
1366 unless is_fast_fwd($lastpush_hash, $hash);
1368 if (defined $skew_warning_vsn) {
1370 printdebug "SKEW CHECK WANT $skew_warning_vsn\n";
1371 my $clogf = ".git/dgit/changelog.tmp";
1372 runcmd shell_cmd "exec >$clogf",
1373 @git, qw(cat-file blob), "$hash:debian/changelog";
1374 my $gotclogp = parsechangelog("-l$clogf");
1375 my $got_vsn = getfield $gotclogp, 'Version';
1376 printdebug "SKEW CHECK GOT $got_vsn\n";
1377 if (version_compare($got_vsn, $skew_warning_vsn) < 0) {
1378 print STDERR <<END or die $!;
1380 Warning: archive skew detected. Using the available version:
1381 Archive allegedly contains $skew_warning_vsn
1382 We were able to obtain only $got_vsn
1387 if ($lastpush_hash ne $hash) {
1388 my @upd_cmd = (@git, qw(update-ref -m), 'dgit fetch', lrref(), $hash);
1392 dryrun_report @upd_cmd;
1400 canonicalise_suite();
1401 badusage "dry run makes no sense with clone" unless act_local();
1402 my $hasgit = check_for_git();
1403 mkdir $dstdir or die "$dstdir $!";
1405 runcmd @git, qw(init -q);
1406 my $giturl = access_giturl(1);
1407 if (defined $giturl) {
1408 runcmd @git, qw(config), "remote.$remotename.fetch", fetchspec();
1409 open H, "> .git/HEAD" or die $!;
1410 print H "ref: ".lref()."\n" or die $!;
1412 runcmd @git, qw(remote add), 'origin', $giturl;
1415 progress "fetching existing git history";
1417 runcmd_ordryrun_local @git, qw(fetch origin);
1419 progress "starting new git history";
1421 fetch_from_archive() or no_such_package;
1422 my $vcsgiturl = $dsc->{'Vcs-Git'};
1423 if (length $vcsgiturl) {
1424 $vcsgiturl =~ s/\s+-b\s+\S+//g;
1425 runcmd @git, qw(remote add vcs-git), $vcsgiturl;
1427 runcmd @git, qw(reset --hard), lrref();
1428 printdone "ready for work in $dstdir";
1432 if (check_for_git()) {
1435 fetch_from_archive() or no_such_package();
1436 printdone "fetched into ".lrref();
1441 runcmd_ordryrun_local @git, qw(merge -m),"Merge from $csuite [dgit]",
1443 printdone "fetched to ".lrref()." and merged into HEAD";
1446 sub check_not_dirty () {
1447 return if $ignoredirty;
1448 my @cmd = (@git, qw(diff --quiet HEAD));
1450 $!=0; $?=0; system @cmd;
1451 return if !$! && !$?;
1452 if (!$! && $?==256) {
1453 fail "working tree is dirty (does not match HEAD)";
1459 sub commit_admin ($) {
1462 runcmd_ordryrun_local @git, qw(commit -m), $m;
1465 sub commit_quilty_patch () {
1466 my $output = cmdoutput @git, qw(status --porcelain);
1468 foreach my $l (split /\n/, $output) {
1469 next unless $l =~ m/\S/;
1470 if ($l =~ m{^(?:\?\?| M) (.pc|debian/patches)}) {
1474 delete $adds{'.pc'}; # if there wasn't one before, don't add it
1476 progress "nothing quilty to commit, ok.";
1479 runcmd_ordryrun_local @git, qw(add), sort keys %adds;
1480 commit_admin "Commit Debian 3.0 (quilt) metadata";
1483 sub get_source_format () {
1484 if (!open F, "debian/source/format") {
1485 die $! unless $!==&ENOENT;
1489 F->error and die $!;
1496 return 0 unless $format eq '3.0 (quilt)';
1497 if ($quilt_mode eq 'nocheck') {
1498 progress "Not doing any fixup of \`$format' due to --no-quilt-fixup";
1501 progress "Format \`$format', checking/updating patch stack";
1505 sub push_parse_changelog ($) {
1508 my $clogp = Dpkg::Control::Hash->new();
1509 $clogp->load($clogpfn) or die;
1511 $package = getfield $clogp, 'Source';
1512 my $cversion = getfield $clogp, 'Version';
1513 my $tag = debiantag($cversion);
1514 runcmd @git, qw(check-ref-format), $tag;
1516 my $dscfn = dscfn($cversion);
1518 return ($clogp, $cversion, $tag, $dscfn);
1521 sub push_parse_dsc ($$$) {
1522 my ($dscfn,$dscfnwhat, $cversion) = @_;
1523 $dsc = parsecontrol($dscfn,$dscfnwhat);
1524 my $dversion = getfield $dsc, 'Version';
1525 my $dscpackage = getfield $dsc, 'Source';
1526 ($dscpackage eq $package && $dversion eq $cversion) or
1527 fail "$dscfn is for $dscpackage $dversion".
1528 " but debian/changelog is for $package $cversion";
1531 sub push_mktag ($$$$$$$) {
1532 my ($head,$clogp,$tag,
1534 $changesfile,$changesfilewhat,
1537 $dsc->{$ourdscfield[0]} = $head;
1538 $dsc->save("$dscfn.tmp") or die $!;
1540 my $changes = parsecontrol($changesfile,$changesfilewhat);
1541 foreach my $field (qw(Source Distribution Version)) {
1542 $changes->{$field} eq $clogp->{$field} or
1543 fail "changes field $field \`$changes->{$field}'".
1544 " does not match changelog \`$clogp->{$field}'";
1547 my $cversion = getfield $clogp, 'Version';
1548 my $clogsuite = getfield $clogp, 'Distribution';
1550 # We make the git tag by hand because (a) that makes it easier
1551 # to control the "tagger" (b) we can do remote signing
1552 my $authline = clogp_authline $clogp;
1553 my $delibs = join(" ", "",@deliberatelies);
1554 my $declaredistro = access_basedistro();
1555 open TO, '>', $tfn->('.tmp') or die $!;
1556 print TO <<END or die $!;
1562 $package release $cversion for $clogsuite ($csuite) [dgit]
1563 [dgit distro=$declaredistro$delibs]
1565 foreach my $ref (sort keys %supersedes) {
1566 print TO <<END or die $!;
1567 [dgit supersede:$ref=$supersedes{$ref}]
1573 my $tagobjfn = $tfn->('.tmp');
1575 if (!defined $keyid) {
1576 $keyid = access_cfg('keyid','RETURN-UNDEF');
1578 unlink $tfn->('.tmp.asc') or $!==&ENOENT or die $!;
1579 my @sign_cmd = (@gpg, qw(--detach-sign --armor));
1580 push @sign_cmd, qw(-u),$keyid if defined $keyid;
1581 push @sign_cmd, $tfn->('.tmp');
1582 runcmd_ordryrun @sign_cmd;
1584 $tagobjfn = $tfn->('.signed.tmp');
1585 runcmd shell_cmd "exec >$tagobjfn", qw(cat --),
1586 $tfn->('.tmp'), $tfn->('.tmp.asc');
1593 sub sign_changes ($) {
1594 my ($changesfile) = @_;
1596 my @debsign_cmd = @debsign;
1597 push @debsign_cmd, "-k$keyid" if defined $keyid;
1598 push @debsign_cmd, "-p$gpg[0]" if $gpg[0] ne 'gpg';
1599 push @debsign_cmd, $changesfile;
1600 runcmd_ordryrun @debsign_cmd;
1605 my ($forceflag) = @_;
1606 printdebug "actually entering push\n";
1609 access_giturl(); # check that success is vaguely likely
1611 my $clogpfn = ".git/dgit/changelog.822.tmp";
1612 runcmd shell_cmd "exec >$clogpfn", qw(dpkg-parsechangelog);
1614 responder_send_file('parsed-changelog', $clogpfn);
1616 my ($clogp, $cversion, $tag, $dscfn) =
1617 push_parse_changelog("$clogpfn");
1619 my $dscpath = "$buildproductsdir/$dscfn";
1620 stat_exists $dscpath or
1621 fail "looked for .dsc $dscfn, but $!;".
1622 " maybe you forgot to build";
1624 responder_send_file('dsc', $dscpath);
1626 push_parse_dsc($dscpath, $dscfn, $cversion);
1628 my $format = getfield $dsc, 'Format';
1629 printdebug "format $format\n";
1630 if (madformat($format)) {
1631 commit_quilty_patch();
1635 progress "checking that $dscfn corresponds to HEAD";
1636 runcmd qw(dpkg-source -x --),
1637 $dscpath =~ m#^/# ? $dscpath : "../../../$dscpath";
1638 my ($tree,$dir) = mktree_in_ud_from_only_subdir();
1639 changedir '../../../..';
1640 my $diffopt = $debuglevel>0 ? '--exit-code' : '--quiet';
1641 my @diffcmd = (@git, qw(diff), $diffopt, $tree);
1642 debugcmd "+",@diffcmd;
1644 my $r = system @diffcmd;
1647 fail "$dscfn specifies a different tree to your HEAD commit;".
1648 " perhaps you forgot to build".
1649 ($diffopt eq '--exit-code' ? "" :
1650 " (run with -D to see full diff output)");
1656 #do fast forward check and maybe fake merge
1657 # if (!is_fast_fwd(mainbranch
1658 # runcmd @git, qw(fetch -p ), "$alioth_git/$package.git",
1659 # map { lref($_).":".rref($_) }
1661 my $head = rev_parse('HEAD');
1662 if (!$changesfile) {
1663 my $multi = "$buildproductsdir/".
1664 "${package}_".(stripepoch $cversion)."_multi.changes";
1665 if (stat_exists "$multi") {
1666 $changesfile = $multi;
1668 my $pat = "${package}_".(stripepoch $cversion)."_*.changes";
1669 my @cs = glob "$buildproductsdir/$pat";
1670 fail "failed to find unique changes file".
1671 " (looked for $pat in $buildproductsdir, or $multi);".
1672 " perhaps you need to use dgit -C"
1674 ($changesfile) = @cs;
1677 $changesfile = "$buildproductsdir/$changesfile";
1680 responder_send_file('changes',$changesfile);
1681 responder_send_command("param head $head");
1682 responder_send_command("param csuite $csuite");
1684 if ($forceflag && defined $lastpush_hash) {
1685 git_for_each_tag_referring($lastpush_hash, sub {
1686 my ($objid,$fullrefname,$tagname) = @_;
1687 responder_send_command("supersedes $fullrefname=$objid");
1688 $supersedes{$fullrefname} = $objid;
1692 my $tfn = sub { ".git/dgit/tag$_[0]"; };
1695 if ($we_are_responder) {
1696 $tagobjfn = $tfn->('.signed.tmp');
1697 responder_receive_files('signed-tag', $tagobjfn);
1700 push_mktag($head,$clogp,$tag,
1702 $changesfile,$changesfile,
1706 my $tag_obj_hash = cmdoutput @git, qw(hash-object -w -t tag), $tagobjfn;
1707 runcmd_ordryrun @git, qw(verify-tag), $tag_obj_hash;
1708 runcmd_ordryrun_local @git, qw(update-ref), "refs/tags/$tag", $tag_obj_hash;
1709 runcmd_ordryrun @git, qw(tag -v --), $tag;
1711 if (!check_for_git()) {
1712 create_remote_git_repo();
1714 runcmd_ordryrun @git, qw(push),access_giturl(),
1715 $forceflag."HEAD:".rrref(), "refs/tags/$tag";
1716 runcmd_ordryrun @git, qw(update-ref -m), 'dgit push', lrref(), 'HEAD';
1718 if ($we_are_responder) {
1719 my $dryrunsuffix = act_local() ? "" : ".tmp";
1720 responder_receive_files('signed-dsc-changes',
1721 "$dscpath$dryrunsuffix",
1722 "$changesfile$dryrunsuffix");
1725 rename "$dscpath.tmp",$dscpath or die "$dscfn $!";
1727 progress "[new .dsc left in $dscpath.tmp]";
1729 sign_changes $changesfile;
1732 my $host = access_cfg('upload-host','RETURN-UNDEF');
1733 my @hostarg = defined($host) ? ($host,) : ();
1734 runcmd_ordryrun @dput, @hostarg, $changesfile;
1735 printdone "pushed and uploaded $cversion";
1737 responder_send_command("complete");
1743 badusage "-p is not allowed with clone; specify as argument instead"
1744 if defined $package;
1747 } elsif (@ARGV==2 && $ARGV[1] =~ m#^\w#) {
1748 ($package,$isuite) = @ARGV;
1749 } elsif (@ARGV==2 && $ARGV[1] =~ m#^[./]#) {
1750 ($package,$dstdir) = @ARGV;
1751 } elsif (@ARGV==3) {
1752 ($package,$isuite,$dstdir) = @ARGV;
1754 badusage "incorrect arguments to dgit clone";
1756 $dstdir ||= "$package";
1758 if (stat_exists $dstdir) {
1759 fail "$dstdir already exists";
1763 if ($rmonerror && !$dryrun_level) {
1764 $cwd_remove= getcwd();
1766 return unless defined $cwd_remove;
1767 if (!chdir "$cwd_remove") {
1768 return if $!==&ENOENT;
1769 die "chdir $cwd_remove: $!";
1771 rmtree($dstdir) or die "remove $dstdir: $!\n";
1776 $cwd_remove = undef;
1779 sub branchsuite () {
1780 my $branch = cmdoutput_errok @git, qw(symbolic-ref HEAD);
1781 if ($branch =~ m#$lbranch_re#o) {
1788 sub fetchpullargs () {
1789 if (!defined $package) {
1790 my $sourcep = parsecontrol('debian/control','debian/control');
1791 $package = getfield $sourcep, 'Source';
1794 # $isuite = branchsuite(); # this doesn't work because dak hates canons
1796 my $clogp = parsechangelog();
1797 $isuite = getfield $clogp, 'Distribution';
1799 canonicalise_suite();
1800 progress "fetching from suite $csuite";
1801 } elsif (@ARGV==1) {
1803 canonicalise_suite();
1805 badusage "incorrect arguments to dgit fetch or dgit pull";
1823 badusage "-p is not allowed with dgit push" if defined $package;
1825 my $clogp = parsechangelog();
1826 $package = getfield $clogp, 'Source';
1829 } elsif (@ARGV==1) {
1830 ($specsuite) = (@ARGV);
1832 badusage "incorrect arguments to dgit push";
1834 $isuite = getfield $clogp, 'Distribution';
1836 local ($package) = $existing_package; # this is a hack
1837 canonicalise_suite();
1839 if (defined $specsuite && $specsuite ne $isuite) {
1840 canonicalise_suite();
1841 $csuite eq $specsuite or
1842 fail "dgit push: changelog specifies $isuite ($csuite)".
1843 " but command line specifies $specsuite";
1845 if (check_for_git()) {
1849 if (fetch_from_archive()) {
1850 if (is_fast_fwd(lrref(), 'HEAD')) {
1852 } elsif (deliberately('not-fast-forward') ||
1853 deliberately('TEST-not-fast-forward-dgit-only')) {
1856 fail "dgit push: HEAD is not a descendant".
1857 " of the archive's version.\n".
1858 "dgit: To overwrite its contents,".
1859 " use git merge -s ours ".lrref().".\n".
1860 "dgit: To rewind history, if permitted by the archive,".
1861 " use --deliberately-not-fast-forward";
1865 fail "package appears to be new in this suite;".
1866 " if this is intentional, use --new";
1871 #---------- remote commands' implementation ----------
1873 sub cmd_remote_push_build_host {
1874 my ($nrargs) = shift @ARGV;
1875 my (@rargs) = @ARGV[0..$nrargs-1];
1876 @ARGV = @ARGV[$nrargs..$#ARGV];
1878 my ($dir,$vsnwant) = @rargs;
1879 # vsnwant is a comma-separated list; we report which we have
1880 # chosen in our ready response (so other end can tell if they
1883 $we_are_responder = 1;
1884 $us .= " (build host)";
1886 open PI, "<&STDIN" or die $!;
1887 open STDIN, "/dev/null" or die $!;
1888 open PO, ">&STDOUT" or die $!;
1890 open STDOUT, ">&STDERR" or die $!;
1894 fail "build host has dgit rpush protocol version".
1895 " $rpushprotovsn but invocation host has $vsnwant"
1896 unless grep { $rpushprotovsn eq $_ } split /,/, $vsnwant;
1898 responder_send_command("dgit-remote-push-ready $rpushprotovsn");
1904 sub cmd_remote_push_responder { cmd_remote_push_build_host(); }
1905 # ... for compatibility with proto vsn.1 dgit (just so that user gets
1906 # a good error message)
1912 my $report = i_child_report();
1913 if (defined $report) {
1914 printdebug "($report)\n";
1915 } elsif ($i_child_pid) {
1916 printdebug "(killing build host child $i_child_pid)\n";
1917 kill 15, $i_child_pid;
1919 if (defined $i_tmp && !defined $initiator_tempdir) {
1921 eval { rmtree $i_tmp; };
1925 END { i_cleanup(); }
1928 my ($base,$selector,@args) = @_;
1929 $selector =~ s/\-/_/g;
1930 { no strict qw(refs); &{"${base}_${selector}"}(@args); }
1936 if ($host =~ m/^((?:[^][]|\[[^][]*\])*)\:/) {
1943 my @rargs = ($dir,$rpushprotovsn);
1946 push @rdgit, @ropts;
1947 push @rdgit, qw(remote-push-build-host), (scalar @rargs), @rargs;
1949 my @cmd = (@ssh, $host, shellquote @rdgit);
1952 if (defined $initiator_tempdir) {
1953 rmtree $initiator_tempdir;
1954 mkdir $initiator_tempdir, 0700 or die "$initiator_tempdir: $!";
1955 $i_tmp = $initiator_tempdir;
1959 $i_child_pid = open2(\*RO, \*RI, @cmd);
1961 initiator_expect { m/^dgit-remote-push-ready/ };
1963 my ($icmd,$iargs) = initiator_expect {
1964 m/^(\S+)(?: (.*))?$/;
1967 i_method "i_resp", $icmd, $iargs;
1971 sub i_resp_progress ($) {
1973 my $msg = protocol_read_bytes \*RO, $rhs;
1977 sub i_resp_complete {
1978 my $pid = $i_child_pid;
1979 $i_child_pid = undef; # prevents killing some other process with same pid
1980 printdebug "waiting for build host child $pid...\n";
1981 my $got = waitpid $pid, 0;
1982 die $! unless $got == $pid;
1983 die "build host child failed $?" if $?;
1986 printdebug "all done\n";
1990 sub i_resp_file ($) {
1992 my $localname = i_method "i_localname", $keyword;
1993 my $localpath = "$i_tmp/$localname";
1994 stat_exists $localpath and
1995 badproto \*RO, "file $keyword ($localpath) twice";
1996 protocol_receive_file \*RO, $localpath;
1997 i_method "i_file", $keyword;
2002 sub i_resp_param ($) {
2003 $_[0] =~ m/^(\S+) (.*)$/ or badproto \*RO, "bad param spec";
2007 sub i_resp_supersedes ($) {
2008 $_[0] =~ m#^(refs/tags/\S+)=(\w+)$#
2009 or badproto \*RO, "bad supersedes spec";
2010 my $r = system qw(git check-ref-format), $1;
2011 die "bad supersedes ref spec ($r)" if $r;
2012 $supersedes{$1} = $2;
2017 sub i_resp_want ($) {
2019 die "$keyword ?" if $i_wanted{$keyword}++;
2020 my @localpaths = i_method "i_want", $keyword;
2021 printdebug "[[ $keyword @localpaths\n";
2022 foreach my $localpath (@localpaths) {
2023 protocol_send_file \*RI, $localpath;
2025 print RI "files-end\n" or die $!;
2028 our ($i_clogp, $i_version, $i_tag, $i_dscfn, $i_changesfn);
2030 sub i_localname_parsed_changelog {
2031 return "remote-changelog.822";
2033 sub i_file_parsed_changelog {
2034 ($i_clogp, $i_version, $i_tag, $i_dscfn) =
2035 push_parse_changelog "$i_tmp/remote-changelog.822";
2036 die if $i_dscfn =~ m#/|^\W#;
2039 sub i_localname_dsc {
2040 defined $i_dscfn or badproto \*RO, "dsc (before parsed-changelog)";
2045 sub i_localname_changes {
2046 defined $i_dscfn or badproto \*RO, "dsc (before parsed-changelog)";
2047 $i_changesfn = $i_dscfn;
2048 $i_changesfn =~ s/\.dsc$/_dgit.changes/ or die;
2049 return $i_changesfn;
2051 sub i_file_changes { }
2053 sub i_want_signed_tag {
2054 printdebug Dumper(\%i_param, $i_dscfn);
2055 defined $i_param{'head'} && defined $i_dscfn && defined $i_clogp
2056 && defined $i_param{'csuite'}
2057 or badproto \*RO, "premature desire for signed-tag";
2058 my $head = $i_param{'head'};
2059 die if $head =~ m/[^0-9a-f]/ || $head !~ m/^../;
2061 die unless $i_param{'csuite'} =~ m/^$suite_re$/;
2063 push_parse_dsc $i_dscfn, 'remote dsc', $i_version;
2066 push_mktag $head, $i_clogp, $i_tag,
2068 $i_changesfn, 'remote changes',
2069 sub { "tag$_[0]"; };
2074 sub i_want_signed_dsc_changes {
2075 rename "$i_dscfn.tmp","$i_dscfn" or die "$i_dscfn $!";
2076 sign_changes $i_changesfn;
2077 return ($i_dscfn, $i_changesfn);
2080 #---------- building etc. ----------
2086 #----- `3.0 (quilt)' handling -----
2088 our $fakeeditorenv = 'DGIT_FAKE_EDITOR_QUILT';
2090 sub quiltify_dpkg_commit ($$$;$) {
2091 my ($patchname,$author,$msg, $xinfo) = @_;
2095 my $descfn = ".git/dgit/quilt-description.tmp";
2096 open O, '>', $descfn or die "$descfn: $!";
2099 $msg =~ s/^\s+$/ ./mg;
2100 print O <<END or die $!;
2110 local $ENV{'EDITOR'} = cmdoutput qw(realpath --), $0;
2111 local $ENV{'VISUAL'} = $ENV{'EDITOR'};
2112 local $ENV{$fakeeditorenv} = cmdoutput qw(realpath --), $descfn;
2113 runcmd_ordryrun_local @dpkgsource, qw(--commit .), $patchname;
2117 sub quiltify_trees_differ ($$) {
2119 # returns 1 iff the two tree objects differ other than in debian/
2121 my @cmd = (@git, qw(diff-tree --name-only -z), $x, $y);
2122 my $diffs= cmdoutput @cmd;
2123 foreach my $f (split /\0/, $diffs) {
2124 next if $f eq 'debian';
2130 sub quiltify_tree_sentinelfiles ($) {
2131 # lists the `sentinel' files present in the tree
2133 my $r = cmdoutput @git, qw(ls-tree --name-only), $x,
2134 qw(-- debian/rules debian/control);
2140 my ($clogp,$target) = @_;
2142 # Quilt patchification algorithm
2144 # We search backwards through the history of the main tree's HEAD
2145 # (T) looking for a start commit S whose tree object is identical
2146 # to to the patch tip tree (ie the tree corresponding to the
2147 # current dpkg-committed patch series). For these purposes
2148 # `identical' disregards anything in debian/ - this wrinkle is
2149 # necessary because dpkg-source treates debian/ specially.
2151 # We can only traverse edges where at most one of the ancestors'
2152 # trees differs (in changes outside in debian/). And we cannot
2153 # handle edges which change .pc/ or debian/patches. To avoid
2154 # going down a rathole we avoid traversing edges which introduce
2155 # debian/rules or debian/control. And we set a limit on the
2156 # number of edges we are willing to look at.
2158 # If we succeed, we walk forwards again. For each traversed edge
2159 # PC (with P parent, C child) (starting with P=S and ending with
2160 # C=T) to we do this:
2162 # - dpkg-source --commit with a patch name and message derived from C
2163 # After traversing PT, we git commit the changes which
2164 # should be contained within debian/patches.
2166 changedir '../fake';
2167 mktree_in_ud_here();
2169 runcmd @git, 'add', '.';
2170 my $oldtiptree=git_write_tree();
2171 changedir '../work';
2173 # The search for the path S..T is breadth-first. We maintain a
2174 # todo list containing search nodes. A search node identifies a
2175 # commit, and looks something like this:
2177 # Commit => $git_commit_id,
2178 # Child => $c, # or undef if P=T
2179 # Whynot => $reason_edge_PC_unsuitable, # in @nots only
2180 # Nontrivial => true iff $p..$c has relevant changes
2187 my %considered; # saves being exponential on some weird graphs
2189 my $t_sentinels = quiltify_tree_sentinelfiles $target;
2192 my ($search,$whynot) = @_;
2193 printdebug " search NOT $search->{Commit} $whynot\n";
2194 $search->{Whynot} = $whynot;
2195 push @nots, $search;
2196 no warnings qw(exiting);
2205 my $c = shift @todo;
2206 next if $considered{$c->{Commit}}++;
2208 $not->($c, "maximum search space exceeded") if --$max_work <= 0;
2210 printdebug "quiltify investigate $c->{Commit}\n";
2213 if (!quiltify_trees_differ $c->{Commit}, $oldtiptree) {
2214 printdebug " search finished hooray!\n";
2219 if ($quilt_mode eq 'nofix') {
2220 fail "quilt fixup required but quilt mode is \`nofix'\n".
2221 "HEAD commit $c->{Commit} differs from tree implied by ".
2222 " debian/patches (tree object $oldtiptree)";
2224 if ($quilt_mode eq 'smash') {
2225 printdebug " search quitting smash\n";
2229 my $c_sentinels = quiltify_tree_sentinelfiles $c->{Commit};
2230 $not->($c, "has $c_sentinels not $t_sentinels")
2231 if $c_sentinels ne $t_sentinels;
2233 my $commitdata = cmdoutput @git, qw(cat-file commit), $c->{Commit};
2234 $commitdata =~ m/\n\n/;
2236 my @parents = ($commitdata =~ m/^parent (\w+)$/gm);
2237 @parents = map { { Commit => $_, Child => $c } } @parents;
2239 $not->($c, "root commit") if !@parents;
2241 foreach my $p (@parents) {
2242 $p->{Nontrivial}= quiltify_trees_differ $p->{Commit},$c->{Commit};
2244 my $ndiffers = grep { $_->{Nontrivial} } @parents;
2245 $not->($c, "merge ($ndiffers nontrivial parents)") if $ndiffers > 1;
2247 foreach my $p (@parents) {
2248 printdebug "considering C=$c->{Commit} P=$p->{Commit}\n";
2250 my @cmd= (@git, qw(diff-tree -r --name-only),
2251 $p->{Commit},$c->{Commit}, qw(-- debian/patches .pc));
2252 my $patchstackchange = cmdoutput @cmd;
2253 if (length $patchstackchange) {
2254 $patchstackchange =~ s/\n/,/g;
2255 $not->($p, "changed $patchstackchange");
2258 printdebug " search queue P=$p->{Commit} ",
2259 ($p->{Nontrivial} ? "NT" : "triv"),"\n";
2265 printdebug "quiltify want to smash\n";
2268 my $x = $_[0]{Commit};
2269 $x =~ s/(.*?[0-9a-z]{8})[0-9a-z]*$/$1/;
2272 my $reportnot = sub {
2274 my $s = $abbrev->($notp);
2275 my $c = $notp->{Child};
2276 $s .= "..".$abbrev->($c) if $c;
2277 $s .= ": ".$c->{Whynot};
2280 if ($quilt_mode eq 'linear') {
2281 print STDERR "$us: quilt fixup cannot be linear. Stopped at:\n";
2282 foreach my $notp (@nots) {
2283 print STDERR "$us: ", $reportnot->($notp), "\n";
2285 fail "quilt fixup naive history linearisation failed.\n".
2286 "Use dpkg-source --commit by hand; or, --quilt=smash for one ugly patch";
2287 } elsif ($quilt_mode eq 'smash') {
2288 } elsif ($quilt_mode eq 'auto') {
2289 progress "quilt fixup cannot be linear, smashing...";
2291 die "$quilt_mode ?";
2296 my $msg = cmdoutput @git, qw(log), "-n$ncommits";
2298 quiltify_dpkg_commit "auto-$version-$target-$time",
2299 (getfield $clogp, 'Maintainer'),
2300 "Automatically generated patch ($clogp->{Version})\n".
2301 "Last (up to) $ncommits git changes, FYI:\n\n". $msg;
2305 progress "quiltify linearisation planning successful, executing...";
2307 for (my $p = $sref_S;
2308 my $c = $p->{Child};
2310 printdebug "quiltify traverse $p->{Commit}..$c->{Commit}\n";
2311 next unless $p->{Nontrivial};
2313 my $cc = $c->{Commit};
2315 my $commitdata = cmdoutput @git, qw(cat-file commit), $cc;
2316 $commitdata =~ m/\n\n/ or die "$c ?";
2319 $commitdata =~ m/^author (.*) \d+ [-+0-9]+$/m or die "$cc ?";
2322 $msg =~ s/^(.*)\n*/$1\n/ or die "$cc $msg ?";
2325 my $patchname = $title;
2326 $patchname =~ s/[.:]$//;
2327 $patchname =~ y/ A-Z/-a-z/;
2328 $patchname =~ y/-a-z0-9_.+=~//cd;
2329 $patchname =~ s/^\W/x-$&/;
2330 $patchname = substr($patchname,0,40);
2333 stat "debian/patches/$patchname$index";
2335 $!==ENOENT or die "$patchname$index $!";
2337 runcmd @git, qw(checkout -q), $cc;
2339 # We use the tip's changelog so that dpkg-source doesn't
2340 # produce complaining messages from dpkg-parsechangelog. None
2341 # of the information dpkg-source gets from the changelog is
2342 # actually relevant - it gets put into the original message
2343 # which dpkg-source provides our stunt editor, and then
2345 runcmd @git, qw(checkout -q), $target, qw(debian/changelog);
2347 quiltify_dpkg_commit "$patchname$index", $author, $msg,
2348 "X-Dgit-Generated: $clogp->{Version} $cc\n";
2350 runcmd @git, qw(checkout -q), $cc, qw(debian/changelog);
2353 runcmd @git, qw(checkout -q master);
2356 sub build_maybe_quilt_fixup () {
2357 my $format=get_source_format;
2358 return unless madformat $format;
2362 # - honour any existing .pc in case it has any strangeness
2363 # - determine the git commit corresponding to the tip of
2364 # the patch stack (if there is one)
2365 # - if there is such a git commit, convert each subsequent
2366 # git commit into a quilt patch with dpkg-source --commit
2367 # - otherwise convert all the differences in the tree into
2368 # a single git commit
2372 # Our git tree doesn't necessarily contain .pc. (Some versions of
2373 # dgit would include the .pc in the git tree.) If there isn't
2374 # one, we need to generate one by unpacking the patches that we
2377 # We first look for a .pc in the git tree. If there is one, we
2378 # will use it. (This is not the normal case.)
2380 # Otherwise need to regenerate .pc so that dpkg-source --commit
2381 # can work. We do this as follows:
2382 # 1. Collect all relevant .orig from parent directory
2383 # 2. Generate a debian.tar.gz out of
2384 # debian/{patches,rules,source/format}
2385 # 3. Generate a fake .dsc containing just these fields:
2386 # Format Source Version Files
2387 # 4. Extract the fake .dsc
2388 # Now the fake .dsc has a .pc directory.
2389 # (In fact we do this in every case, because in future we will
2390 # want to search for a good base commit for generating patches.)
2392 # Then we can actually do the dpkg-source --commit
2393 # 1. Make a new working tree with the same object
2394 # store as our main tree and check out the main
2396 # 2. Copy .pc from the fake's extraction, if necessary
2397 # 3. Run dpkg-source --commit
2398 # 4. If the result has changes to debian/, then
2399 # - git-add them them
2400 # - git-add .pc if we had a .pc in-tree
2402 # 5. If we had a .pc in-tree, delete it, and git-commit
2403 # 6. Back in the main tree, fast forward to the new HEAD
2405 my $clogp = parsechangelog();
2406 my $headref = rev_parse('HEAD');
2411 my $upstreamversion=$version;
2412 $upstreamversion =~ s/-[^-]*$//;
2414 my $fakeversion="$upstreamversion-~~DGITFAKE";
2416 my $fakedsc=new IO::File 'fake.dsc', '>' or die $!;
2417 print $fakedsc <<END or die $!;
2420 Version: $fakeversion
2424 my $dscaddfile=sub {
2427 my $md = new Digest::MD5;
2429 my $fh = new IO::File $b, '<' or die "$b $!";
2434 print $fakedsc " ".$md->hexdigest." $size $b\n" or die $!;
2437 foreach my $f (<../../../../*>) { #/){
2438 my $b=$f; $b =~ s{.*/}{};
2439 next unless is_orig_file $b, srcfn $upstreamversion,'';
2440 link $f, $b or die "$b $!";
2444 my @files=qw(debian/source/format debian/rules);
2445 if (stat_exists '../../../debian/patches') {
2446 push @files, 'debian/patches';
2449 my $debtar= srcfn $fakeversion,'.debian.tar.gz';
2450 runcmd qw(env GZIP=-1 tar -zcf), "./$debtar", qw(-C ../../..), @files;
2452 $dscaddfile->($debtar);
2453 close $fakedsc or die $!;
2455 runcmd qw(sh -ec), 'exec dpkg-source --no-check -x fake.dsc >/dev/null';
2457 my $fakexdir= $package.'-'.(stripepoch $upstreamversion);
2458 rename $fakexdir, "fake" or die "$fakexdir $!";
2460 mkdir "work" or die $!;
2462 mktree_in_ud_here();
2463 runcmd @git, qw(reset --hard), $headref;
2466 if (stat_exists ".pc") {
2468 progress "Tree already contains .pc - will use it then delete it.";
2471 rename '../fake/.pc','.pc' or die $!;
2474 quiltify($clogp,$headref);
2476 if (!open P, '>>', ".pc/applied-patches") {
2477 $!==&ENOENT or die $!;
2482 commit_quilty_patch();
2484 if ($mustdeletepc) {
2485 runcmd @git, qw(rm -rq .pc);
2486 commit_admin "Commit removal of .pc (quilt series tracking data)";
2489 changedir '../../../..';
2490 runcmd @git, qw(pull --ff-only -q .git/dgit/unpack/work master);
2493 sub quilt_fixup_editor () {
2494 my $descfn = $ENV{$fakeeditorenv};
2495 my $editing = $ARGV[$#ARGV];
2496 open I1, '<', $descfn or die "$descfn: $!";
2497 open I2, '<', $editing or die "$editing: $!";
2498 unlink $editing or die "$editing: $!";
2499 open O, '>', $editing or die "$editing: $!";
2500 while (<I1>) { print O or die $!; } I1->error and die $!;
2503 $copying ||= m/^\-\-\- /;
2504 next unless $copying;
2507 I2->error and die $!;
2512 #----- other building -----
2515 if ($cleanmode eq 'dpkg-source') {
2516 runcmd_ordryrun_local @dpkgbuildpackage, qw(-T clean);
2517 } elsif ($cleanmode eq 'git') {
2518 runcmd_ordryrun_local @git, qw(clean -xdf);
2519 } elsif ($cleanmode eq 'none') {
2526 badusage "clean takes no additional arguments" if @ARGV;
2531 badusage "-p is not allowed when building" if defined $package;
2534 my $clogp = parsechangelog();
2535 $isuite = getfield $clogp, 'Distribution';
2536 $package = getfield $clogp, 'Source';
2537 $version = getfield $clogp, 'Version';
2538 build_maybe_quilt_fixup();
2541 sub changesopts () {
2542 my @opts =@changesopts[1..$#changesopts];
2543 if (!defined $changes_since_version) {
2544 my @vsns = archive_query('archive_query');
2545 my @quirk = access_quirk();
2546 if ($quirk[0] eq 'backports') {
2547 local $isuite = $quirk[2];
2549 canonicalise_suite();
2550 push @vsns, archive_query('archive_query');
2553 @vsns = map { $_->[0] } @vsns;
2554 @vsns = sort { -version_compare($a, $b) } @vsns;
2555 $changes_since_version = $vsns[0];
2556 progress "changelog will contain changes since $vsns[0]";
2558 $changes_since_version = '_';
2559 progress "package seems new, not specifying -v<version>";
2562 if ($changes_since_version ne '_') {
2563 unshift @opts, "-v$changes_since_version";
2570 runcmd_ordryrun_local @dpkgbuildpackage, qw(-us -uc), changesopts(), @ARGV;
2571 printdone "build successful\n";
2577 (qw(git-buildpackage -us -uc --git-no-sign-tags),
2578 "--git-builder=@dpkgbuildpackage");
2579 unless (grep { m/^--git-debian-branch|^--git-ignore-branch/ } @ARGV) {
2580 canonicalise_suite();
2581 push @cmd, "--git-debian-branch=".lbranch();
2583 push @cmd, changesopts();
2584 runcmd_ordryrun_local @cmd, @ARGV;
2585 printdone "build successful\n";
2590 $sourcechanges = "${package}_".(stripepoch $version)."_source.changes";
2591 $dscfn = dscfn($version);
2592 if ($cleanmode eq 'dpkg-source') {
2593 runcmd_ordryrun_local (@dpkgbuildpackage, qw(-us -uc -S)),
2596 my $pwd = must_getcwd();
2597 my $leafdir = basename $pwd;
2599 runcmd_ordryrun_local @dpkgsource, qw(-b --), $leafdir;
2601 runcmd_ordryrun_local qw(sh -ec),
2602 'exec >$1; shift; exec "$@"','x',
2603 "../$sourcechanges",
2604 @dpkggenchanges, qw(-S), changesopts();
2608 sub cmd_build_source {
2609 badusage "build-source takes no additional arguments" if @ARGV;
2611 printdone "source built, results in $dscfn and $sourcechanges";
2617 my $pat = "${package}_".(stripepoch $version)."_*.changes";
2619 stat_exist $dscfn or fail "$dscfn (in parent directory): $!";
2620 stat_exists $sourcechanges
2621 or fail "$sourcechanges (in parent directory): $!";
2622 foreach my $cf (glob $pat) {
2623 next if $cf eq $sourcechanges;
2624 unlink $cf or fail "remove $cf: $!";
2627 runcmd_ordryrun_local @sbuild, @ARGV, qw(-d), $isuite, $dscfn;
2628 my @changesfiles = glob $pat;
2629 @changesfiles = sort {
2630 ($b =~ m/_source\.changes$/ <=> $a =~ m/_source\.changes$/)
2633 fail "wrong number of different changes files (@changesfiles)"
2634 unless @changesfiles;
2635 runcmd_ordryrun_local @mergechanges, @changesfiles;
2636 my $multichanges = "${package}_".(stripepoch $version)."_multi.changes";
2638 stat_exists $multichanges or fail "$multichanges: $!";
2640 printdone "build successful, results in $multichanges\n" or die $!;
2643 sub cmd_quilt_fixup {
2644 badusage "incorrect arguments to dgit quilt-fixup" if @ARGV;
2645 my $clogp = parsechangelog();
2646 $version = getfield $clogp, 'Version';
2647 $package = getfield $clogp, 'Source';
2648 build_maybe_quilt_fixup();
2651 sub cmd_archive_api_query {
2652 badusage "need only 1 subpath argument" unless @ARGV==1;
2653 my ($subpath) = @ARGV;
2654 my @cmd = archive_api_query_cmd($subpath);
2656 exec @cmd or fail "exec curl: $!\n";
2659 #---------- argument parsing and main program ----------
2662 print "dgit version $our_version\n" or die $!;
2669 if (defined $ENV{'DGIT_SSH'}) {
2670 @ssh = string_to_ssh $ENV{'DGIT_SSH'};
2671 } elsif (defined $ENV{'GIT_SSH'}) {
2672 @ssh = ($ENV{'GIT_SSH'});
2676 last unless $ARGV[0] =~ m/^-/;
2680 if (m/^--dry-run$/) {
2683 } elsif (m/^--damp-run$/) {
2686 } elsif (m/^--no-sign$/) {
2689 } elsif (m/^--help$/) {
2691 } elsif (m/^--version$/) {
2693 } elsif (m/^--new$/) {
2696 } elsif (m/^--since-version=([^_]+|_)$/) {
2698 $changes_since_version = $1;
2699 } elsif (m/^--([-0-9a-z]+)=(.*)/s &&
2700 ($om = $opts_opt_map{$1}) &&
2704 } elsif (m/^--([-0-9a-z]+):(.*)/s &&
2705 !$opts_opt_cmdonly{$1} &&
2706 ($om = $opts_opt_map{$1})) {
2709 } elsif (m/^--existing-package=(.*)/s) {
2711 $existing_package = $1;
2712 } elsif (m/^--initiator-tempdir=(.*)/s) {
2713 $initiator_tempdir = $1;
2714 $initiator_tempdir =~ m#^/# or
2715 badusage "--initiator-tempdir must be used specify an".
2716 " absolute, not relative, directory."
2717 } elsif (m/^--distro=(.*)/s) {
2720 } elsif (m/^--build-products-dir=(.*)/s) {
2722 $buildproductsdir = $1;
2723 } elsif (m/^--clean=(dpkg-source|git|none)$/s) {
2726 } elsif (m/^--clean=(.*)$/s) {
2727 badusage "unknown cleaning mode \`$1'";
2728 } elsif (m/^--quilt=($quilt_modes_re)$/s) {
2731 } elsif (m/^--quilt=(.*)$/s) {
2732 badusage "unknown quilt fixup mode \`$1'";
2733 } elsif (m/^--ignore-dirty$/s) {
2736 } elsif (m/^--no-quilt-fixup$/s) {
2738 $quilt_mode = 'nocheck';
2739 } elsif (m/^--no-rm-on-error$/s) {
2742 } elsif (m/^--deliberately-($deliberately_re)$/s) {
2744 push @deliberatelies, $&;
2746 badusage "unknown long option \`$_'";
2753 } elsif (s/^-L/-/) {
2756 } elsif (s/^-h/-/) {
2758 } elsif (s/^-D/-/) {
2762 } elsif (s/^-N/-/) {
2765 } elsif (s/^-v([^_]+|_)$//s) {
2767 $changes_since_version = $1;
2770 push @changesopts, $_;
2772 } elsif (s/^-c(.*=.*)//s) {
2774 push @git, '-c', $1;
2775 } elsif (s/^-d(.+)//s) {
2778 } elsif (s/^-C(.+)//s) {
2781 if ($changesfile =~ s#^(.*)/##) {
2782 $buildproductsdir = $1;
2784 } elsif (s/^-k(.+)//s) {
2786 } elsif (m/^-[vdCk]$/) {
2788 "option \`$_' requires an argument (and no space before the argument)";
2789 } elsif (s/^-wn$//s) {
2791 $cleanmode = 'none';
2792 } elsif (s/^-wg$//s) {
2795 } elsif (s/^-wd$//s) {
2797 $cleanmode = 'dpkg-source';
2799 badusage "unknown short option \`$_'";
2806 if ($ENV{$fakeeditorenv}) {
2807 quilt_fixup_editor();
2811 print STDERR "DRY RUN ONLY\n" if $dryrun_level > 1;
2812 print STDERR "DAMP RUN - WILL MAKE LOCAL (UNSIGNED) CHANGES\n"
2813 if $dryrun_level == 1;
2815 print STDERR $helpmsg or die $!;
2818 my $cmd = shift @ARGV;
2821 if (!defined $quilt_mode) {
2822 $quilt_mode = cfg('dgit.force.quilt-mode', 'RETURN-UNDEF')
2823 // access_cfg('quilt-mode', 'RETURN-UNDEF')
2825 $quilt_mode =~ m/^($quilt_modes_re)$/
2826 or badcfg "unknown quilt-mode \`$quilt_mode'";
2830 my $fn = ${*::}{"cmd_$cmd"};
2831 $fn or badusage "unknown operation $cmd";