r39278 - in /trunk/libmoose-perl/debian: NEWS changelog control copyright

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Fri Jul 3 23:06:12 UTC 2009


Author: jawnsy-guest
Date: Fri Jul  3 23:05:52 2009
New Revision: 39278

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=39278
Log:
  + Now uses the latest Class::MOP (0.89)
* Removed NEWS file, it's not really news anymore...
* Added myself to Copyright and Uploaders
* Updated Copyright for Module::Install
* Updated control description

Removed:
    trunk/libmoose-perl/debian/NEWS
Modified:
    trunk/libmoose-perl/debian/changelog
    trunk/libmoose-perl/debian/control
    trunk/libmoose-perl/debian/copyright

Modified: trunk/libmoose-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmoose-perl/debian/changelog?rev=39278&op=diff
==============================================================================
--- trunk/libmoose-perl/debian/changelog (original)
+++ trunk/libmoose-perl/debian/changelog Fri Jul  3 23:05:52 2009
@@ -3,8 +3,12 @@
   TODO: Finish preparing this module :-)
 
   * New upstream release
-    + Fix to work with latest Class::MOP
+    + Now uses the latest Class::MOP (0.89)
     + Delegation error message fix
+  * Removed NEWS file, it's not really news anymore...
+  * Added myself to Copyright and Uploaders
+  * Updated Copyright for Module::Install
+  * Updated control description
 
  -- Jonathan Yu <frequency at cpan.org>  Fri, 03 Jul 2009 10:30:06 -0400
 

Modified: trunk/libmoose-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmoose-perl/debian/control?rev=39278&op=diff
==============================================================================
--- trunk/libmoose-perl/debian/control (original)
+++ trunk/libmoose-perl/debian/control Fri Jul  3 23:05:52 2009
@@ -2,13 +2,12 @@
 Section: perl
 Priority: optional
 Build-Depends: debhelper (>= 7)
-Build-Depends-Indep: perl (>= 5.10),
- libclass-mop-perl (>= 0.88), libsub-exporter-perl (>= 0.980),
- libtest-exception-perl (>= 0.27), libtest-pod-perl, libtest-pod-coverage-perl,
- liburi-perl, libio-string-perl, libtest-deep-perl, libsub-name-perl (>= 0.02),
- libregexp-common-perl, liblocale-us-perl, libmodule-refresh-perl,
- libtest-warn-perl, liblist-moreutils-perl (>= 0.12), libdbm-deep-perl,
- libdatetime-format-mysql-perl, libdata-optlist-perl,
+Build-Depends-Indep: perl (>= 5.10), libsub-exporter-perl (>= 0.980),
+ libclass-mop-perl (>= 0.89), libtest-exception-perl (>= 0.27), liburi-perl,
+ libtest-pod-coverage-perl, libsub-name-perl (>= 0.02), libio-string-perl,
+ libregexp-common-perl, liblocale-us-perl, libdatetime-format-mysql-perl,
+ libmodule-refresh-perl, liblist-moreutils-perl (>= 0.12), libtest-pod-perl,
+ libtest-warn-perl, libtest-deep-perl, libdbm-deep-perl, libdata-optlist-perl,
  libtest-output-perl (>= 0.09)
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Krzysztof Krzyżaniak (eloy) <eloy at debian.org>,
@@ -25,33 +24,25 @@
 
 Package: libmoose-perl
 Architecture: all
-Depends: perl (>= 5.10), ${misc:Depends}, libsub-name-perl (>= 0.02),
- libclass-mop-perl (>= 0.87), libsub-exporter-perl (>= 0.980),
+Depends: ${perl:Depends}, ${misc:Depends}, libsub-name-perl (>= 0.02),
+ libclass-mop-perl (>= 0.89), libsub-exporter-perl (>= 0.980),
  liblist-moreutils-perl (>= 0.12), libdata-optlist-perl
-Breaks: libmoosex-classattribute-perl (<< 0.07+),
- libmoosex-singleton-perl (<< 0.17+),
- libmoosex-strictconstructor-perl (<< 0.07+),
- libmoosex-params-validate-perl (<< 0.05+),
- libfey-orm-perl (<< 0.23+)
-Description: extension of the Perl 5 object system
- Moose, it's the new Camel. Moose is an extension of the existing Perl5 
- object system.
+Breaks: libmoosex-strictconstructor-perl (<< 0.07+),
+ libmoosex-classattribute-perl (<< 0.07+), libmoosex-singleton-perl (<< 0.17+),
+ libmoosex-params-validate-perl (<< 0.05+), libfey-orm-perl (<< 0.23+)
+Description: Modern Perl object system framework
+ Moose, it's the new Camel. Moose is an extension of the existing Perl 5 object
+ system, inspired by the object model available in Perl 6.
  .
