All of lore.kernel.org
 help / color / mirror / Atom feed
* [STABLE][PATCH] gegl: fix CR+LF newlines in the patch, as it fails to apply
@ 2009-04-10  3:53 Denys Dmytriyenko
  2009-04-10  4:04 ` Denys Dmytriyenko
  0 siblings, 1 reply; 4+ messages in thread
From: Denys Dmytriyenko @ 2009-04-10  3:53 UTC (permalink / raw)
  To: openembedded-devel


Signed-off-by: Denys Dmytriyenko <denis@denix.org>
---
 recipes/gimp/gegl/gegl-resilience.patch |   22 +++++++++++-----------
 1 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/recipes/gimp/gegl/gegl-resilience.patch b/recipes/gimp/gegl/gegl-resilience.patch
index 0e35dd5..70424ec 100644
--- a/recipes/gimp/gegl/gegl-resilience.patch
+++ b/recipes/gimp/gegl/gegl-resilience.patch
@@ -1,11 +1,11 @@
---- trunk/operations/external/ff-load.c	2008-12-20 13:37:05.000000000 -0800
-+++ trunk/operations/external/ff-load.c	2008-12-20 13:37:22.000000000 -0800
-@@ -278,7 +278,7 @@
-       p->enc = p->video_st->codec;
-       p->codec = avcodec_find_decoder (p->enc->codec_id);
- 
--      p->enc->error_resilience = 2;
-+      p->enc->error_recognition = 2;
-       p->enc->error_concealment = 3;
-       p->enc->workaround_bugs = FF_BUG_AUTODETECT;
- 
+--- trunk/operations/external/ff-load.c	2008-12-20 13:37:05.000000000 -0800
++++ trunk/operations/external/ff-load.c	2008-12-20 13:37:22.000000000 -0800
+@@ -278,7 +278,7 @@
+       p->enc = p->video_st->codec;
+       p->codec = avcodec_find_decoder (p->enc->codec_id);
+ 
+-      p->enc->error_resilience = 2;
++      p->enc->error_recognition = 2;
+       p->enc->error_concealment = 3;
+       p->enc->workaround_bugs = FF_BUG_AUTODETECT;
+ 
-- 
1.6.0.6




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

* Re: [STABLE][PATCH] gegl: fix CR+LF newlines in the patch, as it fails to apply
  2009-04-10  3:53 [STABLE][PATCH] gegl: fix CR+LF newlines in the patch, as it fails to apply Denys Dmytriyenko
@ 2009-04-10  4:04 ` Denys Dmytriyenko
  2009-04-14  7:54   ` Koen Kooi
  0 siblings, 1 reply; 4+ messages in thread
From: Denys Dmytriyenko @ 2009-04-10  4:04 UTC (permalink / raw)
  To: openembedded-devel

On Thu, Apr 09, 2009 at 11:53:28PM -0400, Denys Dmytriyenko wrote:
> 
> Signed-off-by: Denys Dmytriyenko <denis@denix.org>

Ah, as I thought - CR+LF newlines were lost somewhere in the MTA/MUA 
transfer...

But, if anybody cares, you can download the patch by wget and examine it in 
hexview :)

$ wget 'http://cgit.openembedded.net/cgit.cgi?url=openembedded/patch/&id=51893f23d9ec8ba94d9a29be7da3914bf2259eaf' -O gegl-newlines.patch

Not sure why my quilt/patch fails to apply the patch with CR+LF newlines 
though, as it appears to work fine for others.


> ---
>  recipes/gimp/gegl/gegl-resilience.patch |   22 +++++++++++-----------
>  1 files changed, 11 insertions(+), 11 deletions(-)
> 
> diff --git a/recipes/gimp/gegl/gegl-resilience.patch b/recipes/gimp/gegl/gegl-resilience.patch
> index 0e35dd5..70424ec 100644
> --- a/recipes/gimp/gegl/gegl-resilience.patch
> +++ b/recipes/gimp/gegl/gegl-resilience.patch
> @@ -1,11 +1,11 @@
> ---- trunk/operations/external/ff-load.c	2008-12-20 13:37:05.000000000 -0800
> -+++ trunk/operations/external/ff-load.c	2008-12-20 13:37:22.000000000 -0800
> -@@ -278,7 +278,7 @@
> -       p->enc = p->video_st->codec;
> -       p->codec = avcodec_find_decoder (p->enc->codec_id);
> - 
> --      p->enc->error_resilience = 2;
> -+      p->enc->error_recognition = 2;
> -       p->enc->error_concealment = 3;
> -       p->enc->workaround_bugs = FF_BUG_AUTODETECT;
> - 
> +--- trunk/operations/external/ff-load.c	2008-12-20 13:37:05.000000000 -0800
> ++++ trunk/operations/external/ff-load.c	2008-12-20 13:37:22.000000000 -0800
> +@@ -278,7 +278,7 @@
> +       p->enc = p->video_st->codec;
> +       p->codec = avcodec_find_decoder (p->enc->codec_id);
> + 
> +-      p->enc->error_resilience = 2;
> ++      p->enc->error_recognition = 2;
> +       p->enc->error_concealment = 3;
> +       p->enc->workaround_bugs = FF_BUG_AUTODETECT;
> + 
> -- 
> 1.6.0.6



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

* Re: [STABLE][PATCH] gegl: fix CR+LF newlines in the patch, as it fails to apply
  2009-04-10  4:04 ` Denys Dmytriyenko
