Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/1] Fix for combo-layer default hook script
@ 2011-09-19 14:20 Paul Eggleton
  2011-09-19 14:20 ` [PATCH 1/1] scripts/combo-layer: fix still overzealous regex in " Paul Eggleton
  2011-09-21 23:03 ` [PATCH 0/1] Fix for combo-layer " Saul Wold
  0 siblings, 2 replies; 4+ messages in thread
From: Paul Eggleton @ 2011-09-19 14:20 UTC (permalink / raw)
  To: openembedded-core

Otavio Salvador reported another issue with the hook script which I have
fixed; the circumstances are briefly described in the patch.

The following changes since commit 81274f4488fbc4d68d150870735ec0181b60b451:

  freetype: disable bzip2 compressed font support (2011-09-19 13:14:03 +0100)

are available in the git repository at:
  git://git.openembedded.org/openembedded-core-contrib paule/combo-layer-hook-fix-2
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=paule/combo-layer-hook-fix-2

Paul Eggleton (1):
  scripts/combo-layer: fix still overzealous regex in default hook
    script

 scripts/combo-layer-hook-default.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

-- 
1.7.4.1




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

* [PATCH 1/1] scripts/combo-layer: fix still overzealous regex in default hook script
  2011-09-19 14:20 [PATCH 0/1] Fix for combo-layer default hook script Paul Eggleton
@ 2011-09-19 14:20 ` Paul Eggleton
  2011-09-19 16:49   ` Otavio Salvador
  2011-09-21 23:03 ` [PATCH 0/1] Fix for combo-layer " Saul Wold
  1 sibling, 1 reply; 4+ messages in thread
From: Paul Eggleton @ 2011-09-19 14:20 UTC (permalink / raw)
  To: openembedded-core

In the previous fix to this hook script (OE core revision
e7aae45414e4597e9244f86a81fbc940f73785c8) a start-of-line (^) marker was
missed, so if a commit had no Signed-off-by line but it contained an
inner patch that did, the inner patch was modified causing a "corrupt
patch" error.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 scripts/combo-layer-hook-default.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/scripts/combo-layer-hook-default.sh b/scripts/combo-layer-hook-default.sh
index e535d5f..8b148ac 100755
--- a/scripts/combo-layer-hook-default.sh
+++ b/scripts/combo-layer-hook-default.sh
@@ -10,4 +10,4 @@ rev=$2
 reponame=$3
 
 sed -i -e "s#^Subject: \[PATCH\] \(.*\)#Subject: \[PATCH\] $reponame: \1#" $patchfile
-sed -i -e "0,/^Signed-off-by:/s#\(Signed-off-by:.*\)#\($reponame rev: $rev\)\n\n\1#" $patchfile
+sed -i -e "0,/^Signed-off-by:/s#\(^Signed-off-by:.*\)#\($reponame rev: $rev\)\n\n\1#" $patchfile
-- 
1.7.4.1




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

* Re: [PATCH 1/1] scripts/combo-layer: fix still overzealous regex in default hook script
  2011-09-19 14:20 ` [PATCH 1/1] scripts/combo-layer: fix still overzealous regex in " Paul Eggleton
@ 2011-09-19 16:49   ` Otavio Salvador
  0 siblings, 0 replies; 4+ messages in thread
From: Otavio Salvador @ 2011-09-19 16:49 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Mon, Sep 19, 2011 at 11:20, Paul Eggleton
<paul.eggleton@linux.intel.com> wrote:
> In the previous fix to this hook script (OE core revision
> e7aae45414e4597e9244f86a81fbc940f73785c8) a start-of-line (^) marker was
> missed, so if a commit had no Signed-off-by line but it contained an
> inner patch that did, the inner patch was modified causing a "corrupt
> patch" error.
>
> Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>

Acked-by: Otavio Salvador <otavio@ossystems.com.br>

Tested and this works as expected :-) Thanks by fixing it.

-- 
Otavio Salvador                             O.S. Systems
E-mail: otavio@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br



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

* Re: [PATCH 0/1] Fix for combo-layer default hook script
  2011-09-19 14:20 [PATCH 0/1] Fix for combo-layer default hook script Paul Eggleton
  2011-09-19 14:20 ` [PATCH 1/1] scripts/combo-layer: fix still overzealous regex in " Paul Eggleton
@ 2011-09-21 23:03 ` Saul Wold
  1 sibling, 0 replies; 4+ messages in thread
From: Saul Wold @ 2011-09-21 23:03 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: Paul Eggleton

On 09/19/2011 07:20 AM, Paul Eggleton wrote:
> Otavio Salvador reported another issue with the hook script which I have
> fixed; the circumstances are briefly described in the patch.
>
> The following changes since commit 81274f4488fbc4d68d150870735ec0181b60b451:
>
>    freetype: disable bzip2 compressed font support (2011-09-19 13:14:03 +0100)
>
> are available in the git repository at:
>    git://git.openembedded.org/openembedded-core-contrib paule/combo-layer-hook-fix-2
>    http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=paule/combo-layer-hook-fix-2
>
> Paul Eggleton (1):
>    scripts/combo-layer: fix still overzealous regex in default hook
>      script
>
>   scripts/combo-layer-hook-default.sh |    2 +-
>   1 files changed, 1 insertions(+), 1 deletions(-)
>

Merged into OE-Core

Thanks
	Sau!



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

end of thread, other threads:[~2011-09-21 23:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-19 14:20 [PATCH 0/1] Fix for combo-layer default hook script Paul Eggleton
2011-09-19 14:20 ` [PATCH 1/1] scripts/combo-layer: fix still overzealous regex in " Paul Eggleton
2011-09-19 16:49   ` Otavio Salvador
2011-09-21 23:03 ` [PATCH 0/1] Fix for combo-layer " Saul Wold

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox