forked from coreos/dev-util
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstrip_package.py
executable file
·35 lines (24 loc) · 1.02 KB
/
strip_package.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/python
# Copyright (c) 2009-2012 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Script that strips a given package and places the stripped version in
/build/<board>/stripped-packages."""
import optparse
import builder
def main():
parser = optparse.OptionParser(usage='usage: %prog [options] package')
parser.add_option('--board', type='string', action='store',
help=('The board that the package being processed belongs '
'to.'))
parser.add_option('--deep', action='store_true', default=False,
help=('Also strip dependencies of package.'))
(options, args) = parser.parse_args()
if len(args) != 1:
parser.print_help()
parser.error('Need exactly one package name')
if not options.board:
parser.error('Need to specify --board')
builder.UpdateGmergeBinhost(options.board, args[0], options.deep)
if __name__ == '__main__':
main()