91 lines
3.2 KiB
RPMSpec
91 lines
3.2 KiB
RPMSpec
#
|
|
# spec file for package perl-Cache
|
|
#
|
|
# 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 Cache
|
|
Name: perl-Cache
|
|
Version: 2.110.0
|
|
Release: 0
|
|
# 2.11 -> normalize -> 2.110.0
|
|
%define cpan_version 2.11
|
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
|
Summary: Provide a generic Cache mechanism
|
|
URL: https://metacpan.org/release/%{cpan_name}
|
|
Source0: https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/%{cpan_name}-%{cpan_version}.tar.gz
|
|
Source100: README.md
|
|
BuildArch: noarch
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
BuildRequires: perl(Date::Parse) >= 2.24
|
|
BuildRequires: perl(Digest::SHA)
|
|
BuildRequires: perl(File::NFSLock) >= 1.200.0
|
|
BuildRequires: perl(Heap::Fibonacci) >= 0.01
|
|
BuildRequires: perl(IO::String) >= 1.02
|
|
BuildRequires: perl(Module::Build)
|
|
Requires: perl(Date::Parse) >= 2.24
|
|
Requires: perl(Digest::SHA)
|
|
Requires: perl(File::NFSLock) >= 1.200.0
|
|
Requires: perl(Heap::Fibonacci) >= 0.01
|
|
Requires: perl(IO::String) >= 1.02
|
|
Provides: perl(Cache) = %{version}
|
|
Provides: perl(Cache::Entry) = %{version}
|
|
Provides: perl(Cache::File) = %{version}
|
|
Provides: perl(Cache::File::Entry) = %{version}
|
|
Provides: perl(Cache::File::Handle)
|
|
Provides: perl(Cache::File::Heap) = %{version}
|
|
Provides: perl(Cache::IOString)
|
|
Provides: perl(Cache::Memory) = %{version}
|
|
Provides: perl(Cache::Memory::Entry) = %{version}
|
|
Provides: perl(Cache::Memory::HeapElem)
|
|
Provides: perl(Cache::Null) = %{version}
|
|
Provides: perl(Cache::Null::Entry) = %{version}
|
|
Provides: perl(Cache::RemovalStrategy) = %{version}
|
|
Provides: perl(Cache::RemovalStrategy::FIFO)
|
|
Provides: perl(Cache::RemovalStrategy::LRU)
|
|
Provides: perl(Cache::Tester) = %{version}
|
|
%undefine __perllib_provides
|
|
%{perl_requires}
|
|
|
|
%description
|
|
The Cache modules are designed to assist a developer in persisting data for
|
|
a specified period of time. Often these modules are used in web
|
|
applications to store data locally to save repeated and redundant expensive
|
|
calls to remote machines or databases.
|
|
|
|
The Cache interface is implemented by derived classes that store cached
|
|
data in different manners (such as files on a filesystem, or in memory).
|
|
|
|
%prep
|
|
%autosetup -n %{cpan_name}-%{cpan_version}
|
|
|
|
%build
|
|
perl Build.PL --installdirs=vendor
|
|
./Build build --flags=%{?_smp_mflags}
|
|
|
|
%check
|
|
./Build test
|
|
|
|
%install
|
|
./Build install --destdir=%{buildroot} --create_packlist=0
|
|
%perl_gen_filelist
|
|
|
|
%files -f %{name}.files
|
|
%doc Changes design.dia README TODO
|
|
%license LICENSE
|
|
|
|
%changelog
|