Changeset 290


Ignore:
Timestamp:
04/29/13 17:26:07 (11 years ago)
Author:
bas
Message:

changes sara to SURFsara

Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/AUTHORS

    r206 r290  
    11Author:
    2         Bas van der Vlies <basv@sara.nl>
     2    Bas van der Vlies <bas.vandervlies@surfsara.nl>
    33
    44Configure and Debian package support:
    5         Yaroslav Halchenko
     5    Yaroslav Halchenko
    66
    77PBSQuery module:
    8         Bas van der Vlies
     8    Bas van der Vlies
    99
    1010Contributors:
    11         Walter de Jong
    12         Ramon Bastiaans
    13         Dennis Stam
    14         Sil Westerveld
    15         Roy Dragseth (PBSQuery)
     11    Walter de Jong
     12    Ramon Bastiaans
     13    Dennis Stam
     14    Sil Westerveld
     15    Roy Dragseth (PBSQuery)
  • trunk/CHANGES

    r286 r290  
    1 =========== 4.X.X
     1=========== 4.3.5
    22 * PBSQuery bugfix, parsing of node status line with multiple EVENT: settings
    33   was wrong
  • trunk/README

    r282 r290  
    11the latest stable pbs_python interface is available from:
    2     ftp://ftp.sara.nl/pub/outgoing/pbs_python.tar.gz
     2    ftp://ftp.surfsara.nl/pub/outgoing/pbs_python.tar.gz
    33
    44Information, documentation and reporting bugs for the package:
    5     https://subtrac.sara.nl/oss/pbs_python
     5    https://oss.trac.surfsara.nl/oss/pbs_python
    66
    77bug resport:
    8     pbs_python@sara.nl
     8    pbs_python@surfsara.nl
    99
    1010=============== Brief description =============================
     
    6969
    7070For more info about SARA see:
    71     http://www.sara.nl/index_eng.html
     71    http://www.surfsara.nl/index_eng.html
    7272
    7373--
  • trunk/debian/changelog

    r288 r290  
     1pbs-python (4.3.5-1) lenny; urgency=low
     2
     3  * sara is now surfsara.nl, changed all references
     4  * added a new code example for EVENT node parsing
     5  * See Changes
     6
     7 -- Bas van der Vlies <bas.vandervlies@surfsara.nl>  Mon, 29 Apr 2013 17:21:39 +0200
     8
    19pbs-python (4.3.4-2) lenny; urgency=low
    210
  • trunk/pbs_python.spec

    r279 r290  
    44
    55Name: pbs_python
    6 Version: 4.3.4
     6Version: 4.3.5
    77Release: 1%{?dist}
    88License: See LICENSE
    99Group: Development/Libraries
    1010Summary: This package contains the PBS python module.
    11 URL: https://subtrac.sara.nl/oss/pbs_python
     11URL: https://oss.trac.surfsara.nl/pbs_python
    1212BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
    1313Source: ftp://ftp.sara.nl/pub/outgoing/pbs_python.tar.gz
  • trunk/setup.py.in

    r271 r290  
    1717
    1818if not PBS_LIB_DIR:
    19         print 'Please specify where the PBS libraries are!!'
    20         print 'edit setup.py and fill in the PBS_LIB_DIR variable'
    21         sys.exit(1)
     19    print 'Please specify where the PBS libraries are!!'
     20    print 'edit setup.py and fill in the PBS_LIB_DIR variable'
     21    sys.exit(1)
    2222
    2323LIBS = ['torque']
     
    3939#
    4040try:
    41         os.unlink('pbs.py')
    42         os.unlink('pbs_wrap.c')
     41    os.unlink('pbs.py')
     42    os.unlink('pbs_wrap.c')
    4343except OSError:
    44         pass
     44    pass
    4545
    4646if major_version  >= 2 and minor_version >= 4 and build_version >= 7:
    47         os.symlink('pbs_wrap_2.4.c', 'pbs_wrap.c')
    48         os.symlink('pbs_2.4.py', 'pbs.py')
    49         TORQUE_VERSION='TORQUE_2_4'
     47    os.symlink('pbs_wrap_2.4.c', 'pbs_wrap.c')
     48    os.symlink('pbs_2.4.py', 'pbs.py')
     49    TORQUE_VERSION='TORQUE_2_4'
    5050else:
    51         os.symlink('pbs_wrap_2.1.c', 'pbs_wrap.c')
    52         os.symlink('pbs_2.1.py', 'pbs.py')
    53         TORQUE_VERSION='TORQUE_OLD'
     51    os.symlink('pbs_wrap_2.1.c', 'pbs_wrap.c')
     52    os.symlink('pbs_2.1.py', 'pbs.py')
     53    TORQUE_VERSION='TORQUE_OLD'
    5454
    5555os.chdir('..')
    5656
    5757setup (
    58         name = 'pbs_python',
    59         version = '4.1.3',
    60         description = 'openpbs/torque python interface',
    61         license = 'LGPLV3',
    62         author = 'Bas van der Vlies',
    63         author_email = 'basv@sara.nl',
    64         url = 'http://subtrac.sara.nl/oss/pbs_python',
     58    name = 'pbs_python',
     59    version = '4.3.5',
     60    description = 'openpbs/torque python interface',
     61    license = 'LGPLV3',
     62    author = 'Bas van der Vlies',
     63    author_email = 'bas.vandervlies@surfsara.nl',
     64    url = 'http://oss.trac.surfsara.nl/pbs_python',
    6565
    6666
    67         extra_path = 'pbs',
    68                 package_dir = { '' : 'src' },
    69                 py_modules = [ 'pbs', 'PBSQuery', 'PBSAdvancedParser' ],
     67    extra_path = 'pbs',
     68        package_dir = { '' : 'src' },
     69        py_modules = [ 'pbs', 'PBSQuery', 'PBSAdvancedParser' ],
    7070
    71         ext_modules = [
    72                 Extension( '_pbs', ['src/pbs_wrap.c'],
    73                 library_dirs = [ PBS_LIB_DIR ],
    74                 extra_link_args = [ PBS_LIB_COMPILE_LINE ],
    75                 define_macros =  [ (TORQUE_VERSION, None) ],
    76                 libraries = LIBS,
    77                 )
    78         ]
     71    ext_modules = [
     72        Extension( '_pbs', ['src/pbs_wrap.c'],
     73        library_dirs = [ PBS_LIB_DIR ],
     74        extra_link_args = [ PBS_LIB_COMPILE_LINE ],
     75        define_macros =  [ (TORQUE_VERSION, None) ],
     76        libraries = LIBS,
     77        )
     78    ]
    7979)
Note: See TracChangeset for help on using the changeset viewer.