All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/qt6/qt6serialport: fix license
@ 2022-12-04 18:32 Fabrice Fontaine
  2022-12-04 20:00 ` Yann E. MORIN
  0 siblings, 1 reply; 3+ messages in thread
From: Fabrice Fontaine @ 2022-12-04 18:32 UTC (permalink / raw)
  To: buildroot; +Cc: Jesse Van Gavere, Fabrice Fontaine, Thomas Petazzoni

Commit 343974b99528702842e8c1dad945fcd4f0defd6c forgot to change the
licensing information which has been updated with
https://code.qt.io/cgit/qt/qtserialport.git/commit/?id=bb05a26d52c834cc7f3c549f3e5d66f76baf42a2
resulting in the following build failure:

ERROR: LICENSE.GPL2 has wrong sha256 hash:
ERROR: expected: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643
ERROR: got     :

Fixes:
 - No autobuilder failures yet

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/qt6/qt6serialport/qt6serialport.hash | 11 ++++++-----
 package/qt6/qt6serialport/qt6serialport.mk   |  7 +++++--
 2 files changed, 11 insertions(+), 7 deletions(-)

diff --git a/package/qt6/qt6serialport/qt6serialport.hash b/package/qt6/qt6serialport/qt6serialport.hash
index fb1b3dcf6b..54a45681fa 100644
--- a/package/qt6/qt6serialport/qt6serialport.hash
+++ b/package/qt6/qt6serialport/qt6serialport.hash
@@ -2,8 +2,9 @@
 sha256  f148cc9e87ce2228e82bff7a64d9521339ece66c4c66aa43b91bac614f4a4483  qtserialport-everywhere-src-6.4.0.tar.xz
 
 # Hashes for license files:
-sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  LICENSE.GPL2
-sha256  8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  LICENSE.GPL3
-sha256  0dbe024961f6ab5c52689cbd036c977975d0d0f6a67ff97762d96cb819dd5652  LICENSE.GPL3-EXCEPT
-sha256  da7eabb7bafdf7d3ae5e9f223aa5bdc1eece45ac569dc21b3b037520b4464768  LICENSE.LGPL3
-sha256  ed8742a95cb9db653a09b050e27ccff5e67ba69c14aa2c3137f2a4e1892f6c0d  LICENSE.FDL
+sha256  9f0490f18656c6f2435bd14f603ef0c96434d1825615363dce43abb42ed1dcce  LICENSES/BSD-3-Clause.txt
+sha256  110535522396708cea37c72a802c5e7e81391139f5f7985631c93ef242b206a4  LICENSES/GFDL-1.3-no-invariants-only.txt
+sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  LICENSES/GPL-2.0-only.txt
+sha256  8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  LICENSES/GPL-3.0-only.txt
+sha256  da7eabb7bafdf7d3ae5e9f223aa5bdc1eece45ac569dc21b3b037520b4464768  LICENSES/LGPL-3.0-only.txt
+sha256  40678d338ce53cd93f8b22b281a2ecbcaa3ee65ce60b25ffb0c462b0530846b2  LICENSES/Qt-GPL-exception-1.0.txt
diff --git a/package/qt6/qt6serialport/qt6serialport.mk b/package/qt6/qt6serialport/qt6serialport.mk
index 01763657b8..362f5ecd8a 100644
--- a/package/qt6/qt6serialport/qt6serialport.mk
+++ b/package/qt6/qt6serialport/qt6serialport.mk
@@ -9,8 +9,11 @@ QT6SERIALPORT_SITE = $(QT6_SITE)
 QT6SERIALPORT_SOURCE = qtserialport-$(QT6_SOURCE_TARBALL_PREFIX)-$(QT6SERIALPORT_VERSION).tar.xz
 QT6SERIALPORT_INSTALL_STAGING = YES
 QT6SERIALPORT_SUPPORTS_IN_SOURCE_BUILD = NO
-QT6SERIALPORT_LICENSE = GPL-2.0+ or LGPL-3.0, GPL-3.0 with exception (tools), GFDL-1.3 (docs)
-QT6SERIALPORT_LICENSE_FILES = LICENSE.GPL2 LICENSE.GPL3 LICENSE.GPL3-EXCEPT LICENSE.LGPL3 LICENSE.FDL
+QT6SERIALPORT_LICENSE = GPL-2.0+ or LGPL-3.0, GPL-3.0 with exception (tools), GFDL-1.3 (docs), BSD-3-Clause
+QT6SERIALPORT_LICENSE_FILES = LICENSES/BSD-3-Clause.txt \
+	LICENSES/GFDL-1.3-no-invariants-only.txt LICENSES/GPL-2.0-only.txt \
+	LICENSES/GPL-3.0-only.txt LICENSES/LGPL-3.0-only.txt \
+	LICENSES/Qt-GPL-exception-1.0.txt
 QT6SERIALPORT_CONF_OPTS = \
 	-GNinja \
 	-DQT_HOST_PATH=$(HOST_DIR) \
-- 
2.35.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/qt6/qt6serialport: fix license
  2022-12-04 18:32 [Buildroot] [PATCH 1/1] package/qt6/qt6serialport: fix license Fabrice Fontaine
@ 2022-12-04 20:00 ` Yann E. MORIN
       [not found]   ` <CAMdwsN_nVS=tJkTG4O4aWVnEjCCHyVjaSidFqC9vqon5yiyXQA@mail.gmail.com>
  0 siblings, 1 reply; 3+ messages in thread
From: Yann E. MORIN @ 2022-12-04 20:00 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Jesse Van Gavere, Thomas Petazzoni, buildroot

Fabrice, All,

On 2022-12-04 19:32 +0100, Fabrice Fontaine spake thusly:
> Commit 343974b99528702842e8c1dad945fcd4f0defd6c forgot to change the
> licensing information which has been updated with
> https://code.qt.io/cgit/qt/qtserialport.git/commit/?id=bb05a26d52c834cc7f3c549f3e5d66f76baf42a2
> resulting in the following build failure:
> 
> ERROR: LICENSE.GPL2 has wrong sha256 hash:
> ERROR: expected: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643
> ERROR: got     :
> 
> Fixes:
>  - No autobuilder failures yet
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

I changed the lists to be one item per line, for both _LICENSE and
_LICENSE_FILES, and applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  package/qt6/qt6serialport/qt6serialport.hash | 11 ++++++-----
>  package/qt6/qt6serialport/qt6serialport.mk   |  7 +++++--
>  2 files changed, 11 insertions(+), 7 deletions(-)
> 
> diff --git a/package/qt6/qt6serialport/qt6serialport.hash b/package/qt6/qt6serialport/qt6serialport.hash
> index fb1b3dcf6b..54a45681fa 100644
> --- a/package/qt6/qt6serialport/qt6serialport.hash
> +++ b/package/qt6/qt6serialport/qt6serialport.hash
> @@ -2,8 +2,9 @@
>  sha256  f148cc9e87ce2228e82bff7a64d9521339ece66c4c66aa43b91bac614f4a4483  qtserialport-everywhere-src-6.4.0.tar.xz
>  
>  # Hashes for license files:
> -sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  LICENSE.GPL2
> -sha256  8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  LICENSE.GPL3
> -sha256  0dbe024961f6ab5c52689cbd036c977975d0d0f6a67ff97762d96cb819dd5652  LICENSE.GPL3-EXCEPT
> -sha256  da7eabb7bafdf7d3ae5e9f223aa5bdc1eece45ac569dc21b3b037520b4464768  LICENSE.LGPL3
> -sha256  ed8742a95cb9db653a09b050e27ccff5e67ba69c14aa2c3137f2a4e1892f6c0d  LICENSE.FDL
> +sha256  9f0490f18656c6f2435bd14f603ef0c96434d1825615363dce43abb42ed1dcce  LICENSES/BSD-3-Clause.txt
> +sha256  110535522396708cea37c72a802c5e7e81391139f5f7985631c93ef242b206a4  LICENSES/GFDL-1.3-no-invariants-only.txt
> +sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  LICENSES/GPL-2.0-only.txt
> +sha256  8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  LICENSES/GPL-3.0-only.txt
> +sha256  da7eabb7bafdf7d3ae5e9f223aa5bdc1eece45ac569dc21b3b037520b4464768  LICENSES/LGPL-3.0-only.txt
> +sha256  40678d338ce53cd93f8b22b281a2ecbcaa3ee65ce60b25ffb0c462b0530846b2  LICENSES/Qt-GPL-exception-1.0.txt
> diff --git a/package/qt6/qt6serialport/qt6serialport.mk b/package/qt6/qt6serialport/qt6serialport.mk
> index 01763657b8..362f5ecd8a 100644
> --- a/package/qt6/qt6serialport/qt6serialport.mk
> +++ b/package/qt6/qt6serialport/qt6serialport.mk
> @@ -9,8 +9,11 @@ QT6SERIALPORT_SITE = $(QT6_SITE)
>  QT6SERIALPORT_SOURCE = qtserialport-$(QT6_SOURCE_TARBALL_PREFIX)-$(QT6SERIALPORT_VERSION).tar.xz
>  QT6SERIALPORT_INSTALL_STAGING = YES
>  QT6SERIALPORT_SUPPORTS_IN_SOURCE_BUILD = NO
> -QT6SERIALPORT_LICENSE = GPL-2.0+ or LGPL-3.0, GPL-3.0 with exception (tools), GFDL-1.3 (docs)
> -QT6SERIALPORT_LICENSE_FILES = LICENSE.GPL2 LICENSE.GPL3 LICENSE.GPL3-EXCEPT LICENSE.LGPL3 LICENSE.FDL
> +QT6SERIALPORT_LICENSE = GPL-2.0+ or LGPL-3.0, GPL-3.0 with exception (tools), GFDL-1.3 (docs), BSD-3-Clause
> +QT6SERIALPORT_LICENSE_FILES = LICENSES/BSD-3-Clause.txt \
> +	LICENSES/GFDL-1.3-no-invariants-only.txt LICENSES/GPL-2.0-only.txt \
> +	LICENSES/GPL-3.0-only.txt LICENSES/LGPL-3.0-only.txt \
> +	LICENSES/Qt-GPL-exception-1.0.txt
>  QT6SERIALPORT_CONF_OPTS = \
>  	-GNinja \
>  	-DQT_HOST_PATH=$(HOST_DIR) \
> -- 
> 2.35.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/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.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/qt6/qt6serialport: fix license
       [not found]   ` <CAMdwsN_nVS=tJkTG4O4aWVnEjCCHyVjaSidFqC9vqon5yiyXQA@mail.gmail.com>
