From f8916f895716df4fb3985aff095fe1590dba4e9f Mon Sep 17 00:00:00 2001 From: Tomas Mlcoch Date: Mon, 16 Aug 2010 17:22:20 +0200 Subject: Add support for internationalizing (I18n). --- setup.py | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 60 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 52287c6..00c90c5 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,61 @@ from setuptools import setup +from distutils import cmd +from distutils.command.install_data import install_data as _install_data +from distutils.command.build import build as _build + +import os +import subprocess + + +class build_trans(cmd.Command): + description = 'Compile .po files into .mo files' + def initialize_options(self): + pass + + def finalize_options(self): + pass + + def run(self): + po_dir = os.path.join(os.path.dirname(os.curdir), 'po') + for path, names, filenames in os.walk(po_dir): + for f in filenames: + if f.endswith('.po'): + lang = f[:len(f) - 3] + src = os.path.join(path, f) + dest_path = os.path.join('build', 'locale', lang, 'LC_MESSAGES') + dest = os.path.join(dest_path, 'firstaidkit.mo') + if not os.path.exists(dest_path): + os.makedirs(dest_path) + if not os.path.exists(dest): + print 'Compiling %s' % src + #msgfmt.make(src, dest) + subprocess.Popen(['msgfmt.py', '-o', dest, src]) + else: + src_mtime = os.stat(src)[8] + dest_mtime = os.stat(dest)[8] + if src_mtime > dest_mtime: + print 'Compiling %s' % src + #msgfmt.make(src, dest) + subprocess.Popen(['msgfmt.py', '-o', dest, src]) + +class build(_build): + sub_commands = _build.sub_commands + [('build_trans', None)] + def run(self): + _build.run(self) + +class install_data(_install_data): + def run(self): + for lang in os.listdir('build/locale/'): + lang_dir = os.path.join('/usr/share/locale', lang, 'LC_MESSAGES') + lang_file = os.path.join('build/locale', lang, 'LC_MESSAGES/firstaidkit.mo') + self.data_files.append( (lang_dir, [lang_file]) ) + _install_data.run(self) + +cmdclass = { + 'build': build, + 'build_trans': build_trans, + 'install_data': install_data, +} setup(name='firstaidkit', version='0.2.11', @@ -8,6 +65,8 @@ setup(name='firstaidkit', url='http://fedorahosted.org/firstaidkit', license='GPLv2+', packages = ['pyfirstaidkit', 'pyfirstaidkit/utils'], - scripts = ['firstaidkit', 'firstaidkitrevert', 'firstaidkit-qs'] + scripts = ['firstaidkit', 'firstaidkitrevert', 'firstaidkit-qs'], + data_files = [('', '')], + cmdclass = cmdclass, ) -- cgit