Changeset 72


Ignore:
Timestamp:
03/02/05 17:47:25 (19 years ago)
Author:
bas
Message:

pbs_swig/distro:

  • Added PBSQuery.py
  • Changed setup.py to include PBSQuery.py
  • Changed the AUTHORS file
  • Added an example for the new_interface.py
  • Prepare for new package
Location:
trunk/pbs_swig/distro
Files:
2 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/pbs_swig/distro/AUTHORS

    r68 r72  
    44        Yaroslav Halchenko
    55
     6PBSQuery module:
     7        Roy Dragseth
     8        Bas van der Vlies
     9
    610Contributors:
    711        Walter de Jong
  • trunk/pbs_swig/distro/CHANGES

    r68 r72  
     1=========== Version 2.7.5
     2 Added PBSQuery module.  This module requires pbs.py and it a simple module
     3 for querying the pbs server.
     4
     5 Written By: Roy Dragseth
     6             Bas van der Vlies
     7
     8 eg: ( see also examples/new_interface.py)
     9
     10 from PBSQuery import PBSQuery
     11 p = PBSQuery()
     12
     13 jobs = p.getjobs()
     14 for name, job in jobs.items()
     15        print job
     16
    117=========== Version 2.7.4
    218 New versions fixes an bug in function pbs.pbs_statnode().
  • trunk/pbs_swig/distro/README

    r71 r72  
    5959your PBS installation.
    6060
    61 pbsmon.py       - ascii xpbsmon
    62 rack_pbsmon.py  - ascii xpbsmon by rack layout
    63 pbsnodes-a.py   - pbsnodes -a
    64 pbs_version.py  - print server version
    65 set_property.py - set some node properties
    66 resmom_info.py  - queries the pbs_mom daemon on the nodes
    67 logpbs.py       - Shows the usage of the PBS logging routines
     61pbsmon.py        - ascii xpbsmon
     62rack_pbsmon.py   - ascii xpbsmon by rack layout
     63pbsnodes-a.py    - pbsnodes -a
     64pbs_version.py   - print server version
     65set_property.py  - set some node properties
     66resmom_info.py   - queries the pbs_mom daemon on the nodes
     67logpbs.py        - Shows the usage of the PBS logging routines
     68new_interface.py - Example how to use PBSQuery module
    6869
    6970
  • trunk/pbs_swig/distro/debian/changelog

    r64 r72  
    1 pbs-python (2.7.3-1) unstable; urgency=low
     1pbs-python (2.7.5-1) unstable; urgency=low
    22
    33  * Initial version
  • trunk/pbs_swig/distro/setup.py

    r62 r72  
    4444        extra_path = 'pbs',
    4545        package_dir = { '' : 'src' },
    46         py_modules = [ 'pbs' ],
     46        py_modules = [ 'pbs', 'PBSQuery' ],
    4747
    4848        ext_modules = [
Note: See TracChangeset for help on using the changeset viewer.