|
|
@ -1,6 +1,6 @@
|
|
|
|
Name: perl-YAML-PP
|
|
|
|
Name: perl-YAML-PP
|
|
|
|
Version: 0.023
|
|
|
|
Version: 0.024
|
|
|
|
Release: 2%{?dist}
|
|
|
|
Release: 1%{?dist}
|
|
|
|
Summary: YAML 1.2 processor
|
|
|
|
Summary: YAML 1.2 processor
|
|
|
|
License: GPL+ or Artistic
|
|
|
|
License: GPL+ or Artistic
|
|
|
|
URL: https://metacpan.org/release/YAML-PP/
|
|
|
|
URL: https://metacpan.org/release/YAML-PP/
|
|
|
@ -16,7 +16,6 @@ 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)
|
|
|
|
BuildRequires: sed
|
|
|
|
|
|
|
|
# Run-time
|
|
|
|
# Run-time
|
|
|
|
BuildRequires: perl(B)
|
|
|
|
BuildRequires: perl(B)
|
|
|
|
BuildRequires: perl(B::Deparse)
|
|
|
|
BuildRequires: perl(B::Deparse)
|
|
|
@ -36,7 +35,9 @@ BuildRequires: perl(Module::Load)
|
|
|
|
BuildRequires: perl(overload)
|
|
|
|
BuildRequires: perl(overload)
|
|
|
|
BuildRequires: perl(Scalar::Util) >= 1.07
|
|
|
|
BuildRequires: perl(Scalar::Util) >= 1.07
|
|
|
|
BuildRequires: perl(Term::ANSIColor) >= 4.02
|
|
|
|
BuildRequires: perl(Term::ANSIColor) >= 4.02
|
|
|
|
|
|
|
|
BuildRequires: perl(Tie::Array)
|
|
|
|
BuildRequires: perl(Tie::Hash)
|
|
|
|
BuildRequires: perl(Tie::Hash)
|
|
|
|
|
|
|
|
BuildRequires: perl(Tie::StdArray)
|
|
|
|
BuildRequires: perl(Tie::StdHash)
|
|
|
|
BuildRequires: perl(Tie::StdHash)
|
|
|
|
# Tests
|
|
|
|
# Tests
|
|
|
|
BuildRequires: perl(blib) >= 1.01
|
|
|
|
BuildRequires: perl(blib) >= 1.01
|
|
|
@ -58,6 +59,12 @@ Requires: perl(JSON::PP)
|
|
|
|
Requires: perl(Scalar::Util) >= 1.07
|
|
|
|
Requires: perl(Scalar::Util) >= 1.07
|
|
|
|
Requires: perl(Term::ANSIColor)
|
|
|
|
Requires: perl(Term::ANSIColor)
|
|
|
|
Requires: perl(Tie::IxHash)
|
|
|
|
Requires: perl(Tie::IxHash)
|
|
|
|
|
|
|
|
# bin/yamlpp-load can use various YAML implementations on user's request:
|
|
|
|
|
|
|
|
Suggests: perl(YAML)
|
|
|
|
|
|
|
|
Suggests: perl(YAML::PP::LibYAML)
|
|
|
|
|
|
|
|
Suggests: perl(YAML::Syck)
|
|
|
|
|
|
|
|
Suggests: perl(YAML::Tiny)
|
|
|
|
|
|
|
|
Suggests: perl(YAML::XS)
|
|
|
|
|
|
|
|
|
|
|
|
%global __requires_exclude %{?__requires_exclude:__requires_exclude|}^perl\\(Scalar::Util\\)$
|
|
|
|
%global __requires_exclude %{?__requires_exclude:__requires_exclude|}^perl\\(Scalar::Util\\)$
|
|
|
|
|
|
|
|
|
|
|
@ -68,9 +75,9 @@ It aims to support YAML 1.2 and YAML 1.1. See http://yaml.org/.
|
|
|
|
%prep
|
|
|
|
%prep
|
|
|
|
%setup -q -n YAML-PP-%{version}
|
|
|
|
%setup -q -n YAML-PP-%{version}
|
|
|
|
|
|
|
|
|
|
|
|
for i in `find e* -type f`; do
|
|
|
|
for i in $(find e* -type f); do
|
|
|
|
chmod -x $i
|
|
|
|
chmod -x "$i"
|
|
|
|
sed -i -e '1s|#!.*perl|%(perl -MConfig -e 'print $Config{startperl}')|' $i
|
|
|
|
perl -i -MConfig -pe 's{\A#!.*perl}{$Config{startperl}}' "$i"
|
|
|
|
done
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
%build
|
|
|
@ -86,12 +93,15 @@ make test
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%files
|
|
|
|
%license LICENSE
|
|
|
|
%license LICENSE
|
|
|
|
%doc Changes CONTRIBUTING.md etc examples README
|
|
|
|
%doc Changes CONTRIBUTING.md etc examples README.md
|
|
|
|
%{_bindir}/*
|
|
|
|
%{_bindir}/*
|
|
|
|
%{perl_vendorlib}/*
|
|
|
|
%{perl_vendorlib}/*
|
|
|
|
%{_mandir}/man3/*
|
|
|
|
%{_mandir}/man3/*
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
%changelog
|
|
|
|
|
|
|
|
* Wed Aug 19 2020 Petr Pisar <ppisar@redhat.com> - 0.024-1
|
|
|
|
|
|
|
|
- 0.024 bump
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.023-2
|
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.023-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|