80 lines
2.4 KiB
RPMSpec
80 lines
2.4 KiB
RPMSpec
# Real version
|
|
%global cpan_version v1.0.1
|
|
|
|
Name: perl-XML-Catalog
|
|
Version: %(echo '%{cpan_version}' | tr -d 'v')
|
|
Release: 1%{?dist}
|
|
Summary: Resolve public identifiers and remap system identifiers
|
|
License: GPL+ or Artistic
|
|
Group: Development/Libraries
|
|
URL: http://search.cpan.org/dist/XML-Catalog/
|
|
Source0: http://www.cpan.org/authors/id/J/JF/JFEARN/XML-Catalog-%{cpan_version}.tar.gz
|
|
BuildArch: noarch
|
|
BuildRequires: perl
|
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
|
# Run-time
|
|
BuildRequires: perl(LWP::Simple)
|
|
BuildRequires: perl(strict)
|
|
BuildRequires: perl(Text::ParseWords)
|
|
BuildRequires: perl(URI::URL)
|
|
BuildRequires: perl(vars)
|
|
BuildRequires: perl(warnings)
|
|
BuildRequires: perl(XML::Parser)
|
|
# Tests
|
|
BuildRequires: perl(Cwd)
|
|
BuildRequires: perl(Test::More)
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
|
|
|
%description
|
|
This module implements draft 0.4 of John Cowan's XML Catalog (formerly
|
|
known as XCatalog) see
|
|
(<https://www.oasis-open.org/committees/entity/specs/cs-entity-xml-catalogs-1.0.html>)
|
|
Catalogs may be written in either SOCAT or XML syntax. XML::Catalog will
|
|
assume SOCAT syntax if the catalog is not in well-formed XML syntax.
|
|
|
|
%prep
|
|
%setup -q -n XML-Catalog-%{cpan_version}
|
|
|
|
%build
|
|
for i in Changes README; do
|
|
sed -i 's/\r//' $i
|
|
done
|
|
|
|
perl Makefile.PL INSTALLDIRS=vendor
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
make pure_install DESTDIR=$RPM_BUILD_ROOT
|
|
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
|
|
%{_fixperms} $RPM_BUILD_ROOT/*
|
|
|
|
%check
|
|
make test
|
|
|
|
%files
|
|
%doc Changes README
|
|
%{perl_vendorlib}/*
|
|
%{_mandir}/man3/*
|
|
|
|
%changelog
|
|
* Mon Jan 13 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1.0.1-1
|
|
- 1.0.1 bump
|
|
|
|
* Thu Oct 10 2013 Jitka Plesnikova <jplesnik@redhat.com> - 1.0.0-1
|
|
- 1.0.0 bump
|
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.02-5
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
* Wed Jul 24 2013 Petr Pisar <ppisar@redhat.com> - 0.02-4
|
|
- Perl 5.18 rebuild
|
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.02-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
* Fri Nov 23 2012 Jitka Plesnikova <jplesnik@redhat.com> 0.02-2
|
|
- Update description
|
|
|
|
* Tue Aug 28 2012 Jitka Plesnikova <jplesnik@redhat.com> 0.02-1
|
|
- Specfile autogenerated by cpanspec 1.78.
|