diff --git a/MANIFEST b/MANIFEST
index ede3aab..eb2d475 100644
|
a
|
b
|
|
| 6 | 6 | # See below for documentation on the format of this file. |
| 7 | 7 | # |
| 8 | 8 | # See docs/submissions.pod and the documentation in |
| 9 | | # tools/dev/mk_manifest_and_skip.pl on how to recreate this file after SVN |
| 10 | | # has been told about new or deleted files. |
| | 9 | # tools/dev/mk_manifest_and_skip.pl. |
| 11 | 10 | .gitignore [] |
| 12 | 11 | CREDITS [main]doc |
| 13 | 12 | ChangeLog [] |
diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP
index 54b4168..b226085 100644
|
a
|
b
|
|
| 2 | 2 | # $Id$ |
| 3 | 3 | # generated by tools/dev/mk_manifest_and_skip.pl |
| 4 | 4 | # |
| 5 | | # This file should contain a transcript of the svn:ignore properties |
| 6 | | # of the directories in the Parrot subversion repository. (Needed for |
| 7 | | # distributions or in general when svn is not available). |
| 8 | | # See docs/submissions.pod on how to recreate this file after SVN |
| 9 | | # has been told about new generated files. |
| | 5 | # This file should contain a list of directories and files created in Parrot's |
| | 6 | # configuration and build processes which are not meant for inclusion in |
| | 7 | # distributions. |
| 10 | 8 | # |
| 11 | 9 | # Ignore the .git directory |
| 12 | 10 | \B\.git\b |
diff --git a/lib/Parrot/Manifest.pm b/lib/Parrot/Manifest.pm
index 40463f1..9f6b009 100644
|
a
|
b
|
|
| 173 | 173 | # See below for documentation on the format of this file. |
| 174 | 174 | # |
| 175 | 175 | # See docs/submissions.pod and the documentation in |
| 176 | | # $self->{script} on how to recreate this file after SVN |
| 177 | | # has been told about new or deleted files. |
| | 176 | # $self->{script}. |
| 178 | 177 | END_HEADER |
| 179 | 178 | |
| 180 | 179 | for my $k ( sort keys %{$manifest_lines_ref} ) { |
| … |
… |
|
| 395 | 394 | # $self->{id} |
| 396 | 395 | # generated by $self->{script} |
| 397 | 396 | # |
| 398 | | # This file should contain a transcript of the svn:ignore properties |
| 399 | | # of the directories in the Parrot subversion repository. (Needed for |
| 400 | | # distributions or in general when svn is not available). |
| 401 | | # See docs/submissions.pod on how to recreate this file after SVN |
| 402 | | # has been told about new generated files. |
| | 397 | # This file should contain a list of directories and files created in Parrot's |
| | 398 | # configuration and build processes which are not meant for inclusion in |
| | 399 | # distributions. |
| 403 | 400 | # |
| 404 | 401 | # Ignore the .git directory |
| 405 | 402 | \\B\\.git\\b |
diff --git a/lib/Parrot/Revision.pm b/lib/Parrot/Revision.pm
index 1b8a8f3..af0901c 100644
|
a
|
b
|
|
| 1 | | # Copyright (C) 2005-2008, Parrot Foundation. |
| | 1 | # Copyright (C) 2005-2011, Parrot Foundation. |
| 2 | 2 | |
| 3 | 3 | =head1 NAME |
| 4 | 4 | |
| 5 | | Parrot::Revision - SVN Revision of Parrot |
| | 5 | Parrot::Revision - Revision number of Parrot |
| | 6 | |
| | 7 | B<Note:> This package is largely obsolete, as the Git version control system |
| | 8 | does not use a continually incrementing integer to designate a particular |
| | 9 | revision, as our previous CVS and Subversion VCSes did. We retain it for |
| | 10 | backwards compatibility for certain high-level languages built on top of |
| | 11 | Parrot. |
| 6 | 12 | |
| 7 | 13 | =head1 SYNOPSIS |
| 8 | 14 | |