Re: [OE-core] [PATCH 3/6] ksize.py: Python 3 fixes

2017-01-04 Thread Khem Raj
On Wed, Jan 4, 2017 at 2:18 PM, Alejandro Hernandez
 wrote:
> Hey Khem,
>
> Ok, now I'm actually awake when reading this, are you saying these changes
> should go in the same patch as the one for ksum.py?
>

yes thats right.

>
>
> On 01/04/2017 12:21 PM, Alejandro Hernandez wrote:
>>
>> Hey Khem,
>>
>>
>> Its an old script fro Tom, but as far as I remember it worked fine on
>> python3, although thanks for checking and sending the patch!
>>
>> Cheers
>>
>> Alejandro
>>
>>
>> On 01/04/2017 12:39 AM, Khem Raj wrote:
>>>
>>> On Tue, Jan 3, 2017 at 2:30 PM, Alejandro Hernandez
>>>  wrote:

 From: Tom Zanussi 

 String errors and partial __cmp__ fix.
>>>
>>> may be fold it into previous patch.
>>>
 Signed-off-by: Tom Zanussi 
 ---
   scripts/tiny/ksize.py | 17 -
   1 file changed, 12 insertions(+), 5 deletions(-)

 diff --git a/scripts/tiny/ksize.py b/scripts/tiny/ksize.py
 index b9d2b19..ea1ca7f 100755
 --- a/scripts/tiny/ksize.py
 +++ b/scripts/tiny/ksize.py
 @@ -41,7 +41,7 @@ def usage():
   class Sizes:
   def __init__(self, glob):
   self.title = glob
 -p = Popen("size -t " + glob, shell=True, stdout=PIPE,
 stderr=PIPE)
 +p = Popen("size -t " + str(glob), shell=True, stdout=PIPE,
 stderr=PIPE)
   output = p.communicate()[0].splitlines()
   if len(output) > 2:
   sizes = output[-1].split()[0:4]
 @@ -62,18 +62,18 @@ class Report:
   r = Report(filename, title)
   path = os.path.dirname(filename)

 -p = Popen("ls " + path + "/*.o | grep -v built-in.o",
 +p = Popen("ls " + str(path) + "/*.o | grep -v built-in.o",
 shell=True, stdout=PIPE, stderr=PIPE)
   glob = ' '.join(p.communicate()[0].splitlines())
 -oreport = Report(glob, path + "/*.o")
 -oreport.sizes.title = path + "/*.o"
 +oreport = Report(glob, str(path) + "/*.o")
 +oreport.sizes.title = str(path) + "/*.o"
   r.parts.append(oreport)

   if subglob:
   p = Popen("ls " + subglob, shell=True, stdout=PIPE,
 stderr=PIPE)
   for f in p.communicate()[0].splitlines():
   path = os.path.dirname(f)
 -r.parts.append(Report.create(f, path, path +
 "/*/built-in.o"))
 +r.parts.append(Report.create(f, path, str(path) +
 "/*/built-in.o"))
   r.parts.sort(reverse=True)

   for b in r.parts:
 @@ -116,6 +116,13 @@ class Report:
  self.deltas["data"], self.deltas["bss"]))
   print("\n")

 +def __lt__(this, that):
 +if that is None:
 +return 1
 +if not isinstance(that, Report):
 +raise TypeError
 +return this.sizes.total < that.sizes.total
 +
   def __cmp__(this, that):
   if that is None:
   return 1
 --
 2.6.6

 --
 ___
 Openembedded-core mailing list
 Openembedded-core@lists.openembedded.org
 http://lists.openembedded.org/mailman/listinfo/openembedded-core
>>
>>
>
-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


Re: [OE-core] [PATCH 3/6] ksize.py: Python 3 fixes

2017-01-04 Thread Alejandro Hernandez

Hey Khem,

Ok, now I'm actually awake when reading this, are you saying these 
changes should go in the same patch as the one for ksum.py?



On 01/04/2017 12:21 PM, Alejandro Hernandez wrote:

Hey Khem,


Its an old script fro Tom, but as far as I remember it worked fine on 
python3, although thanks for checking and sending the patch!


Cheers

Alejandro


On 01/04/2017 12:39 AM, Khem Raj wrote:

On Tue, Jan 3, 2017 at 2:30 PM, Alejandro Hernandez
 wrote:

From: Tom Zanussi 

String errors and partial __cmp__ fix.

may be fold it into previous patch.


Signed-off-by: Tom Zanussi 
---
  scripts/tiny/ksize.py | 17 -
  1 file changed, 12 insertions(+), 5 deletions(-)

diff --git a/scripts/tiny/ksize.py b/scripts/tiny/ksize.py
index b9d2b19..ea1ca7f 100755
--- a/scripts/tiny/ksize.py
+++ b/scripts/tiny/ksize.py
@@ -41,7 +41,7 @@ def usage():
  class Sizes:
  def __init__(self, glob):
  self.title = glob
