From: Eric Wong <e@80x24.org>
To: meta@public-inbox.org
Subject: [PATCH 1/2] scripts/import_slrnspool: support v2 repos
Date: Wed, 2 May 2018 20:58:24 +0000 [thread overview]
Message-ID: <20180502205825.16159-2-e@80x24.org> (raw)
In-Reply-To: <20180502205825.16159-1-e@80x24.org>
---
scripts/import_slrnspool | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/scripts/import_slrnspool b/scripts/import_slrnspool
index 7b6c9ab..ab79e79 100755
--- a/scripts/import_slrnspool
+++ b/scripts/import_slrnspool
@@ -25,7 +25,15 @@ defined $recipient or die usage();
my $config = PublicInbox::Config->new;
my $ibx = $config->lookup($recipient);
my $git = $ibx->git;
-my $im = PublicInbox::Import->new($git, $ibx->{name}, $ibx->{-primary_address});
+my $im;
+if (($ibx->{version} || 1) == 2) {
+ require PublicInbox::V2Writable;
+ $im = PublicInbox::V2Writable->new($ibx);
+ $im->{parallel} = 0; # pointless to be parallel for a single message
+} else {
+ $im = PublicInbox::Import->new($git, $ibx->{name},
+ $ibx->{-primary_address});
+}
sub key {
"publicinbox.$ibx->{name}.importslrnspoolstate";
--
EW
next prev parent reply other threads:[~2018-05-02 20:58 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-02 20:58 [PATCH 0/2] import_slrnspool updates Eric Wong
2018-05-02 20:58 ` Eric Wong [this message]
2018-05-02 20:58 ` [PATCH 2/2] scripts/import_slrnspool: cleanup progress messages Eric Wong
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://public-inbox.org/README
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180502205825.16159-2-e@80x24.org \
--to=e@80x24.org \
--cc=meta@public-inbox.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).