Hello community,
here is the log from the commit of package perl-Devel-PartialDump for
openSUSE:Factory checked in at 2013-12-09 07:13:51
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Devel-PartialDump (Old)
and /work/SRC/openSUSE:Factory/.perl-Devel-PartialDump.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Devel-PartialDump"
Changes:
--------
---
/work/SRC/openSUSE:Factory/perl-Devel-PartialDump/perl-Devel-PartialDump.changes
2011-12-25 17:38:43.000000000 +0100
+++
/work/SRC/openSUSE:Factory/.perl-Devel-PartialDump.new/perl-Devel-PartialDump.changes
2013-12-09 07:13:51.000000000 +0100
@@ -1,0 +2,8 @@
+Mon Nov 25 07:38:20 UTC 2013 - [email protected]
+
+- updated to 0.16
+ - Moose dependency removed, resolving circular dependency in Moose's
+ recommended prereqs (thanks, David Golden!)
+ - converted packaging to Dist::Zilla
+
+-------------------------------------------------------------------
Old:
----
Devel-PartialDump-0.15.tar.gz
New:
----
Devel-PartialDump-0.16.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-Devel-PartialDump.spec ++++++
--- /var/tmp/diff_new_pack.UQg6m7/_old 2013-12-09 07:13:52.000000000 +0100
+++ /var/tmp/diff_new_pack.UQg6m7/_new 2013-12-09 07:13:52.000000000 +0100
@@ -1,8 +1,7 @@
-# vim: set sw=4 ts=4 et nu:
#
# spec file for package perl-Devel-PartialDump
#
-# 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,57 +14,76 @@
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
+
+
Name: perl-Devel-PartialDump
-Version: 0.15
+Version: 0.16
Release: 0
-Summary: Data Dumper optimized for Logging of arbitrary Parameters
+%define cpan_name Devel-PartialDump
+Summary: Partial dumping of data structures, optimized for argument
printing.
License: Artistic-1.0 or GPL-1.0+
Group: Development/Libraries/Perl
-Source:
http://search.cpan.org/CPAN/authors/id/F/FL/FLORA/Devel-PartialDump-%{version}.tar.gz
-Url: http://search.cpan.org/dist/Devel-PartialDump
+Url: http://search.cpan.org/dist/Devel-PartialDump/
+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(ExtUtils::MakeMaker)
-BuildRequires: perl(Moose)
-BuildRequires: perl(Scalar::Util)
+BuildRequires: perl(Class::Tiny)
+BuildRequires: perl(Module::Build::Tiny) >= 0.030
BuildRequires: perl(Sub::Exporter)
-BuildRequires: perl(Test::Warn) >= 0.21
-BuildRequires: perl(Test::use::ok)
-BuildRequires: perl(namespace::clean) >= 0.20
-Requires: perl(Scalar::Util)
-Requires: perl(namespace::clean) >= 0.20
+BuildRequires: perl(Test::Warn)
+BuildRequires: perl(namespace::clean)
+BuildRequires: perl(ok)
+#BuildRequires: perl(Pod::Wordlist)
+#BuildRequires: perl(Test::Kwalitee)
+#BuildRequires: perl(Test::NoTabs)
+#BuildRequires: perl(Test::Spelling) >= 0.12
+Requires: perl(Class::Tiny)
Requires: perl(Sub::Exporter)
-Requires: perl(Moose)
+Requires: perl(namespace::clean)
+%{perl_requires}
%description
-This module is a data dumper optimized for logging of arbitrary
-parameters.
+This module is a data dumper optimized for logging of arbitrary parameters.
+
+It attempts to truncate overly verbose data, in a way that is hopefully
+more useful for diagnostics warnings than
+
+ warn Dumper(@stuff);
+
+Unlike other data dumping modules there are no attempts at correctness or
+cross referencing, this is only meant to provide a slightly deeper look
+into the data in question.
+
+There is a default recursion limit, and a default truncation of long lists,
+and the dump is formatted on one line (new lines in strings are escaped),
+to aid in readability.
+
+You can enable it temporarily by importing functions like 'warn', 'croak'
+etc to get more informative errors during development, or even use it as:
+
+ BEGIN { local $@; eval "use Devel::PartialDump qw(...)" }
+
+to get DWIM formatting only if it's installed, without introducing a
+dependency.
%prep
-%setup -q -n "Devel-PartialDump-%{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
+
+%install
+./Build install --destdir=%{buildroot} --create_packlist=0
+%perl_gen_filelist
-%files
-%defattr(-,root,root)
-%doc Changes
-%dir %{perl_vendorlib}/Devel
-%{perl_vendorlib}/Devel/PartialDump.pm
-%dir %{perl_vendorarch}/auto/Devel
-%{perl_vendorarch}/auto/Devel/PartialDump
-%doc %{perl_man3dir}/Devel::PartialDump.%{perl_man3ext}%{ext_man}
+%files -f %{name}.files
+%defattr(-,root,root,755)
+%doc Changes CONTRIBUTING LICENSE README README.md weaver.ini
%changelog
++++++ Devel-PartialDump-0.15.tar.gz -> Devel-PartialDump-0.16.tar.gz ++++++
++++ 3599 lines of diff (skipped)
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]