perl-Object-Pad/perl-Object-Pad.spec

405 lines
13 KiB
RPMSpec
Raw Permalink Normal View History

2020-07-28 07:19:15 +00:00
# Enable debugging with Devel::MAT
%bcond_with perl_Object_Pad_enables_Devel_MAT
# Perform optional tests
%bcond_without perl_Object_Pad_enables_optional_test
Name: perl-Object-Pad
2023-10-23 12:07:50 +00:00
Version: 0.805
2023-08-10 09:24:15 +00:00
Release: 1%{dist}
2020-07-28 07:19:15 +00:00
Summary: Simple syntax for lexical slot-based objects
2022-07-07 11:30:03 +00:00
License: GPL-1.0-or-later OR Artistic-1.0-Perl
2020-07-28 07:26:11 +00:00
URL: https://metacpan.org/release/Object-Pad
2020-07-28 07:19:15 +00:00
Source0: https://cpan.metacpan.org/authors/id/P/PE/PEVANS/Object-Pad-%{version}.tar.gz
2021-08-09 15:03:13 +00:00
Source1: macros.perl-Object-Pad
2020-07-28 07:19:15 +00:00
BuildRequires: coreutils
BuildRequires: perl-devel
BuildRequires: perl-generators
BuildRequires: perl-interpreter
2021-08-09 15:03:13 +00:00
BuildRequires: perl(:VERSION) >= 5.14
2020-07-28 07:19:15 +00:00
BuildRequires: perl(Config)
%if %{with perl_Object_Pad_enables_Devel_MAT}
2022-04-04 13:27:15 +00:00
BuildRequires: perl(Devel::MAT::Dumper::Helper) >= 0.45
2020-07-28 07:19:15 +00:00
%endif
BuildRequires: perl(ExtUtils::CBuilder)
BuildRequires: perl(Module::Build)
BuildRequires: perl(strict)
BuildRequires: perl(warnings)
2023-08-10 09:24:15 +00:00
%define xs_parse_keyword_min_ver 0.37
2021-10-08 07:48:10 +00:00
BuildRequires: perl(XS::Parse::Keyword::Builder) >= %{xs_parse_keyword_min_ver}
2021-12-16 15:59:30 +00:00
%define xs_parse_sublike_min_ver 0.15
2021-10-08 07:48:10 +00:00
BuildRequires: perl(XS::Parse::Sublike::Builder) >= %{xs_parse_sublike_min_ver}
2020-07-28 07:19:15 +00:00
# Run-time:
BuildRequires: perl(Carp)
2021-07-29 15:23:33 +00:00
BuildRequires: perl(DynaLoader)
2020-07-28 07:19:15 +00:00
# experimental since perl 5.20
BuildRequires: perl(experimental)
2022-08-17 14:14:29 +00:00
BuildRequires: perl(Exporter)
2020-07-28 07:19:15 +00:00
BuildRequires: perl(feature)
# indirect not used (only with 5.20.0 <= perl < 5.31.9)
BuildRequires: perl(mro)
2022-08-17 14:14:29 +00:00
# Object::Pad::MetaFunctions only loads Scalar::Util if "builtin" module does
# exist (i.e. perl < 5.35.7).
2021-05-25 08:09:34 +00:00
# XS::Parse::Keyword is loaded from a header file generated by ./Build.PL,
2021-08-09 15:03:13 +00:00
# version specified in lib/Object/Pad.xs
2021-10-08 07:48:10 +00:00
BuildRequires: perl(XS::Parse::Keyword) >= %{xs_parse_keyword_min_ver}
2021-05-25 08:09:34 +00:00
# XS::Parse::Sublike is loaded from a header file generated by ./Build.PL,
# version specified in lib/Object/Pad.xs
2021-10-08 07:48:10 +00:00
BuildRequires: perl(XS::Parse::Sublike) >= %{xs_parse_sublike_min_ver}
2020-07-28 07:19:15 +00:00
# Tests:
BuildRequires: perl(attributes)
BuildRequires: perl(base)
2022-02-02 12:56:54 +00:00
BuildRequires: perl(constant)
BuildRequires: perl(Data::Dumper)
2022-03-02 09:13:42 +00:00
BuildRequires: perl(lib)
2020-07-28 07:19:15 +00:00
BuildRequires: perl(Scalar::Util)
2023-05-15 11:01:51 +00:00
BuildRequires: perl(Test2::V0) >= 0.000148
BuildRequires: perl(Test2::IPC)
BuildRequires: perl(threads)
2021-08-03 11:51:34 +00:00
BuildRequires: perl(utf8)
2020-07-28 07:19:15 +00:00
%if %{with perl_Object_Pad_enables_optional_test} && !%{defined perl_bootstrap}
# A cycle: perl-Future-AsyncAwait → perl-Object-Pad
# A cycle: perl-Syntax-Keyword-Dynamically → perl-Object-Pad
# Optional tests:
2023-01-03 13:52:04 +00:00
%define future_min_ver 0.49
BuildRequires: perl(Future) >= %{future_min_ver}
2021-10-08 07:48:10 +00:00
%define future_asyncawait_min_ver 0.45
BuildRequires: perl(Future::AsyncAwait) >= %{future_asyncawait_min_ver}
2023-01-03 13:52:04 +00:00
# Some tests are skipped with Future::XS < 0.08
2020-07-28 07:19:15 +00:00
BuildRequires: perl(Moo)
2023-09-21 08:02:39 +00:00
BuildRequires: perl(Sublike::Extended)
2021-10-08 07:48:10 +00:00
%define syntax_keyword_dynamically_min_ver 0.04
BuildRequires: perl(Syntax::Keyword::Dynamically) >= %{syntax_keyword_dynamically_min_ver}
2020-07-28 07:19:15 +00:00
BuildRequires: perl(Test::MemoryGrowth)
BuildRequires: perl(Test::Pod) >= 1.00
%endif
2022-04-04 13:27:15 +00:00
%if %{with perl_Object_Pad_enables_optional_test} && %{with perl_Object_Pad_enables_Devel_MAT}
BuildRequires: perl(Devel::MAT) >= 0.46
BuildRequires: perl(Devel::MAT::Dumper)
BuildRequires: perl(List::Util)
%endif
# experimental since perl 5.20
2020-07-28 07:19:15 +00:00
Requires: perl(experimental)
Requires: perl(strict)
2021-10-08 07:48:10 +00:00
Requires: perl(XS::Parse::Keyword) >= %{xs_parse_keyword_min_ver}
2021-06-03 11:10:31 +00:00
%if %{defined perl_XS_Parse_Keyword_ABI}
Requires: %{perl_XS_Parse_Keyword_ABI}
%endif
2021-10-08 07:48:10 +00:00
Requires: perl(XS::Parse::Sublike) >= %{xs_parse_sublike_min_ver}
2021-08-10 12:44:36 +00:00
# This module maintains multiple ABIs. Plugins pin to an ABI with
# OBJECTPAD_ABIVERSION macro defined in include/object_pad.h.
# The ABI range is checked at run time against ClassHookFuncs.ver
2022-03-02 09:13:42 +00:00
# field by ObjectPad_register_field_attribute().
Provides: perl(:Object_Pad_ABI) = 0.57
2023-01-03 13:52:04 +00:00
Provides: perl(:Object_Pad_ABI) = 0.76
2020-07-28 07:19:15 +00:00
2021-02-19 16:59:24 +00:00
# Filter private modules
%global __requires_exclude %{?__requires_exclude:%{__requires_exclude}|}^perl\\((91rt141483Role|ARole|BaseClass)\\)
2021-02-19 16:59:24 +00:00
2020-07-28 07:19:15 +00:00
%description
This Perl module provides a simple syntax for creating object classes, which
uses private variables that look like lexical variables for object member
fields.
2021-02-19 16:59:24 +00:00
%package tests
Summary: Tests for %{name}
BuildArch: noarch
Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release}
2021-08-10 12:44:36 +00:00
Requires: %{name}-ExtensionBuilder = %{?epoch:%{epoch}:}%{version}-%{release}
2021-02-19 16:59:24 +00:00
Requires: perl-Test-Harness
2023-05-15 11:01:51 +00:00
Requires: perl(Config)
2021-02-19 16:59:24 +00:00
Requires: perl(strict)
%if %{with perl_Object_Pad_enables_optional_test} && !%{defined perl_bootstrap}
2023-01-03 13:52:04 +00:00
Requires: perl(Future) >= %{future_min_ver}
2021-10-08 07:48:10 +00:00
Requires: perl(Future::AsyncAwait) >= %{future_asyncawait_min_ver}
2023-09-21 08:02:39 +00:00
Requires: perl(Sublike::Extended)
2021-10-08 07:48:10 +00:00
Requires: perl(Syntax::Keyword::Dynamically) >= %{syntax_keyword_dynamically_min_ver}
2021-02-19 16:59:24 +00:00
Requires: perl(Test::MemoryGrowth)
%endif
2022-04-04 13:27:15 +00:00
%if %{with perl_Object_Pad_enables_optional_test} && %{with perl_Object_Pad_enables_Devel_MAT}
Requires: perl(Devel::MAT) >= 0.46
Requires: perl(Devel::MAT::Dumper)
Requires: perl(List::Util)
%endif
2021-02-19 16:59:24 +00:00
%description tests
Tests from %{name}. Execute them
with "%{_libexecdir}/%{name}/test".
2021-08-09 15:03:13 +00:00
%package ExtensionBuilder
Summary: Build-time support for Object::Pad plugins
Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
Requires: perl-interpreter
# rpm for /usr/lib/rpm/macros.d directory
Requires: rpm
%description ExtensionBuilder
This package provides a build-time helper to assist the authors in writing XS
plugins for Object::Pad. It prepares a Module::Build-driven distribution to be
able to make use of Object::Pad.
2020-07-28 07:19:15 +00:00
%prep
%autosetup -p1 -n Object-Pad-%{version}
2022-04-04 13:27:15 +00:00
for F in \
2020-07-28 07:19:15 +00:00
%if !%{with perl_Object_Pad_enables_optional_test} || %{defined perl_bootstrap}
2022-04-04 13:27:15 +00:00
t/08subclass-Moo.t t/80async-method.t t/80dynamically+Object-Pad.t \
2023-09-21 08:02:39 +00:00
t/80extended+Object-Pad.t t/81async-method+dynamically.t \
t/90leak.t t/99pod.t \
2022-04-04 13:27:15 +00:00
%endif
%if !%{with perl_Object_Pad_enables_optional_test} || !%{with perl_Object_Pad_enables_Devel_MAT}
t/82devel-mat-dumper-helper.t \
%endif
; do
2020-07-28 07:19:15 +00:00
rm "$F"
perl -i -ne 'print $_ unless m{^\Q'"$F"'\E\b}' MANIFEST
done
2021-02-19 16:59:24 +00:00
chmod +x t/*.t
2020-07-28 07:19:15 +00:00
%build
perl Build.PL --installdirs=vendor --optimize="$RPM_OPT_FLAGS"
./Build
%install
2021-05-14 06:52:16 +00:00
./Build install --destdir=%{buildroot} --create_packlist=0
find %{buildroot} -type f -name '*.bs' -size 0 -delete
%{_fixperms} %{buildroot}/*
2021-08-09 15:03:13 +00:00
install -D -m 0644 -t %{buildroot}%{_rpmmacrodir} %{SOURCE1}
2021-02-19 16:59:24 +00:00
# Install tests
mkdir -p %{buildroot}/%{_libexecdir}/%{name}
cp -a t %{buildroot}/%{_libexecdir}/%{name}
%if %{with perl_Object_Pad_enables_optional_test} && !%{defined perl_bootstrap}
rm %{buildroot}/%{_libexecdir}/%{name}/t/99pod.t
%endif
cat > %{buildroot}/%{_libexecdir}/%{name}/test << 'EOF'
#!/bin/sh
cd %{_libexecdir}/%{name} && exec prove -I . -j "$(getconf _NPROCESSORS_ONLN)"
EOF
chmod +x %{buildroot}/%{_libexecdir}/%{name}/test
2020-07-28 07:19:15 +00:00
%check
2021-02-19 16:59:24 +00:00
export HARNESS_OPTIONS=j$(perl -e 'if ($ARGV[0] =~ /.*-j([0-9][0-9]*).*/) {print $1} else {print 1}' -- '%{?_smp_mflags}')
2020-07-28 07:19:15 +00:00
./Build test
%files
%license LICENSE
%doc Changes README
2022-12-01 07:33:18 +00:00
%dir %{perl_vendorarch}/auto/Object
%{perl_vendorarch}/auto/Object/Pad
2021-08-09 15:03:13 +00:00
%dir %{perl_vendorarch}/Object
%{perl_vendorarch}/Object/Pad.pm
%dir %{perl_vendorarch}/Object/Pad
2022-08-17 14:14:29 +00:00
%{perl_vendorarch}/Object/Pad/MetaFunctions.pm
2021-08-09 15:03:13 +00:00
%{perl_vendorarch}/Object/Pad/MOP
%{_mandir}/man3/Object::Pad.*
2022-08-17 14:14:29 +00:00
%{_mandir}/man3/Object::Pad::MetaFunctions*
2021-08-09 15:03:13 +00:00
%{_mandir}/man3/Object::Pad::MOP::*
%files ExtensionBuilder
%{perl_vendorarch}/Object/Pad/ExtensionBuilder*
%{_mandir}/man3/Object::Pad::ExtensionBuilder*
%{_rpmmacrodir}/macros.%{name}
2020-07-28 07:19:15 +00:00
2021-02-19 16:59:24 +00:00
%files tests
%{_libexecdir}/%{name}
2020-07-28 07:19:15 +00:00
%changelog
2023-10-23 12:07:50 +00:00
* Mon Oct 23 2023 Petr Pisar <ppisar@redhat.com> - 0.805-1
- 0.805 bump
2023-10-05 08:58:53 +00:00
* Thu Oct 05 2023 Petr Pisar <ppisar@redhat.com> - 0.804-1
- 0.804 bump
2023-09-21 08:02:39 +00:00
* Thu Sep 21 2023 Petr Pisar <ppisar@redhat.com> - 0.803-1
- 0.803 bump
2023-08-23 08:33:36 +00:00
* Wed Aug 23 2023 Petr Pisar <ppisar@redhat.com> - 0.802-1
- 0.802 bump
2023-08-11 07:54:43 +00:00
* Fri Aug 11 2023 Petr Pisar <ppisar@redhat.com> - 0.801-1
- 0.801 bump
2023-08-10 09:24:15 +00:00
* Thu Aug 10 2023 Petr Pisar <ppisar@redhat.com> - 0.800-1
- 0.800 bump
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.79-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
* Wed Jul 12 2023 Jitka Plesnikova <jplesnik@redhat.com> - 0.79-3
- Perl 5.38 re-rebuild of bootstrapped packages
2023-07-11 14:08:50 +00:00
* Tue Jul 11 2023 Jitka Plesnikova <jplesnik@redhat.com> - 0.79-2
- Perl 5.38 rebuild
2023-05-15 11:01:51 +00:00
* Mon May 15 2023 Petr Pisar <ppisar@redhat.com> - 0.79-1
- 0.79 bump
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.78-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
2023-01-13 08:17:55 +00:00
* Fri Jan 13 2023 Petr Pisar <ppisar@redhat.com> - 0.78-1
- 0.78 bump
2023-01-03 13:52:04 +00:00
* Tue Jan 03 2023 Petr Pisar <ppisar@redhat.com> - 0.77-1
- 0.77 bump
2022-12-05 14:31:03 +00:00
* Mon Dec 05 2022 Petr Pisar <ppisar@redhat.com> - 0.74-1
- 0.74 bump
2022-12-01 07:33:18 +00:00
* Thu Dec 01 2022 Petr Pisar <ppisar@redhat.com> - 0.72-1
- 0.72 bump
2022-11-01 17:26:24 +00:00
* Tue Nov 01 2022 Petr Pisar <ppisar@redhat.com> - 0.71-1
- 0.71 bump
2022-11-01 08:11:56 +00:00
* Tue Nov 01 2022 Petr Pisar <ppisar@redhat.com> - 0.70-1
- 0.70 bump
* Wed Oct 26 2022 Petr Pisar <ppisar@redhat.com> - 0.69-2
- Remove a dependency on a private module 91rt141483Role from
perl-Object-Pad-tests
2022-10-26 08:20:20 +00:00
* Wed Oct 26 2022 Petr Pisar <ppisar@redhat.com> - 0.69-1
- 0.69 bump
2022-08-17 14:14:29 +00:00
* Wed Aug 17 2022 Petr Pisar <ppisar@redhat.com> - 0.68-1
- 0.68 bump
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.66-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
2022-07-07 11:30:03 +00:00
* Thu Jul 07 2022 Petr Pisar <ppisar@redhat.com> - 0.66-1
- 0.66 bump
* Fri Jun 03 2022 Jitka Plesnikova <jplesnik@redhat.com> - 0.65-3
- Perl 5.36 re-rebuild of bootstrapped packages
2022-05-31 20:16:17 +00:00
* Tue May 31 2022 Jitka Plesnikova <jplesnik@redhat.com> - 0.65-2
- Perl 5.36 rebuild
2022-05-12 10:33:01 +00:00
* Thu May 12 2022 Petr Pisar <ppisar@redhat.com> - 0.65-1
- 0.65 bump
2022-04-04 13:27:15 +00:00
* Mon Apr 04 2022 Petr Pisar <ppisar@redhat.com> - 0.64-1
- 0.64 bump
2022-03-08 08:19:33 +00:00
* Tue Mar 08 2022 Petr Pisar <ppisar@redhat.com> - 0.63-1
- 0.63 bump
2022-03-02 09:13:42 +00:00
* Wed Mar 02 2022 Petr Pisar <ppisar@redhat.com> - 0.62-1
- 0.62 bump
2022-02-17 10:06:44 +00:00
* Thu Feb 17 2022 Petr Pisar <ppisar@redhat.com> - 0.61-1
- 0.61 bump
2022-02-02 12:56:54 +00:00
* Wed Feb 02 2022 Petr Pisar <ppisar@redhat.com> - 0.60-1
- 0.60 bump (ABI 0.51 removed)
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.59-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
2021-12-16 15:59:30 +00:00
* Thu Dec 16 2021 Petr Pisar <ppisar@redhat.com> - 0.59-1
- 0.59 bump
2021-11-26 10:44:15 +00:00
* Fri Nov 26 2021 Petr Pisar <ppisar@redhat.com> - 0.58-1
- 0.58 bump
* Fri Nov 19 2021 Petr Pisar <ppisar@redhat.com> - 0.57-1
- 0.57 bump (ABI 0.50 removed, ABI 0.57 added)
2021-10-25 12:45:07 +00:00
* Mon Oct 25 2021 Petr Pisar <ppisar@redhat.com> - 0.56-1
- 0.56 bump
2021-10-12 08:37:40 +00:00
* Tue Oct 12 2021 Petr Pisar <ppisar@redhat.com> - 0.55-1
- 0.55 bump (bug #2013049)
2021-10-08 07:48:10 +00:00
* Fri Oct 08 2021 Petr Pisar <ppisar@redhat.com> - 0.54-1
- 0.54 bump
2021-09-29 12:43:56 +00:00
* Wed Sep 29 2021 Petr Pisar <ppisar@redhat.com> - 0.53-1
- 0.53 bump
* Tue Aug 31 2021 Petr Pisar <ppisar@redhat.com> - 0.52-2
- Require perl(strict)
2021-08-26 20:49:47 +00:00
* Thu Aug 26 2021 Jitka Plesnikova <jplesnik@redhat.com> - 0.52-1
- 0.52 bump
* Tue Aug 17 2021 Petr Pisar <ppisar@redhat.com> - 0.51-3
- Finish bootstrap against perl-XS-Parse-Keyword-0.12 (bug #1994077)
* Tue Aug 17 2021 Petr Pisar <ppisar@redhat.com> - 0.51-2
- Bootstrap against perl-XS-Parse-Keyword-0.12 (bug #1994077)
2021-08-10 12:44:36 +00:00
* Tue Aug 10 2021 Petr Pisar <ppisar@redhat.com> - 0.51-1
- 0.51 bump
2021-08-09 15:03:13 +00:00
* Mon Aug 09 2021 Petr Pisar <ppisar@redhat.com> - 0.50-1
- 0.50 bump
2021-08-03 11:51:34 +00:00
* Tue Aug 03 2021 Petr Pisar <ppisar@redhat.com> - 0.48-1
- 0.48 bump
2021-07-29 15:23:33 +00:00
* Thu Jul 29 2021 Petr Pisar <ppisar@redhat.com> - 0.47-1
- 0.47 bump
- Fix a crash in when generating classes at run-time (CPAN RT#137952)
2021-07-29 15:23:33 +00:00
2021-07-22 06:49:18 +00:00
* Thu Jul 29 2021 Petr Pisar <ppisar@redhat.com> - 0.46-1
- 0.46 bump
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.45-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
2021-07-19 07:54:38 +00:00
* Mon Jul 19 2021 Petr Pisar <ppisar@redhat.com> - 0.45-1
- 0.45 bump
2021-07-15 14:59:47 +00:00
* Thu Jul 15 2021 Petr Pisar <ppisar@redhat.com> - 0.44-1
- 0.44 bump
2021-07-07 06:43:41 +00:00
* Wed Jul 07 2021 Petr Pisar <ppisar@redhat.com> - 0.43-1
- 0.43 bump
2021-07-02 06:21:46 +00:00
* Fri Jul 02 2021 Petr Pisar <ppisar@redhat.com> - 0.42-1
- 0.42 bump
2021-06-22 07:53:20 +00:00
* Tue Jun 22 2021 Petr Pisar <ppisar@redhat.com> - 0.41-1
- 0.41 bump
2021-06-03 11:10:31 +00:00
* Thu Jun 03 2021 Petr Pisar <ppisar@redhat.com> - 0.40-1
- 0.40 bump
2021-05-25 08:09:34 +00:00
* Tue May 25 2021 Petr Pisar <ppisar@redhat.com> - 0.39-1
- 0.39 bump
* Mon May 24 2021 Jitka Plesnikova <jplesnik@redhat.com> - 0.38-3
- Perl 5.34 re-rebuild of bootstrapped packages
2021-05-21 20:57:44 +00:00
* Fri May 21 2021 Jitka Plesnikova <jplesnik@redhat.com> - 0.38-2
- Perl 5.34 rebuild
2021-05-14 06:52:16 +00:00
* Fri May 14 2021 Petr Pisar <ppisar@redhat.com> - 0.38-1
- 0.38 bump
2021-04-06 10:30:12 +00:00
* Tue Apr 06 2021 Petr Pisar <ppisar@redhat.com> - 0.37-1
- 0.37 bump
2021-02-19 16:24:12 +00:00
* Fri Feb 19 2021 Petr Pisar <ppisar@redhat.com> - 0.36-1
- 0.36 bump
2021-02-19 16:59:24 +00:00
- Package tests
2021-02-19 16:24:12 +00:00
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.35-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
2021-01-05 16:54:26 +00:00
* Tue Jan 05 2021 Petr Pisar <ppisar@redhat.com> - 0.35-1
- 0.35 bump
2020-11-05 15:32:29 +00:00
* Thu Nov 05 2020 Petr Pisar <ppisar@redhat.com> - 0.34-1
- 0.34 bump
2020-09-16 13:37:41 +00:00
* Wed Sep 16 2020 Petr Pisar <ppisar@redhat.com> - 0.33-1
- 0.33 bump
2020-07-28 13:32:28 +00:00
* Tue Jul 28 2020 Petr Pisar <ppisar@redhat.com> - 0.31-2
- Finish a bootstrap
2020-07-28 07:19:15 +00:00
* Wed Jul 15 2020 Petr Pisar <ppisar@redhat.com> 0.31-1
- Specfile autogenerated by cpanspec 1.78.