1 # ***** BEGIN LICENSE BLOCK *****
2 # Version: MPL 1.1/GPL 2.0/LGPL 2.1
4 # The contents of this file are subject to the Mozilla Public License Version
5 # 1.1 (the "License"); you may not use this file except in compliance with
6 # the License. You may obtain a copy of the License at
7 # http://www.mozilla.org/MPL/
9 # Software distributed under the License is distributed on an "AS IS" basis,
10 # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 # for the specific language governing rights and limitations under the
14 # The Original Code is Mozilla.
16 # The Initial Developer of the Original Code is
17 # the Mozilla Foundation.
18 # Portions created by the Initial Developer are Copyright (C) 2007
19 # the Initial Developer. All Rights Reserved.
22 # Axel Hecht <axel@pike.org>
24 # Alternatively, the contents of this file may be used under the terms of
25 # either the GNU General Public License Version 2 or later (the "GPL"), or
26 # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 # in which case the provisions of the GPL or the LGPL are applicable instead
28 # of those above. If you wish to allow use of your version of this file only
29 # under the terms of either the GPL or the LGPL, and not to allow others to
30 # use your version of this file under the terms of the MPL, indicate your
31 # decision by deleting the provisions above and replace them with the notice
32 # and other provisions required by the GPL or the LGPL. If you do not delete
33 # the provisions above, a recipient may use your version of this file under
34 # the terms of any one of the MPL, the GPL or the LGPL.
36 # ***** END LICENSE BLOCK *****
38 # This is a partial python port of nsinstall.
39 # It's intended to be used when there's no natively compile nsinstall
40 # available, and doesn't intend to be fully equivalent.
41 # Its major use is for l10n repackaging on systems that don't have
42 # a full build environment set up.
43 # The basic limitation is, it doesn't even try to link and ignores
44 # all related options.
46 from optparse
import OptionParser
52 usage
= "usage: %prog [options] arg1 [arg2 ...] target-directory"
53 p
= OptionParser(usage
=usage
)
55 p
.add_option('-D', action
="store_true",
56 help="Create a single directory only")
57 p
.add_option('-t', action
="store_true",
58 help="Preserve time stamp")
59 p
.add_option('-m', action
="store",
60 help="Set mode", metavar
="mode")
61 p
.add_option('-d', action
="store_true",
62 help="Create directories in target")
63 p
.add_option('-R', action
="store_true",
64 help="Use relative symbolic links (ignored)")
65 p
.add_option('-l', action
="store_true",
66 help="Create link (ignored)")
67 p
.add_option('-L', action
="store", metavar
="linkprefix",
68 help="Link prefix (ignored)")
70 # The remaining arguments are not used in our tree, thus they're not
72 def BadArg(option
, opt
, value
, parser
):
73 parser
.error('option not supported: %s' % opt
)
75 p
.add_option('-C', action
="callback", metavar
="CWD",
78 p
.add_option('-o', action
="callback", callback
=BadArg
,
79 help="Set owner (NOT SUPPORTED)", metavar
="owner")
80 p
.add_option('-g', action
="callback", callback
=BadArg
,
81 help="Set group (NOT SUPPORTED)", metavar
="group")
83 (options
, args
) = p
.parse_args()
88 options
.m
= int(options
.m
, 8)
90 sys
.stderr
.write('nsinstall: ' + options
.m
+ ' is not a valid mode\n')
93 # just create one directory?
97 if os
.path
.exists(args
[0]):
98 if not os
.path
.isdir(args
[0]):
99 sys
.stderr
.write('nsinstall: ' + args
[0] + ' is not a directory\n')
102 os
.chmod(args
[0], options
.m
)
105 os
.makedirs(args
[0], options
.m
)
110 # nsinstall arg1 [...] directory
112 p
.error('not enough arguments')
116 # we're supposed to create directories
117 def handleTarget(srcpath
, targetpath
):
118 # target directory was already created, just use mkdir
121 # we're supposed to copy files
122 def handleTarget(srcpath
, targetpath
):
124 shutil
.copy2(srcpath
, targetpath
)
126 shutil
.copy(srcpath
, targetpath
)
128 # the last argument is the target directory
130 # ensure target directory
131 if not os
.path
.isdir(target
):
135 dest
= os
.path
.join(target
,
136 os
.path
.basename(os
.path
.normpath(f
)))
137 handleTarget(f
, dest
)
139 os
.chmod(dest
, options
.m
)