From 556fb7af0e43c1183933d6afe451eb81296b802c Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Mon, 28 Nov 2022 05:32:31 +0000 Subject: clone: support --project-list= for cgit grokmirror supports it, and we also support cgit, so this should make running mirrors easier. This will be useful for scripting purposes, too. --- lib/PublicInbox/LeiMirror.pm | 39 ++++++++++++++++++++++++++++++++++++--- script/public-inbox-clone | 4 ++++ 2 files changed, 40 insertions(+), 3 deletions(-) diff --git a/lib/PublicInbox/LeiMirror.pm b/lib/PublicInbox/LeiMirror.pm index 0508c9a8..d4b14699 100644 --- a/lib/PublicInbox/LeiMirror.pm +++ b/lib/PublicInbox/LeiMirror.pm @@ -991,6 +991,34 @@ sub dump_manifest ($$) { utime($mtime, $mtime, "$ft") or die "utime(..., $ft): $!"; } +sub dump_project_list ($$) { + my ($self, $m) = @_; + my $f = $self->{'-project-list'} // return; + my $old = PublicInbox::Git::try_cat($f); + my %new; + + open my $dh, '<', '.' or die "open(.): $!"; + chdir($self->{dst}) or die "chdir($self->{dst}): $!"; + my @local = grep { -e $_ ? ($new{$_} = undef) : 1 } split(/\n/s, $old); + chdir($dh) or die "chdir(restore): $!"; + + $new{substr($_, 1)} = 1 for keys %$m; # drop leading '/' + my @list = sort keys %new; + my @remote = grep { !defined($new{$_}) } @list; + + warn <{src}: +EOM + warn "\t", $_, "\n" for @remote; + warn <splitpath($f); + atomic_write($dn, $bn, join("\n", @list, '')); +} + # FIXME: this gets confused by single inbox instance w/ global manifest.js.gz sub try_manifest { my ($self) = @_; @@ -1104,6 +1132,7 @@ EOM warn(<{opt}->{$k} // next; $v = $default if $v eq ''; $v = "$self->{dst}/$v" if $v !~ m!\A\.{0,2}/!; $self->{"-$k"} = $v; } + local $LIVE = {}; local $TODO = {}; local $FGRP_TODO = {}; diff --git a/script/public-inbox-clone b/script/public-inbox-clone index efe0cff6..677c56c8 100755 --- a/script/public-inbox-clone +++ b/script/public-inbox-clone @@ -22,8 +22,12 @@ options: --quiet | -q increase verbosity (may be repeated) -C DIR chdir to specified directory EOF + +# cgit calls it `project-list', grokmirror calls it `projectslist', +# support both :/ GetOptions($opt, qw(help|h quiet|q verbose|v+ C=s@ c=s@ include|I=s@ exclude=s@ inbox-config=s inbox-version=i objstore=s manifest=s + project-list|projectslist=s prune|p keep-going|k dry-run|n jobs|j=i no-torsocks torsocks=s epoch=s)) or die $help; if ($opt->{help}) { print $help; exit }; -- cgit v1.2.3-24-ge0c7