Skip to content

Commit

Permalink
Prepare for git repository and distribution toolchain.
Browse files Browse the repository at this point in the history
  • Loading branch information
rcaputo committed Mar 8, 2010
1 parent 5e7c550 commit 80b29a8
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 15 deletions.
6 changes: 2 additions & 4 deletions Makefile.PL
@@ -1,5 +1,3 @@
# $Id$

use warnings;
use strict;

Expand All @@ -24,14 +22,14 @@ WriteMakefile(
META_ADD => {
resources => {
license => 'http://dev.perl.org/licenses/',
repository => 'http://thirdlobe.com/svn/lex-per/trunk'
repository => 'http://github.com/rcaputo/lexical-persistence'
},
},
dist => {
COMPRESS => 'gzip -9f',
SUFFIX => 'gz',
PREOP => (
'../repo-tools/svn-log.perl | ' .
'git-log.pl | ' .
'/usr/bin/tee ./$(DISTNAME)-$(VERSION)/CHANGES > ./CHANGES; ' .
'LANG=C perldoc lib/Lexical/Persistence.pm | ' .
'/usr/bin/tee ./$(DISTNAME)-$(VERSION)/README > ./README'
Expand Down
1 change: 0 additions & 1 deletion eg/persistence.perl
@@ -1,5 +1,4 @@
#!/usr/bin/env perl
# $Id: persistence.perl 133 2006-11-13 08:25:49Z rcaputo $

# An OO form of genlex.perl. See Persistence.pm for the magic, or
# __END__ for sample output.
Expand Down
1 change: 0 additions & 1 deletion eg/repl-mst.perl
@@ -1,5 +1,4 @@
#!/usr/bin/env perl
# $Id$

# A brief REPL (read/eval/print loop) by Matt S. Trout.

Expand Down
9 changes: 4 additions & 5 deletions lib/Lexical/Persistence.pm
@@ -1,5 +1,3 @@
# $Id$

=head1 NAME
Lexical::Persistence - Persistent lexical variable values for arbitrary calls.
Expand Down Expand Up @@ -222,7 +220,7 @@ package Lexical::Persistence;
use warnings;
use strict;

our $VERSION = '1.01';
our $VERSION = '1.020';

use Devel::LexAlias qw(lexalias);
use PadWalker qw(peek_sub);
Expand Down Expand Up @@ -610,15 +608,16 @@ https://rt.cpan.org/Dist/Display.html?Status=Active&Queue=Lexical-Persistence
=head2 REPOSITORY
http://thirdlobe.com/svn/lex-per/
http://github.com/rcaputo/lexical-persistence
http://gitorious.org/lexical-persistence
=head2 OTHER RESOURCES
http://search.cpan.org/dist/Lexical-Persistence/
=head1 COPYRIGHT
Lexical::Persistence in copyright 2006-2009 by Rocco Caputo. All
Lexical::Persistence in copyright 2006-2010 by Rocco Caputo. All
rights reserved. Lexical::Persistence is free software. It is
released under the same terms as Perl itself.
Expand Down
1 change: 0 additions & 1 deletion t/01_basics.t
@@ -1,5 +1,4 @@
#!perl
# $Id$

use warnings;
use strict;
Expand Down
1 change: 0 additions & 1 deletion t/02_pod.t
@@ -1,4 +1,3 @@
# $Id$
# vim: filetype=perl

use Test::More;
Expand Down
1 change: 0 additions & 1 deletion t/03_pod_coverage.t
@@ -1,4 +1,3 @@
# $Id: 02_pod_coverage.t 2139 2006-10-01 17:07:59Z rcaputo $
# vim: filetype=perl

use Test::More;
Expand Down
1 change: 0 additions & 1 deletion t/04_eval.t
@@ -1,5 +1,4 @@
#!perl
# $Id$

use warnings;
use strict;
Expand Down

0 comments on commit 80b29a8

Please sign in to comment.