Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

perl-Moo-2.003004-bp155.2.12 RPM for noarch

From OpenSuSE Leap 15.5 for noarch

Name: perl-Moo Distribution: SUSE Linux Enterprise 15 SP5
Version: 2.003004 Vendor: openSUSE
Release: bp155.2.12 Build date: Wed May 17 16:01:43 2023
Group: Development/Libraries/Perl Build host: cumulus3
Size: 165305 Source RPM: perl-Moo-2.003004-bp155.2.12.src.rpm
Packager: https://bugs.opensuse.org
Url: http://search.cpan.org/dist/Moo/
Summary: Minimalist Object Orientation (with Moose compatibility)
'Moo' is an extremely light-weight Object Orientation system. It allows one
to concisely define objects and roles with a convenient syntax that avoids
the details of Perl's object system. 'Moo' contains a subset of Moose and
is optimised for rapid startup.

'Moo' avoids depending on any XS modules to allow for simple deployments.
The name 'Moo' is based on the idea that it provides almost -- but not
quite -- two thirds of Moose.

Unlike Mouse this module does not aim at full compatibility with Moose's
surface syntax, preferring instead to provide full interoperability via the
metaclass inflation capabilities described in MOO AND MOOSE.

For a full list of the minor differences between Moose and Moo's surface
syntax, see INCOMPATIBILITIES WITH MOOSE.

Provides

Requires

License

Artistic-1.0 or GPL-1.0+

Changelog

