~ubuntu-branches/debian/sid/jcc/sid

« back to all changes in this revision

Viewing changes to jcc/__main__.py

  • Committer: Package Import Robot
  • Author(s): Ludovico Cavedon
  • Date: 2012-06-25 00:27:38 UTC
  • mfrom: (1.1.9)
  • Revision ID: package-import@ubuntu.com-20120625002738-cfontjqhjdgpd53f
Tags: 2.13-1
* Imported Upstream version 2.13
* Update Standrads-Version to 3.9.3.
* Use debhelper compat 9.
* Update copyright file to machine-readable format 1.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
                              clashes with C/C++ reserved words or header
32
32
                              file definitions
33
33
    --vmarg                 - add extra Java VM initialization parameter
 
34
    --maxheap               - set the maximum Java heap size, as passing -Xmx*
 
35
                              using --vmarg doesn't do anything
34
36
    --resources             - include resource directory in distribution as
35
37
                              package data
36
38
 
77
79
    --build                 - generate the wrapper and compile it
78
80
    --compile               - recompile the (previously generated) module
79
81
    --install               - install the wrapper in the local site-packages
 
82
    --egg-info              - ask distutils setup() to generate egg info, and
 
83
                              don't compile the module (for pip install)
80
84
 
81
85
  Distribution actions:
82
86
    --use-distutils         - use distutils even when setuptools is available
91
95
    --install-dir INSTALLDIR
92
96
    --prefix PREFIX
93
97
    --home HOMEDIR
 
98
    --extra-setup-arg       - pass an extra argument on setup.py command line
 
99
                              (pip install uses --egg-base and --record params)
94
100
'''
95
101
    print help
96
102
    sys.exit(0)