2013-09-07 01:40:48 +00:00
|
|
|
#!/usr/bin/env python3
|
2011-07-09 14:51:06 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2013-07-18 19:28:35 +00:00
|
|
|
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
|
2011-07-09 14:51:06 +00:00
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# OpenLP - Open Source Lyrics Projection #
|
|
|
|
# --------------------------------------------------------------------------- #
|
2013-12-24 08:56:50 +00:00
|
|
|
# Copyright (c) 2008-2014 Raoul Snyman #
|
|
|
|
# Portions copyright (c) 2008-2014 Tim Bentley, Gerald Britton, Jonathan #
|
2012-06-22 14:14:53 +00:00
|
|
|
# Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, #
|
2012-11-11 21:16:14 +00:00
|
|
|
# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. #
|
2012-10-21 13:16:22 +00:00
|
|
|
# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, #
|
|
|
|
# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, #
|
|
|
|
# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, #
|
2012-12-01 07:57:54 +00:00
|
|
|
# Frode Woldsund, Martin Zibricky, Patrick Zimmermann #
|
2011-07-09 14:51:06 +00:00
|
|
|
# --------------------------------------------------------------------------- #
|
|
|
|
# This program 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; version 2 of the License. #
|
|
|
|
# #
|
|
|
|
# This program 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 this program; if not, write to the Free Software Foundation, Inc., 59 #
|
|
|
|
# Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
"""
|
|
|
|
This script is used to check dependencies of OpenLP. It checks availability
|
|
|
|
of required python modules and their version. To verify availability of Python
|
|
|
|
modules, simply run this script::
|
|
|
|
|
|
|
|
@:~$ ./check_dependencies.py
|
|
|
|
|
|
|
|
"""
|
|
|
|
import os
|
|
|
|
import sys
|
2013-01-07 09:18:29 +00:00
|
|
|
from distutils.version import LooseVersion
|
2011-07-09 14:51:06 +00:00
|
|
|
|
2013-03-14 10:51:49 +00:00
|
|
|
# If we try to import uno before nose this will create a warning. Just try to import nose first to suppress the warning.
|
2013-02-06 20:36:59 +00:00
|
|
|
try:
|
|
|
|
import nose
|
|
|
|
except ImportError:
|
2013-10-03 19:56:12 +00:00
|
|
|
nose = None
|
2013-02-06 20:36:59 +00:00
|
|
|
|
2013-02-06 20:37:30 +00:00
|
|
|
IS_WIN = sys.platform.startswith('win')
|
2011-07-09 14:51:06 +00:00
|
|
|
|
2013-09-14 19:16:14 +00:00
|
|
|
|
2011-07-09 14:51:06 +00:00
|
|
|
VERS = {
|
2013-09-07 01:40:48 +00:00
|
|
|
'Python': '3.0',
|
2011-07-09 14:51:06 +00:00
|
|
|
'PyQt4': '4.6',
|
|
|
|
'Qt4': '4.6',
|
|
|
|
'sqlalchemy': '0.5',
|
|
|
|
# pyenchant 1.6 required on Windows
|
2013-02-06 20:37:30 +00:00
|
|
|
'enchant': '1.6' if IS_WIN else '1.3'
|
2011-08-25 20:14:02 +00:00
|
|
|
}
|
2011-07-09 14:51:06 +00:00
|
|
|
|
|
|
|
# pywin32
|
|
|
|
WIN32_MODULES = [
|
|
|
|
'win32com',
|
|
|
|
'win32ui',
|
|
|
|
'pywintypes',
|
2013-07-02 21:24:18 +00:00
|
|
|
'pyodbc',
|
2013-09-07 21:29:31 +00:00
|
|
|
'icu',
|
2011-08-25 20:14:02 +00:00
|
|
|
]
|
2011-07-09 14:51:06 +00:00
|
|
|
|
|
|
|
MODULES = [
|
|
|
|
'PyQt4',
|
|
|
|
'PyQt4.QtCore',
|
|
|
|
'PyQt4.QtGui',
|
|
|
|
'PyQt4.QtNetwork',
|
|
|
|
'PyQt4.QtOpenGL',
|
|
|
|
'PyQt4.QtSvg',
|
|
|
|
'PyQt4.QtTest',
|
|
|
|
'PyQt4.QtWebKit',
|
|
|
|
'PyQt4.phonon',
|
|
|
|
'sqlalchemy',
|
2013-09-07 01:40:48 +00:00
|
|
|
'alembic',
|
2011-07-09 14:51:06 +00:00
|
|
|
'sqlite3',
|
|
|
|
'lxml',
|
|
|
|
'chardet',
|
|
|
|
'enchant',
|
2013-04-05 19:58:13 +00:00
|
|
|
'bs4',
|
2011-07-09 14:51:06 +00:00
|
|
|
'mako',
|
2011-10-26 07:40:12 +00:00
|
|
|
'uno',
|
2011-08-25 20:14:02 +00:00
|
|
|
]
|
2011-07-09 14:51:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
OPTIONAL_MODULES = [
|
2013-10-03 19:56:12 +00:00
|
|
|
('MySQLdb', '(MySQL support)', True),
|
|
|
|
('psycopg2', '(PostgreSQL support)', True),
|
|
|
|
('nose', '(testing framework)', True),
|
|
|
|
('mock', '(testing module)', sys.version_info[1] < 3),
|
2014-03-31 17:57:15 +00:00
|
|
|
('jenkins', '(access jenkins api - package name: jenkins-webapi)', True),
|
2011-07-13 13:41:32 +00:00
|
|
|
]
|
2011-07-09 14:51:06 +00:00
|
|
|
|
|
|
|
w = sys.stdout.write
|
|
|
|
|
2013-09-14 19:16:14 +00:00
|
|
|
|
2011-07-09 14:51:06 +00:00
|
|
|
def check_vers(version, required, text):
|
2013-10-03 19:56:12 +00:00
|
|
|
"""
|
|
|
|
Check the version of a dependency. Returns ``True`` if the version is greater than or equal, or False if less than.
|
|
|
|
|
|
|
|
``version``
|
|
|
|
The actual version of the dependency
|
|
|
|
|
|
|
|
``required``
|
|
|
|
The required version of the dependency
|
|
|
|
|
|
|
|
``text``
|
|
|
|
The dependency's name
|
|
|
|
"""
|
|
|
|
space = (27 - len(required) - len(text)) * ' '
|
2013-06-16 19:42:50 +00:00
|
|
|
if not isinstance(version, str):
|
2013-01-07 09:18:29 +00:00
|
|
|
version = '.'.join(map(str, version))
|
2013-06-16 19:42:50 +00:00
|
|
|
if not isinstance(required, str):
|
2013-01-07 09:18:29 +00:00
|
|
|
required = '.'.join(map(str, required))
|
2013-10-03 19:56:12 +00:00
|
|
|
w(' %s >= %s ... ' % (text, required) + space)
|
2013-01-07 09:18:29 +00:00
|
|
|
if LooseVersion(version) >= LooseVersion(required):
|
|
|
|
w(version + os.linesep)
|
2011-07-09 14:51:06 +00:00
|
|
|
return True
|
|
|
|
else:
|
|
|
|
w('FAIL' + os.linesep)
|
|
|
|
return False
|
|
|
|
|
2013-09-14 19:16:14 +00:00
|
|
|
|
2013-10-03 19:56:12 +00:00
|
|
|
def check_module(mod, text='', indent=' '):
|
|
|
|
"""
|
|
|
|
Check that a module is installed.
|
|
|
|
|
|
|
|
``mod``
|
|
|
|
The module to check for.
|
|
|
|
|
|
|
|
``text``
|
|
|
|
The text to display.
|
|
|
|
|
|
|
|
``indent``
|
|
|
|
How much to indent the text by.
|
|
|
|
"""
|
|
|
|
space = (31 - len(mod) - len(text)) * ' '
|
|
|
|
w(indent + '%s %s... ' % (mod, text) + space)
|
|
|
|
try:
|
|
|
|
__import__(mod)
|
|
|
|
w('OK')
|
|
|
|
except ImportError:
|
|
|
|
w('FAIL')
|
|
|
|
w(os.linesep)
|
|
|
|
|
|
|
|
|
2011-07-10 12:00:58 +00:00
|
|
|
def print_vers_fail(required, text):
|
|
|
|
print(' %s >= %s ... FAIL' % (text, required))
|
|
|
|
|
2013-09-14 19:16:14 +00:00
|
|
|
|
2011-07-09 14:51:06 +00:00
|
|
|
def verify_python():
|
|
|
|
if not check_vers(list(sys.version_info), VERS['Python'], text='Python'):
|
|
|
|
exit(1)
|
|
|
|
|
2013-09-14 19:16:14 +00:00
|
|
|
|
2011-07-09 14:51:06 +00:00
|
|
|
def verify_versions():
|
|
|
|
print('Verifying version of modules...')
|
2011-07-10 12:00:58 +00:00
|
|
|
try:
|
|
|
|
from PyQt4 import QtCore
|
2011-07-13 13:41:32 +00:00
|
|
|
check_vers(QtCore.PYQT_VERSION_STR, VERS['PyQt4'], 'PyQt4')
|
|
|
|
check_vers(QtCore.qVersion(), VERS['Qt4'], 'Qt4')
|
2011-07-10 12:00:58 +00:00
|
|
|
except ImportError:
|
|
|
|
print_vers_fail(VERS['PyQt4'], 'PyQt4')
|
|
|
|
print_vers_fail(VERS['Qt4'], 'Qt4')
|
|
|
|
try:
|
|
|
|
import sqlalchemy
|
|
|
|
check_vers(sqlalchemy.__version__, VERS['sqlalchemy'], 'sqlalchemy')
|
|
|
|
except ImportError:
|
|
|
|
print_vers_fail(VERS['sqlalchemy'], 'sqlalchemy')
|
|
|
|
try:
|
|
|
|
import enchant
|
|
|
|
check_vers(enchant.__version__, VERS['enchant'], 'enchant')
|
|
|
|
except ImportError:
|
|
|
|
print_vers_fail(VERS['enchant'], 'enchant')
|
2011-07-09 14:51:06 +00:00
|
|
|
|
2013-09-14 19:16:14 +00:00
|
|
|
|
2013-10-03 19:56:12 +00:00
|
|
|
def print_enchant_backends_and_languages():
|
|
|
|
"""
|
|
|
|
Check if PyEnchant is installed.
|
|
|
|
"""
|
2011-07-10 12:00:58 +00:00
|
|
|
w('Enchant (spell checker)... ')
|
|
|
|
try:
|
|
|
|
import enchant
|
|
|
|
w(os.linesep)
|
|
|
|
backends = ', '.join([x.name for x in enchant.Broker().describe()])
|
|
|
|
print(' available backends: %s' % backends)
|
|
|
|
langs = ', '.join(enchant.list_languages())
|
|
|
|
print(' available languages: %s' % langs)
|
|
|
|
except ImportError:
|
|
|
|
w('FAIL' + os.linesep)
|
2011-07-09 20:13:33 +00:00
|
|
|
|
2013-09-14 19:16:14 +00:00
|
|
|
|
2013-10-03 19:56:12 +00:00
|
|
|
def print_qt_image_formats():
|
|
|
|
"""
|
|
|
|
Print out the image formats that Qt4 supports.
|
|
|
|
"""
|
2011-07-10 12:00:58 +00:00
|
|
|
w('Qt4 image formats... ')
|
|
|
|
try:
|
|
|
|
from PyQt4 import QtGui
|
2013-10-03 19:56:12 +00:00
|
|
|
read_f = ', '.join([bytes(fmt).decode().lower() for fmt in QtGui.QImageReader.supportedImageFormats()])
|
|
|
|
write_f = ', '.join([bytes(fmt).decode().lower() for fmt in QtGui.QImageWriter.supportedImageFormats()])
|
2011-07-10 12:00:58 +00:00
|
|
|
w(os.linesep)
|
|
|
|
print(' read: %s' % read_f)
|
|
|
|
print(' write: %s' % write_f)
|
|
|
|
except ImportError:
|
|
|
|
w('FAIL' + os.linesep)
|
2011-07-09 20:13:33 +00:00
|
|
|
|
2013-09-14 19:16:14 +00:00
|
|
|
|
2011-07-09 14:51:06 +00:00
|
|
|
def main():
|
2013-10-03 19:56:12 +00:00
|
|
|
"""
|
|
|
|
Run the dependency checker.
|
|
|
|
"""
|
|
|
|
print('Checking Python version...')
|
2011-07-09 14:51:06 +00:00
|
|
|
verify_python()
|
|
|
|
print('Checking for modules...')
|
|
|
|
for m in MODULES:
|
|
|
|
check_module(m)
|
|
|
|
print('Checking for optional modules...')
|
|
|
|
for m in OPTIONAL_MODULES:
|
2013-10-03 19:56:12 +00:00
|
|
|
if m[2]:
|
|
|
|
check_module(m[0], text=m[1])
|
2013-02-06 20:37:30 +00:00
|
|
|
if IS_WIN:
|
2011-07-09 14:51:06 +00:00
|
|
|
print('Checking for Windows specific modules...')
|
|
|
|
for m in WIN32_MODULES:
|
|
|
|
check_module(m)
|
|
|
|
verify_versions()
|
2013-10-03 19:56:12 +00:00
|
|
|
print_qt_image_formats()
|
|
|
|
print_enchant_backends_and_languages()
|
2011-07-09 14:51:06 +00:00
|
|
|
|
2013-08-31 18:17:38 +00:00
|
|
|
if __name__ == '__main__':
|
2011-07-09 14:51:06 +00:00
|
|
|
main()
|