File perl-Perl-Critic.spec of Package perl-Perl-Critic
#
# spec file for package perl-Perl-Critic
#
# 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-Perl-Critic
Version: 1.126
Release: 0
%define cpan_name Perl-Critic
Summary: Critique Perl source code for best-practices
License: Artistic-1.0 or GPL-1.0+
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/Perl-Critic/
Source0: http://www.cpan.org/authors/id/T/TH/THALJEF/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(B::Keywords) >= 1.05
BuildRequires: perl(Config::Tiny) >= 2
BuildRequires: perl(Email::Address) >= 1.889
BuildRequires: perl(Exception::Class) >= 1.23
BuildRequires: perl(Exporter) >= 5.63
BuildRequires: perl(File::HomeDir)
BuildRequires: perl(File::Which)
BuildRequires: perl(IO::String)
BuildRequires: perl(List::MoreUtils) >= 0.19
BuildRequires: perl(Module::Build) >= 0.402400
BuildRequires: perl(Module::Pluggable) >= 3.1
BuildRequires: perl(PPI) >= 1.220
BuildRequires: perl(PPI::Document) >= 1.220
BuildRequires: perl(PPI::Document::File) >= 1.220
BuildRequires: perl(PPI::Node) >= 1.220
BuildRequires: perl(PPI::Token::Quote::Single) >= 1.220
BuildRequires: perl(PPI::Token::Whitespace) >= 1.220
BuildRequires: perl(PPIx::Regexp) >= 0.027
BuildRequires: perl(PPIx::Utilities::Node) >= 1.001
BuildRequires: perl(PPIx::Utilities::Statement) >= 1.001
BuildRequires: perl(Perl::Tidy)
BuildRequires: perl(Pod::Spell) >= 1
BuildRequires: perl(Readonly) >= 2
BuildRequires: perl(String::Format) >= 1.13
BuildRequires: perl(Task::Weaken)
BuildRequires: perl(Term::ANSIColor) >= 2.02
BuildRequires: perl(Test::Builder) >= 0.92
BuildRequires: perl(Test::Deep)
BuildRequires: perl(version) >= 0.77
Requires: perl(B::Keywords) >= 1.05
Requires: perl(Config::Tiny) >= 2
Requires: perl(Email::Address) >= 1.889
Requires: perl(Exception::Class) >= 1.23
Requires: perl(Exporter) >= 5.63
Requires: perl(File::HomeDir)
Requires: perl(File::Which)
Requires: perl(IO::String)
Requires: perl(List::MoreUtils) >= 0.19
Requires: perl(Module::Pluggable) >= 3.1
Requires: perl(PPI) >= 1.220
Requires: perl(PPI::Document) >= 1.220
Requires: perl(PPI::Document::File) >= 1.220
Requires: perl(PPI::Node) >= 1.220
Requires: perl(PPI::Token::Quote::Single) >= 1.220
Requires: perl(PPI::Token::Whitespace) >= 1.220
Requires: perl(PPIx::Regexp) >= 0.027
Requires: perl(PPIx::Utilities::Node) >= 1.001
Requires: perl(PPIx::Utilities::Statement) >= 1.001
Requires: perl(Perl::Tidy)
Requires: perl(Pod::Spell) >= 1
Requires: perl(Readonly) >= 2
Requires: perl(String::Format) >= 1.13
Requires: perl(Task::Weaken)
Requires: perl(Term::ANSIColor) >= 2.02
Requires: perl(Test::Builder) >= 0.92
Requires: perl(version) >= 0.77
%{perl_requires}
%description
Perl::Critic is an extensible framework for creating and applying coding
standards to Perl source code. Essentially, it is a static source code
analysis engine. Perl::Critic is distributed with a number of the
Perl::Critic::Policy manpage modules that attempt to enforce various coding
guidelines. Most Policy modules are based on Damian Conway's book *Perl
Best Practices*. However, Perl::Critic is *not* limited to PBP and will
even support Policies that contradict Conway. You can enable, disable, and
customize those Polices through the Perl::Critic interface. You can also
create new Policy modules that suit your own tastes.
For a command-line interface to Perl::Critic, see the documentation for the
perlcritic manpage. If you want to integrate Perl::Critic with your build
process, the Test::Perl::Critic manpage provides an interface that is
suitable for test programs. Also, the Test::Perl::Critic::Progressive
manpage is useful for gradually applying coding standards to legacy code.
For the ultimate convenience (at the expense of some flexibility) see the
the criticism manpage pragma.
If you'd like to try the Perl::Critic manpage without installing anything,
there is a web-service available at the http://perlcritic.com manpage. The
web-service does not yet support all the configuration features that are
available in the native Perl::Critic API, but it should give you a good
idea of what it does.
Also, ActivePerl includes a very slick graphical interface to Perl-Critic
called 'perlcritic-gui'. You can get a free community edition of ActivePerl
from the http://www.activestate.com manpage.
%prep
%setup -q -n %{cpan_name}-%{version}
find . -type f -print0 | xargs -0 chmod 644
%build
%{__perl} Build.PL installdirs=vendor
./Build build flags=%{?_smp_mflags}
%check
./Build test
%install
./Build install destdir=%{buildroot} create_packlist=0
%perl_gen_filelist
%files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes examples extras LICENSE README README.md tools
%changelog