123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- Summary: US-ASCII transliterations of Unicode text
- Name: perl-Text-Unidecode
- Version: 1.30
- Release: 1%{?_dist_release}
- 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
- BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
- Vendor: Project Vine
- Distribution: Vine Linux
- BuildArch: noarch
- BuildRequires: perl(ExtUtils::MakeMaker)
- 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.
- %prep
- %setup -q -n Text-Unidecode-%{version}
- %build
- %{__perl} Makefile.PL INSTALLDIRS=vendor
- make %{?_smp_mflags}
- %install
- rm -rf $RPM_BUILD_ROOT
- make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
- find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
- find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2>/dev/null ';'
- chmod -R u+w $RPM_BUILD_ROOT/*
- %check
- make test
- %clean
- rm -rf $RPM_BUILD_ROOT
- %files
- %defattr(-,root,root,-)
- %doc README TODO.txt ChangeLog
- %{perl_vendorlib}/Text/
- %{_mandir}/man3/*.3*
- %changelog
- * Mon May 20 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.30-1
- - new upstream release.
- - rebuilt with perl-5.26.
- * Tue Dec 23 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 1.23-1
- - updated to 1.23
- - built with perl 5.16.3
- * Sat Apr 30 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.0.4-2
- - rebuild with perl-5.12.3
- * Tue Aug 19 2008 Shu KONNO <owa@bg.wakwak.com> 0.0.4-1vl5
- - applied new versioning policy
- * Thu Nov 01 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.4-0vl1
- - initial build for Vine Linux
- * Wed Oct 17 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 0.04-4.1
- - correct license tag
- - add BR: perl(ExtUtils::MakeMaker)
- * Tue Aug 29 2006 Patrice Dumas <pertusus at free.fr> - 0.04-4
- - rebuild for FC6
- * Mon Jun 26 2006 Patrice Dumas <pertusus at free.fr> - 0.04-3
- - rebuild for perl-5.8.8
- * Fri Feb 17 2006 Patrice Dumas <pertusus at free.fr> - 0.04-2
- - rebuild for fc5
- * Sun Jan 29 2006 Patrice Dumas <pertusus at free.fr> - 0.04-1
- - fedora extras submission
|