* Thu Dec 07 2017 coolo@suse.com
  - updated to 2.003004
    see /usr/share/doc/packages/perl-Moo/Changes
    2.003004 - 2017-12-01
    - re-allow stubs for attribute parameters like isa or coerce (RT#123753)
    - fix accidentally removed space in coderef error message (GH#33)
    - fix test errors with old Carp versions
* Fri Nov 17 2017 coolo@suse.com
  - updated to 2.003003
    see /usr/share/doc/packages/perl-Moo/Changes
    2.003003 - 2017-11-16
    - test tweaks
    - fix handling of code refs stored directly in the stash (for perl 5.28)
    - consider inline packages with constants in them as being loaded
    - stubs will be treated as methods that exist when inflating to Moose
    - avoid loading overload.pm unless required
* Wed Mar 29 2017 coolo@suse.com
  - updated to 2.003002
    see /usr/share/doc/packages/perl-Moo/Changes
    2.003002 - 2017-03-28
    - ensure tarball does not contain SCHILY headers
* Tue Mar 07 2017 coolo@suse.com
  - updated to 2.003001
    see /usr/share/doc/packages/perl-Moo/Changes
    2.003001 - 2017-03-06
    - fix +attributes replacing builder subs if parent attribute was defined with
      builder => $subref
    - fix trigger with a default value and init_arg of undef
* Sat Dec 10 2016 coolo@suse.com
  - updated to 2.003000
    see /usr/share/doc/packages/perl-Moo/Changes
    2.003000 - 2016-12-09
    - fix create_class_with_roles being used multiple times with the same packages
    - fix edge case with @ISA assignment on perl 5.10.0
    - minor test adjustments
    - fix handles on oddly named attributes
    - make has options linkable in documentation
    - Sub::Quote and Sub::Defer have been split into a separate dist
* Tue Nov 01 2016 coolo@suse.com
  - updated to 2.002005
    see /usr/share/doc/packages/perl-Moo/Changes
    2.002005 - 2016-10-31
    - fix accessor extensions that need captured variables for clearers and
      predicates. (RT#118453)
    - avoid relying on '.' being in @INC in tests
    - fix Sub::Quote test when run with perl -C or PERL_UNICODE on perl 5.10
      (RT#117844)
    - improved error messages for invalid sub names in Sub::Quote (RT#116416,
      RT#117711)
    - clarify meta method documentation
    - bump Role::Tiny prereq version to get stub in role fix (RT#116674)
* Mon Jul 04 2016 coolo@suse.com
  - updated to 2.002004
    see /usr/share/doc/packages/perl-Moo/Changes
    2.002004 - 2016-06-28
    - fixed another case of local functions interfering with generated code.
      (RT#115655)
    - prevent infinite recursion on some Moose metaclass inflation errors.
* Fri Jun 24 2016 coolo@suse.com
  - updated to 2.002003
    see /usr/share/doc/packages/perl-Moo/Changes
    2.002003 - 2016-06-23
    - prevent local functions with same names as core functions from interfering
      with generated code (RT#115529)
    - Work around nmake bug that corrupts commands that include slashes
      (RT#115518)
    - Fix tests to work when lexical features are enabled outside of our control
      (such as with cperl)
    - Fix tests on perl 5.6
* Thu Jun 23 2016 coolo@suse.com
  - updated to 2.002002
    see /usr/share/doc/packages/perl-Moo/Changes
    2.002002 - 2016-06-21
    - fix handling of Carp < 1.12
    2.002_001 - 2016-06-17
    - added Sub::Quote::sanitize_identifier to generate an identifier from an
      arbitrary string.
    - Sub::Defer::defer_info is now exportable.
    - improved documentation for Sub::Quote.
    - fix quoted subs with no_defer ignoring no_install option. (RT#114605)
    - internals of Sub::Quote were refactored.
    - error message when @ISA changes now includes the location that the
      constructor was generated.
    - original invoker will be used when calling a non-Moo parent constructor.
      (RT#115189)
    - added testing for preserving context into quote_sub subs. (RT#114511)
    - quote_sub context options will be used even when zero. (RT#114512)
    - Sub::Defer::defer_sub gained attributes option to specify sub attributes.
    - Sub::Quote::quote_sub gained attributes option to specify sub attributes.
    2.002_000 - 2016-05-18
    - Use Carp::croak rather than die to improve reported error locations
      (RT#109844, RT#109632, RT#102622)
    - removed Method::Inliner module.  It was never intended to ship with Moo,
      and was undocumented, untested, and unused on CPAN.
    - require Role::Tiny 2.000002 for fixes to method modifiers being applied
      via multiple role composition paths (RT#106668)
    - Delay loading Class::Method::Modifiers until we actually need it
    - Fix an explosion that could happen if meta inflation was attempted part way
      through Moo's bootstrapping process, which was possible via a
      CORE::GLOBAL::bless override (RT#113743)
    - Accessor subs will be generated immediately, rather than being partially
      deferred.  The deferal added extra sub layers and the delayed compilation
      didn't provide any real benefit for them.
    - Numeric values used as defaults will be inlined as numbers rather than
      strings.
    - Numerous test cleanups and additional test coverage
    - Fixed a typo in Sub::Defer docs (RT#113416)
    - Deferred subs (including constructors) will always be named properly, even
      if neither Sub::Name nor Sub::Util are available.  This improves
      compatibility with namespace::autoclean, among other things.  Once the sub
      is undeferred, it may not be given a correct name if Sub::Name or Sub::Util
      aren't available.
* Mon Mar 07 2016 coolo@suse.com
  - updated to 2.001001
    see /usr/share/doc/packages/perl-Moo/Changes
    2.001001 - 2016-03-04
    - Fixed order of attribute value being set and trigger running when there is
      an isa check present. (RT#112677)
    - Corrected LIFECYCLE METHODS to be a head1 section rather than head2.
    2.001000 - 2016-02-29
    * Documentation
    - Added documentation for has's ability to accept an arrayref of attribute
      names to create with the same options.
    - Removed mention that we may not call BUILDARGS, since that behavior was
      removed in 2.000002.
    - Reorganized documentation of class methods to separate those provided as a
      public API (new/does/meta) from those used by Moo in the object lifecycle
      (BUILDARGS/FOREIGNBUILDARGS/BUILD/DEMOLISH).
    - Updated documentation of most class methods for clarity.
    - Updated BUILDARGS documentation to show an around rather than just
      overriding.
    - Added examples to FOREIGNBUILDARGS and BUILD.
    - Added explicit documentation for DOES and meta methods.
    * Fixes
    - Fixed grammar in error message when @ISA is changed unexpectedly before
      a constructor is fully generated.
    - Fixed Moo classes and Sub::Quote subs in packages that are nearly 252
      characters long.
    - Fixed Sub::Defer::undefer_package emitting warnings.
    - Fixed detection of constructors that have already been inlined.
    * Performance
    - The generated code in constructors and setters has had a number of
      microoptimizations applied.
    - Deferred subs (and quoted subs like some accessors) in roles will be
      undefered before copying them to classes.  This prevents the need for a
      goto on every call that would slow down the subs.
    - Fixed Moose inflation code resulting in constructors with deferred
      wrappers.
    * Other
    - Recommend Sub::Name 0.08, which fixes a memory leak.
    - The values given to BUILD subs will be the original values passed to new,
      rather than after coercions have been applied.  This brings the behavior
      in line with Moose.
* Sat Jul 25 2015 coolo@suse.com
  - updated to 2.000002
    see /usr/share/doc/packages/perl-Moo/Changes
    2.000002 - 2015-07-24
    - BUILDARGS will now always be called on object creation, even if no
      attributes exist
    - fix required attributes with spaces or other odd characters in init_arg
    - fix (is => 'lazy', required => 1, init_arg => undef), which previously
      didn't think it provided a builder
    - under 'no Moo::sification', prevent automatic Moose metaclass inflation
      from ->meta calls
    - don't load Moo::Role for a ->does check if no roles could exist
    - make global destruction test more robust from outside interference
    - fix false default values satisfying required attributes
    - Fix Moose attribute delegation to a Moo class via a wildcard
    - work around case where Sub::Util is loadable but doesn't provide
      Sub::Util::set_subname
    - skip thread tests on perl 5.8.4 and below where threads are extremely
      unreliable
    - Allow stub methods (e.g. sub foo;) to be overwritten by accessors or other
      generated methods. (RT#103804)
* Tue Apr 14 2015 coolo@suse.com
  - updated to 2.000001
    see /usr/share/doc/packages/perl-Moo/Changes
    2.000001 - 2015-03-16
    - Fix how we pick between Sub::Name and Sub::Util if they are both loaded.
      This fixes how we interact with Moose in some cases. (RT#102729) (GH#15)
    2.000000 - 2015-03-02
    * Incompatible Changes
    - Fatal warnings and the other additional checks from the strictures
      module will no longer be applied to modules using Moo or Moo::Role.  We
      now only apply strict and (non-fatal) warnings, matching the behavior of
      Moose.
    - Classes without attributes used to store everything passed to ->new
      in the object.  This has been fixed to not store anything in the object,
      making it consistent with classes that had attributes.
    - Moo will now pass __no_BUILD__ to parent constructors when inheriting
      from a Moose or Class::Tiny class, to prevent them from calling BUILD
      functions.  Moo calls the BUILD functions itself, which previously led
      to them being called multiple times.
    - Attempting to replace an existing constructor, or modify one that has
      been used, will throw an error.  This includes adding attributes.
      Previously, this would result in some attributes being silently ignored
      by the constructor.
    - If a class's @ISA is modified without using 'extends' in a way that
      affects object construction, Moo will detect this and throw an error.
      This can happen in code that uses ->load_components from
      Class::C3::Componentised, which is common in DBIx::Class modules.
    * Bug Fixes
    - Fix calling class methods on Moo::HandleMoose::FakeMetaClass, such as
      modules scanning all classes
    * Miscellaneous
    - use Sub::Util instead of Sub::Name if available
    1.007000 - 2015-01-21
    - fix Moose metaclass inflation of Method::Generate::Constructor (RT#101111)
    - clarify behavior of clearers for non-lazy attribute defaults
    - add Sub::Defer::undefer_package to undefer all subs from a given package
    - existing attributes will no longer be overwritten when composing roles.
      Previously, the attribute configuration used by the constructor would be
      overridden, but the attribute methods would not be.  This caused a mismatch
      in attribute behavior.
    - link to Type::Tiny in docs rather than MooX::Types::MooseLike
    - document exports of Sub::Defer
    - fix capture_unroll usage in inlinify example
    - fix needless re-assigning of variables in generated Sub::Quote subs
    - fix global destruction test to work when perl path has spaces
* Wed Nov 12 2014 coolo@suse.com
  - updated to 1.006001
    - Name the ->DOES method installed by Role::Tiny
    - don't apply threading workarounds on non-threaded perls, even if module for
      it is loaded by something
    - avoid loading base.pm and just set @ISA manually
    - fix some Pod links to Class::Method::Modifiers
    - fix applying roles with multiple attributes with defaults to objects
      (RT#99217)
    - fix Moose inheriting from a Moo class that inherits from a non-M* class
      when the Moose class is not made immutable
    - fix ->does method on Moose child classes of Moo classes

Files

/usr/lib/perl5/vendor_perl/5.26.1/Method
/usr/lib/perl5/vendor_perl/5.26.1/Method/Generate
/usr/lib/perl5/vendor_perl/5.26.1/Method/Generate/Accessor.pm
/usr/lib/perl5/vendor_perl/5.26.1/Method/Generate/BuildAll.pm
/usr/lib/perl5/vendor_perl/5.26.1/Method/Generate/Constructor.pm
/usr/lib/perl5/vendor_perl/5.26.1/Method/Generate/DemolishAll.pm
/usr/lib/perl5/vendor_perl/5.26.1/Moo
/usr/lib/perl5/vendor_perl/5.26.1/Moo.pm
/usr/lib/perl5/vendor_perl/5.26.1/Moo/HandleMoose
/usr/lib/perl5/vendor_perl/5.26.1/Moo/HandleMoose.pm
/usr/lib/perl5/vendor_perl/5.26.1/Moo/HandleMoose/FakeMetaClass.pm
/usr/lib/perl5/vendor_perl/5.26.1/Moo/HandleMoose/_TypeMap.pm
/usr/lib/perl5/vendor_perl/5.26.1/Moo/Object.pm
/usr/lib/perl5/vendor_perl/5.26.1/Moo/Role.pm
/usr/lib/perl5/vendor_perl/5.26.1/Moo/_Utils.pm
/usr/lib/perl5/vendor_perl/5.26.1/Moo/_mro.pm
/usr/lib/perl5/vendor_perl/5.26.1/Moo/_strictures.pm
/usr/lib/perl5/vendor_perl/5.26.1/Moo/sification.pm
/usr/lib/perl5/vendor_perl/5.26.1/oo.pm
/usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi
/usr/share/doc/packages/perl-Moo
/usr/share/doc/packages/perl-Moo/Changes
/usr/share/doc/packages/perl-Moo/README
/usr/share/man/man3/Moo.3pm.gz
/usr/share/man/man3/Moo::Role.3pm.gz
/usr/share/man/man3/oo.3pm.gz


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 19:57:54 2024