All of lore.kernel.org
 help / color / mirror / Atom feed
* [opkg-utils][PATCH 0/1] opkg-make-index: small fix for filelist
@ 2012-10-04 16:29 Martin Jansa
  2012-10-04 16:29 ` [opkg-utils][PATCH 1/1] opkg-make-index: fix mis-indented else: Martin Jansa
  0 siblings, 1 reply; 3+ messages in thread
From: Martin Jansa @ 2012-10-04 16:29 UTC (permalink / raw)
  To: yocto

The following changes since commit 423ecd36b4782327c16f516885d1248249c7724a:

  Changed call to subprocess.check_output which isn't compatible with Python 2.6 (2012-06-19 08:34:48 +0100)

are available in the git repository at:

  git://github.com/shr-project/opkg-utils master
  https://github.com/shr-project/opkg-utils/tree/jansa/pull

Marc Olzheim (1):
  opkg-make-index: fix mis-indented else:

 opkg-make-index | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
1.7.12



^ permalink raw reply	[flat|nested] 3+ messages in thread

* [opkg-utils][PATCH 1/1] opkg-make-index: fix mis-indented else:
  2012-10-04 16:29 [opkg-utils][PATCH 0/1] opkg-make-index: small fix for filelist Martin Jansa
@ 2012-10-04 16:29 ` Martin Jansa
  2012-10-24 11:14   ` Richard Purdie
  0 siblings, 1 reply; 3+ messages in thread
From: Martin Jansa @ 2012-10-04 16:29 UTC (permalink / raw)
  To: yocto

From: Marc Olzheim <marc@iphion.nl>

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 opkg-make-index | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/opkg-make-index b/opkg-make-index
index 1c3a8e1..44fa64d 100755
--- a/opkg-make-index
+++ b/opkg-make-index
@@ -213,7 +213,7 @@ if filelist_filename:
             (h,t) = os.path.split(fn)
             if not t: continue
             if t not in files: files[t] = name+':'+fn
-        else: files[t] = files[t] + ',' + name+':'+fn
+            else: files[t] = files[t] + ',' + name+':'+fn
 
     tmp_filelist_filename = ("%s.%d" % (filelist_filename, os.getpid()))
     f = open(tmp_filelist_filename, "w")
-- 
1.7.12



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [opkg-utils][PATCH 1/1] opkg-make-index: fix mis-indented else:
  2012-10-04 16:29 ` [opkg-utils][PATCH 1/1] opkg-make-index: fix mis-indented else: Martin Jansa
@ 2012-10-24 11:14   ` Richard Purdie
  0 siblings, 0 replies; 3+ messages in thread
From: Richard Purdie @ 2012-10-24 11:14 UTC (permalink / raw)
  To: Martin Jansa; +Cc: yocto

On Thu, 2012-10-04 at 18:29 +0200, Martin Jansa wrote:
> From: Marc Olzheim <marc@iphion.nl>
> 
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> ---
>  opkg-make-index | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/opkg-make-index b/opkg-make-index
> index 1c3a8e1..44fa64d 100755
> --- a/opkg-make-index
> +++ b/opkg-make-index
> @@ -213,7 +213,7 @@ if filelist_filename:
>              (h,t) = os.path.split(fn)
>              if not t: continue
>              if t not in files: files[t] = name+':'+fn
> -        else: files[t] = files[t] + ',' + name+':'+fn
> +            else: files[t] = files[t] + ',' + name+':'+fn
>  
>      tmp_filelist_filename = ("%s.%d" % (filelist_filename, os.getpid()))
>      f = open(tmp_filelist_filename, "w")

Merged to master, thanks.

Richard



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-10-24 11:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-04 16:29 [opkg-utils][PATCH 0/1] opkg-make-index: small fix for filelist Martin Jansa
2012-10-04 16:29 ` [opkg-utils][PATCH 1/1] opkg-make-index: fix mis-indented else: Martin Jansa
2012-10-24 11:14   ` Richard Purdie

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.