py-compile: normalize error and help messages
[platform/upstream/automake.git] / lib / py-compile
1 #!/bin/sh
2 # py-compile - Compile a Python program
3
4 scriptversion=2011-06-08.12; # UTC
5
6 # Copyright (C) 2000, 2001, 2003, 2004, 2005, 2008, 2009, 2011 Free
7 # Software Foundation, Inc.
8
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, or (at your option)
12 # 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, see <http://www.gnu.org/licenses/>.
21
22 # As a special exception to the GNU General Public License, if you
23 # distribute this file as part of a program that contains a
24 # configuration script generated by Autoconf, you may include it under
25 # the same distribution terms that you use for the rest of that program.
26
27 # This file is maintained in Automake, please report
28 # bugs to <bug-automake@gnu.org> or send patches to
29 # <automake-patches@gnu.org>.
30
31 if [ -z "$PYTHON" ]; then
32   PYTHON=python
33 fi
34
35 me=py-compile
36
37 usage_error ()
38 {
39   echo "$me: $*" >&2
40   echo "Try \`$me --help' for more information." >&2
41   exit 1
42 }
43
44 basedir=
45 destdir=
46 files=
47 while test $# -ne 0; do
48   case "$1" in
49     --basedir)
50       if test $# -lt 2; then
51         usage_error "option '--basedir' requires an argument"
52       else
53         basedir=$2
54       fi
55       shift
56       ;;
57     --destdir)
58       if test $# -lt 2; then
59         usage_error "option '--destdir' requires an argument"
60       else
61         destdir=$2
62       fi
63       shift
64       ;;
65     -h|--h*)
66       cat <<\EOF
67 Usage: py-compile [--help] [--version] [--basedir DIR] [--destdir DIR] FILES..."
68
69 Byte compile some python scripts FILES.  Use --destdir to specify any
70 leading directory path to the FILES that you don't want to include in the
71 byte compiled file.  Specify --basedir for any additional path information you
72 do want to be shown in the byte compiled file.
73
74 Example:
75   py-compile --destdir /tmp/pkg-root --basedir /usr/share/test test.py test2.py
76
77 Report bugs to <bug-automake@gnu.org>.
78 EOF
79       exit $?
80       ;;
81     -v|--v*)
82       echo "$me $scriptversion"
83       exit $?
84       ;;
85     *)
86       files="$files $1"
87       ;;
88   esac
89   shift
90 done
91
92 if test -z "$files"; then
93     usage_error "no files given"
94 fi
95
96 # if basedir was given, then it should be prepended to filenames before
97 # byte compilation.
98 if [ -z "$basedir" ]; then
99     pathtrans="path = file"
100 else
101     pathtrans="path = os.path.join('$basedir', file)"
102 fi
103
104 # if destdir was given, then it needs to be prepended to the filename to
105 # byte compile but not go into the compiled file.
106 if [ -z "$destdir" ]; then
107     filetrans="filepath = path"
108 else
109     filetrans="filepath = os.path.normpath('$destdir' + os.sep + path)"
110 fi
111
112 $PYTHON -c "
113 import sys, os, py_compile
114
115 files = '''$files'''
116
117 sys.stdout.write('Byte-compiling python modules...\n')
118 for file in files.split():
119     $pathtrans
120     $filetrans
121     if not os.path.exists(filepath) or not (len(filepath) >= 3
122                                             and filepath[-3:] == '.py'):
123             continue
124     sys.stdout.write(file)
125     sys.stdout.flush()
126     py_compile.compile(filepath, filepath + 'c', path)
127 sys.stdout.write('\n')" || exit $?
128
129 # this will fail for python < 1.5, but that doesn't matter ...
130 $PYTHON -O -c "
131 import sys, os, py_compile
132
133 files = '''$files'''
134 sys.stdout.write('Byte-compiling python modules (optimized versions) ...\n')
135 for file in files.split():
136     $pathtrans
137     $filetrans
138     if not os.path.exists(filepath) or not (len(filepath) >= 3
139                                             and filepath[-3:] == '.py'):
140             continue
141     sys.stdout.write(file)
142     sys.stdout.flush()
143     py_compile.compile(filepath, filepath + 'o', path)
144 sys.stdout.write('\n')" 2>/dev/null || :
145
146 # Local Variables:
147 # mode: shell-script
148 # sh-indentation: 2
149 # eval: (add-hook 'write-file-hooks 'time-stamp)
150 # time-stamp-start: "scriptversion="
151 # time-stamp-format: "%:y-%02m-%02d.%02H"
152 # time-stamp-time-zone: "UTC"
153 # time-stamp-end: "; # UTC"
154 # End: