Compare commits

...

No commits in common. 'epel9' and 'c8-stream-5.24' have entirely different histories.

2
.gitignore vendored

@ -1 +1 @@
/YAML-Syck-[0-9.]*.tar.gz SOURCES/YAML-Syck-1.30.tar.gz

@ -0,0 +1 @@
b25dba42f08926244fc33d0861e2eb92a6da2b82 SOURCES/YAML-Syck-1.30.tar.gz

@ -6,54 +6,47 @@
%endif %endif
Name: perl-YAML-Syck Name: perl-YAML-Syck
Version: 1.34 Version: 1.30
Release: 4%{?dist} Release: 5%{?dist}
Summary: Fast, lightweight YAML loader and dumper Summary: Fast, lightweight YAML loader and dumper
License: BSD and MIT License: BSD and MIT
URL: https://metacpan.org/release/YAML-Syck URL: http://search.cpan.org/dist/YAML-Syck/
Source0: https://cpan.metacpan.org/modules/by-module/YAML/YAML-Syck-%{version}.tar.gz Source0: http://www.cpan.org/authors/id/T/TO/TODDR/YAML-Syck-%{version}.tar.gz
# Module Build
BuildRequires: coreutils BuildRequires: coreutils
BuildRequires: findutils BuildRequires: findutils
BuildRequires: gcc BuildRequires: gcc
BuildRequires: make BuildRequires: make
BuildRequires: perl-interpreter
BuildRequires: perl-devel BuildRequires: perl-devel
BuildRequires: perl-generators BuildRequires: perl-generators
BuildRequires: perl-interpreter # Keep bundled inc::Module::Install to break cycle
# perl-Module-Install → perl-YAML-Tiny → perl-YAML-Syck
BuildRequires: perl(Cwd)
BuildRequires: perl(File::Path)
BuildRequires: perl(File::Spec)
BuildRequires: perl(lib)
BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(ExtUtils::MakeMaker)
# Dependencies of bundled ExtUtils::HasCompiler # Run-time
BuildRequires: perl(base)
BuildRequires: perl(Carp)
BuildRequires: perl(Config)
BuildRequires: perl(DynaLoader)
BuildRequires: perl(ExtUtils::Mksymlists)
BuildRequires: perl(File::Basename)
BuildRequires: perl(File::Spec::Functions)
BuildRequires: perl(File::Temp)
# Module Runtime
BuildRequires: perl(constant) BuildRequires: perl(constant)
# DynaLoader not used if XSLoader is available # DynaLoader not used if XSLoader is available
BuildRequires: perl(Exporter) BuildRequires: perl(Exporter)
BuildRequires: perl(strict) BuildRequires: perl(strict)
BuildRequires: perl(vars) BuildRequires: perl(vars)
BuildRequires: perl(XSLoader) BuildRequires: perl(XSLoader)
# Test Suite # Tests
BuildRequires: perl(Data::Dumper) BuildRequires: perl(Data::Dumper)
BuildRequires: perl(FindBin)
BuildRequires: perl(IO::File) BuildRequires: perl(IO::File)
BuildRequires: perl(Storable) BuildRequires: perl(Storable)
BuildRequires: perl(Test::More) BuildRequires: perl(Test::More)
BuildRequires: perl(Tie::Hash) BuildRequires: perl(Tie::Hash)
BuildRequires: perl(utf8)
BuildRequires: perl(warnings)
# Optional Tests
%if %{with perl_YAML_Syck_enables_optional_test} %if %{with perl_YAML_Syck_enables_optional_test}
# Optional tests
BuildRequires: perl(Devel::Leak) BuildRequires: perl(Devel::Leak)
BuildRequires: perl(JSON) BuildRequires: perl(JSON)
BuildRequires: perl(Symbol)
%endif %endif
# Dependencies # Dependencies
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
Requires: perl(XSLoader)
# Avoid provides for private perl objects # Avoid provides for private perl objects
%{?perl_default_filter} %{?perl_default_filter}
@ -67,10 +60,10 @@ structures to YAML strings, and the other way around.
%setup -q -n YAML-Syck-%{version} %setup -q -n YAML-Syck-%{version}
# Unbundle core and unused modules # Unbundle core and unused modules
rm -rvf inc/{Module,Scalar,Test} rm -rvf inc/{parent.pm,PerlIO.pm,Scalar/,Test/}
%build %build
perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags} -DI_STDLIB=1 -DI_STRING=1" perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
make %{?_smp_mflags} make %{?_smp_mflags}
%install %install
@ -84,7 +77,7 @@ make test
%files %files
%license COPYING %license COPYING
%doc Changes COMPATIBILITY README.md %doc Changes COMPATIBILITY
%{perl_vendorarch}/auto/YAML/ %{perl_vendorarch}/auto/YAML/
%{perl_vendorarch}/YAML/ %{perl_vendorarch}/YAML/
%{perl_vendorarch}/JSON/ %{perl_vendorarch}/JSON/
@ -92,61 +85,6 @@ make test
%{_mandir}/man3/YAML::Syck.3* %{_mandir}/man3/YAML::Syck.3*
%changelog %changelog
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.34-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Fri May 21 2021 Jitka Plesnikova <jplesnik@redhat.com> - 1.34-3
- Perl 5.34 rebuild
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.34-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Tue Oct 27 2020 Paul Howarth <paul@city-fan.org> - 1.34-1
- Update to 1.34
- Fix memory corruption (GH#44, GH#48)
- Fix for handling circular aliases (GH#52, GH#53)
- Unconditionally include stdlib.h in syck.h (GH#56)
- Switch changelog to a more parsable format
- Update github CI to use a cpanfile
- Update Devel::PPPort to 3.62
- Stop depending on constants dropped from Perl 5.28 (GH#50)
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.32-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 1.32-2
- Perl 5.32 rebuild
* Tue Jan 28 2020 Paul Howarth <paul@city-fan.org> - 1.32-1
- Update to 1.32
- Interface Change: Change default for LoadBlessed to false
- Remove YAML::Syck tests that parse META.yml
- Switch to github actions for testing
- Remove 'use vars' from code in favor of 'our'
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.31-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1.31-3
- Perl 5.30 rebuild
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.31-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Fri Oct 26 2018 Paul Howarth <paul@city-fan.org> - 1.31-1
- Update to 1.31
- Switch to ExtUtils::MakeMaker for builder
- Switch official issue tracker and repo to github
- MANIFEST warning is now fixed; also shipping additional tests because of
this
- Make sure <stdlib.h> and <string.h> are included, quietens lots of warnings
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.30-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Thu Jun 28 2018 Jitka Plesnikova <jplesnik@redhat.com> - 1.30-6
- Perl 5.28 rebuild
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.30-5 * Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.30-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild

@ -1,3 +0,0 @@
from Config import *
addFilter("spelling-error %description -l en_US libsyck -> ");
addFilter("incorrect-fsf-address /usr/src/debug/perl-YAML-Syck-.*/gram\.c");

@ -1 +0,0 @@
SHA512 (YAML-Syck-1.34.tar.gz) = 18288f54026823e84b2d642d880d7758c5d95ba4b56d3fcf758efe59303ea71a49822d7c000b4c7b0629eccd4dcf3c940bc1c26f2b2ef89e4fdba78a35c04760
Loading…
Cancel
Save