Files
perl-Dist-Zilla-Role-Plugin…/perl-Dist-Zilla-Role-PluginBundle-PluginRemover.spec
2025-08-12 18:13:47 +02:00

87 lines
2.7 KiB
RPMSpec

#
# spec file for package perl-Dist-Zilla-Role-PluginBundle-PluginRemover
#
# Copyright (c) 2024 SUSE LLC
#
# 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 https://bugs.opensuse.org/
#
%define cpan_name Dist-Zilla-Role-PluginBundle-PluginRemover
Name: perl-Dist-Zilla-Role-PluginBundle-PluginRemover
Version: 0.105.0
Release: 0
# 0.105 -> normalize -> 0.105.0
%define cpan_version 0.105
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: Add '-remove' functionality to a bundle
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/R/RW/RWSTAUNER/%{cpan_name}-%{cpan_version}.tar.gz
Source1: cpanspec.yml
Source100: README.md
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Dist::Zilla::Role::PluginBundle)
BuildRequires: perl(Dist::Zilla::Role::PluginBundle::Easy)
BuildRequires: perl(Dist::Zilla::Util)
BuildRequires: perl(List::Util) >= 1.45
BuildRequires: perl(Moose)
BuildRequires: perl(Moose::Role)
BuildRequires: perl(Test::More) >= 0.96
Requires: perl(Dist::Zilla::Util)
Requires: perl(List::Util) >= 1.45
Requires: perl(Moose::Role)
Provides: perl(Dist::Zilla::Role::PluginBundle::PluginRemover) = %{version}
%undefine __perllib_provides
%{perl_requires}
%description
This role enables your Dist::Zilla Plugin Bundle to automatically remove
any plugins specified by the '-remove' attribute (like @Filter does):
[@MyBundle]
-remove = PluginIDontWant
-remove = OtherDumbPlugin
If you want to use an attribute named '-remove' for your own bundle you can
override the 'plugin_remover_attribute' sub to define a different attribute
name:
# in your bundle package
sub plugin_remover_attribute { 'scurvy_cur' }
This role adds a method modifier to 'bundle_config', which is the method
that the root 'PluginBundle' role requires, and that 'PluginBundle::Easy'
wraps.
%prep
%autosetup -n %{cpan_name}-%{cpan_version}
%build
perl Makefile.PL INSTALLDIRS=vendor
%make_build
%check
make test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%doc Changes README
%license LICENSE
%changelog