dzilify. needs [DynamicPrereqs] for IO::Scalar. topic/dzilify
Karen Etheridge [Thu, 13 Mar 2014 13:26:50 +0000 (14:26 +0100)]
dist.ini [new file with mode: 0644]
maint/Makefile.PL.include [deleted file]
maint/Makefile.include [deleted file]
maint/bump-version [deleted file]

diff --git a/dist.ini b/dist.ini
new file mode 100644 (file)
index 0000000..3b7bb0b
--- /dev/null
+++ b/dist.ini
@@ -0,0 +1,27 @@
+name                = Module-Metadata
+author              = Ken Williams <kwilliams@cpan.org>
+author              = Randy W. Sims <RandyS@ThePierianSpring.org>"
+copyright_holder    = Perl Toolchain Gang
+copyright_year      = 2010
+license             = Perl_5
+
+[@Author::ETHER]
+:version = 0.053
+
+[MetaResources]
+x_IRC = irc://irc.perl.org/#toolchain
+x_MailingList = http://lists.perl.org/list/cpan-workers.html
+
+;   'Carp'        => 0,
+;    'File::Find'  => 0,
+;    'File::Spec'  => 0,
+;    'IO::File'    => 0,
+;    'strict'      => 0,
+;    'warnings'    => 0,
+;    'vars'        => 0,
+;    'version'     => 0.87,
+;    'warnings'    => 0,
+;    $] < 5.008
+;      ? ( 'IO::Scalar' => 0 )
+;      : ()
+
diff --git a/maint/Makefile.PL.include b/maint/Makefile.PL.include
deleted file mode 100644 (file)
index cfb2c95..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-BEGIN { -e 'Distar' or system("git clone git://git.shadowcat.co.uk/p5sagit/Distar.git") }
-use lib 'Distar/lib';
-use Distar;
-
-use ExtUtils::MakeMaker 6.68;  # ensure meta-spec v2 compatibility
-author 'Ken Williams <kwilliams@cpan.org>, Randy W. Sims <RandyS@ThePierianSpring.org>';
-
-manifest_include(
-  't/smells-of-vcs' => qr{.*},
-);
diff --git a/maint/Makefile.include b/maint/Makefile.include
deleted file mode 100644 (file)
index 336847c..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-bump:
-       maint/bump-version
-       rm Makefile
-bumpminor:
-       maint/bump-version minor
-       rm Makefile
-bumpmajor:
-       maint/bump-version major
-       rm Makefile
-upload: $(DISTVNAME).tar$(SUFFIX)
-       cpan-upload $<
diff --git a/maint/bump-version b/maint/bump-version
deleted file mode 100755 (executable)
index 3434fde..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/usr/bin/env perl
-
-use 5.010;
-use strict;
-use warnings FATAL => 'all';
-use autodie;
-
-chomp(my $LATEST = qx(grep '^[0-9]' Changes | head -1 | awk '{print \$1}'));
-
-my @parts = split /\./, $LATEST;
-splice(@parts, 1, 0, 0) if @parts == 2;
-
-my $OLD_DECIMAL = sprintf('%i.%03i%03i', @parts);
-
-my %bump_part = (major => 0, minor => 1, bugfix => 2);
-
-my $bump_this =
-  $bump_part{$ARGV[0]||'bugfix'}
-    // die "no idea which part to bump - $ARGV[0] means nothing to me";
-
-my @new_parts = @parts;
-
-$new_parts[$bump_this]++;
-
-my $NEW_DECIMAL = sprintf('%i.%03i%03i', @new_parts);
-
-warn "Bumping $OLD_DECIMAL -> $NEW_DECIMAL\n";
-
-my $PM_FILE = 'lib/Module/Metadata.pm';
-
-my $file = do { local (@ARGV, $/) = ($PM_FILE); <> };
-
-$file =~ s/(?<=\$VERSION = ')${\quotemeta $OLD_DECIMAL}/${NEW_DECIMAL}/;
-
-open my $out, '>', $PM_FILE;
-
-print $out $file;