forked from pool/perl-namespace-clean
93876c4b22
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-namespace-clean?expand=0&rev=2
90 lines
2.9 KiB
RPMSpec
90 lines
2.9 KiB
RPMSpec
#
|
|
# spec file for package perl-namespace-clean
|
|
#
|
|
# Copyright (c) 2011 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-namespace-clean
|
|
Version: 0.20
|
|
Release: 1
|
|
License: GPL+ or Artistic
|
|
%define cpan_name namespace-clean
|
|
Summary: Keep imports and functions out of your namespace
|
|
Url: http://search.cpan.org/dist/namespace-clean/
|
|
Group: Development/Libraries/Perl
|
|
#Source: http://www.cpan.org/authors/id/F/FL/FLORA/namespace-clean-%{version}.tar.gz
|
|
Source: %{cpan_name}-%{version}.tar.gz
|
|
Patch1: perl-namespace-clean-use_lib.patch
|
|
BuildArch: noarch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
BuildRequires: perl(B::Hooks::EndOfScope) >= 0.07
|
|
BuildRequires: perl(constant)
|
|
BuildRequires: perl(Exporter)
|
|
BuildRequires: perl(Package::Stash) >= 0.22
|
|
BuildRequires: perl(Sub::Identify) >= 0.04
|
|
BuildRequires: perl(Sub::Name) >= 0.04
|
|
BuildRequires: perl(vars)
|
|
BuildRequires: perl(Test::More) >= 0.88
|
|
Requires: perl(B::Hooks::EndOfScope) >= 0.07
|
|
Requires: perl(Package::Stash) >= 0.22
|
|
Requires: perl(Sub::Identify) >= 0.04
|
|
Requires: perl(Sub::Name) >= 0.04
|
|
Requires: perl(vars)
|
|
%{perl_requires}
|
|
|
|
%description
|
|
Keeping packages clean
|
|
When you define a function, or import one, into a Perl package, it will
|
|
naturally also be available as a method. This does not per se cause
|
|
problems, but it can complicate subclassing and, for example, plugin
|
|
classes that are included via multiple inheritance by loading them as
|
|
base classes.
|
|
|
|
The 'namespace::clean' pragma will remove all previously declared or
|
|
imported symbols at the end of the current package's compile cycle.
|
|
Functions called in the package itself will still be bound by their
|
|
name, but they won't show up as methods on your class or instances.
|
|
|
|
%prep
|
|
%setup -q -n %{cpan_name}-%{version}
|
|
%if 0%{?suse_version} <= 1110
|
|
%patch1 -p1
|
|
sed -i "s|__vendorperl__|%{perl_vendorlib}|g" Makefile.PL t/*.t
|
|
%endif
|
|
|
|
%build
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
|
%{__make} %{?_smp_mflags}
|
|
|
|
%check
|
|
%{__make} test
|
|
|
|
%install
|
|
%perl_make_install
|
|
%perl_process_packlist
|
|
%perl_gen_filelist
|
|
|
|
%clean
|
|
%{?buildroot:%__rm -rf "%{buildroot}"}
|
|
|
|
%files -f %{name}.files
|
|
%defattr(644,root,root,755)
|
|
%doc Changes LICENSE README
|
|
|
|
%changelog
|