Hello community,

here is the log from the commit of package perl-MooseX-SimpleConfig for 
openSUSE:Factory checked in at 2014-03-11 07:23:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-MooseX-SimpleConfig (Old)
 and      /work/SRC/openSUSE:Factory/.perl-MooseX-SimpleConfig.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-MooseX-SimpleConfig"

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/perl-MooseX-SimpleConfig/perl-MooseX-SimpleConfig.changes
        2013-09-13 14:44:37.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-MooseX-SimpleConfig.new/perl-MooseX-SimpleConfig.changes
   2014-03-11 07:23:40.000000000 +0100
@@ -1,0 +2,9 @@
+Mon Nov 25 07:39:24 UTC 2013 - [email protected]
+
+- updated to 0.10
+  - repository migrated from shadowcat to the github moose organization
+  - eliminate race conditions between tests by using separate tempdirs for
+    config files
+  - resolve failing test report by removing unnecessary and undeclared prereq
+
+-------------------------------------------------------------------

Old:
----
  MooseX-SimpleConfig-0.09.tar.gz

New:
----
  MooseX-SimpleConfig-0.10.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ perl-MooseX-SimpleConfig.spec ++++++
--- /var/tmp/diff_new_pack.brjxmW/_old  2014-03-11 07:23:40.000000000 +0100
+++ /var/tmp/diff_new_pack.brjxmW/_new  2014-03-11 07:23:40.000000000 +0100
@@ -1,8 +1,7 @@
-# vim: set sw=4 ts=4 et nu:
 #
 # spec file for package perl-MooseX-SimpleConfig
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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
@@ -18,67 +17,67 @@
 
 
 Name:           perl-MooseX-SimpleConfig
-Version:        0.09
+Version:        0.10
 Release:        0
+%define cpan_name MooseX-SimpleConfig
 Summary:        A Moose role for setting attributes from a simple configfile
 License:        Artistic-1.0 or GPL-1.0+
 Group:          Development/Libraries/Perl
-Source:         
http://search.cpan.org/CPAN/authors/id/B/BO/BOBTFISH/MooseX-SimpleConfig-%{version}.tar.gz
-Url:            http://search.cpan.org/dist/MooseX-SimpleConfig
+Url:            http://search.cpan.org/dist/MooseX-SimpleConfig/
+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(Config::Any) >= 0.13
-BuildRequires:  perl(Config::General)
-BuildRequires:  perl(ExtUtils::MakeMaker)
-BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.42
-BuildRequires:  perl(Moose) >= 0.35
-BuildRequires:  perl(MooseX::ConfigFromFile) >= 0.02
-BuildRequires:  perl(Path::Class)
-BuildRequires:  perl(Test::More) >= 0.88
-BuildRequires:  perl(YAML::XS)
+BuildRequires:  perl(Module::Build::Tiny) >= 0.030
+BuildRequires:  perl(Moose)
+BuildRequires:  perl(Moose::Role)
+BuildRequires:  perl(MooseX::ConfigFromFile)
+BuildRequires:  perl(Test::Fatal)
+BuildRequires:  perl(Test::Requires)
 Requires:       perl(Config::Any) >= 0.13
-Requires:       perl(Moose) >= 0.35
-Requires:       perl(MooseX::ConfigFromFile) >= 0.02
-Requires:       perl(Test::More) >= 0.88
+Requires:       perl(Moose::Role)
+Requires:       perl(MooseX::ConfigFromFile)
+%{perl_requires}
 
 %description
-This role loads simple configfiles to set object attributes. It is based
-on the abstract role MooseX::ConfigFromFile, and uses Config::Any to load
-your configfile. Config::Any will in turn support any of a variety of
-different config formats, detected by the file extension. See Config::Any
-for more details about supported formats.
-Like all MooseX::ConfigFromFile -derived configfile loaders, this module
-is automatically supported by the MooseX::Getopt role as well, which
-allows specifying "-configfile" on the commandline.
+This role loads simple configfiles to set object attributes. It is based on
+the abstract role the MooseX::ConfigFromFile manpage, and uses the
+Config::Any manpage to load your configfile. the Config::Any manpage will
+in turn support any of a variety of different config formats, detected by
+the file extension. See the Config::Any manpage for more details about
+supported formats.
+
+To pass additional arguments to the Config::Any manpage you must provide a
+'config_any_args()' method, for example:
+
+  sub config_any_args {
+    return {
+      driver_args => { General => { '-InterPolateVars' => 1 } }
+    };
+  }
+
+Like all the MooseX::ConfigFromFile manpage -derived configfile loaders,
+this module is automatically supported by the the MooseX::Getopt manpage
+role as well, which allows specifying '-configfile' on the command line.
 
 %prep
-%setup -q -n "MooseX-SimpleConfig-%{version}"
-%__sed -i '/^auto_install/d' Makefile.PL
+%setup -q -n %{cpan_name}-%{version}
 
 %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}
 
 %check
-%__make test
+./Build test
 
-%clean
-%{?buildroot:%__rm -rf "%{buildroot}"}
+%install
+./Build install --destdir=%{buildroot} --create_packlist=0
+%perl_gen_filelist
 
-%files
-%defattr(-,root,root)
-%doc ChangeLog README
-%dir %{perl_vendorlib}/MooseX
-%{perl_vendorlib}/MooseX/SimpleConfig.pm
-%dir %{perl_vendorarch}/auto/MooseX
-%{perl_vendorarch}/auto/MooseX/SimpleConfig
-%doc %{perl_man3dir}/MooseX::SimpleConfig.%{perl_man3ext}%{ext_man}
+%files -f %{name}.files
+%defattr(-,root,root,755)
+%doc Changes CONTRIBUTING LICENSE README README.md weaver.ini
 
 %changelog

++++++ MooseX-SimpleConfig-0.09.tar.gz -> MooseX-SimpleConfig-0.10.tar.gz ++++++
++++ 6213 lines of diff (skipped)

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to