2009-08-30 15:42:48 +02:00
|
|
|
#
|
2011-11-17 16:40:27 +01:00
|
|
|
# spec file for package perl-Module-Pluggable
|
2009-08-30 15:42:48 +02:00
|
|
|
#
|
2014-04-23 12:07:41 +02:00
|
|
|
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2009-08-30 15:42:48 +02:00
|
|
|
#
|
|
|
|
# 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-Module-Pluggable
|
2014-04-23 12:07:41 +02:00
|
|
|
Version: 5.1
|
|
|
|
Release: 0
|
|
|
|
%define cpan_name Module-Pluggable
|
|
|
|
Summary: Automatically give your module the ability to have plugins
|
|
|
|
License: GPL-1.0+ or Artistic-1.0
|
2009-08-30 15:42:48 +02:00
|
|
|
Group: Development/Libraries/Perl
|
2014-04-23 12:07:41 +02:00
|
|
|
Url: http://search.cpan.org/dist/Module-Pluggable/
|
|
|
|
Source: http://www.cpan.org/authors/id/S/SI/SIMONW/Module-Pluggable-%{version}.tar.gz
|
|
|
|
BuildArch: noarch
|
2009-08-30 15:42:48 +02:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2014-04-23 12:07:41 +02:00
|
|
|
BuildRequires: perl
|
|
|
|
BuildRequires: perl-macros
|
|
|
|
%{perl_requires}
|
2009-08-30 15:42:48 +02:00
|
|
|
|
|
|
|
%description
|
2014-04-23 12:07:41 +02:00
|
|
|
This package provides a simple but, hopefully, extensible way of having
|
|
|
|
'plugins' for your module. Essentially all it does is export a method into
|
|
|
|
your name space that looks through a search path for .pm files and turn those
|
|
|
|
into class names. Optionally it instantiates those classes for you.
|
2009-08-30 15:42:48 +02:00
|
|
|
|
|
|
|
%prep
|
2014-04-23 12:07:41 +02:00
|
|
|
%setup -q -n %{cpan_name}-%{version}
|
2009-08-30 15:42:48 +02:00
|
|
|
|
|
|
|
%build
|
2014-04-23 12:07:41 +02:00
|
|
|
%{__perl} Build.PL installdirs=vendor
|
|
|
|
./Build
|
2009-08-30 15:42:48 +02:00
|
|
|
|
|
|
|
%install
|
2014-04-23 12:07:41 +02:00
|
|
|
./Build install destdir=$RPM_BUILD_ROOT create_packlist=0
|
2009-08-30 15:42:48 +02:00
|
|
|
%perl_process_packlist
|
|
|
|
%perl_gen_filelist
|
|
|
|
|
2014-04-23 12:07:41 +02:00
|
|
|
%check
|
|
|
|
./Build test
|
2009-08-30 15:42:48 +02:00
|
|
|
|
2014-04-23 12:07:41 +02:00
|
|
|
%files -f %{name}.files
|
|
|
|
%defattr(-,root,root,755)
|
2009-08-30 15:42:48 +02:00
|
|
|
|
|
|
|
%changelog
|
2014-04-23 12:07:41 +02:00
|
|
|
|