1.23 bump
This commit is contained in:
parent
cfb54dcc73
commit
23fb40a381
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
||||
Text-Unidecode-0.04.tar.gz
|
||||
/Text-Unidecode-1.01.tar.gz
|
||||
/Text-Unidecode-1.22.tar.gz
|
||||
/Text-Unidecode-1.23.tar.gz
|
||||
|
||||
@ -1,55 +1,59 @@
|
||||
Name: perl-Text-Unidecode
|
||||
Version: 1.22
|
||||
Release: 2%{?dist}
|
||||
Version: 1.23
|
||||
Release: 1%{?dist}
|
||||
Summary: US-ASCII transliterations of Unicode text
|
||||
Group: Development/Libraries
|
||||
License: GPL+ or Artistic
|
||||
URL: http://search.cpan.org/dist/Text-Unidecode/
|
||||
Source0: http://www.cpan.org/modules/by-module/Text/Text-Unidecode-%{version}.tar.gz
|
||||
BuildArch: noarch
|
||||
# Build
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl(Exporter)
|
||||
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
|
||||
# Runtime
|
||||
BuildRequires: perl(Exporter)
|
||||
BuildRequires: perl(integer)
|
||||
BuildRequires: perl(strict)
|
||||
BuildRequires: perl(Test)
|
||||
BuildRequires: perl(Text::Wrap)
|
||||
BuildRequires: perl(utf8)
|
||||
BuildRequires: perl(vars)
|
||||
BuildRequires: perl(warnings)
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||
# Tests only
|
||||
BuildRequires: perl(Test)
|
||||
BuildRequires: perl(Text::Wrap)
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "$(perl -V:version)"; echo $version))
|
||||
|
||||
%description
|
||||
|
||||
Text::Unidecode provides a function, `unidecode(...)' that
|
||||
takes Unicode data and tries to represent it in US-ASCII
|
||||
characters (i.e., the universally displayable characters between
|
||||
0x00 and 0x7F). The representation is almost always an attempt at
|
||||
*transliteration* -- i.e., conveying, in Roman letters, the
|
||||
pronunciation expressed by the text in some other writing
|
||||
system.
|
||||
Text::Unidecode provides a function, `unidecode(...)' that takes
|
||||
Unicode data and tries to represent it in US-ASCII characters (i.e.,
|
||||
the universally displayable characters between 0x00 and 0x7F). The
|
||||
representation is almost always an attempt at *transliteration* -- i.e.,
|
||||
conveying, in Roman letters, the pronunciation expressed by the text in
|
||||
some other writing system.
|
||||
|
||||
%prep
|
||||
%setup -q -n Text-Unidecode-%{version}
|
||||
|
||||
%build
|
||||
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=true
|
||||
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
make pure_install DESTDIR=%{buildroot}
|
||||
chmod -R u+w %{buildroot}/*
|
||||
%{_fixperms} %{buildroot}/*
|
||||
|
||||
%check
|
||||
make test
|
||||
|
||||
%files
|
||||
%doc README TODO.txt ChangeLog LICENSE
|
||||
%license LICENSE
|
||||
%doc README TODO.txt ChangeLog
|
||||
%{perl_vendorlib}/Text/
|
||||
%{_mandir}/man3/*.3*
|
||||
|
||||
|
||||
%changelog
|
||||
* Wed Dec 10 2014 Petr Šabata <contyk@redhat.com> - 1.23-1
|
||||
- 1.23 bump
|
||||
|
||||
* Wed Aug 27 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1.22-2
|
||||
- Perl 5.20 rebuild
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user