@ 2022-12-04 20:33     ` Yann E. MORIN
  0 siblings, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2022-12-04 20:33 UTC (permalink / raw)
  To: Jesse Van Gavere; +Cc: buildroot

Jesse, All,

On 2022-12-04 21:22 +0100, Jesse Van Gavere spake thusly:
> I submitted a patch for that a while ago, probably best to remove that
> then as it's not relevant anymore.
> http://patchwork.ozlabs.org/project/buildroot/patch/20221013121041.1398841-1-jesseevg@gmail.com/

Gah, sorry that it got missed...

It's still relevant bevause you are adding yourself to the DEVELOPERS
file, so I'll apply just that part. Thanks for the heads up, and sorry
your patch got missed...

Regards,
Yann E. MORIN.

> Regards,
> Jesse
> >
> > Fabrice, All,
> >
> > On 2022-12-04 19:32 +0100, Fabrice Fontaine spake thusly:
> > > Commit 343974b99528702842e8c1dad945fcd4f0defd6c forgot to change the
> > > licensing information which has been updated with
> > > https://code.qt.io/cgit/qt/qtserialport.git/commit/?id=bb05a26d52c834cc7f3c549f3e5d66f76baf42a2
> > > resulting in the following build failure:
> > >
> > > ERROR: LICENSE.GPL2 has wrong sha256 hash:
> > > ERROR: expected: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643
> > > ERROR: got     :
> > >
> > > Fixes:
> > >  - No autobuilder failures yet
> > >
> > > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> >
> > I changed the lists to be one item per line, for both _LICENSE and
> > _LICENSE_FILES, and applied to master, thanks.
> >
> > Regards,
> > Yann E. MORIN.
> >
> > > ---
> > >  package/qt6/qt6serialport/qt6serialport.hash | 11 ++++++-----
> > >  package/qt6/qt6serialport/qt6serialport.mk   |  7 +++++--
> > >  2 files changed, 11 insertions(+), 7 deletions(-)
> > >
> > > diff --git a/package/qt6/qt6serialport/qt6serialport.hash b/package/qt6/qt6serialport/qt6serialport.hash
> > > index fb1b3dcf6b..54a45681fa 100644
> > > --- a/package/qt6/qt6serialport/qt6serialport.hash
> > > +++ b/package/qt6/qt6serialport/qt6serialport.hash
> > > @@ -2,8 +2,9 @@
> > >  sha256  f148cc9e87ce2228e82bff7a64d9521339ece66c4c66aa43b91bac614f4a4483  qtserialport-everywhere-src-6.4.0.tar.xz
> > >
> > >  # Hashes for license files:
> > > -sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  LICENSE.GPL2
> > > -sha256  8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  LICENSE.GPL3
> > > -sha256  0dbe024961f6ab5c52689cbd036c977975d0d0f6a67ff97762d96cb819dd5652  LICENSE.GPL3-EXCEPT
> > > -sha256  da7eabb7bafdf7d3ae5e9f223aa5bdc1eece45ac569dc21b3b037520b4464768  LICENSE.LGPL3
> > > -sha256  ed8742a95cb9db653a09b050e27ccff5e67ba69c14aa2c3137f2a4e1892f6c0d  LICENSE.FDL
> > > +sha256  9f0490f18656c6f2435bd14f603ef0c96434d1825615363dce43abb42ed1dcce  LICENSES/BSD-3-Clause.txt
> > > +sha256  110535522396708cea37c72a802c5e7e81391139f5f7985631c93ef242b206a4  LICENSES/GFDL-1.3-no-invariants-only.txt
> > > +sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  LICENSES/GPL-2.0-only.txt
> > > +sha256  8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  LICENSES/GPL-3.0-only.txt
> > > +sha256  da7eabb7bafdf7d3ae5e9f223aa5bdc1eece45ac569dc21b3b037520b4464768  LICENSES/LGPL-3.0-only.txt
> > > +sha256  40678d338ce53cd93f8b22b281a2ecbcaa3ee65ce60b25ffb0c462b0530846b2  LICENSES/Qt-GPL-exception-1.0.txt
> > > diff --git a/package/qt6/qt6serialport/qt6serialport.mk b/package/qt6/qt6serialport/qt6serialport.mk
> > > index 01763657b8..362f5ecd8a 100644
> > > --- a/package/qt6/qt6serialport/qt6serialport.mk
> > > +++ b/package/qt6/qt6serialport/qt6serialport.mk
> > > @@ -9,8 +9,11 @@ QT6SERIALPORT_SITE = $(QT6_SITE)
> > >  QT6SERIALPORT_SOURCE = qtserialport-$(QT6_SOURCE_TARBALL_PREFIX)-$(QT6SERIALPORT_VERSION).tar.xz
> > >  QT6SERIALPORT_INSTALL_STAGING = YES
> > >  QT6SERIALPORT_SUPPORTS_IN_SOURCE_BUILD = NO
> > > -QT6SERIALPORT_LICENSE = GPL-2.0+ or LGPL-3.0, GPL-3.0 with exception (tools), GFDL-1.3 (docs)
> > > -QT6SERIALPORT_LICENSE_FILES = LICENSE.GPL2 LICENSE.GPL3 LICENSE.GPL3-EXCEPT LICENSE.LGPL3 LICENSE.FDL
> > > +QT6SERIALPORT_LICENSE = GPL-2.0+ or LGPL-3.0, GPL-3.0 with exception (tools), GFDL-1.3 (docs), BSD-3-Clause
> > > +QT6SERIALPORT_LICENSE_FILES = LICENSES/BSD-3-Clause.txt \
> > > +     LICENSES/GFDL-1.3-no-invariants-only.txt LICENSES/GPL-2.0-only.txt \
> > > +     LICENSES/GPL-3.0-only.txt LICENSES/LGPL-3.0-only.txt \
> > > +     LICENSES/Qt-GPL-exception-1.0.txt
> > >  QT6SERIALPORT_CONF_OPTS = \
> > >       -GNinja \
> > >       -DQT_HOST_PATH=$(HOST_DIR) \
> > > --
> > > 2.35.1
> > >
> > > _______________________________________________
> > > buildroot mailing list
> > > buildroot@buildroot.org
> > > https://lists.buildroot.org/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.  |
> > '------------------------------^-------^------------------^--------------------'

-- 
.-----------------.--------------------.------------------.--------------------.
|  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.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2022-12-04 20:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-04 18:32 [Buildroot] [PATCH 1/1] package/qt6/qt6serialport: fix license Fabrice Fontaine
2022-12-04 20:00 ` Yann E. MORIN
     [not found]   ` <CAMdwsN_nVS=tJkTG4O4aWVnEjCCHyVjaSidFqC9vqon5yiyXQA@mail.gmail.com>
2022-12-04 20:33     ` 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.