All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/pulseview: fix patch
@ 2021-03-25  7:34 Fabrice Fontaine
  2021-03-29  9:06 ` Yann E. MORIN
  0 siblings, 1 reply; 2+ messages in thread
From: Fabrice Fontaine @ 2021-03-25  7:34 UTC (permalink / raw)
  To: buildroot

Commit 4b7db318262a023a4a5396b06adafd9fd19d40a3 forgot to restore
upstream patch

Fixes:
 - http://autobuild.buildroot.org/results/589cfc6ea43dc5e714751f05be488f5c469641b9

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 .../0001-Replace-obsolete-deprecated-Qt-methods.patch       | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/package/pulseview/0001-Replace-obsolete-deprecated-Qt-methods.patch b/package/pulseview/0001-Replace-obsolete-deprecated-Qt-methods.patch
index 42cdc467be..047fe2cccd 100644
--- a/package/pulseview/0001-Replace-obsolete-deprecated-Qt-methods.patch
+++ b/package/pulseview/0001-Replace-obsolete-deprecated-Qt-methods.patch
@@ -7,6 +7,8 @@ Subject: [PATCH] Replace obsolete/deprecated Qt methods
 ae726b70a7ada9a4be5808e00f0c951318479684, one conflict manually
 resolved in pv/util.cpp.]
 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
+[Fabrice: restore original patch in pv/util.cpp for 0.4.2]
+Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
 ---
  pv/util.cpp                     | 21 +++++++++++++++++++--
  pv/util.hpp                     | 10 ++++++++++
@@ -25,8 +27,8 @@ index 49b9467c..2a63038d 100644
  	if (sign && !v.is_zero())
 -		ts << forcesign;
 +		ts.setNumberFlags(ts.numberFlags() | QTextStream::ForceSign);
- 	ts << qSetRealNumberPrecision(precision) << (v * multiplier) << ' '
- 		<< prefix << unit;
+ 	ts << qSetRealNumberPrecision(precision) << (v * multiplier);
+ 	ts << ' ' << prefix << unit;
  
 @@ -171,7 +171,7 @@ QString format_value_si(double v, SIPrefix prefix, unsigned precision,
  	QString s;
-- 
2.30.1

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

* [Buildroot] [PATCH 1/1] package/pulseview: fix patch
  2021-03-25  7:34 [Buildroot] [PATCH 1/1] package/pulseview: fix patch Fabrice Fontaine
@ 2021-03-29  9:06 ` Yann E. MORIN
  0 siblings, 0 replies; 2+ messages in thread
From: Yann E. MORIN @ 2021-03-29  9:06 UTC (permalink / raw)
  To: buildroot

Fabrice, All,

On 2021-03-25 08:34 +0100, Fabrice Fontaine spake thusly:
> Commit 4b7db318262a023a4a5396b06adafd9fd19d40a3 forgot to restore
> upstream patch
> 
> Fixes:
>  - http://autobuild.buildroot.org/results/589cfc6ea43dc5e714751f05be488f5c469641b9
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  .../0001-Replace-obsolete-deprecated-Qt-methods.patch       | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/package/pulseview/0001-Replace-obsolete-deprecated-Qt-methods.patch b/package/pulseview/0001-Replace-obsolete-deprecated-Qt-methods.patch
> index 42cdc467be..047fe2cccd 100644
> --- a/package/pulseview/0001-Replace-obsolete-deprecated-Qt-methods.patch
> +++ b/package/pulseview/0001-Replace-obsolete-deprecated-Qt-methods.patch
> @@ -7,6 +7,8 @@ Subject: [PATCH] Replace obsolete/deprecated Qt methods
>  ae726b70a7ada9a4be5808e00f0c951318479684, one conflict manually
>  resolved in pv/util.cpp.]
>  Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
> +[Fabrice: restore original patch in pv/util.cpp for 0.4.2]
> +Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
>  ---
>   pv/util.cpp                     | 21 +++++++++++++++++++--
>   pv/util.hpp                     | 10 ++++++++++
> @@ -25,8 +27,8 @@ index 49b9467c..2a63038d 100644
>   	if (sign && !v.is_zero())
>  -		ts << forcesign;
>  +		ts.setNumberFlags(ts.numberFlags() | QTextStream::ForceSign);
> - 	ts << qSetRealNumberPrecision(precision) << (v * multiplier) << ' '
> - 		<< prefix << unit;
> + 	ts << qSetRealNumberPrecision(precision) << (v * multiplier);
> + 	ts << ' ' << prefix << unit;
>   
>  @@ -171,7 +171,7 @@ QString format_value_si(double v, SIPrefix prefix, unsigned precision,
>   	QString s;
> -- 
> 2.30.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

end of thread, other threads:[~2021-03-29  9:06 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-25  7:34 [Buildroot] [PATCH 1/1] package/pulseview: fix patch Fabrice Fontaine
2021-03-29  9:06 ` Yann E. MORIN

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.