-p = Popen("size -t " + glob, shell=True, stdout=PIPE, 
stderr=PIPE)
+p = Popen("size -t " + str(glob), shell=True, stdout=PIPE, 
stderr=PIPE)

  output = p.communicate()[0].splitlines()
  if len(output) > 2:
  sizes = output[-1].split()[0:4]
@@ -62,18 +62,18 @@ class Report:
  r = Report(filename, title)
  path = os.path.dirname(filename)

-p = Popen("ls " + path + "/*.o | grep -v built-in.o",
+p = Popen("ls " + str(path) + "/*.o | grep -v built-in.o",
shell=True, stdout=PIPE, stderr=PIPE)
  glob = ' '.join(p.communicate()[0].splitlines())
-oreport = Report(glob, path + "/*.o")
-oreport.sizes.title = path + "/*.o"
+oreport = Report(glob, str(path) + "/*.o")
+oreport.sizes.title = str(path) + "/*.o"
  r.parts.append(oreport)

  if subglob:
  p = Popen("ls " + subglob, shell=True, stdout=PIPE, 
stderr=PIPE)

  for f in p.communicate()[0].splitlines():
  path = os.path.dirname(f)
-r.parts.append(Report.create(f, path, path + 
"/*/built-in.o"))
+r.parts.append(Report.create(f, path, str(path) + 
"/*/built-in.o"))

  r.parts.sort(reverse=True)

  for b in r.parts:
@@ -116,6 +116,13 @@ class Report:
 self.deltas["data"], self.deltas["bss"]))
  print("\n")

+def __lt__(this, that):
+if that is None:
+return 1
+if not isinstance(that, Report):
+raise TypeError
+return this.sizes.total < that.sizes.total
+
  def __cmp__(this, that):
  if that is None:
  return 1
--
2.6.6

--
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core




--
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


Re: [OE-core] [PATCH 3/6] ksize.py: Python 3 fixes

2017-01-04 Thread Alejandro Hernandez

Hey Khem,


Its an old script fro Tom, but as far as I remember it worked fine on 
python3, although thanks for checking and sending the patch!


Cheers

Alejandro


On 01/04/2017 12:39 AM, Khem Raj wrote:

On Tue, Jan 3, 2017 at 2:30 PM, Alejandro Hernandez
 wrote:

From: Tom Zanussi 

String errors and partial __cmp__ fix.

may be fold it into previous patch.


Signed-off-by: Tom Zanussi 
---
  scripts/tiny/ksize.py | 17 -
  1 file changed, 12 insertions(+), 5 deletions(-)

diff --git a/scripts/tiny/ksize.py b/scripts/tiny/ksize.py
index b9d2b19..ea1ca7f 100755
--- a/scripts/tiny/ksize.py
+++ b/scripts/tiny/ksize.py
@@ -41,7 +41,7 @@ def usage():
  class Sizes:
  def __init__(self, glob):
  self.title = glob
-p = Popen("size -t " + glob, shell=True, stdout=PIPE, stderr=PIPE)
+p = Popen("size -t " + str(glob), shell=True, stdout=PIPE, stderr=PIPE)
  output = p.communicate()[0].splitlines()
  if len(output) > 2:
  sizes = output[-1].split()[0:4]
@@ -62,18 +62,18 @@ class Report:
  r = Report(filename, title)
  path = os.path.dirname(filename)

-p = Popen("ls " + path + "/*.o | grep -v built-in.o",
+p = Popen("ls " + str(path) + "/*.o | grep -v built-in.o",
shell=True, stdout=PIPE, stderr=PIPE)
  glob = ' '.join(p.communicate()[0].splitlines())
-oreport = Report(glob, path + "/*.o")
-oreport.sizes.title = path + "/*.o"
+oreport = Report(glob, str(path) + "/*.o")
+oreport.sizes.title = str(path) + "/*.o"
  r.parts.append(oreport)

  if subglob:
  p = Popen("ls " + subglob, shell=True, stdout=PIPE, stderr=PIPE)
  for f in p.communicate()[0].splitlines():
  path = os.path.dirname(f)
-r.parts.append(Report.create(f, path, path + "/*/built-in.o"))
+r.parts.append(Report.create(f, path, str(path) + 
"/*/built-in.o"))
  r.parts.sort(reverse=True)

  for b in r.parts:
@@ -116,6 +116,13 @@ class Report:
 self.deltas["data"], self.deltas["bss"]))
  print("\n")

+def __lt__(this, that):
+if that is None:
+return 1
+if not isinstance(that, Report):
+raise TypeError
+return this.sizes.total < that.sizes.total
+
  def __cmp__(this, that):
  if that is None:
  return 1
--
2.6.6

--
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


--
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


Re: [OE-core] [PATCH 3/6] ksize.py: Python 3 fixes

2017-01-03 Thread Khem Raj
On Tue, Jan 3, 2017 at 2:30 PM, Alejandro Hernandez
 wrote:
> From: Tom Zanussi 
>
> String errors and partial __cmp__ fix.

may be fold it into previous patch.

