From 052f26f3ada1042afa5acadbecc48b487f4e2d52 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sat, 27 Feb 2016 21:57:57 +0000 Subject: move executables to script/ directory This seems to match more closely with what is expected of Perl packages based on how blib is used. Hopefully makes the top-level source tree less cluttered and things easier-to-find. --- public-inbox-init | 74 ------------------------------------------------------- 1 file changed, 74 deletions(-) delete mode 100755 public-inbox-init (limited to 'public-inbox-init') diff --git a/public-inbox-init b/public-inbox-init deleted file mode 100755 index d66361df..00000000 --- a/public-inbox-init +++ /dev/null @@ -1,74 +0,0 @@ -#!/usr/bin/perl -w -# Copyright (C) 2014-2015 all contributors -# License: AGPLv3 or later (https://www.gnu.org/licenses/agpl-3.0.txt) -# -# Initializes a public-inbox, basically a wrapper for git-init(1) -use strict; -use warnings; -my $usage = "public-inbox-init NAME GIT_DIR HTTP_URL ADDRESS [ADDRESS..]"; -use PublicInbox::Config; -use File::Temp qw/tempfile/; -use File::Basename qw/dirname/; -use File::Path qw/mkpath/; -use Cwd qw/abs_path/; - -sub x { system(@_) and die join(' ', @_). " failed: $?\n" } -sub usage { print STDERR "Usage: $usage\n"; exit 1 } - -my $name = shift @ARGV or usage(); -my $git_dir = shift @ARGV or usage(); -my $http_url = shift @ARGV or usage(); -my (@address) = @ARGV; -@address or usage(); -my %seen; - -my $pi_config = PublicInbox::Config->default_file; -my $dir = dirname($pi_config); -mkpath($dir); # will croak on fatal errors -my ($fh, $filename) = tempfile('pi-init-XXXXXXXX', DIR => $dir); -if (-e $pi_config) { - open(my $oh, '<', $pi_config) or die "unable to read $pi_config: $!\n"; - my $old; - { - local $/; - $old = <$oh>; - } - print $fh $old or die "failed to write: $!\n"; - close $oh or die "failed to close $pi_config: $!\n"; - - # yes, this conflict checking is racy if multiple instances of this - # script are run by the same $PI_DIR - my $cfg = PublicInbox::Config->new; - my $conflict; - foreach my $addr (@address) { - my $found = $cfg->lookup($addr); - if ($found) { - if ($found->{listname} ne $name) { - print STDERR - "`$addr' already defined for ", - "`$found->{listname}',\n", - "does not match intend `$name'\n"; - $conflict = 1; - } else { - $seen{lc($addr)} = 1; - } - } - } - - exit(1) if $conflict; -} -close $fh or die "failed to close $filename: $!\n"; - -my $pfx = "publicinbox.$name"; -my @x = (qw/git config/, "--file=$filename"); -$git_dir = abs_path($git_dir); -x(qw(git init -q --bare), $git_dir); -foreach my $addr (@address) { - next if $seen{lc($addr)}; - x(@x, "--add", "$pfx.address", $addr); -} -x(@x, "$pfx.url", $http_url); -x(@x, "$pfx.mainrepo", $git_dir); - -rename $filename, $pi_config or - die "failed to rename `$filename' to `$pi_config': $!\n"; -- cgit v1.2.3-24-ge0c7