source: projects/specs/trunk/p/perl-Text-Unidecode/perl-Text-Unidecode-vl.spec @ 12121

Revision 12121, 2.5 KB checked in by tomop, 5 years ago (diff)

Merge branch 'tomop'

Line 
1Summary:        US-ASCII transliterations of Unicode text
2Name:           perl-Text-Unidecode
3Version:        1.30
4Release:        1%{?_dist_release}
5
6Group:          Development/Libraries
7License:        GPL+ or Artistic
8URL:            http://search.cpan.org/dist/Text-Unidecode/
9Source0:        http://www.cpan.org/modules/by-module/Text/Text-Unidecode-%{version}.tar.gz
10BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root
11
12Vendor:         Project Vine
13Distribution:   Vine Linux
14
15BuildArch:      noarch
16BuildRequires:  perl(ExtUtils::MakeMaker)
17Requires:  perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
18
19%description
20Text::Unidecode provides a function, `unidecode(...)' that
21takes Unicode data and tries to represent it in US-ASCII
22characters (i.e., the universally displayable characters between
230x00 and 0x7F). The representation is almost always an attempt at
24*transliteration* -- i.e., conveying, in Roman letters, the
25pronunciation expressed by the text in some other writing
26system.
27
28
29%prep
30%setup -q -n Text-Unidecode-%{version}
31
32
33%build
34%{__perl} Makefile.PL INSTALLDIRS=vendor
35make %{?_smp_mflags}
36
37
38%install
39rm -rf $RPM_BUILD_ROOT
40make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
41find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
42find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2>/dev/null ';'
43chmod -R u+w $RPM_BUILD_ROOT/*
44
45
46%check
47make test
48
49
50%clean
51rm -rf $RPM_BUILD_ROOT
52
53
54%files
55%defattr(-,root,root,-)
56%doc README TODO.txt ChangeLog
57%{perl_vendorlib}/Text/
58%{_mandir}/man3/*.3*
59
60
61%changelog
62* Mon May 20 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.30-1
63- new upstream release.
64- rebuilt with perl-5.26.
65
66* Tue Dec 23 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 1.23-1
67- updated to 1.23
68- built with perl 5.16.3
69
70* Sat Apr 30 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.0.4-2
71- rebuild with perl-5.12.3
72
73* Tue Aug 19 2008 Shu KONNO <owa@bg.wakwak.com> 0.0.4-1vl5
74- applied new versioning policy
75
76* Thu Nov 01 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.4-0vl1
77- initial build for Vine Linux
78
79* Wed Oct 17 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 0.04-4.1
80- correct license tag
81- add BR: perl(ExtUtils::MakeMaker)
82
83* Tue Aug 29 2006 Patrice Dumas <pertusus at free.fr> - 0.04-4
84- rebuild for FC6
85
86* Mon Jun 26 2006 Patrice Dumas <pertusus at free.fr> - 0.04-3
87- rebuild for perl-5.8.8
88
89* Fri Feb 17 2006 Patrice Dumas <pertusus at free.fr> - 0.04-2
90- rebuild for fc5
91
92* Sun Jan 29 2006 Patrice Dumas <pertusus at free.fr> - 0.04-1
93- fedora extras submission
Note: See TracBrowser for help on using the repository browser.