>
> Signed-off-by: Tom Zanussi 
> ---
>  scripts/tiny/ksize.py | 17 -
>  1 file changed, 12 insertions(+), 5 deletions(-)
>
> diff --git a/scripts/tiny/ksize.py b/scripts/tiny/ksize.py
> index b9d2b19..ea1ca7f 100755
> --- a/scripts/tiny/ksize.py
> +++ b/scripts/tiny/ksize.py
> @@ -41,7 +41,7 @@ def usage():
>  class Sizes:
>  def __init__(self, glob):
>  self.title = glob
> -p = Popen("size -t " + glob, shell=True, stdout=PIPE, stderr=PIPE)
> +p = Popen("size -t " + str(glob), shell=True, stdout=PIPE, 
> stderr=PIPE)
>  output = p.communicate()[0].splitlines()
>  if len(output) > 2:
>  sizes = output[-1].split()[0:4]
> @@ -62,18 +62,18 @@ class Report:
>  r = Report(filename, title)
>  path = os.path.dirname(filename)
>
> -p = Popen("ls " + path + "/*.o | grep -v built-in.o",
> +p = Popen("ls " + str(path) + "/*.o | grep -v built-in.o",
>shell=True, stdout=PIPE, stderr=PIPE)
>  glob = ' '.join(p.communicate()[0].splitlines())
> -oreport = Report(glob, path + "/*.o")
> -oreport.sizes.title = path + "/*.o"
> +oreport = Report(glob, str(path) + "/*.o")
> +oreport.sizes.title = str(path) + "/*.o"
>  r.parts.append(oreport)
>
>  if subglob:
>  p = Popen("ls " + subglob, shell=True, stdout=PIPE, stderr=PIPE)
>  for f in p.communicate()[0].splitlines():
>  path = os.path.dirname(f)
> -r.parts.append(Report.create(f, path, path + 
> "/*/built-in.o"))
> +r.parts.append(Report.create(f, path, str(path) + 
> "/*/built-in.o"))
>  r.parts.sort(reverse=True)
>
>  for b in r.parts:
> @@ -116,6 +116,13 @@ class Report:
> self.deltas["data"], self.deltas["bss"]))
>  print("\n")
>
> +def __lt__(this, that):
> +if that is None:
> +return 1
> +if not isinstance(that, Report):
> +raise TypeError
> +return this.sizes.total < that.sizes.total
> +
>  def __cmp__(this, that):
>  if that is None:
>  return 1
> --
> 2.6.6
>
> --
> ___
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


[OE-core] [PATCH 3/6] ksize.py: Python 3 fixes

2017-01-03 Thread Alejandro Hernandez
From: Tom Zanussi 

String errors and partial __cmp__ fix.

Signed-off-by: Tom Zanussi 
---
 scripts/tiny/ksize.py | 17 -
 1 file changed, 12 insertions(+), 5 deletions(-)

diff --git a/scripts/tiny/ksize.py b/scripts/tiny/ksize.py
index b9d2b19..ea1ca7f 100755
--- a/scripts/tiny/ksize.py
+++ b/scripts/tiny/ksize.py
@@ -41,7 +41,7 @@ def usage():
 class Sizes:
 def __init__(self, glob):
 self.title = glob
-p = Popen("size -t " + glob, shell=True, stdout=PIPE, stderr=PIPE)
+p = Popen("size -t " + str(glob), shell=True, stdout=PIPE, stderr=PIPE)
 output = p.communicate()[0].splitlines()
 if len(output) > 2:
 sizes = output[-1].split()[0:4]
@@ -62,18 +62,18 @@ class Report:
 r = Report(filename, title)
 path = os.path.dirname(filename)
 
-p = Popen("ls " + path + "/*.o | grep -v built-in.o",
+p = Popen("ls " + str(path) + "/*.o | grep -v built-in.o",
   shell=True, stdout=PIPE, stderr=PIPE)
 glob = ' '.join(p.communicate()[0].splitlines())
-oreport = Report(glob, path + "/*.o")
-oreport.sizes.title = path + "/*.o"
+oreport = Report(glob, str(path) + "/*.o")
+oreport.sizes.title = str(path) + "/*.o"
 r.parts.append(oreport)
 
 if subglob:
 p = Popen("ls " + subglob, shell=True, stdout=PIPE, stderr=PIPE)
 for f in p.communicate()[0].splitlines():
 path = os.path.dirname(f)
-r.parts.append(Report.create(f, path, path + "/*/built-in.o"))
+r.parts.append(Report.create(f, path, str(path) + 
"/*/built-in.o"))
 r.parts.sort(reverse=True)
 
 for b in r.parts:
@@ -116,6 +116,13 @@ class Report:
self.deltas["data"], self.deltas["bss"]))
 print("\n")
 
+def __lt__(this, that):
+if that is None:
+return 1
+if not isinstance(that, Report):
+raise TypeError
+return this.sizes.total < that.sizes.total
+
 def __cmp__(this, that):
 if that is None:
 return 1
-- 
2.6.6

-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core