commit fff6ab98889a38effa72ed8a9c8cfd148b1ea7a37b075136c04490ceb5b1c34d Author: Stephan Kulow Date: Tue Feb 17 13:41:43 2015 +0000 initial package OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Dist-Zilla-Plugin-Test-ReportPrereqs?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/Dist-Zilla-Plugin-Test-ReportPrereqs-0.020.tar.gz b/Dist-Zilla-Plugin-Test-ReportPrereqs-0.020.tar.gz new file mode 100644 index 0000000..964e5ab --- /dev/null +++ b/Dist-Zilla-Plugin-Test-ReportPrereqs-0.020.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e09510f12ecbf8e23b6682a26b8034fc38c2549b16398fd8de67b9582d28b86a +size 19092 diff --git a/perl-Dist-Zilla-Plugin-Test-ReportPrereqs.changes b/perl-Dist-Zilla-Plugin-Test-ReportPrereqs.changes new file mode 100644 index 0000000..ddac9a7 --- /dev/null +++ b/perl-Dist-Zilla-Plugin-Test-ReportPrereqs.changes @@ -0,0 +1,6 @@ +------------------------------------------------------------------- +Tue Feb 17 13:41:39 UTC 2015 - coolo@suse.com + +- initial package 0.020 + * created by cpanspec 1.78.08 + diff --git a/perl-Dist-Zilla-Plugin-Test-ReportPrereqs.spec b/perl-Dist-Zilla-Plugin-Test-ReportPrereqs.spec new file mode 100644 index 0000000..41a6681 --- /dev/null +++ b/perl-Dist-Zilla-Plugin-Test-ReportPrereqs.spec @@ -0,0 +1,96 @@ +# +# spec file for package perl-Dist-Zilla-Plugin-Test-ReportPrereqs +# +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + + +Name: perl-Dist-Zilla-Plugin-Test-ReportPrereqs +Version: 0.020 +Release: 0 +%define cpan_name Dist-Zilla-Plugin-Test-ReportPrereqs +Summary: Report on prerequisite versions during automated testing +License: Apache-2.0 +Group: Development/Libraries/Perl +Url: http://search.cpan.org/dist/Dist-Zilla-Plugin-Test-ReportPrereqs/ +Source: http://www.cpan.org/authors/id/D/DA/DAGOLDEN/%{cpan_name}-%{version}.tar.gz +BuildArch: noarch +BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildRequires: perl +BuildRequires: perl-macros +BuildRequires: perl(CPAN::Meta) +BuildRequires: perl(Capture::Tiny) +BuildRequires: perl(Data::Section) >= 0.200002 +BuildRequires: perl(Dist::Zilla) >= 4 +BuildRequires: perl(Dist::Zilla::File::FromCode) +BuildRequires: perl(Dist::Zilla::File::InMemory) +BuildRequires: perl(Dist::Zilla::Role::FileGatherer) +BuildRequires: perl(Dist::Zilla::Role::PrereqSource) +BuildRequires: perl(Dist::Zilla::Tester) +BuildRequires: perl(File::pushd) +BuildRequires: perl(Moose) +BuildRequires: perl(Sub::Exporter::ForMethods) +BuildRequires: perl(Test::More) >= 0.96 +Requires: perl(Data::Section) >= 0.200002 +Requires: perl(Dist::Zilla) >= 4 +Requires: perl(Dist::Zilla::File::FromCode) +Requires: perl(Dist::Zilla::File::InMemory) +Requires: perl(Dist::Zilla::Role::FileGatherer) +Requires: perl(Dist::Zilla::Role::PrereqSource) +Requires: perl(Moose) +Requires: perl(Sub::Exporter::ForMethods) +%{perl_requires} + +%description +This the Dist::Zilla manpage plugin adds a _t/00-report-prereqs.t_ test +file and an accompanying _t/00-report-prereqs.dd_ data file. It reports the +version of all modules listed in the distribution metadata prerequisites +(including 'recommends', 'suggests', etc.). However, any 'develop' prereqs +are not reported (unless they show up in another category). + +If a _MYMETA.json_ file exists and the CPAN::Meta manpage is installed on +the testing machine, _MYMETA.json_ will be examined for prerequisites in +addition, as it would include any dynamic prerequisites not set in the +distribution metadata. + +Versions are reported based on the result of 'parse_version' from the +ExtUtils::MakeMaker manpage, which means prerequisite modules are not +actually loaded (which avoids various edge cases with certain modules). +Parse errors are reported as "undef". If a module is not installed, +"missing" is reported instead of a version string. + +Additionally, if the CPAN::Meta manpage is installed, unfulfilled required +prerequisites are reported after the list of all versions based on either +_MYMETA_ (preferably) or _META_ (fallback). + +%prep +%setup -q -n %{cpan_name}-%{version} + +%build +%{__perl} Makefile.PL INSTALLDIRS=vendor +%{__make} %{?_smp_mflags} + +%check +%{__make} test + +%install +%perl_make_install +%perl_process_packlist +%perl_gen_filelist + +%files -f %{name}.files +%defattr(-,root,root,755) +%doc Changes CONTRIBUTING.mkdn cpanfile LICENSE perlcritic.rc README tidyall.ini + +%changelog