Changeset 3214

Show
Ignore:
Timestamp:
07/24/07 10:04:08 (17 years ago)
Author:
jerome
Message:

Added qa-assistant stuff.

Location:
pykota/trunk
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/debian/control

    r3117 r3214  
    99Architecture: all 
    1010Depends: python, python-egenix-mxdatetime, cupsys,  python-pygresql | python-ldap | python-pysqlite2 | python-mysqldb, jaxml | python-jaxml, python-osd, python-reportlab, python-imaging, python-pysnmp4, python-imaging  
    11 Recommends: snmp, netatalk, python-psyco, npadmin, python-pam, python-chardet 
     11Recommends: qa-assistant, snmp, netatalk, python-psyco, npadmin, python-pam, python-chardet 
    1212Description: Print Quota/Accounting system for CUPS 
    1313 PyKota is a full featured, internationalized, centralized and extensible  
    1414 Print Quota system for CUPS. It supports both PostgreSQL, MySQL, SQLite and  
    1515 OpenLDAP (or other LDAP servers) as the quota database backend.  
    16  Older versions of this software also support LPRng as the printing  
    17  system, but this release doesn't. LPRng support might be reintroduced 
    18  at a later date. 
    1916 . 
    2017 This software features most of what you might expect from a modern Print  
  • pykota/trunk/debian/rules

    r3186 r3214  
    7575        install -m 644 logos/pykota.xcf $(CURDIR)/debian/tmp/usr/share/doc/pykota/logos/pykota.xcf 
    7676        install -m 644 logos/README $(CURDIR)/debian/tmp/usr/share/doc/pykota/logos/README 
     77        install -m 644 qa-assistant/pykota.xml $(CURDIR)/debian/tmp/usr/share/qa-assistant/data/pykota.xml 
    7778        (chown www-data.www-data $(CURDIR)/debian/tmp/usr/lib/cgi-bin/printquota.cgi) 
    7879        (chown www-data.www-data $(CURDIR)/debian/tmp/usr/lib/cgi-bin/dumpykota.cgi) 
  • pykota/trunk/MANIFEST.in

    r3156 r3214  
    1818recursive-include openoffice README *.png *.sx? *.pdf 
    1919recursive-include tests README *.py *.sh 
     20recursive-include qa-assistant README *.xml 
  • pykota/trunk/setup.py

    r3156 r3214  
    5858data_files.append((docdir, docfiles)) 
    5959 
    60 docfiles = glob.glob(os.sep.join(["docs", "spanish", "*.pdf"])) 
    61 docfiles += glob.glob(os.sep.join(["docs", "spanish", "*.sxw"])) 
    62 data_files.append((os.path.join(docdir, "spanish"), docfiles)) 
    63  
    6460docfiles = glob.glob(os.sep.join(["docs", "pykota", "*.html"])) 
    6561data_files.append((os.path.join(docdir, "html"), docfiles)) 
     
    6965docfiles += glob.glob(os.sep.join(["openoffice", "README"])) 
    7066data_files.append((os.path.join(docdir, "openoffice"), docfiles)) 
     67 
     68docfiles = glob.glob(os.sep.join(["qa-assistant", "*.xml"])) 
     69docfiles += glob.glob(os.sep.join(["qa-assistant", "README"])) 
     70data_files.append((os.path.join(docdir, "qa-assistant"), docfiles)) 
    7171 
    7272directory = os.sep.join(["share", "man", "man1"])