Compare commits
No commits in common. "c9-beta" and "c8" have entirely different histories.
@ -1,24 +1,18 @@
|
|||||||
# Run optional test
|
# Run optional test
|
||||||
%if ! (0%{?rhel})
|
|
||||||
%bcond_without perl_XML_Simple_enables_optional_test
|
%bcond_without perl_XML_Simple_enables_optional_test
|
||||||
%else
|
|
||||||
%bcond_with perl_XML_Simple_enables_optional_test
|
|
||||||
%endif
|
|
||||||
|
|
||||||
Name: perl-XML-Simple
|
Name: perl-XML-Simple
|
||||||
Version: 2.25
|
Version: 2.25
|
||||||
Release: 13%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Easy API to maintain XML in Perl
|
Summary: Easy API to maintain XML in Perl
|
||||||
License: GPL+ or Artistic
|
License: GPL+ or Artistic
|
||||||
URL: https://metacpan.org/release/XML-Simple
|
URL: http://search.cpan.org/dist/XML-Simple/
|
||||||
Source0: https://cpan.metacpan.org/authors/id/G/GR/GRANTM/XML-Simple-%{version}.tar.gz
|
Source0: http://www.cpan.org/authors/id/G/GR/GRANTM/XML-Simple-%{version}.tar.gz
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
# Build
|
# Build
|
||||||
BuildRequires: coreutils
|
|
||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
BuildRequires: perl-interpreter
|
BuildRequires: perl-interpreter
|
||||||
BuildRequires: perl-generators
|
BuildRequires: perl-generators
|
||||||
BuildRequires: perl(Config)
|
|
||||||
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
|
||||||
BuildRequires: perl(strict)
|
BuildRequires: perl(strict)
|
||||||
BuildRequires: perl(warnings)
|
BuildRequires: perl(warnings)
|
||||||
@ -55,63 +49,21 @@ Requires: perl(XML::NamespaceSupport) >= 1.04
|
|||||||
Requires: perl(XML::Parser)
|
Requires: perl(XML::Parser)
|
||||||
Requires: perl(XML::SAX) >= 0.15
|
Requires: perl(XML::SAX) >= 0.15
|
||||||
|
|
||||||
# Filter modules bundled for tests
|
|
||||||
%global __provides_exclude_from %{?__provides_exclude_from:%__provides_exclude_from|}^%{_libexecdir}
|
|
||||||
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\(TagsToUpper\\)
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
The XML::Simple module provides a simple API layer on top of an
|
The XML::Simple module provides a simple API layer on top of an
|
||||||
underlying XML parsing module (either XML::Parser or one of the SAX2
|
underlying XML parsing module (either XML::Parser or one of the SAX2
|
||||||
parser modules).
|
parser modules).
|
||||||
|
|
||||||
%package tests
|
|
||||||
Summary: Tests for %{name}
|
|
||||||
Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
||||||
Requires: perl-Test-Harness
|
|
||||||
|
|
||||||
%description tests
|
|
||||||
Tests from %{name}. Execute them
|
|
||||||
with "%{_libexecdir}/%{name}/test".
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n XML-Simple-%{version}
|
%setup -q -n XML-Simple-%{version}
|
||||||
|
|
||||||
# Remove author tests
|
|
||||||
for F in t/author-pod-syntax.t; do
|
|
||||||
rm "$F"
|
|
||||||
perl -i -ne 'print $_ unless m{^\Q'"$F"'\E}' MANIFEST
|
|
||||||
done
|
|
||||||
|
|
||||||
# Help generators to recognize Perl scripts
|
|
||||||
for F in t/*.t; do
|
|
||||||
perl -i -MConfig -ple 'print $Config{startperl} if $. == 1 && !s{\A#!.*perl\b}{$Config{startperl}}' "$F"
|
|
||||||
chmod +x "$F"
|
|
||||||
done
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
|
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1
|
||||||
%{make_build}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%{make_install}
|
make pure_install DESTDIR=%{buildroot}
|
||||||
%{_fixperms} %{buildroot}/*
|
chmod -R u+w %{buildroot}/*
|
||||||
|
|
||||||
# Install tests
|
|
||||||
mkdir -p %{buildroot}/%{_libexecdir}/%{name}
|
|
||||||
cp -a t %{buildroot}/%{_libexecdir}/%{name}
|
|
||||||
cat > %{buildroot}/%{_libexecdir}/%{name}/test << 'EOF'
|
|
||||||
#!/bin/bash
|
|
||||||
set -e
|
|
||||||
# Some tests write into temporary files/directories. The easiest solution
|
|
||||||
# is to copy the tests into a writable directory and execute them from there.
|
|
||||||
DIR=$(mktemp -d)
|
|
||||||
pushd "$DIR"
|
|
||||||
cp -a %{_libexecdir}/%{name}/* ./
|
|
||||||
prove -I . -j "$(getconf _NPROCESSORS_ONLN)"
|
|
||||||
popd
|
|
||||||
rm -rf "$DIR"
|
|
||||||
EOF
|
|
||||||
chmod +x %{buildroot}/%{_libexecdir}/%{name}/test
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
make test
|
make test
|
||||||
@ -122,47 +74,7 @@ make test
|
|||||||
%{perl_vendorlib}/*
|
%{perl_vendorlib}/*
|
||||||
%{_mandir}/man3/*
|
%{_mandir}/man3/*
|
||||||
|
|
||||||
%files tests
|
|
||||||
%{_libexecdir}/%{name}
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue Aug 17 2021 Jitka Plesnikova <jplesnik@redhat.com> - 2.25-13
|
|
||||||
- Resolves: rhbz#1989824 - Enable gating
|
|
||||||
|
|
||||||
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.25-12
|
|
||||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
||||||
Related: rhbz#1991688
|
|
||||||
|
|
||||||
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2.25-11
|
|
||||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
||||||
|
|
||||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.25-10
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.25-9
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 2.25-8
|
|
||||||
- Perl 5.32 rebuild
|
|
||||||
|
|
||||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.25-7
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.25-6
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.25-5
|
|
||||||
- Perl 5.30 rebuild
|
|
||||||
|
|
||||||
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.25-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.25-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jun 29 2018 Jitka Plesnikova <jplesnik@redhat.com> - 2.25-2
|
|
||||||
- Perl 5.28 rebuild
|
|
||||||
|
|
||||||
* Mon Mar 19 2018 Petr Pisar <ppisar@redhat.com> - 2.25-1
|
* Mon Mar 19 2018 Petr Pisar <ppisar@redhat.com> - 2.25-1
|
||||||
- 2.25 bump
|
- 2.25 bump
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user