[Bast-commits] r4745 - in trunk/Class-Data-Accessor: .
lib/Class/Data t
claco at dev.catalyst.perl.org
claco at dev.catalyst.perl.org
Fri Aug 8 00:47:01 BST 2008
Author: claco
Date: 2008-08-08 00:47:00 +0100 (Fri, 08 Aug 2008)
New Revision: 4745
Modified:
trunk/Class-Data-Accessor/Changes
trunk/Class-Data-Accessor/MANIFEST.SKIP
trunk/Class-Data-Accessor/Makefile.PL
trunk/Class-Data-Accessor/README
trunk/Class-Data-Accessor/lib/Class/Data/Accessor.pm
trunk/Class-Data-Accessor/t/manifest.t
Log:
Changed license to Perl(Artistic and GPL) now that Class::Data::Inheritable has changed its license
Added deprecation note favoring Class::Accessor::Grouped or Moose
Added skips for .git
Modified: trunk/Class-Data-Accessor/Changes
===================================================================
--- trunk/Class-Data-Accessor/Changes 2008-08-07 18:35:52 UTC (rev 4744)
+++ trunk/Class-Data-Accessor/Changes 2008-08-07 23:47:00 UTC (rev 4745)
@@ -1,5 +1,10 @@
Revision history for Class::Data::Accessor.
+0.04003 Thur Aug 07 19:27:33 2008
+ - Changed license to Perl now that Inheritable has also changed
+ - Class::Data::Accessor is not deprecated in favor of
+ Class::Accessor::Grouped or Moose
+
0.04002 Fri Mar 7 20:13:26 2008
- Quick CPANTS fix for META/author
Modified: trunk/Class-Data-Accessor/MANIFEST.SKIP
===================================================================
--- trunk/Class-Data-Accessor/MANIFEST.SKIP 2008-08-07 18:35:52 UTC (rev 4744)
+++ trunk/Class-Data-Accessor/MANIFEST.SKIP 2008-08-07 23:47:00 UTC (rev 4745)
@@ -5,6 +5,7 @@
,B$
,D$
\B\.svn\b
+\B\.git\b
aegis.log$
\bconfig$
\bbuild$
Modified: trunk/Class-Data-Accessor/Makefile.PL
===================================================================
--- trunk/Class-Data-Accessor/Makefile.PL 2008-08-07 18:35:52 UTC (rev 4744)
+++ trunk/Class-Data-Accessor/Makefile.PL 2008-08-07 23:47:00 UTC (rev 4745)
@@ -4,7 +4,7 @@
use inc::Module::Install 0.65;
name 'Class-Data-Accessor';
-license 'artistic';
+license 'perl';
perl_version '5.006001';
all_from 'lib/Class/Data/Accessor.pm';
Modified: trunk/Class-Data-Accessor/README
===================================================================
--- trunk/Class-Data-Accessor/README 2008-08-07 18:35:52 UTC (rev 4744)
+++ trunk/Class-Data-Accessor/README 2008-08-07 23:47:00 UTC (rev 4745)
@@ -27,6 +27,10 @@
Stuff->DataFile; # still returns /etc/stuff/data
DESCRIPTION
+ This module is now deprecated!
+
+ Please consider using Class::Accessor::Grouped or Moose
+
Class::Data::Accessor is the marriage of Class::Accessor and
Class::Data::Inheritable into a single module. It is used for creating
accessors to class data that overridable in subclasses as well as in
@@ -144,8 +148,9 @@
LICENSE
This module is free software. It may be used, redistributed and/or
- modified under the terms of the Perl Artistic License (see
- http://www.perl.com/perl/misc/Artistic.html)
+ modified under the same terms as Perl itself. (see
+ http://dev.perl.org/licenses/artistic.html and
+ http://www.opensource.org/licenses/gpl-license.php)
SEE ALSO
perltootc has a very elaborate discussion of class data in Perl.
Modified: trunk/Class-Data-Accessor/lib/Class/Data/Accessor.pm
===================================================================
--- trunk/Class-Data-Accessor/lib/Class/Data/Accessor.pm 2008-08-07 18:35:52 UTC (rev 4744)
+++ trunk/Class-Data-Accessor/lib/Class/Data/Accessor.pm 2008-08-07 23:47:00 UTC (rev 4745)
@@ -3,7 +3,7 @@
use warnings;
use Carp;
use vars qw($VERSION);
-$VERSION = '0.04002';
+$VERSION = '0.04003';
sub mk_classaccessor {
my ($declaredclass, $attribute, $data) = @_;
@@ -79,6 +79,10 @@
=head1 DESCRIPTION
+B<This module is now deprecated!>
+
+Please consider using L<Class::Accessor::Grouped> or L<Moose>
+
Class::Data::Accessor is the marriage of L<Class::Accessor> and
L<Class::Data::Inheritable> into a single module. It is used for creating
accessors to class data that overridable in subclasses as well as in
@@ -202,9 +206,10 @@
=head1 LICENSE
-This module is free software. It may be used, redistributed and/or
-modified under the terms of the Perl Artistic License (see
-http://www.perl.com/perl/misc/Artistic.html)
+This module is free software. It may be used, redistributed and/or modified
+under the same terms as Perl itself. (see
+http://dev.perl.org/licenses/artistic.html and
+http://www.opensource.org/licenses/gpl-license.php)
=head1 SEE ALSO
Modified: trunk/Class-Data-Accessor/t/manifest.t
===================================================================
--- trunk/Class-Data-Accessor/t/manifest.t 2008-08-07 18:35:52 UTC (rev 4744)
+++ trunk/Class-Data-Accessor/t/manifest.t 2008-08-07 23:47:00 UTC (rev 4745)
@@ -17,6 +17,6 @@
ok_manifest({
exclude => ['/t/var', '/cover_db'],
- filter => [qr/\.svn/, qr/cover/, qr/Build(.(PL|bat))?/, qr/_build/, qr/\.tmproj/],
+ filter => [qr/\.git/, qr/\.svn/, qr/cover/, qr/Build(.(PL|bat))?/, qr/_build/, qr/\.tmproj/],
bool => 'or'
});
More information about the Bast-commits
mailing list