2021-05-04 11:16:44 +00:00
|
|
|
# Perform optional tests
|
|
|
|
%bcond_without perl_XS_Parse_Keyword_enables_optional_test
|
|
|
|
|
|
|
|
Name: perl-XS-Parse-Keyword
|
2021-08-26 17:28:55 +00:00
|
|
|
Version: 0.13
|
2021-08-31 12:43:42 +00:00
|
|
|
Release: 2%{?dist}
|
2021-05-04 11:16:44 +00:00
|
|
|
Summary: XS functions to assist in parsing keyword syntax
|
|
|
|
License: GPL+ or Artistic
|
|
|
|
URL: https://metacpan.org/release/XS-Parse-Keyword
|
|
|
|
Source0: https://cpan.metacpan.org/authors/id/P/PE/PEVANS/XS-Parse-Keyword-%{version}.tar.gz
|
2021-06-02 14:40:01 +00:00
|
|
|
Source1: macros.perl-XS-Parse-Keyword
|
2021-05-04 11:16:44 +00:00
|
|
|
BuildRequires: coreutils
|
|
|
|
BuildRequires: perl-devel
|
|
|
|
BuildRequires: perl-generators
|
|
|
|
BuildRequires: perl-interpreter
|
2021-07-13 07:11:35 +00:00
|
|
|
BuildRequires: perl(:VERSION) >= 5.14
|
|
|
|
BuildRequires: perl(B)
|
2021-05-04 11:16:44 +00:00
|
|
|
BuildRequires: perl(base)
|
|
|
|
BuildRequires: perl(ExtUtils::CBuilder)
|
2021-07-13 07:11:35 +00:00
|
|
|
BuildRequires: perl(ExtUtils::CChecker) >= 0.11
|
2021-05-04 11:16:44 +00:00
|
|
|
BuildRequires: perl(lib)
|
|
|
|
BuildRequires: perl(Module::Build)
|
|
|
|
BuildRequires: perl(strict)
|
|
|
|
BuildRequires: perl(warnings)
|
|
|
|
# Run-time:
|
2021-07-13 07:11:35 +00:00
|
|
|
BuildRequires: perl(constant)
|
2021-05-04 11:16:44 +00:00
|
|
|
BuildRequires: perl(XSLoader)
|
|
|
|
# Tests:
|
|
|
|
BuildRequires: perl(Test::More) >= 0.88
|
|
|
|
%if %{with perl_XS_Parse_Keyword_enables_optional_test}
|
|
|
|
# Optional tests:
|
|
|
|
BuildRequires: perl(Test::Pod) >= 1.00
|
|
|
|
%endif
|
|
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
2021-06-02 08:29:26 +00:00
|
|
|
# This module maintains multiple ABIs whose compatibility is checked at
|
|
|
|
# run-time by S_boot_xs_parse_keyword() compiled into the users of this module.
|
|
|
|
# The ABI range is defined with XS::Parse::Keyword/ABIVERSION_MIN and
|
|
|
|
# XS::Parse::Keyword/ABIVERSION_MAX in lib/XS/Parse/Keyword.xs.
|
2021-08-31 12:43:42 +00:00
|
|
|
Provides: perl(:XS_Parse_Keyword_ABI_1)
|
2021-08-17 07:37:52 +00:00
|
|
|
Provides: perl(:XS_Parse_Keyword_ABI_2)
|
2021-05-04 11:16:44 +00:00
|
|
|
|
|
|
|
# Remove under-specified dependencies
|
|
|
|
%global __requires_exclude %{?__requires_exclude:%{__requires_exclude}|}^perl\\(Test::More\\)$
|
|
|
|
# Filter private modules
|
|
|
|
%global __requires_exclude %{__requires_exclude}|^perl\\(testcase\\)
|
|
|
|
%global __provides_exclude %{?__provides_exclude:%{__provides_exclude}|}^perl\\(testcase\\)
|
|
|
|
|
|
|
|
%description
|
|
|
|
This module provides some XS functions to assist in writing syntax modules
|
|
|
|
that provide new perl-visible syntax, primarily for authors of keyword plugins
|
|
|
|
using the PL_keyword_plugin hook mechanism.
|
|
|
|
|
2021-06-02 14:40:01 +00:00
|
|
|
%package Builder
|
|
|
|
Summary: Build-time support for XS::Parse::Keyword
|
|
|
|
Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
|
Requires: perl-interpreter
|
|
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
|
|
|
# Subpackaged in 0.06
|
|
|
|
Conflicts: %{name}%{?_isa} < 0.06
|
|
|
|
|
|
|
|
%description Builder
|
|
|
|
This module provides a build-time helper to assist authors writing XS modules
|
|
|
|
that use XS::Parse::Keyword. It prepares a Module::Build-using distribution to
|
|
|
|
be able to make use of XS::Parse::Keyword.
|
|
|
|
|
2021-05-04 11:16:44 +00:00
|
|
|
%package tests
|
|
|
|
Summary: Tests for %{name}
|
|
|
|
Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
|
Requires: perl-Test-Harness
|
|
|
|
Requires: perl(Test::More) >= 0.88
|
2021-05-04 11:43:38 +00:00
|
|
|
Requires: perl(XSLoader)
|
2021-05-04 11:16:44 +00:00
|
|
|
|
|
|
|
%description tests
|
|
|
|
Tests from %{name}. Execute them
|
|
|
|
with "%{_libexecdir}/%{name}/test".
|
|
|
|
|
|
|
|
%prep
|
2021-08-17 07:37:52 +00:00
|
|
|
%autosetup -p1 -n XS-Parse-Keyword-%{version}
|
2021-05-04 11:16:44 +00:00
|
|
|
%if !%{with perl_XS_Parse_Keyword_enables_optional_test}
|
|
|
|
rm t/99pod.t
|
|
|
|
perl -i -ne 'print $_ unless m{\A\Qt/99pod.t\E\b}' MANIFEST
|
|
|
|
%endif
|
|
|
|
chmod +x t/*.t
|
|
|
|
|
|
|
|
%build
|
|
|
|
perl Build.PL --installdirs=vendor --optimize="$RPM_OPT_FLAGS"
|
|
|
|
./Build
|
|
|
|
# Build object files for tests now. They are installed into tests subpackage.
|
|
|
|
./Build testlib
|
|
|
|
|
|
|
|
%install
|
|
|
|
./Build install --destdir=%{buildroot} --create_packlist=0
|
|
|
|
find %{buildroot} -type f -name '*.bs' -size 0 -delete
|
|
|
|
%{_fixperms} %{buildroot}/*
|
2021-06-02 14:40:01 +00:00
|
|
|
install -D -m 0644 -t %{buildroot}%{_rpmmacrodir} %{SOURCE1}
|
2021-05-04 11:16:44 +00:00
|
|
|
# Install tests
|
|
|
|
mkdir -p %{buildroot}%{_libexecdir}/%{name}
|
|
|
|
cp -a t %{buildroot}%{_libexecdir}/%{name}
|
|
|
|
find %{buildroot}%{_libexecdir}/%{name} -type f \
|
|
|
|
\( -name '*.bs' -o -name '*.c' -o -name '*.o' \) -delete
|
|
|
|
%if %{with perl_XS_Parse_Keyword_enables_optional_test}
|
|
|
|
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
|
|
|
|
|
|
|
|
%check
|
|
|
|
export HARNESS_OPTIONS=j$(perl -e 'if ($ARGV[0] =~ /.*-j([0-9][0-9]*).*/) {print $1} else {print 1}' -- '%{?_smp_mflags}')
|
|
|
|
./Build test
|
|
|
|
|
|
|
|
%files
|
|
|
|
%license LICENSE
|
|
|
|
%doc Changes README
|
|
|
|
%{perl_vendorarch}/auto/*
|
2021-06-02 14:40:01 +00:00
|
|
|
%dir %{perl_vendorarch}/XS
|
|
|
|
%dir %{perl_vendorarch}/XS/Parse
|
|
|
|
%{perl_vendorarch}/XS/Parse/Keyword.pm
|
|
|
|
%{_mandir}/man3/XS::Parse::Keyword.*
|
|
|
|
|
|
|
|
%files Builder
|
|
|
|
%{perl_vendorarch}/XS/Parse/Keyword
|
|
|
|
%{_mandir}/man3/XS::Parse::Keyword::*
|
|
|
|
%{_rpmmacrodir}/macros.%{name}
|
2021-05-04 11:16:44 +00:00
|
|
|
|
|
|
|
%files tests
|
|
|
|
%{_libexecdir}/%{name}
|
|
|
|
|
|
|
|
%changelog
|
2021-08-31 12:43:42 +00:00
|
|
|
* Tue Aug 31 2021 Petr Pisar <ppisar@redhat.com> - 0.13-2
|
|
|
|
- Return ABI 1
|
|
|
|
|
2021-08-26 17:28:55 +00:00
|
|
|
* Thu Aug 26 2021 Jitka Plesnikova <jplesnik@redhat.com> - 0.13-1
|
|
|
|
- 0.13 bump
|
|
|
|
|
2021-08-17 07:37:52 +00:00
|
|
|
* Tue Aug 17 2021 Petr Pisar <ppisar@redhat.com> - 0.12-2
|
|
|
|
- Bump ABI because XSParseKeywordPieceType changed size (bug #1994077)
|
|
|
|
|
2021-08-17 05:48:42 +00:00
|
|
|
* Tue Aug 17 2021 Petr Pisar <ppisar@redhat.com> - 0.12-1
|
|
|
|
- 0.12 bump
|
|
|
|
|
2021-08-09 14:11:48 +00:00
|
|
|
* Mon Aug 09 2021 Petr Pisar <ppisar@redhat.com> - 0.11-2
|
|
|
|
- Fix perl_XS_Parse_Keyword_ABI macro
|
|
|
|
|
2021-08-03 14:54:21 +00:00
|
|
|
* Tue Aug 03 2021 Petr Pisar <ppisar@redhat.com> - 0.11-1
|
|
|
|
- 0.11 bump
|
|
|
|
|
2021-07-23 01:12:38 +00:00
|
|
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.10-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-07-14 05:50:24 +00:00
|
|
|
* Wed Jul 14 2021 Petr Pisar <ppisar@redhat.com> - 0.10-1
|
|
|
|
- 0.10 bump
|
|
|
|
|
2021-07-13 07:11:35 +00:00
|
|
|
* Tue Jul 13 2021 Petr Pisar <ppisar@redhat.com> - 0.09-1
|
|
|
|
- 0.09 bump
|
|
|
|
|
2021-06-18 11:28:13 +00:00
|
|
|
* Fri Jun 18 2021 Petr Pisar <ppisar@redhat.com> - 0.08-1
|
|
|
|
- 0.08 bump
|
|
|
|
|
2021-06-02 08:29:26 +00:00
|
|
|
* Wed Jun 02 2021 Petr Pisar <ppisar@redhat.com> - 0.06-1
|
|
|
|
- 0.06 bump
|
2021-06-02 14:40:01 +00:00
|
|
|
- Subpackage XS::Parse::Keyword::Builder
|
2021-06-02 08:29:26 +00:00
|
|
|
|
2021-06-01 06:58:47 +00:00
|
|
|
* Tue Jun 01 2021 Petr Pisar <ppisar@redhat.com> - 0.05-1
|
|
|
|
- 0.05 bump
|
|
|
|
|
2021-05-25 08:57:09 +00:00
|
|
|
* Tue May 25 2021 Jitka Plesnikova <jplesnik@redhat.com> - 0.04-2
|
|
|
|
- Perl 5.34 re-rebuild updated packages
|
|
|
|
|
2021-05-25 07:30:15 +00:00
|
|
|
* Tue May 25 2021 Petr Pisar <ppisar@redhat.com> - 0.04-1
|
|
|
|
- 0.04 bump
|
|
|
|
|
2021-05-21 22:14:06 +00:00
|
|
|
* Fri May 21 2021 Jitka Plesnikova <jplesnik@redhat.com> - 0.03-3
|
|
|
|
- Perl 5.34 rebuild
|
|
|
|
|
2021-05-04 11:43:38 +00:00
|
|
|
* Tue May 04 2021 Petr Pisar <ppisar@redhat.com> - 0.03-2
|
|
|
|
- Require XSLoader for the tests
|
|
|
|
|
2021-05-04 11:16:44 +00:00
|
|
|
* Fri Apr 30 2021 Petr Pisar <ppisar@redhat.com> 0.03-1
|
|
|
|
- Specfile autogenerated by cpanspec 1.78.
|