1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
|
#! /usr/bin/env python
# -*- coding: utf-8 -*-
# ############################################################################ #
# # # #
# # Copyright (c) 2009-2014 Neil Wallace <neil@openmolar.com> # #
# # # #
# # This file is part of OpenMolar. # #
# # # #
# # OpenMolar is free software: you can redistribute it and/or modify # #
# # it under the terms of the GNU General Public License as published by # #
# # the Free Software Foundation, either version 3 of the License, or # #
# # (at your option) any later version. # #
# # # #
# # OpenMolar is distributed in the hope that it will be useful, # #
# # but WITHOUT ANY WARRANTY; without even the implied warranty of # #
# # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # #
# # GNU General Public License for more details. # #
# # # #
# # You should have received a copy of the GNU General Public License # #
# # along with OpenMolar. If not, see <http://www.gnu.org/licenses/>. # #
# # # #
# ############################################################################ #
'''
distutils script for openmolar1.
see https://docs.python.org/2/distutils/configfile.html for explanation
'''
from distutils.command.install_data import install_data
from distutils.command.sdist import sdist as _sdist
from distutils.core import setup
from distutils.dep_util import newer
from distutils.log import info
import glob
import os
import re
import shutil
import sys
OM_PATH = os.path.join(os.path.abspath(os.path.dirname(__file__)), "src")
sys.path.insert(0, OM_PATH)
from openmolar.settings import version
VERSION = version.VERSION
class sdist(_sdist):
'''
overwrite distutils standard source code builder to remove
extraneous code from version.py
'''
version_filepath = re.sub("\.pyc$", ".py", version.__file__)
backup_version_filepath = version_filepath + "_orig"
def run(self, *args, **kwargs):
self.tear_down()
_sdist.run(self, *args, **kwargs)
self.clean_up()
def tear_down(self):
print "rewriting version.py"
f = open(self.version_filepath, "r")
new_data = ""
add_line = True
for line_ in f:
if line_.startswith("VERSION ="):
print "Forcing version number of '%s'" % VERSION
new_data += 'VERSION = "%s"\n\n\n' % VERSION
add_line = False
elif line_.startswith("if __name__"):
add_line = True
if add_line:
new_data += line_
shutil.move(self.version_filepath, self.backup_version_filepath)
f = open(self.version_filepath, "w")
f.write(new_data)
f.close()
def clean_up(self):
os.remove(self.version_filepath)
shutil.move(self.backup_version_filepath, self.version_filepath)
class InstallData(install_data):
'''
re-implement class distutils.install_data install_data
compile binary translation files for gettext
'''
def run(self):
print "COMPILING PO FILES"
i18nfiles = []
if not os.path.isdir("src/openmolar/locale/"):
print "WARNING - language files are missing!"
for po_file in glob.glob("src/openmolar/locale/*.po"):
directory, file_ = os.path.split(po_file)
lang = file_.replace(".po", "")
mo_dir = os.path.join(directory, lang)
try:
os.mkdir(mo_dir)
except OSError:
pass
mo_file = os.path.join(mo_dir, "openmolar.mo")
if not os.path.exists(mo_file) or newer(po_file, mo_file):
cmd = 'msgfmt -o %s %s' % (mo_file, po_file)
info('compiling %s -> %s' % (po_file, mo_file))
if os.system(cmd) != 0:
info('Error while running msgfmt on %s' % po_file)
destdir = os.path.join("/usr", "share", "locale", lang,
"LC_MESSAGES")
i18nfiles.append((destdir, [mo_file]))
self.data_files.extend(i18nfiles)
install_data.run(self)
setup(
name='openmolar',
version=VERSION,
description='Open Source Dental Practice Management Software',
author='Neil Wallace',
author_email='neil@openmolar.com',
url='https://www.openmolar.com',
license='GPL v3',
package_dir={'openmolar': 'src/openmolar'},
packages=['openmolar',
'openmolar.backports',
'openmolar.dbtools',
'openmolar.schema_upgrades',
'openmolar.qt4gui',
'openmolar.qt4gui.dialogs',
'openmolar.qt4gui.appointment_gui_modules',
'openmolar.qt4gui.charts',
'openmolar.qt4gui.compiled_uis',
'openmolar.qt4gui.customwidgets',
'openmolar.qt4gui.dialogs',
'openmolar.qt4gui.fees',
'openmolar.qt4gui.feescale_editor',
'openmolar.qt4gui.phrasebook',
'openmolar.qt4gui.printing',
'openmolar.qt4gui.printing.gp17',
'openmolar.settings',
'openmolar.ptModules'],
package_data={'openmolar': ['resources/icons/*.*',
'resources/teeth/*.png',
'resources/gp17/*.jpg',
'resources/gp17-1/*.png',
'resources/feescales/*.xml',
'resources/feescales/*.xsd',
'resources/phrasebook/*.*',
'resources/*.*',
'html/*.*',
'html/images/*.*',
'html/firstrun/*.*', ]},
data_files=[
('/usr/share/man/man1', ['bin/openmolar.1']),
('/usr/share/icons/hicolor/scalable/apps', ['bin/openmolar.svg']),
('/usr/share/applications', ['bin/openmolar.desktop']), ],
cmdclass={'sdist': sdist,
'install_data': InstallData},
scripts=['openmolar'],
)
|