- Moose is built on top of Class::MOP, which is a metaclass system for 
- Perl5.  This means that Moose not only makes building normal Perl5 objects 
- better, but it also provides the power of metaclass programming.
+ Because Moose is built on top of Class::MOP (libclass-mop-perl), it is easier
+ to build normal Perl objects, while also providing the power of metaclass
+ programming. It is designed to provide as much convenience during definition
+ and construction of classes as possible, but can still stay out of your way.
  .
- Moose makes every attempt to provide as much convenience during class
- construction/definition, but still stay out of your way if you want it to.
- Here are some of the features Moose provides:
+ Moose also conveniently manages all attributes (including inherited ones) that
+ are defined, but also provides facilities for properly initializing instance
+ slots, setting defaults where appropriate and performing any necessary type
+ constraint checking or coercion.
  .
- Unless specified with extends, any class which uses Moose will inherit from
- Moose::Object
- .
- Moose will also manage all attributes (including inherited ones) that are
- defined with has. And assuming that you call new which is inherited from
- Moose::Object, then this includes properly initializing all instance slots,
- setting defaults where appropriate and performing any type constraint
- checking or coercion.
- .
- For more details, see the ever expanding Moose::Cookbook manpage.
+ More details about the structure of Moose as well as its features can be found
+ in the ever-expanding Moose::Cookbook document.

Modified: trunk/libmoose-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmoose-perl/debian/copyright?rev=39278&op=diff
==============================================================================
--- trunk/libmoose-perl/debian/copyright (original)
+++ trunk/libmoose-perl/debian/copyright Fri Jul  3 23:05:52 2009
@@ -5,28 +5,30 @@
 Upstream-Name: Moose
 
 Files: *
-Copyright: © 2006-2009 by Infinity Interactive, Inc.
+Copyright: 2006-2009, Infinity Interactive, Inc.
 License-Alias: Perl
 License: GPL-1+ | Artistic
 
-Files: inc/*:
-Copyright: © 2002-2009 by Brian Ingerson, Audrey Tang and Adam Kennedy
+Files: inc/Module/*
+Copyright: 2002-2009, Adam Kennedy <adamk at cpan.org>
+ 2002-2009, Audrey Tang <autrijus at autrijus.org>
+ 2002-2009, Brian Ingerson <ingy at cpan.org>
 License-Alias: Perl
-License: GPL-1+ | Artistic
+License: Artistic | GPL-1+
 
 Files: debian/*
-Copyright:
- 2006, Frank Lichtenheld <djpig at debian.org>
- 2007, 2008, Damyan Ivanov <dmn at debian.org>
- 2006-2009, Krzysztof Krzyżaniak (eloy) <eloy at debian.org>
- 2006-2009, gregor herrmann <gregoa at debian.org>
- 2008, Ansgar Burchardt <ansgar at 43-1.org>
- 2008, Jose Luis Rivas <ghostbar38 at gmail.com>
- 2008, Roberto C. Sanchez <roberto at debian.org>
+Copyright: 2009, Jonathan Yu <frequency at cpan.org>
  2009, Brian Cassidy <brian.cassidy at gmail.com>
  2009, Rene Mayorga <rmayorga at debian.org>
  2009, Ryan Niebur <ryanryan52 at gmail.com>
  2009, Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>
+ 2006-2009, gregor herrmann <gregoa at debian.org>
+ 2006-2009, Krzysztof Krzyżaniak (eloy) <eloy at debian.org>
+ 2008, Ansgar Burchardt <ansgar at 43-1.org>
+ 2008, Jose Luis Rivas <ghostbar38 at gmail.com>
+ 2008, Roberto C. Sanchez <roberto at debian.org>
+ 2007, 2008, Damyan Ivanov <dmn at debian.org>
+ 2006, Frank Lichtenheld <djpig at debian.org>
 License: Artistic | GPL-1+
 
 License: Artistic




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