@ 2009-04-14  7:54   ` Koen Kooi
  2009-04-14 21:31     ` Denys Dmytriyenko
  0 siblings, 1 reply; 4+ messages in thread
From: Koen Kooi @ 2009-04-14  7:54 UTC (permalink / raw)
  To: openembedded-devel

On 10-04-09 06:04, Denys Dmytriyenko wrote:
> On Thu, Apr 09, 2009 at 11:53:28PM -0400, Denys Dmytriyenko wrote:
>>
>> Signed-off-by: Denys Dmytriyenko<denis@denix.org>
>
> Ah, as I thought - CR+LF newlines were lost somewhere in the MTA/MUA
> transfer...
>
> But, if anybody cares, you can download the patch by wget and examine it in
> hexview :)
>
> $ wget 'http://cgit.openembedded.net/cgit.cgi?url=openembedded/patch/&id=51893f23d9ec8ba94d9a29be7da3914bf2259eaf' -O gegl-newlines.patch
>
> Not sure why my quilt/patch fails to apply the patch with CR+LF newlines
> though, as it appears to work fine for others.

If you can manage to get it into git properly: Acked-by: Koen Kooi 
<koen@openembedded.org>


regards,

Koen




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

* Re: [STABLE][PATCH] gegl: fix CR+LF newlines in the patch, as it fails to apply
  2009-04-14  7:54   ` Koen Kooi
@ 2009-04-14 21:31     ` Denys Dmytriyenko
  0 siblings, 0 replies; 4+ messages in thread
From: Denys Dmytriyenko @ 2009-04-14 21:31 UTC (permalink / raw)
  To: openembedded-devel

On Tue, Apr 14, 2009 at 09:54:18AM +0200, Koen Kooi wrote:
> On 10-04-09 06:04, Denys Dmytriyenko wrote:
>> On Thu, Apr 09, 2009 at 11:53:28PM -0400, Denys Dmytriyenko wrote:
>>>
>>> Signed-off-by: Denys Dmytriyenko<denis@denix.org>
>>
>> Ah, as I thought - CR+LF newlines were lost somewhere in the MTA/MUA
>> transfer...
>>
>> But, if anybody cares, you can download the patch by wget and examine it 
>> in
>> hexview :)
>>
>> $ wget 
>> 'http://cgit.openembedded.net/cgit.cgi?url=openembedded/patch/&id=51893f23d9ec8ba94d9a29be7da3914bf2259eaf' 
>> -O gegl-newlines.patch
>>
>> Not sure why my quilt/patch fails to apply the patch with CR+LF newlines
>> though, as it appears to work fine for others.
>
> If you can manage to get it into git properly: Acked-by: Koen Kooi 
> <koen@openembedded.org>

There is no problem with git - it preserves all the characters as is, 
including CR and LF. I pushed it to .dev last week...

And BTW, patchwork didn't catch your Ack, as it wasn't on a separate line.

-- 
Denys



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

end of thread, other threads:[~2009-04-14 21:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-10  3:53 [STABLE][PATCH] gegl: fix CR+LF newlines in the patch, as it fails to apply Denys Dmytriyenko
2009-04-10  4:04 ` Denys Dmytriyenko
2009-04-14  7:54   ` Koen Kooi
2009-04-14 21:31     ` Denys Dmytriyenko

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.