X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=scripts%2Fimport_vger_from_mbox;h=c45dc4ee1a4986f38d15d96ba9cfe2d706d00019;hb=ff25a60b1b85c92a7e76a735a2c79c0205233a27;hp=6ea2ca5d2de7debee2005956d0a858a770dd467f;hpb=5a6bdba5bf610145f26243e73cd349658d2e2db9;p=public-inbox.git diff --git a/scripts/import_vger_from_mbox b/scripts/import_vger_from_mbox index 6ea2ca5d..c45dc4ee 100644 --- a/scripts/import_vger_from_mbox +++ b/scripts/import_vger_from_mbox @@ -7,25 +7,24 @@ use Getopt::Long qw/:config gnu_getopt no_ignore_case auto_abbrev/; use Date::Parse qw/str2time/; use Email::MIME; $Email::MIME::ContentType::STRICT_PARAMS = 0; # user input is imperfect -use PublicInbox::Git; -use PublicInbox::Import; -my $usage = "usage: $0 NAME EMAIL \$dry_run ); GetOptions(%opts) or die $usage; -chomp(my $git_dir = `git rev-parse --git-dir`); -my $git = PublicInbox::Git->new($git_dir); my $name = shift or die $usage; # git my $email = shift or die $usage; # git@vger.kernel.org -my $im = $dry_run ? undef : PublicInbox::Import->new($git, $name, $email); +my $mainrepo = shift or die $usage; # /path/to/v2/repo +my $v2ibx = { + mainrepo => $mainrepo, + name => $name, + -primary_address => $email, +}; +my $im = $dry_run ? undef : PublicInbox::V2Writable->new($v2ibx, 1); binmode STDIN; my $msg = ''; use PublicInbox::Filter::Vger; my $vger = PublicInbox::Filter::Vger->new; -if ($im) { - $im->{ssoma_lock} = 0; - $im->{path_type} = 'v2'; -} sub do_add ($$) { my ($im, $msg) = @_;