# # spec file for package perl-Package-DeprecationManager # # Copyright (c) 2016 SUSE LINUX 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-Package-DeprecationManager Version: 0.17 Release: 33.12 %define cpan_name Package-DeprecationManager Summary: Manage deprecation warnings for your distribution License: Artistic-2.0 Group: Development/Libraries/Perl Url: http://search.cpan.org/dist/Package-DeprecationManager/ Source0: http://www.cpan.org/authors/id/D/DR/DROLSKY/%{cpan_name}-%{version}.tar.gz Source1: cpanspec.yml BuildArch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: perl BuildRequires: perl-macros BuildRequires: perl(List::Util) >= 1.33 BuildRequires: perl(Package::Stash) BuildRequires: perl(Params::Util) BuildRequires: perl(Sub::Install) BuildRequires: perl(Sub::Name) BuildRequires: perl(Test::Fatal) BuildRequires: perl(Test::More) >= 0.96 BuildRequires: perl(Test::Warnings) Requires: perl(List::Util) >= 1.33 Requires: perl(Package::Stash) Requires: perl(Params::Util) Requires: perl(Sub::Install) Requires: perl(Sub::Name) %{perl_requires} %description This module allows you to manage a set of deprecations for one or more modules. When you import 'Package::DeprecationManager', you must provide a set of '-deprecations' as a hash ref. The keys are "feature" names, and the values are the version when that feature was deprecated. In many cases, you can simply use the fully qualified name of a subroutine or method as the feature name. This works for cases where the whole subroutine is deprecated. However, the feature names can be any string. This is useful if you don't want to deprecate an entire subroutine, just a certain usage. You can also provide an optional array reference in the '-ignore' parameter. The values to be ignored can be package names or regular expressions (made with 'qr//'). Use this to ignore packages in your distribution that can appear on the call stack when a deprecated feature is used. As part of the import process, 'Package::DeprecationManager' will export two subroutines into its caller. It provides an 'import()' sub for the caller and a 'deprecated()' sub. The 'import()' sub allows callers of _your_ class to specify an '-api_version' parameter. If this is supplied, then deprecation warnings are only issued for deprecations with API versions earlier than the one specified. You must call the 'deprecated()' sub in each deprecated subroutine. When called, it will issue a warning using 'Carp::cluck()'. The 'deprecated()' sub can be called in several ways. If you do not pass any arguments, it will generate an appropriate warning message. If you pass a single argument, this is used as the warning message. Finally, you can call it with named arguments. Currently, the only allowed names are 'message' and 'feature'. The 'feature' argument should correspond to the feature name passed in the '-deprecations' hash. If you don't explicitly specify a feature, the 'deprecated()' sub uses 'caller()' to identify its caller, using its fully qualified subroutine name. A given deprecation warning is only issued once for a given package. This module tracks this based on both the feature name _and_ the error message itself. This means that if you provide several different error messages for the same feature, all of those errors will appear. %prep %setup -q -n %{cpan_name}-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor %{__make} %{?_smp_mflags} %check %{__make} test %install %perl_make_install %perl_process_packlist %perl_gen_filelist %files -f %{name}.files %defattr(-,root,root,755) %doc Changes CONTRIBUTING.md LICENSE README.md %changelog * Thu Jun 23 2016 coolo@suse.com - updated to 0.17 see /usr/share/doc/packages/perl-Package-DeprecationManager/Changes 0.17 2016-06-17 - Remove use of namespace::autoclean. * Wed Mar 23 2016 coolo@suse.com - updated to 0.16 see /usr/share/doc/packages/perl-Package-DeprecationManager/Changes 0.16 2016-03-21 - The subs installed into the caller are now named with Sub::Name. This makes these subs appear to be part of the caller, as opposed to an import, which is what we want, since each installed sub is constructed uniquely for a given package. * Sat Nov 14 2015 coolo@suse.com - updated to 0.15 see /usr/share/doc/packages/perl-Package-DeprecationManager/Changes 0.15 2015-11-13 - Made this module co-operate with existing import() subs in packages that use this module, as long as you use this module last. * Sun Apr 19 2015 coolo@suse.com - updated to 0.14 see /usr/share/doc/packages/perl-Package-DeprecationManager/Changes 0.14 2015-04-18 - Use any() from List::Util 1.33+ instead of List::MoreUtils. * Wed Mar 20 2013 lars@linux-schulserver.de - remove Package-DeprecationManager-0.10-Build_n_Test.patch as it did not apply to newest version any more - use inline sed instead * Tue May 29 2012 coolo@suse.com - updated to 0.13 - Fix dist.ini to not add Test::Spelling as a requirement. (Tomas Doran) - Fix tests to pass with Carp 1.25. Reported by Andreas Koenig. RT#75520 * Mon Oct 31 2011 pascal.bleser@opensuse.org - update to 0.11: * allow an empty hash for the -deprecations parameter * Wed Dec 1 2010 coolo@novell.com - switch to perl_requires macro * Thu Nov 11 2010 chris@computersalat.de - recreated by cpanspec 1.78 o fixed deps - reworked Build_n_Test patch - noarch pkg * Tue Nov 2 2010 jw@novell.com - updated to 0.10, as 0.04 was too old for perl-Moose 0.19 * Mon Jul 26 2010 pascal.bleser@opensuse.org - initial package (0.04)