Initial import (perl-XString-0.002-1)
XString provides the B string helpers in one isolated package. Right now only cstring and perlstring are available.
This commit is contained in:
parent
2215c6c913
commit
a96d05633d
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
/XString-[0-9.]*.tar.gz
|
3
perl-XString.rpmlintrc
Normal file
3
perl-XString.rpmlintrc
Normal file
@ -0,0 +1,3 @@
|
||||
from Config import *
|
||||
|
||||
addFilter("spelling-error %description -l en_US (c|perl)string -> ")
|
62
perl-XString.spec
Normal file
62
perl-XString.spec
Normal file
@ -0,0 +1,62 @@
|
||||
Name: perl-XString
|
||||
Version: 0.002
|
||||
Release: 1%{?dist}
|
||||
Summary: Isolated String helpers from B
|
||||
License: GPL+ or Artistic
|
||||
URL: https://metacpan.org/release/XString
|
||||
Source0: https://cpan.metacpan.org/authors/id/A/AT/ATOOMIC/XString-%{version}.tar.gz
|
||||
# Build
|
||||
BuildRequires: coreutils
|
||||
BuildRequires: gcc
|
||||
BuildRequires: make
|
||||
BuildRequires: perl-devel
|
||||
BuildRequires: perl-generators
|
||||
BuildRequires: perl-interpreter
|
||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||
# Module
|
||||
BuildRequires: perl(:VERSION) >= 5.10.0
|
||||
BuildRequires: perl(strict)
|
||||
BuildRequires: perl(warnings)
|
||||
BuildRequires: perl(XSLoader)
|
||||
# Test Suite
|
||||
BuildRequires: perl(B)
|
||||
BuildRequires: perl(File::Spec)
|
||||
BuildRequires: perl(Test::More) >= 0.88
|
||||
# Optional Tests
|
||||
BuildRequires: perl(CPAN::Meta) >= 2.120900
|
||||
# Requirements from upstream metadata that are not actually used
|
||||
BuildRequires: perl(Test2::Bundle::Extended)
|
||||
BuildRequires: perl(Test2::Plugin::NoWarnings)
|
||||
BuildRequires: perl(Test2::Tools::Explain)
|
||||
# Runtime
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||
|
||||
%description
|
||||
XString provides the B string helpers in one isolated package. Right now only
|
||||
cstring and perlstring are available.
|
||||
|
||||
%prep
|
||||
%setup -q -n XString-%{version}
|
||||
|
||||
%build
|
||||
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
|
||||
%{make_build}
|
||||
|
||||
%install
|
||||
%{make_install}
|
||||
find %{buildroot} -type f -name '*.bs' -empty -delete
|
||||
%{_fixperms} -c %{buildroot}
|
||||
|
||||
%check
|
||||
make test
|
||||
|
||||
%files
|
||||
%license LICENSE
|
||||
%doc Changes README
|
||||
%{perl_vendorarch}/XString.pm
|
||||
%{perl_vendorarch}/auto/XString/
|
||||
%{_mandir}/man3/XString.3*
|
||||
|
||||
%changelog
|
||||
* Mon Nov 25 2019 Paul Howarth <paul@city-fan.org> - 0.002-1
|
||||
- Initial RPM version
|
Loading…
Reference in New Issue
Block a user