Stephan Kulow
2015-02-17 13:41:43 +00:00
committed by Git OBS Bridge
commit fff6ab9888
5 changed files with 129 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@@ -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

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.osc

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e09510f12ecbf8e23b6682a26b8034fc38c2549b16398fd8de67b9582d28b86a
size 19092

View File

@@ -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

View File

@@ -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