93 lines
3.7 KiB
RPMSpec
93 lines
3.7 KiB
RPMSpec
#
|
|
# spec file for package perl-Tree-Simple-VisitorFactory
|
|
#
|
|
# 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 Tree-Simple-VisitorFactory
|
|
Name: perl-Tree-Simple-VisitorFactory
|
|
Version: 0.160.0
|
|
Release: 0
|
|
# 0.16 -> normalize -> 0.160.0
|
|
%define cpan_version 0.16
|
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
|
Summary: Factory object for dispensing Visitor objects
|
|
URL: https://metacpan.org/release/%{cpan_name}
|
|
Source0: https://cpan.metacpan.org/authors/id/R/RS/RSAVAGE/%{cpan_name}-%{cpan_version}.tgz
|
|
Source1: cpanspec.yml
|
|
Source100: README.md
|
|
BuildArch: noarch
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
BuildRequires: perl(Test::Exception) >= 0.15
|
|
BuildRequires: perl(Test::More) >= 1.001014
|
|
BuildRequires: perl(Tree::Simple) >= 1.120
|
|
BuildRequires: perl(Tree::Simple::Visitor) >= 1.220
|
|
Requires: perl(Tree::Simple) >= 1.120
|
|
Requires: perl(Tree::Simple::Visitor) >= 1.220
|
|
Provides: perl(Tree::Simple::Visitor::BreadthFirstTraversal) = %{version}
|
|
Provides: perl(Tree::Simple::Visitor::CreateDirectoryTree) = %{version}
|
|
Provides: perl(Tree::Simple::Visitor::FindByNodeValue) = %{version}
|
|
Provides: perl(Tree::Simple::Visitor::FindByPath) = %{version}
|
|
Provides: perl(Tree::Simple::Visitor::FindByUID) = %{version}
|
|
Provides: perl(Tree::Simple::Visitor::FromNestedArray) = %{version}
|
|
Provides: perl(Tree::Simple::Visitor::FromNestedHash) = %{version}
|
|
Provides: perl(Tree::Simple::Visitor::GetAllDescendents) = %{version}
|
|
Provides: perl(Tree::Simple::Visitor::LoadClassHierarchy) = %{version}
|
|
Provides: perl(Tree::Simple::Visitor::LoadDirectoryTree) = %{version}
|
|
Provides: perl(Tree::Simple::Visitor::PathToRoot) = %{version}
|
|
Provides: perl(Tree::Simple::Visitor::PostOrderTraversal) = %{version}
|
|
Provides: perl(Tree::Simple::Visitor::PreOrderTraversal) = %{version}
|
|
Provides: perl(Tree::Simple::Visitor::Sort) = %{version}
|
|
Provides: perl(Tree::Simple::Visitor::ToNestedArray) = %{version}
|
|
Provides: perl(Tree::Simple::Visitor::ToNestedHash) = %{version}
|
|
Provides: perl(Tree::Simple::Visitor::VariableDepthClone) = %{version}
|
|
Provides: perl(Tree::Simple::VisitorFactory) = %{version}
|
|
%undefine __perllib_provides
|
|
%{perl_requires}
|
|
|
|
%description
|
|
This object is really just a factory for dispensing
|
|
Tree::Simple::Visitor::* objects. It is not required to use this package in
|
|
order to use all the Visitors, it is just a somewhat convenient way to
|
|
avoid having to type their long class names.
|
|
|
|
I considered making this a Singleton, but I did not because I thought that
|
|
some people might not want that. I know that I am very picky about using
|
|
Singletons, especially in multiprocess environments like mod_perl, so I
|
|
implemented the smallest instance I knew how to, and made sure all other
|
|
methods could be called as class methods too.
|
|
|
|
%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
|