78 lines
2.5 KiB
RPMSpec
78 lines
2.5 KiB
RPMSpec
#
|
|
# spec file for package perl-Apache-Session-Wrapper
|
|
#
|
|
# 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 Apache-Session-Wrapper
|
|
Name: perl-Apache-Session-Wrapper
|
|
Version: 0.340.0
|
|
Release: 0
|
|
# 0.34 -> normalize -> 0.340.0
|
|
%define cpan_version 0.34
|
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
|
Summary: Simple wrapper around Apache::Session
|
|
URL: https://metacpan.org/release/%{cpan_name}
|
|
Source0: https://cpan.metacpan.org/authors/id/Y/YV/YVES/%{cpan_name}-%{cpan_version}.tar.gz
|
|
Source100: README.md
|
|
BuildArch: noarch
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
BuildRequires: perl(Apache::Session) >= 1.81
|
|
BuildRequires: perl(Class::Container)
|
|
BuildRequires: perl(Exception::Class)
|
|
BuildRequires: perl(Module::Build)
|
|
BuildRequires: perl(Params::Validate) >= 0.7
|
|
Requires: perl(Apache::Session) >= 1.81
|
|
Requires: perl(Class::Container)
|
|
Requires: perl(Exception::Class)
|
|
Requires: perl(Module::Build)
|
|
Requires: perl(Params::Validate) >= 0.7
|
|
Provides: perl(Apache::Session::Wrapper) = %{version}
|
|
%undefine __perllib_provides
|
|
%{perl_requires}
|
|
|
|
%description
|
|
This module is a simple wrapper around Apache::Session which provides some
|
|
methods to simplify getting and setting the session id.
|
|
|
|
It can uses cookies to store the session id, or it can look in a provided
|
|
object for a specific parameter. Alternately, you can simply provide the
|
|
session id yourself in the call to the 'session()' method.
|
|
|
|
If you're using Mason, you should probably take a look at
|
|
'MasonX::Request::WithApacheSession' first, which integrates this module
|
|
directly into Mason.
|
|
|
|
%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 README
|
|
%license LICENSE
|
|
|
|
%changelog
|