diff options
author | Justin Davis <jrcd83@gmail.com> | 2012-01-16 00:30:11 +0100 |
---|---|---|
committer | Justin Davis <jrcd83@gmail.com> | 2012-01-16 00:30:11 +0100 |
commit | 44f4b5d167f9efef47786e60d1153ad2c58b4319 (patch) | |
tree | 3e7e30f87123c48629faa73d29e0c20af869c43c /lib/templ/perl-pkg | |
parent | f6cbce0d137f44554a233b4adf9022df6dc7fde9 (diff) | |
download | genpkg-44f4b5d167f9efef47786e60d1153ad2c58b4319.tar.gz genpkg-44f4b5d167f9efef47786e60d1153ad2c58b4319.tar.xz |
Move metas/ and templ/ under ~/.genpkg.
Diffstat (limited to 'lib/templ/perl-pkg')
-rwxr-xr-x | lib/templ/perl-pkg | 121 |
1 files changed, 0 insertions, 121 deletions
diff --git a/lib/templ/perl-pkg b/lib/templ/perl-pkg deleted file mode 100755 index 47cc682..0000000 --- a/lib/templ/perl-pkg +++ /dev/null @@ -1,121 +0,0 @@ -#!/usr/bin/env perl - -use warnings 'FATAL' => 'all'; -use strict; - -my %ACTIONS_OF = - ('MM', { - 'build' => [ q{/usr/bin/perl Makefile.PL}, q{make} ], - 'check' => [ q{make test} ], - 'package' => [ q{make DESTDIR="$pkgdir" install} ] - }, - 'MB', { - 'build' => [ q{/usr/bin/perl Build.PL}, q{./Build} ], - 'check' => [ q{./Build test} ], - 'package' => [ q{./Build install} ] - }); - -my %FUNCFMTS; -$FUNCFMTS{'build'} = <<'END_FMT'; -build() -( - export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \ - PERL_AUTOINSTALL=--skipdeps \ - PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \ - PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \ - MODULEBUILDRC=/dev/null - - cd "$_distdir" -%s -) -END_FMT - -$FUNCFMTS{'check'} = <<'END_FMT'; -check() -( - export PERL_MM_USE_DEFAULT=1 PERL5LIB="" - cd "$_distdir" -%s -) -END_FMT - -$FUNCFMTS{'package'} = <<'END_FMT'; -package() { - cd "$_distdir" -%s - find "$pkgdir" -name .packlist -o -name perllocal.pod -delete -} -END_FMT - -my $PBEND = <<'END_END'; -# Local Variables: -# mode: shell-script -# sh-basic-offset: 2 -# End: -# vim:set ts=2 sw=2 et: -END_END - -# Convert actions array into lines of bash to insert into template. -sub bashify -{ - my (@lines) = @_; - my $txt = join qq{\n}, map { s/^/ /gm; $_ } @lines; - return $txt -} - -sub mungevars -{ - my ($vars) = @_; - $vars->{'options'} = [ '!emptydirs' ]; - - # Replace version string in 'source' entry & 'distdir' with - # $pkgver parameter. - for my $v (qw/pkgver distdir/) { - die "$0: $v is undefined" unless defined $vars->{$v}[0]; - } - my $ver = $vars->{'pkgver'}[0]; - s/\Q$ver\E/\${pkgver}/g for ($vars->{'source'}[0], $vars->{'distdir'}[0]); - - return; -} - -sub printpb -{ - my ($btype, $pbvars) = @_; - my $acts = $ACTIONS_OF{$btype} - or die "$0: unknown build type ($btype)\n"; - - my $distdir = $pbvars->{'distdir'}[0]; - print qq{_distdir="\${srcdir}/$distdir"\n}; - print "\n"; - - for my $func (qw/build check package/) { - my $funclines = $acts->{$func}; - printf $FUNCFMTS{$func}, bashify(@$funclines); - print "\n"; - } - print $PBEND; -} - -sub readvars -{ - local $/ = ""; # split records on empty lines - my (%pbvars); - while (<STDIN>) { - my ($name, @vals) = split /\n/; - $pbvars{$name} = [ @vals ]; - } - return \%pbvars; -} - -sub main -{ - my ($type) = @_; - my $vars = readvars(); - mungevars($vars); - printpb($type, $vars); - return 0; -} - -my $type = shift or die qq{$0: please provide "MM" or "MB" as argument\n}; -exit main($type); |