Sha256: 5b3a55b35c4b74acd96a9e8a68d332fac05d3706ca10df04b611269fe48d8023

Contents?: true

Size: 1.6 KB

Versions: 268

Compression:

Stored size: 1.6 KB

Contents

#!/usr/bin/env perl

use strict;

sub main {
    my $input = do { local $/; <> };
    $input =~ s/.*?\n= Commands\n//s;
    $input =~ s/(.*?)\n= Command Options\n.*?\n==? .*/$1/s;
    my @list;
    while ($input =~ s/.*?^- (.*?)(?=\n- |\n== |\z)//ms) {
        my $text = $1;
        $text =~ /\A(.*)\n((?s:.*?))\n*\z/
            or die "Bad text '$text'";
        my ($usage, $desc) = ($1, $2);
        $usage =~ s/\A`(.*)`\z/$1/
            or die "Bad usage: '$text' '$usage' '$desc'";
        $usage =~ s/^git subrepo //;
        (my $name = $usage) =~ s/ .*//;
        push @list, [$name, $usage, $desc];
    }
    @list = sort { $a->[0] cmp $b->[0] } @list;
    write_start();
    write_all_function(@list);
    for my $item (@list) {
        write_usage_function(@$item);
    }
    write_finish();
}

sub write_start {
    print <<'...';
#!/usr/bin/env bash

# DO NOT EDIT. This file generated by pkg/bin/generate-help-functions.pl.

set -e
...
}

sub write_all_function {
    my (@list) = @_;
    my $out = '';
    for my $item (@list) {
        $out .= sprintf "%-20s %s\n", $item->[0], $item->[1];
    }
    chomp $out;
    print <<"....";

help:all() {
    cat <<'...'
$out
...
}
....
}

sub write_usage_function {
    my ($name, $usage, $desc) = @_;
    print <<"....";

help:$name() {
    cat <<'...'

  Usage: git subrepo $usage

$desc
...
}
....
}

sub write_help_function {
    my ($name, $usage, $desc) = @_;
}

sub write_finish {
    print <<'...';

# vim: set sw=2 lisp:
...
}

main;

__END__
Bad usage: '`help`
  Show this manpage.
' '' '  Show this manpage.' at tool/gerate-help-functions.pl line 15, <> line 1.

Version data entries

268 entries across 268 versions & 4 rubygems

Version Path
eac_tools-0.86.5 sub/eac_git/vendor/git-subrepo/pkg/bin/generate-help-functions.pl
eac_tools-0.86.4 sub/eac_git/vendor/git-subrepo/pkg/bin/generate-help-functions.pl
eac_tools-0.86.3 sub/eac_git/vendor/git-subrepo/pkg/bin/generate-help-functions.pl
eac_git-0.16.0 vendor/git-subrepo/pkg/bin/generate-help-functions.pl
eac_tools-0.86.2 sub/eac_git/vendor/git-subrepo/pkg/bin/generate-help-functions.pl
eac_git-0.15.0 vendor/git-subrepo/pkg/bin/generate-help-functions.pl
eac_tools-0.84.2 sub/eac_git/vendor/git-subrepo/pkg/bin/generate-help-functions.pl
eac_tools-0.84.1 sub/eac_git/vendor/git-subrepo/pkg/bin/generate-help-functions.pl
eac_tools-0.84.0 sub/eac_git/vendor/git-subrepo/pkg/bin/generate-help-functions.pl
eac_tools-0.83.0 sub/eac_git/vendor/git-subrepo/pkg/bin/generate-help-functions.pl
eac_tools-0.82.0 sub/eac_git/vendor/git-subrepo/pkg/bin/generate-help-functions.pl
eac_tools-0.81.0 sub/eac_git/vendor/git-subrepo/pkg/bin/generate-help-functions.pl
eac_tools-0.80.0 sub/eac_git/vendor/git-subrepo/pkg/bin/generate-help-functions.pl
eac_tools-0.79.0 sub/eac_git/vendor/git-subrepo/pkg/bin/generate-help-functions.pl
eac_tools-0.78.0 sub/eac_git/vendor/git-subrepo/pkg/bin/generate-help-functions.pl
eac_tools-0.77.1 sub/eac_git/vendor/git-subrepo/pkg/bin/generate-help-functions.pl
eac_tools-0.77.0 sub/eac_git/vendor/git-subrepo/pkg/bin/generate-help-functions.pl
eac_tools-0.76.1 sub/eac_git/vendor/git-subrepo/pkg/bin/generate-help-functions.pl
eac_tools-0.76.0 sub/eac_git/vendor/git-subrepo/pkg/bin/generate-help-functions.pl
eac_tools-0.75.2 sub/eac_git/vendor/git-subrepo/pkg/bin/generate-help-functions.pl