Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-projects commit in pax-utils: lddtree.py
Date: Wed, 30 Jul 2014 04:28:49
Message-Id: 20140730042842.E55642004E@flycatcher.gentoo.org
1 vapier 14/07/30 04:28:41
2
3 Modified: lddtree.py
4 Log:
5 lddtree.py: update ParseELF arg list after previous commit
6
7 Revision Changes Path
8 1.48 pax-utils/lddtree.py
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-projects/pax-utils/lddtree.py?rev=1.48&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-projects/pax-utils/lddtree.py?rev=1.48&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-projects/pax-utils/lddtree.py?r1=1.47&r2=1.48
13
14 Index: lddtree.py
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-projects/pax-utils/lddtree.py,v
17 retrieving revision 1.47
18 retrieving revision 1.48
19 diff -u -r1.47 -r1.48
20 --- lddtree.py 30 Jul 2014 04:16:25 -0000 1.47
21 +++ lddtree.py 30 Jul 2014 04:28:41 -0000 1.48
22 @@ -4,7 +4,7 @@
23 # Copyright 2012-2014 The Chromium OS Authors
24 # Use of this source code is governed by a BSD-style license (BSD-3)
25 # pylint: disable=C0301
26 -# $Header: /var/cvsroot/gentoo-projects/pax-utils/lddtree.py,v 1.47 2014/07/30 04:16:25 vapier Exp $
27 +# $Header: /var/cvsroot/gentoo-projects/pax-utils/lddtree.py,v 1.48 2014/07/30 04:28:41 vapier Exp $
28
29 # TODO: Handle symlinks.
30
31 @@ -389,7 +389,7 @@
32 'needed': [],
33 }
34 if fullpath:
35 - lret = ParseELF(fullpath, root, prefix, ldpaths, False, _all_libs)
36 + lret = ParseELF(fullpath, root, prefix, ldpaths, debug, False, _all_libs)
37 _all_libs[lib]['needed'] = lret['needed']
38
39 del elf
40 @@ -402,7 +402,7 @@
41
42
43 def _ShowVersion(_option, _opt, _value, _parser):
44 - d = '$Id: lddtree.py,v 1.47 2014/07/30 04:16:25 vapier Exp $'.split()
45 + d = '$Id: lddtree.py,v 1.48 2014/07/30 04:28:41 vapier Exp $'.split()
46 print('%s-%s %s %s' % (d[1].split('.')[0], d[2], d[3], d[4]))
47 sys.exit(0)