root / pykota / trunk / checkdeps.py @ 2892

Revision 2892, 5.3 kB (checked in by jerome, 18 years ago)

Added a check for pkipplib.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
RevLine 
[1905]1#! /usr/bin/env python
2# -*- coding: ISO-8859-15 -*-
3#
4# PyKota
5#
6# PyKota : Print Quotas for CUPS and LPRng
7#
[2622]8# (c) 2003, 2004, 2005, 2006 Jerome Alet <alet@librelogiciel.com>
[1905]9# This program is free software; you can redistribute it and/or modify
10# it under the terms of the GNU General Public License as published by
11# the Free Software Foundation; either version 2 of the License, or
12# (at your option) any later version.
13#
14# This program is distributed in the hope that it will be useful,
15# but WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17# GNU General Public License for more details.
18#
19# You should have received a copy of the GNU General Public License
20# along with this program; if not, write to the Free Software
[2303]21# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
[1905]22#
23# $Id$
24#
[2126]25#
[1905]26
27import sys
28import os
29
30def checkModule(module) :
31    """Checks if a Python module is available or not."""
32    try :
33        exec "import %s" % module
34    except ImportError :   
35        return 0
36    else :   
37        return 1
38       
39def checkCommand(command) :
40    """Checks if a command is available or not."""
41    input = os.popen("type %s 2>/dev/null" % command)
42    result = input.read().strip()
43    input.close()
44    return result
45   
46def checkWithPrompt(prompt, module=None, command=None, helper=None) :
47    """Tells the user what will be checked, and asks him what to do if something is absent."""
48    sys.stdout.write("Checking for %s availability : " % prompt)
49    sys.stdout.flush()
50    if command is not None :
51        result = checkCommand(command)
52    elif module is not None :   
53        result = checkModule(module)
54    if result :   
55        sys.stdout.write("OK\n")
56    else :   
57        sys.stdout.write("NO.\n")
58        sys.stderr.write("ERROR : %s not available !\n" % prompt)
59        sys.stdout.write("%s\n" % helper)
60   
61if __name__ == "__main__" :   
62    print "Checking PyKota dependencies..."
63   
[2784]64    # checks if Python version is correct, we need >= 2.2
65    if not (sys.version > "2.2") :
66        sys.stderr.write("PyKota needs at least Python v2.2 !\nYour version seems to be older than that, please update.\nAborted !\n")
[1905]67        sys.exit(-1)
68       
69    # checks if some needed Python modules are there or not.
[2603]70    modulestocheck = [ ("Python-PygreSQL", "pg", "PygreSQL is mandatory if you want to use PostgreSQL as the quota database backend.\nSee http://www.pygresql.org"),
71                       ("Python-SQLite", "pysqlite2", "Python-SQLite is mandatory if you want to use SQLite as the quota database backend.\nSee http://www.pysqlite.org"),
[2784]72                       ("MySQL-Python", "MySQLdb", "MySQL-Python is mandatory if you want to use MySQL as the quota database backend.\nSee http://sourceforge.net/projects/mysql-python"),
[1920]73                       ("Python-egenix-mxDateTime", "mx.DateTime", "eGenix' mxDateTime is mandatory for PyKota to work.\nSee http://www.egenix.com"),
[2603]74                       ("Python-LDAP", "ldap", "Python-LDAP is mandatory if you plan to use an LDAP\ndirectory as the quota database backend.\nSee http://python-ldap.sf.net"),
[2322]75                       ("Python-OSD", "pyosd", "Python-OSD is recommended if you plan to use the X Window On Screen Display\nprint quota reminder named pykosd. See http://repose.cx/pyosd/"),
[1905]76                       ("Python-SNMP", "pysnmp", "Python-SNMP is recommended if you plan to use hardware\naccounting with printers which support SNMP.\nSee http://pysnmp.sf.net"),
77                       ("Python-JAXML", "jaxml", "Python-JAXML is recommended if you plan to dump datas in the XML format.\nSee http://www.librelogiciel.com/software/"),
[1919]78                       ("Python-ReportLab", "reportlab.pdfgen.canvas", "Python-ReportLab is required if you plan to have PyKota generate banners.\nSee http://www.reportlab.org/"),
79                       ("Python-Imaging", "PIL.Image", "Python-Imaging is required if you plan to have PyKota generate banners.\nSee http://www.pythonware.com/downloads/"),
[2629]80                       ("Python-Psyco", "psyco", "Python-Psyco speeds up parsing of print files, you should use it.\nSee http://psyco.sourceforge.net/"),
[2892]81                       ("Python-pkpgcounter", "pkpgpdls", "Python-pkpgcounter is mandatory.\nGrab it from http://www.pykota.com/software/pkpgcounter/"),
[2784]82                       ("Python-PAM", "PAM", "Python-PAM is recommended if you plan to use pknotify+PyKotIcon.\nGrab it from http://www.pangalactic.org/PyPAM/"),
[2892]83                       ("Python-pkipplib", "pkipplib", "Python-pkipplib is now mandatory.\nGrab it from http://www.pykota.com/software/pkipplib/"),
[1905]84                     ]
[2126]85    commandstocheck = [ ("GhostScript", "gs", "Depending on your configuration, GhostScript may be needed in different parts of PyKota."),
86                        ("SNMP Tools", "snmpget", "SNMP Tools are needed if you want to use SNMP enabled printers."), 
[1905]87                        ("Netatalk", "pap", "Netatalk is needed if you want to use AppleTalk enabled printers.")
88                      ]
89    for (name, module, helper) in modulestocheck :
90        checkWithPrompt(name, module=module, helper=helper)
91           
92    # checks if some software are there or not.
93    for (name, command, helper) in commandstocheck :
94        checkWithPrompt(name, command=command, helper=helper)
95           
Note: See TracBrowser for help on using the browser.