123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- Name: perl-YAML-LibYAML
- Version: 0.78
- Release: 1%{?_dist_release}
- Summary: Perl YAML Serialization using XS and libyaml
- License: GPL+ or Artistic
- Group: Development/Libraries
- URL: http://search.cpan.org/dist/YAML-LibYAML/
- Source0: http://search.cpan.org/CPAN/authors/id/I/IN/INGY/YAML-LibYAML-%{version}.tar.gz
- Vendor: Project Vine
- Distribution: Vine Linux
- BuildRequires: perl(B::Deparse)
- BuildRequires: perl(base)
- BuildRequires: perl(constant)
- BuildRequires: perl(Cwd)
- BuildRequires: perl(Exporter)
- BuildRequires: perl(ExtUtils::MakeMaker)
- BuildRequires: perl(File::Find)
- BuildRequires: perl(File::Path)
- BuildRequires: perl(File::Spec)
- BuildRequires: perl(Test::Builder)
- BuildRequires: perl(Test::Builder::Module)
- BuildRequires: perl(Test::More)
- # Tests only
- BuildRequires: perl(Devel::Peek)
- BuildRequires: perl(File::Path)
- BuildRequires: perl(Scalar::Util)
- BuildRequires: perl(Test::Base)
- BuildRequires: perl(Test::Base::Filter)
- BuildRequires: perl(Tie::Array)
- BuildRequires: perl(Tie::Hash)
- Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
- %{?perl_default_filter}
- %description
- Kirill Siminov's "libyaml" is arguably the best YAML
- implementation. The C library is written precisely to the YAML 1.1
- specification. It was originally bound to Python and was later
- bound to Ruby.
- %prep
- %setup -q -n YAML-LibYAML-%{version}
- %build
- %{__perl} Makefile.PL INSTALLDIRS=perl OPTIMIZE="%{optflags}"
- make %{?_smp_mflags}
- %install
- rm -rf %{buildroot}
- make pure_install DESTDIR=%{buildroot}
- find %{buildroot} -type f -name .packlist -exec rm -f {} \;
- find %{buildroot} -type f -name '*.bs' -size 0 -exec rm -f {} \;
- find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
- %{_fixperms} %{buildroot}/*
- %check
- make test
- %clean
- rm -rf %{buildroot}
- %files
- %doc Changes README
- %{perl_archlib}/auto/*
- %{perl_archlib}/YAML*
- %{_mandir}/man3/*
- %changelog
- * Sun May 19 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 0.78-1
- - new upstream release.
- - rebuilt with perl-5.26.
- * Sun Nov 30 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 0.54-1
- - updated to 0.54
- - built with perl 5.16.3
- * Fri Mar 09 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.38-1
- - initial build for Vine Linux
- * Fri Jan 13 2012 Marcela Mašláňová <mmaslano@redhat.com> - 0.38-2
- - bump to 0.38
- * Fri Sep 30 2011 Petr Sabata <contyk@redhat.com> - 0.37-1
- - 0.37 bump
- - Remove defattr
- - Correct BR
- * Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.35-2
- - Perl mass rebuild
- * Mon Apr 04 2011 Petr Sabata <psabata@redhat.com> - 0.35-1
- - 0.35 bump
- - Removing obsolete buildroot stuff
- * Wed Mar 16 2011 Paul Howarth <paul@city-fan.org> - 0.34-4
- - Improve overly-generic package summary
- - README is already UTF-8 encoded in version 0.34 so don't try converting it
- * Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.34-3
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
- * Wed Sep 29 2010 jkeating - 0.34-2
- - Rebuilt for gcc bug 634757
- * Thu Sep 23 2010 Marcela Mašláňová <mmaslano@redhat.com> - 0.34-1
- - update
- * Thu Jun 3 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.33-1
- - update
- * Fri May 07 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.32-6
- - Mass rebuild with perl-5.12.0
- * Sat Mar 27 2010 Chris Weyl <cweyl@alumni.drew.edu> - 0.32-5
- - perl_default_filter, PERL_INSTALL_ROOT => DESTDIR
- * Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 0.32-4
- - rebuild against perl 5.10.1
- * Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.32-3
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
- * Wed Apr 29 2009 Marcela Mašláňová <mmaslano@redhat.com> 0.32-2
- - add BR
- * Wed Apr 29 2009 Marcela Mašláňová <mmaslano@redhat.com> 0.32-1
- - Specfile autogenerated by cpanspec 1.78.
|