2010-07-12 16:25:43 +02:00
|
|
|
#
|
2011-03-31 10:28:13 +02:00
|
|
|
# spec file for package perl-namespace-clean (Version 0.20)
|
2010-07-12 16:25:43 +02:00
|
|
|
#
|
|
|
|
# Copyright (c) 2010 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/
|
|
|
|
#
|
|
|
|
|
2010-02-09 12:01:09 +01:00
|
|
|
Name: perl-namespace-clean
|
2011-03-31 10:28:13 +02:00
|
|
|
Version: 0.20
|
2010-07-12 16:25:43 +02:00
|
|
|
Release: 1
|
2010-02-09 12:01:09 +01:00
|
|
|
License: GPL+ or Artistic
|
2011-03-31 10:28:13 +02:00
|
|
|
%define cpan_name namespace-clean
|
|
|
|
Summary: Keep imports and functions out of your namespace
|
2010-07-12 16:25:43 +02:00
|
|
|
Url: http://search.cpan.org/dist/namespace-clean/
|
2011-03-31 10:28:13 +02:00
|
|
|
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
|
2010-02-09 12:01:09 +01:00
|
|
|
BuildArch: noarch
|
2010-07-12 16:25:43 +02:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2010-02-09 12:01:09 +01:00
|
|
|
BuildRequires: perl
|
2010-07-12 16:25:43 +02:00
|
|
|
BuildRequires: perl-macros
|
2010-02-09 12:01:09 +01:00
|
|
|
BuildRequires: perl(B::Hooks::EndOfScope) >= 0.07
|
2010-07-12 16:25:43 +02:00
|
|
|
BuildRequires: perl(constant)
|
|
|
|
BuildRequires: perl(Exporter)
|
2011-03-31 10:28:13 +02:00
|
|
|
BuildRequires: perl(Package::Stash) >= 0.22
|
2010-02-09 12:01:09 +01:00
|
|
|
BuildRequires: perl(Sub::Identify) >= 0.04
|
|
|
|
BuildRequires: perl(Sub::Name) >= 0.04
|
2010-07-12 16:25:43 +02:00
|
|
|
BuildRequires: perl(vars)
|
2010-02-09 12:01:09 +01:00
|
|
|
Requires: perl(B::Hooks::EndOfScope) >= 0.07
|
2011-03-31 10:28:13 +02:00
|
|
|
Requires: perl(Package::Stash) >= 0.22
|
2010-02-09 12:01:09 +01:00
|
|
|
Requires: perl(Sub::Identify) >= 0.04
|
|
|
|
Requires: perl(Sub::Name) >= 0.04
|
2010-07-12 16:25:43 +02:00
|
|
|
Requires: perl(vars)
|
2011-03-31 10:28:13 +02:00
|
|
|
%{perl_requires}
|
2010-02-09 12:01:09 +01:00
|
|
|
|
|
|
|
%description
|
|
|
|
Keeping packages clean
|
2011-03-31 10:28:13 +02:00
|
|
|
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.
|
|
|
|
|
|
|
|
By unimporting via 'no' you can tell 'namespace::clean' to start
|
|
|
|
collecting functions for the next 'use namespace::clean;'
|
|
|
|
specification.
|
|
|
|
|
|
|
|
You can use the '-except' flag to tell 'namespace::clean' that you
|
|
|
|
don't want it to remove a certain function or method. A common use
|
|
|
|
would be a module exporting an 'import' method along with some
|
|
|
|
functions:
|
|
|
|
|
|
|
|
use ModuleExportingImport;
|
|
|
|
use namespace::clean -except => [qw( import )];
|
|
|
|
|
|
|
|
If you just want to '-except' a single sub, you can pass it directly.
|
|
|
|
For more than one value you have to use an array reference.
|
|
|
|
|
|
|
|
Explicitely removing functions when your scope is compiled
|
|
|
|
It is also possible to explicitely tell 'namespace::clean' what
|
|
|
|
packages to remove when the surrounding scope has finished compiling.
|
|
|
|
Here is an example:
|
|
|
|
|
|
|
|
package Foo;
|
|
|
|
use strict;
|
|
|
|
|
|
|
|
# blessed NOT available
|
|
|
|
|
|
|
|
sub my_class {
|
|
|
|
use Scalar::Util qw( blessed );
|
|
|
|
use namespace::clean qw( blessed );
|
|
|
|
|
|
|
|
# blessed available
|
|
|
|
return blessed shift;
|
|
|
|
}
|
|
|
|
|
|
|
|
# blessed NOT available
|
|
|
|
|
|
|
|
Moose
|
|
|
|
When using 'namespace::clean' together with the Moose manpage you want
|
|
|
|
to keep the installed 'meta' method. So your classes should look like:
|
|
|
|
|
|
|
|
package Foo;
|
|
|
|
use Moose;
|
|
|
|
use namespace::clean -except => 'meta';
|
|
|
|
...
|
|
|
|
|
|
|
|
Same goes for the Moose::Role manpage.
|
|
|
|
|
|
|
|
Cleaning other packages
|
|
|
|
You can tell 'namespace::clean' that you want to clean up another
|
|
|
|
package instead of the one importing. To do this you have to pass in
|
|
|
|
the '-cleanee' option like this:
|
|
|
|
|
|
|
|
package My::MooseX::namespace::clean;
|
|
|
|
use strict;
|
|
|
|
|
|
|
|
use namespace::clean (); # no cleanup, just load
|
|
|
|
|
|
|
|
sub import {
|
|
|
|
namespace::clean->import(
|
|
|
|
-cleanee => scalar(caller),
|
|
|
|
-except => 'meta',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
If you don't care about 'namespace::clean's discover-and-'-except'
|
|
|
|
logic, and just want to remove subroutines, try the /clean_subroutines
|
|
|
|
manpage.
|
2010-02-09 12:01:09 +01:00
|
|
|
|
|
|
|
%prep
|
2010-07-12 16:25:43 +02:00
|
|
|
%setup -q -n %{cpan_name}-%{version}
|
2010-02-09 12:01:09 +01:00
|
|
|
|
|
|
|
%build
|
|
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
2010-07-12 16:25:43 +02:00
|
|
|
%{__make} %{?_smp_mflags}
|
2010-02-09 12:01:09 +01:00
|
|
|
|
|
|
|
%check
|
2010-07-12 16:25:43 +02:00
|
|
|
%{__make} test
|
|
|
|
|
|
|
|
%install
|
|
|
|
%perl_make_install
|
2011-03-31 10:28:13 +02:00
|
|
|
%perl_process_packlist
|
2010-07-12 16:25:43 +02:00
|
|
|
%perl_gen_filelist
|
2010-02-09 12:01:09 +01:00
|
|
|
|
|
|
|
%clean
|
2011-03-31 10:28:13 +02:00
|
|
|
%{__rm} -rf %{buildroot}
|
2010-02-09 12:01:09 +01:00
|
|
|
|
2010-07-12 16:25:43 +02:00
|
|
|
%files -f %{name}.files
|
2011-03-31 10:28:13 +02:00
|
|
|
%defattr(644,root,root,755)
|
|
|
|
%doc Changes LICENSE README
|
2010-02-09 12:01:09 +01:00
|
|
|
|
|
|
|
%changelog
|