123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- Name: perl-XML-SAX-Base
- Version: 1.09
- Release: 1%{?_dist_release}
- Summary: Base class SAX Drivers and Filters
- License: GPL+ or Artistic
- Group: Development/Libraries
- URL: http://search.cpan.org/dist/XML-SAX-Base/
- Source0: http://www.cpan.org/authors/id/G/GR/GRANTM/XML-SAX-Base-%{version}.tar.gz
- BuildArch: noarch
- BuildRequires: perl(ExtUtils::MakeMaker)
- BuildRequires: perl(Test::More)
- Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
- Conflicts: perl-XML-SAX < 0.99-1
- Vendor: Project Vine
- Distribution: Vine Linux
- Packager: shaolin
- %description
- This module has a very simple task - to be a base class for PerlSAX drivers
- and filters. It's default behaviour is to pass the input directly to the
- output unchanged. It can be useful to use this module as a base class so
- you don't have to, for example, implement the characters() callback.
- %prep
- %setup -q -n XML-SAX-Base-%{version}
- %build
- %{__perl} Makefile.PL INSTALLDIRS=vendor
- make %{?_smp_mflags}
- %install
- make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
- find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
- find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
- %{_fixperms} $RPM_BUILD_ROOT/*
- mkdir -p $RPM_BUILD_ROOT/%{_docdir}/%{name}-%{version}
- mv $RPM_BUILD_ROOT/%{perl_vendorlib}/XML/SAX/BuildSAXBase.pl $RPM_BUILD_ROOT/%{_docdir}/%{name}-%{version}
- %check
- make test
- %files
- %doc Changes dist.ini META.json README BuildSAXBase.pl
- %{perl_vendorlib}/*
- %{_mandir}/man3/*
- %changelog
- * Sat May 18 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.09-1
- - new upstream release.
- - rebuilt with perl-5.26.
- * Mon Jun 30 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.08-3
- - rebuilt with perl-5.16.0.
- * Thu Mar 01 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.08-2
- - rebuild
- * Thu Mar 01 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.08-1
- - initial build for Vine Linux
- * Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.08-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
- * Fri Oct 07 2011 Marcela Mašláňová <mmaslano@redhat.com> 1.08-1
- - Specfile autogenerated by cpanspec 1.78.
|