Update to 0.61
- New upstream release 0.61 - Avoid relying on current working directory being in @INC - Documentation typo fixes - Drop redundant Group: tag - Simplify find commands using -empty and -delete
This commit is contained in:
parent
2119dcf85f
commit
db6dd88437
@ -1,15 +1,18 @@
|
||||
Summary: Encoding and decoding of UTF-8 encoding form
|
||||
Name: perl-Unicode-UTF8
|
||||
Version: 0.60
|
||||
Release: 9%{?dist}
|
||||
Version: 0.61
|
||||
Release: 1%{?dist}
|
||||
License: GPL+ or Artistic
|
||||
Group: Development/Libraries
|
||||
Url: http://search.cpan.org/dist/Unicode-UTF8/
|
||||
URL: http://search.cpan.org/dist/Unicode-UTF8/
|
||||
Source0: http://search.cpan.org/CPAN/authors/id/C/CH/CHANSEN/Unicode-UTF8-%{version}.tar.gz
|
||||
# Module Build
|
||||
BuildRequires: coreutils
|
||||
BuildRequires: findutils
|
||||
BuildRequires: gcc
|
||||
BuildRequires: make
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl-devel
|
||||
BuildRequires: perl-generators
|
||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||
%if "%{?rhel}" != "6"
|
||||
BuildRequires: perl(inc::Module::Install)
|
||||
BuildRequires: perl(Module::Install::ReadmeFromPod)
|
||||
@ -17,6 +20,7 @@ BuildRequires: perl(Module::Install::ReadmeFromPod)
|
||||
BuildRequires: perl(base)
|
||||
BuildRequires: perl(Config)
|
||||
BuildRequires: perl(Cwd)
|
||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||
BuildRequires: perl(Fcntl)
|
||||
BuildRequires: perl(File::Basename)
|
||||
BuildRequires: perl(File::Find)
|
||||
@ -33,6 +37,7 @@ BuildRequires: perl(XSLoader)
|
||||
# Test Suite
|
||||
BuildRequires: perl(Encode) >= 1.9801
|
||||
BuildRequires: perl(IO::File)
|
||||
BuildRequires: perl(lib)
|
||||
BuildRequires: perl(Scalar::Util)
|
||||
BuildRequires: perl(Test::Builder)
|
||||
BuildRequires: perl(Test::Fatal) >= 0.006
|
||||
@ -69,9 +74,9 @@ make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
make pure_install DESTDIR=%{buildroot}
|
||||
find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
|
||||
find %{buildroot} -type f -name '*.bs' -a -size 0 -exec rm -f {} ';'
|
||||
%{_fixperms} %{buildroot}
|
||||
find %{buildroot} -type f -name .packlist -delete
|
||||
find %{buildroot} -type f -name '*.bs' -empty -delete
|
||||
%{_fixperms} -c %{buildroot}
|
||||
|
||||
%check
|
||||
make test
|
||||
@ -80,9 +85,16 @@ make test
|
||||
%doc Changes README
|
||||
%{perl_vendorarch}/Unicode/
|
||||
%{perl_vendorarch}/auto/Unicode/
|
||||
%{_mandir}/man3/Unicode::UTF8.3pm*
|
||||
%{_mandir}/man3/Unicode::UTF8.3*
|
||||
|
||||
%changelog
|
||||
* Mon Apr 10 2017 Paul Howarth <paul@city-fan.org> - 0.61-1
|
||||
- Update to 0.61
|
||||
- Avoid relying on current working directory being in @INC
|
||||
- Documentation typo fixes
|
||||
- Drop redundant Group: tag
|
||||
- Simplify find commands using -empty and -delete
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.60-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user