1 |
# $Id: translate-toolkit.spec,v 1.13 2010/02/24 18:19:19 slords Exp $ |
2 |
# Authority: slords |
3 |
# Name: Shad L. Lords |
4 |
|
5 |
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} |
6 |
|
7 |
Name: translate-toolkit |
8 |
Version: 1.5.3 |
9 |
Release: 2.0%{?dist} |
10 |
Summary: Tools to assist with translation and software localization |
11 |
|
12 |
Group: Development/Tools |
13 |
License: GPLv2+ |
14 |
URL: http://translate.sourceforge.net/wiki/toolkit/index |
15 |
Source0: http://downloads.sourceforge.net/project/translate/Translate%20Toolkit/%{version}/%{name}-%{version}.tar.bz2 |
16 |
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) |
17 |
|
18 |
Patch0: translate-toolkit-1.5.3-stoplist.patch |
19 |
Patch1: translate-toolkit-1.5.0-langmodel_dir.patch |
20 |
Patch2: translate-toolkit-1.5.3-bug1372_filesystem_encoding.patch |
21 |
|
22 |
BuildArch: noarch |
23 |
BuildRequires: python-devel |
24 |
# The following are needed for man page generation |
25 |
BuildRequires: python-lxml |
26 |
BuildRequires: python-simplejson |
27 |
BuildRequires: python-vobject |
28 |
Requires: gettext |
29 |
Requires: python-enchant |
30 |
Requires: python-iniparse |
31 |
Requires: python-Levenshtein |
32 |
Requires: python-lxml |
33 |
%ifarch %{ix86} |
34 |
Requires: python-psyco |
35 |
%endif |
36 |
Requires: python-simplejson |
37 |
Requires: python-vobject |
38 |
|
39 |
|
40 |
%description |
41 |
A set of tools for managing translation and software localization via |
42 |
Gettext PO or XLIFF format files. |
43 |
|
44 |
Including: |
45 |
* Convertors: convert from various formats to PO or XLIFF |
46 |
* Formats: |
47 |
* Core localization formats - XLIFF and Gettext PO |
48 |
* Other localization formats - TMX, TBX, Qt Linguist (.ts), |
49 |
Java .properties, Wordfast TM, OmegaT glossary |
50 |
* Compiled formats: Gettext MO, Qt .qm |
51 |
* Other formats - OpenDocument Format (ODF), text, HTML, CSV, INI, |
52 |
wiki (MediaWiki, DokuWiki), iCal |
53 |
* Specialised - OpenOffice.org GSI/SDF, PHP, |
54 |
Mozilla (.dtd, .properties, etc), Symbian, |
55 |
Innosetup, tikiwiki, subtitles |
56 |
* Tools: count, search, debug, segment and pretranslate localization |
57 |
files. Extract terminology. Pseudo-localize |
58 |
* Checkers: validate translations with over 45 checks |
59 |
|
60 |
%package devel |
61 |
Summary: Development API for %{name} applications |
62 |
Group: Development/Tools |
63 |
License: GPLv2+ |
64 |
Requires: %{name} = %{version}-%{release} |
65 |
|
66 |
%description devel |
67 |
The %{name}-devel package contains Translate Toolkit API |
68 |
documentation for developers wishing to build new tools for the |
69 |
toolkit or to use the libraries in other localization tools. |
70 |
|
71 |
|
72 |
%prep |
73 |
%setup -q |
74 |
%patch0 -p1 |
75 |
%patch1 -p1 |
76 |
%patch2 -p2 |
77 |
|
78 |
|
79 |
%build |
80 |
%{__python} setup.py build |
81 |
|
82 |
|
83 |
%install |
84 |
rm -rf $RPM_BUILD_ROOT |
85 |
%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT |
86 |
|
87 |
# create manpages |
88 |
mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man1 |
89 |
for program in $RPM_BUILD_ROOT/%{_bindir}/*; do |
90 |
case $(basename $program) in |
91 |
pocompendium|poen|pomigrate2|popuretext|poreencode|posplit|pocount|poglossary|lookupclient.py|tmserver|build_tmdb) |
92 |
;; |
93 |
*) |
94 |
LC_ALL=C PYTHONPATH=. $program --manpage \ |
95 |
> $RPM_BUILD_ROOT/%{_mandir}/man1/$(basename $program).1 \ |
96 |
|| rm -f $RPM_BUILD_ROOT/%{_mandir}/man1/$(basename $program).1 |
97 |
;; |
98 |
esac |
99 |
done |
100 |
|
101 |
# remove documentation files from site-packages |
102 |
rm -r $RPM_BUILD_ROOT/%{python_sitelib}/translate/doc |
103 |
rm $RPM_BUILD_ROOT/%{python_sitelib}/translate/{COPYING,ChangeLog,LICENSE,README} |
104 |
rm $RPM_BUILD_ROOT/%{python_sitelib}/translate/{convert,filters,tools}/TODO |
105 |
rm $RPM_BUILD_ROOT/%{python_sitelib}/translate/misc/README |
106 |
|
107 |
# Move data files to /usr/share |
108 |
mkdir $RPM_BUILD_ROOT/%{_datadir}/translate-toolkit |
109 |
mv $RPM_BUILD_ROOT/%{python_sitelib}/translate/share/stoplist* $RPM_BUILD_ROOT/%{_datadir}/translate-toolkit |
110 |
mv $RPM_BUILD_ROOT/%{python_sitelib}/translate/share/langmodels $RPM_BUILD_ROOT/%{_datadir}/translate-toolkit |
111 |
rmdir $RPM_BUILD_ROOT/%{python_sitelib}/translate/share |
112 |
|
113 |
|
114 |
%clean |
115 |
rm -rf $RPM_BUILD_ROOT |
116 |
|
117 |
|
118 |
%files |
119 |
%defattr(-,root,root,-) |
120 |
%doc translate/ChangeLog translate/COPYING translate/README |
121 |
%doc translate/doc/user/toolkit-[a-z]* |
122 |
%{_bindir}/* |
123 |
%{_mandir}/man1/* |
124 |
%{_datadir}/translate-toolkit |
125 |
%{python_sitelib}/translate* |
126 |
|
127 |
%files devel |
128 |
%defattr(-,root,root,-) |
129 |
%doc translate/doc/api/* |
130 |
|
131 |
|
132 |
%changelog |
133 |
* Wed Feb 24 2010 Shad L. Lords <slords@mail.com> 1.5.3-2.0 |
134 |
- Update Requires to match el5 requirements |
135 |
|
136 |
* Mon Feb 22 2010 Dwayne Bailey <dwayne@translate.org.za> - 1.5.3-2 |
137 |
- Bug #1372: Decode fulesystem paths correctly |
138 |
|
139 |
* Thu Feb 4 2010 Dwayne Bailey <dwayne@translate.org.za> - 1.5.3-1 |
140 |
- Update to 1.5.3 |
141 |
- Plural information for more languages |
142 |
- Cleaner language names (for the benefit of Pootle and Virtaal) |
143 |
- Skype support for prop2po and po2prop [by Filip Miletić] |
144 |
- Small improvement to Qt .ts support |
145 |
- Other small bugfixes |
146 |
- Redo stoplist patch |
147 |
- Drop gaupol and iniparse from BuildRequires |
148 |
|
149 |
* Mon Jan 11 2010 Dwayne Bailey <dwayne@translate.org.za> - 1.5.2-1 |
150 |
- Update to 1.5.2 |
151 |
- Initial support for '#' type comments in the PHP converters (#1298) |
152 |
- Reliability improvements for Pootle concerning Xapian and Python 2.4 |
153 |
- A small fix affecting searching in Virtaal |
154 |
- Classify XML tags as editable placeables for Virtaal (#1287) |
155 |
- Correctly handle language codes with '@' in them (like ca@valencia) |
156 |
- Don't unnecessarily add empty 'note' nodes in XLIFF (#1319) |
157 |
- Allow for the translation of 'title' attributes in XML (#1294) |
158 |
|
159 |
* Thu Nov 26 2009 Dwayne Bailey <dwayne@translate.org.za> - 1.5.1-1 |
160 |
- Update to 1.5.1 |
161 |
- Support for OmegaT glossary files |
162 |
- Fixes for the fast (but still experimental) C PO parser |
163 |
- Fixes for the LRU cache |
164 |
- Fixes for correct and faster language identification |
165 |
- Remove backports introduced in 1.5.0-1 |
166 |
|
167 |
* Tue Nov 24 2009 Dwayne Bailey <dwayne@translate.org.za> - 1.5.0-1 |
168 |
- Update to 1.5.0 |
169 |
- The tmserver will now be multithreaded if cherrypy is installed |
170 |
- New faster PO parser for testing |
171 |
- Optionally preserve HTML comments in html2po. Bug #1183 |
172 |
- Many reliability and API improvements for the upcoming versions of Pootle and Virtaal |
173 |
- Move langmodels into /usr/share/translate-toolkit |
174 |
- Remove backports introduced in 1.4.1-2 |
175 |
- Backports: |
176 |
- r13226, r13234 - fix and optimise language identification |
177 |
- r13225 - check for units based on source and target text |
178 |
|
179 |
* Fri Nov 6 2009 Dwayne Bailey <dwayne@translate.org.za> - 1.4.1-3 |
180 |
- Backport various fixes needed for Pootle 1.3 |
181 |
- r12685 index speedup |
182 |
- r12686 id index |
183 |
- r12724 hassuggestion speedup |
184 |
- r12727 msgidcomment |
185 |
|
186 |
* Thu Oct 15 2009 Dwayne Bailey <dwayne@translate.org.za> - 1.4.1-2 |
187 |
- Retag |
188 |
|
189 |
* Thu Oct 15 2009 Dwayne Bailey <dwayne@translate.org.za> - 1.4.1-1 |
190 |
- Update to 1.4.1 |
191 |
- Better support for printf (including numbered) variables (bug 1118) |
192 |
- Fixes for the upcoming Pootle, including combined searches (bug 1036) |
193 |
- subtle bug in tmserver handling of the percent sign (%) (bug 1101) |
194 |
- obsolete messages seen as translatable (bug 1114) |
195 |
- Drop patch bug#1114 - obsolete messages should not be translatable |
196 |
|
197 |
* Mon Aug 24 2009 Dwayne Bailey <dwayne@translate.org.za> - 1.4.0-2 |
198 |
- Upstream bug #1114 - obsolete messages should not be translatable |
199 |
|
200 |
* Wed Aug 5 2009 Dwayne Bailey <dwayne@translate.org.za> - 1.4.0-1 |
201 |
- Update to 1.4.0 final |
202 |
|
203 |
* Fri Jul 31 2009 Dwayne Bailey <dwayne@translate.org.za> - 1.4.0-0.5.rc2 |
204 |
- Fix tarball reference |
205 |
|
206 |
* Fri Jul 31 2009 Dwayne Bailey <dwayne@translate.org.za> - 1.4.0-0.4.rc2 |
207 |
- Update to 1.4.0 rc2 |
208 |
- Some small fixes for XLIFF support |
209 |
- API documentation has been augmented with diagrams |
210 |
|
211 |
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.0-0.3.rc1 |
212 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild |
213 |
|
214 |
* Fri Jul 24 2009 Dwayne Bailey <dwayne@translate.org.za> - 1.4.0-0.2.rc1 |
215 |
- Update to 1.4.0 rc1 |
216 |
|
217 |
* Sat Jun 27 2009 Dwayne Bailey <dwayne@translate.org.za> - 1.4.0-0.1.beta1 |
218 |
- Update to 1.4.0 beta1 |
219 |
|
220 |
* Fri Jun 12 2009 Dwayne Bailey <dwayne@translate.org.za> - 1.3.0-3 |
221 |
- Remove old excludes for /usr/bin/*.py{o,c} |
222 |
|
223 |
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-2 |
224 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild |
225 |
|
226 |
* Wed Feb 18 2009 Dwayne Bailey <dwayne@translate.org.za> - 1.3.0-1 |
227 |
- Update to 1.3.0 final release |
228 |
|
229 |
* Tue Feb 3 2009 Dwayne Bailey <dwayne@translate.org.za> - 1.3.0-0.2.rc1 |
230 |
- Update to 1.3.0 rc1 |
231 |
|
232 |
* Thu Jan 22 2009 Dwayne Bailey <dwayne@translate.org.za> - 1.3.0-0.1.beta1 |
233 |
- Update to 1.3.0 beta1 |
234 |
|
235 |
* Sat Dec 6 2008 Dwayne Bailey <dwayne@translate.org.za> - 1.2.1-1 |
236 |
- Update to 1.2.1 |
237 |
- Refresh poterminology patch |
238 |
|
239 |
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.2.0-4 |
240 |
- Rebuild for Python 2.6 |
241 |
|
242 |
* Mon Nov 17 2008 Dwayne Bailey <dwayne@translate.org.za> - 1.2.0-3 |
243 |
- Rebuild using %%{ix86} instead of i386 |
244 |
|
245 |
* Mon Nov 17 2008 Dwayne Bailey <dwayne@translate.org.za> - 1.2.0-2 |
246 |
- python-psyco is only available on i386 |
247 |
|
248 |
* Wed Nov 12 2008 Dwayne Bailey <dwayne@translate.org.za> - 1.2.0-1 |
249 |
- Update to 1.2.0 |
250 |
- Patch poterminology to read stoplist-en from /usr/share/ |
251 |
- Add devel package to include generated Translate Toolkit API documentation |
252 |
- Add dependencies: python-iniparse, python-Levenshtein, python-lxml, |
253 |
python-psyco, python-vobject, gettext-libs |
254 |
|
255 |
* Fri Jun 06 2008 Roozbeh Pournader <roozbeh@gmail.com> - 1.1.1-1 |
256 |
- update to 1.1.1 |
257 |
|
258 |
* Mon Jan 21 2008 Jens Petersen <petersen@redhat.com> - 1.0.1-1 |
259 |
- update license field to GPLv2+ |
260 |
- update to 1.0.1 with changes from Dwayne Bailey (#315021): |
261 |
|
262 |
* Thu Dec 20 2007 Dwayne Bailey <dwayne@translate.org.za> |
263 |
- Update spec to upstream 1.0.1 |
264 |
- Update patch for Python 2.5 ElementTree |
265 |
- Cleanup the doc installation |
266 |
- Create man pages |
267 |
- Update description |
268 |
|
269 |
* Sat May 05 2007 Roozbeh Pournader <roozbeh@farsiweb.info> - 0.11-1 |
270 |
- Update to upstream 0.11, adding HTML documentation |
271 |
|
272 |
* Tue Jan 09 2007 Roozbeh Pournader <roozbeh@farsiweb.info> - 0.10.1-4 |
273 |
- Patch to use Python 2.5's built-in ElementTree |
274 |
|
275 |
* Sat Dec 30 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 0.10.1-3 |
276 |
- Rebuild to fix dependency problem |
277 |
|
278 |
* Sat Dec 09 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 0.10.1-2 |
279 |
- Rebuild for Python 2.5 |
280 |
|
281 |
* Thu Nov 09 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 0.10.1-1 |
282 |
- Update to upstream 0.10.1 |
283 |
- Cleanup based on latest Python packaging guidelines |
284 |
|
285 |
* Wed Nov 08 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 0.8-2 |
286 |
- Rebuild to get into Rawhide |
287 |
|
288 |
* Mon Feb 20 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 0.8-1 |
289 |
- Update to final 0.8 |
290 |
|
291 |
* Sun Feb 19 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 0.8-0.10.rc6 |
292 |
- Fix a typo in po2dtd that made po2moz fail |
293 |
|
294 |
* Tue Feb 14 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 0.8-0.9.rc6 |
295 |
- Rebuild for Fedora Extras 5 |
296 |
|
297 |
* Tue Feb 07 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 0.8-0.8.rc6 |
298 |
- Require python-enchant for spellchecking support in pofilter |
299 |
|
300 |
* Sat Feb 04 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 0.8-0.7.rc6 |
301 |
- Rebuild |
302 |
|
303 |
* Sat Feb 04 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 0.8-0.6.rc6 |
304 |
- Update to 0.8rc6 |
305 |
|
306 |
* Sat Jan 21 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 0.8-0.5.rc5 |
307 |
- Use sed instead of dos2unix |
308 |
|
309 |
* Mon Jan 09 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 0.8-0.4.rc5 |
310 |
- Own forgotten subdirectories |
311 |
|
312 |
* Mon Jan 09 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 0.8-0.3.rc5 |
313 |
- Fix the jToolkit requirement |
314 |
|
315 |
* Sun Jan 08 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 0.8-0.2.rc5 |
316 |
- Add %%{?dist} tag |
317 |
|
318 |
* Sat Jan 07 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 0.8-0.1.rc5 |
319 |
- Initial packaging |