Hello community,
here is the log from the commit of package perl-MooseX-Types-Structured for
openSUSE:Factory checked in at 2013-12-09 07:15:31
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-MooseX-Types-Structured (Old)
and /work/SRC/openSUSE:Factory/.perl-MooseX-Types-Structured.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-MooseX-Types-Structured"
Changes:
--------
---
/work/SRC/openSUSE:Factory/perl-MooseX-Types-Structured/perl-MooseX-Types-Structured.changes
2011-12-27 18:14:43.000000000 +0100
+++
/work/SRC/openSUSE:Factory/.perl-MooseX-Types-Structured.new/perl-MooseX-Types-Structured.changes
2013-12-09 07:15:31.000000000 +0100
@@ -1,0 +2,8 @@
+Mon Nov 25 07:39:34 UTC 2013 - [email protected]
+
+- updated to 0.29
+ - fixed use of an interface that was deprecated in Moose-2.1100
+ (ether)
+ - repository migrated from shadowcat to the github moose organization
+
+-------------------------------------------------------------------
Old:
----
MooseX-Types-Structured-0.28.tar.gz
New:
----
MooseX-Types-Structured-0.29.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-MooseX-Types-Structured.spec ++++++
--- /var/tmp/diff_new_pack.xXUCOW/_old 2013-12-09 07:15:32.000000000 +0100
+++ /var/tmp/diff_new_pack.xXUCOW/_new 2013-12-09 07:15:32.000000000 +0100
@@ -1,8 +1,7 @@
-# vim: set sw=4 ts=4 et nu:
#
# spec file for package perl-MooseX-Types-Structured
#
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -15,23 +14,24 @@
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
+
+
Name: perl-MooseX-Types-Structured
-Version: 0.28
+Version: 0.29
Release: 0
+%define cpan_name MooseX-Types-Structured
Summary: Structured Type Constraints for Moose
License: Artistic-1.0 or GPL-1.0+
Group: Development/Libraries/Perl
-Source:
http://search.cpan.org/CPAN/authors/id/J/JJ/JJNAPIORK/MooseX-Types-Structured-%{version}.tar.gz
-Url: http://search.cpan.org/dist/MooseX-Types-Structured
+Url: http://search.cpan.org/dist/MooseX-Types-Structured/
+Source:
http://www.cpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{version}.tar.gz
+BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
-BuildRequires: make
BuildRequires: perl
BuildRequires: perl-macros
-BuildRequires: perl(Data::Dumper)
BuildRequires: perl(DateTime)
BuildRequires: perl(Devel::PartialDump) >= 0.13
-BuildRequires: perl(ExtUtils::MakeMaker) >= 6.31
+BuildRequires: perl(Module::Build::Tiny) >= 0.030
BuildRequires: perl(Moose) >= 1.08
BuildRequires: perl(Moose::Meta::TypeCoercion)
BuildRequires: perl(Moose::Meta::TypeConstraint)
@@ -40,69 +40,62 @@
BuildRequires: perl(MooseX::Types) >= 0.22
BuildRequires: perl(MooseX::Types::DateTime)
BuildRequires: perl(MooseX::Types::Moose)
-BuildRequires: perl(Scalar::Util)
BuildRequires: perl(Sub::Exporter) >= 0.982
BuildRequires: perl(Test::Fatal)
BuildRequires: perl(Test::More) >= 0.94
-BuildRequires: perl(overload)
-Requires: perl(Scalar::Util)
-Requires: perl(overload)
-Requires: perl(Sub::Exporter) >= 0.982
+#BuildRequires: perl(MooseX::Meta::TypeCoercion::Structured)
+#BuildRequires: perl(MooseX::Meta::TypeCoercion::Structured::Optional)
+#BuildRequires: perl(MooseX::Meta::TypeConstraint::Structured)
+#BuildRequires: perl(MooseX::Meta::TypeConstraint::Structured::Optional)
+#BuildRequires: perl(MooseX::Types::Structured)
+#BuildRequires: perl(MooseX::Types::Structured::MessageStack)
+#BuildRequires: perl(MooseX::Types::Structured::OverflowHandler)
+#BuildRequires: perl(Pod::Wordlist)
+#BuildRequires: perl(Test::Kwalitee)
+#BuildRequires: perl(Test::NoTabs)
+#BuildRequires: perl(Test::Spelling) >= 0.12
+Requires: perl(Devel::PartialDump) >= 0.13
+Requires: perl(Moose) >= 1.08
+Requires: perl(Moose::Meta::TypeCoercion)
Requires: perl(Moose::Meta::TypeConstraint)
-Requires: perl(Moose::Util::TypeConstraints) >= 1.06
Requires: perl(Moose::Meta::TypeConstraint::Parameterizable)
-Requires: perl(Moose::Meta::TypeCoercion)
+Requires: perl(Moose::Util::TypeConstraints) >= 1.06
Requires: perl(MooseX::Types) >= 0.22
-Requires: perl(Devel::PartialDump) >= 0.13
-Requires: perl(Moose) >= 1.08
+Requires: perl(Sub::Exporter) >= 0.982
+%{perl_requires}
%description
-A structured type constraint is a standard container Moose type
-constraint, such as an ArrayRef or HashRef, which has been enhanced to
+A structured type constraint is a standard container the Moose manpage type
+constraint, such as an 'ArrayRef' or 'HashRef', which has been enhanced to
allow you to explicitly name all the allowed type constraints inside the
-structure.
+structure. The generalized form is:
+
+ TypeConstraint[@TypeParameters or %TypeParameters]
+
+Where 'TypeParameters' is an array reference or hash references of the
+Moose::Meta::TypeConstraint manpage objects.
This type library enables structured type constraints. It is built on top
-of the MooseX::Types library system, so you should review the
+of the the MooseX::Types manpage library system, so you should review the
documentation for that if you are not familiar with it.
%prep
-%setup -q -n "MooseX-Types-Structured-%{version}"
-%__sed -i '/^auto_install/d' Makefile.PL
+%setup -q -n %{cpan_name}-%{version}
+find . -type f -print0 | xargs -0 chmod 644
%build
-%__perl Makefile.PL PREFIX="%{_prefix}"
-%__make %{?jobs:-j%{jobs}}
-
-%install
-%perl_make_install
-%perl_process_packlist
+%{__perl} Build.PL --installdirs=vendor
+./Build build --flags=%{?_smp_mflags}
-%if 0%{?suse_version} >= 1120
%check
-%__make test
-%endif
+./Build test
-%clean
-%{?buildroot:%__rm -rf "%{buildroot}"}
+%install
+./Build install --destdir=%{buildroot} --create_packlist=0
+%perl_gen_filelist
-%files
-%defattr(-,root,root)
-%doc Changes README
-%dir %{perl_vendorlib}/MooseX
-%dir %{perl_vendorlib}/MooseX/Types
-%{perl_vendorlib}/MooseX/Types/Structured.pm
-%{perl_vendorlib}/MooseX/Types/Structured
-%dir %{perl_vendorlib}/MooseX/Meta
-%dir %{perl_vendorlib}/MooseX/Meta/TypeCoercion
-%{perl_vendorlib}/MooseX/Meta/TypeCoercion/Structured
-%{perl_vendorlib}/MooseX/Meta/TypeCoercion/Structured.pm
-%dir %{perl_vendorlib}/MooseX/Meta/TypeConstraint
-%{perl_vendorlib}/MooseX/Meta/TypeConstraint/Structured
-%{perl_vendorlib}/MooseX/Meta/TypeConstraint/Structured.pm
-%dir %{perl_vendorarch}/auto/MooseX
-%dir %{perl_vendorarch}/auto/MooseX/Types
-%{perl_vendorarch}/auto/MooseX/Types/Structured
-%doc %{perl_man3dir}/MooseX::*.%{perl_man3ext}%{ext_man}
+%files -f %{name}.files
+%defattr(-,root,root,755)
+%doc Changes CONTRIBUTING LICENSE README README.md weaver.ini
%changelog
++++++ MooseX-Types-Structured-0.28.tar.gz ->
MooseX-Types-Structured-0.29.tar.gz ++++++
++++ 4147 lines of diff (skipped)
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]