forked from pool/perl-Module-Pluggable
121841c4e5
update to SR 231077 - import changes from d:l:p/perl-Module-Pluggable .changes file OBS-URL: https://build.opensuse.org/request/show/231116 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Module-Pluggable?expand=0&rev=6
60 lines
1.9 KiB
RPMSpec
60 lines
1.9 KiB
RPMSpec
#
|
|
# spec file for package perl-Module-Pluggable
|
|
#
|
|
# Copyright (c) 2014 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
|
|
# 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
|
|
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
|
|
Group: Development/Libraries/Perl
|
|
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
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
%{perl_requires}
|
|
|
|
%description
|
|
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.
|
|
|
|
%prep
|
|
%setup -q -n %{cpan_name}-%{version}
|
|
|
|
%build
|
|
%{__perl} Build.PL installdirs=vendor
|
|
./Build
|
|
|
|
%install
|
|
./Build install destdir=$RPM_BUILD_ROOT create_packlist=0
|
|
%perl_process_packlist
|
|
%perl_gen_filelist
|
|
|
|
%check
|
|
./Build test
|
|
|
|
%files -f %{name}.files
|
|
%defattr(-,root,root,755)
|
|
|
|
%changelog
|
|
|