[SCM] libpackage-variant-perl Debian packaging branch, master, updated. debian/1.001003-1-16-g363631d

Matt S Trout mst at shadowcat.co.uk
Thu May 9 17:13:58 UTC 2013


The following commit has been merged in the master branch:
commit eacc208a1204b9a9187686de93e8613410c94269
Author: Matt S Trout <mst at shadowcat.co.uk>
Date:   Mon Jan 23 17:14:48 2012 +0000

    add skeleton Makefile.PL and VERSION

diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644
index 0000000..5227b9b
--- /dev/null
+++ b/Makefile.PL
@@ -0,0 +1,12 @@
+use strict;
+use warnings FATAL => 'all';
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+  NAME => 'Package-Variant',
+  VERSION_FROM => 'lib/Package/Variant.pm',
+  PREREQ_PM => {
+    strictures => 1,
+    Carp => 0,
+  },
+);
diff --git a/lib/Package/Variant.pm b/lib/Package/Variant.pm
index c8ccac3..55dd25c 100644
--- a/lib/Package/Variant.pm
+++ b/lib/Package/Variant.pm
@@ -3,6 +3,10 @@ package Package::Variant;
 use strictures 1;
 use Carp qw( croak );
 
+our $VERSION = '1.000000'; # 1.0.0
+
+$VERSION = eval $VERSION;
+
 our %Variable;
 
 my $sanitize_importing = sub {

-- 
libpackage-variant-perl Debian packaging



More information about the Pkg-perl-cvs-commits mailing list