* [Buildroot] [PATCH 1/2] package/tinyxml2: add host variant @ 2024-02-06 17:53 Dario Binacchi 2024-02-06 17:53 ` [Buildroot] [PATCH 2/2] package/uuu: bump to version 1.5.165 Dario Binacchi 2024-02-07 9:41 ` [Buildroot] [PATCH 1/2] package/tinyxml2: add host variant Yann E. MORIN 0 siblings, 2 replies; 6+ messages in thread From: Dario Binacchi @ 2024-02-06 17:53 UTC (permalink / raw) To: buildroot; +Cc: Bernd Kuhls, Dario Binacchi, Samuel Martin It is required by package uuu starting from version 1.5.165. Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com> --- package/tinyxml2/tinyxml2.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/tinyxml2/tinyxml2.mk b/package/tinyxml2/tinyxml2.mk index 5ea9e13a4b0b..f53e8d6b9926 100644 --- a/package/tinyxml2/tinyxml2.mk +++ b/package/tinyxml2/tinyxml2.mk @@ -16,3 +16,4 @@ TINYXML2_CONF_OPTS += -DBUILD_STATIC_LIBS=ON endif $(eval $(cmake-package)) +$(eval $(host-cmake-package)) -- 2.43.0 _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [Buildroot] [PATCH 2/2] package/uuu: bump to version 1.5.165 2024-02-06 17:53 [Buildroot] [PATCH 1/2] package/tinyxml2: add host variant Dario Binacchi @ 2024-02-06 17:53 ` Dario Binacchi 2024-02-07 9:56 ` Yann E. MORIN 2024-02-07 9:41 ` [Buildroot] [PATCH 1/2] package/tinyxml2: add host variant Yann E. MORIN 1 sibling, 1 reply; 6+ messages in thread From: Dario Binacchi @ 2024-02-06 17:53 UTC (permalink / raw) To: buildroot; +Cc: Bernd Kuhls, Dario Binacchi, Samuel Martin It requires the host-tinyxml2 package. The hash of README.md has changed because a reference to the tinyxml2 license has been added: + - tinyxml (zlib license) is from https://github.com/leethomason/tinyxml2 Release notes: https://github.com/nxp-imx/mfgtools/releases/tag/uuu_1.5.163 https://github.com/nxp-imx/mfgtools/releases/tag/uuu_1.5.165 Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com> --- package/uuu/uuu.hash | 4 ++-- package/uuu/uuu.mk | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package/uuu/uuu.hash b/package/uuu/uuu.hash index 20816b5081db..c231d5d729f0 100644 --- a/package/uuu/uuu.hash +++ b/package/uuu/uuu.hash @@ -1,4 +1,4 @@ # locally computed -sha256 6972c7a1e76d60a22212913a8867b737104410c2a47ad88c8af460bd4885ec09 uuu_source-uuu_1.5.141.tar.gz +sha256 6e65fc028afacc94b805ae376e3da3864dcb2570d425037820e716207ab70373 uuu_source-uuu_1.5.165.tar.gz sha256 cc8d47f7b9260f6669ecd41c24554c552f17581d81ee8fc602c6d23edb8bf495 LICENSE -sha256 2d872c6e5aaea15ec1932bfb378fb62e24ee7ec399fe7f998f03d9b728215335 README.md +sha256 1b3d030a1824d633f75194743bd92bc1ed2d9a4bf1915bc11e49bf4c0c54012d README.md diff --git a/package/uuu/uuu.mk b/package/uuu/uuu.mk index 93c748ee46d8..d1bae61f528e 100644 --- a/package/uuu/uuu.mk +++ b/package/uuu/uuu.mk @@ -4,11 +4,11 @@ # ################################################################################ -UUU_VERSION = 1.5.141 +UUU_VERSION = 1.5.165 UUU_SOURCE = uuu_source-uuu_$(UUU_VERSION).tar.gz UUU_SITE = https://github.com/NXPmicro/mfgtools/releases/download/uuu_$(UUU_VERSION) UUU_LICENSE = BSD 3-Clause "New" or "Revised" License UUU_LICENSE_FILES = LICENSE README.md -HOST_UUU_DEPENDENCIES = host-bzip2 host-openssl host-zlib host-libusb host-zstd +HOST_UUU_DEPENDENCIES = host-bzip2 host-openssl host-zlib host-libusb host-zstd host-tinyxml2 $(eval $(host-cmake-package)) -- 2.43.0 _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [Buildroot] [PATCH 2/2] package/uuu: bump to version 1.5.165 2024-02-06 17:53 ` [Buildroot] [PATCH 2/2] package/uuu: bump to version 1.5.165 Dario Binacchi @ 2024-02-07 9:56 ` Yann E. MORIN 2024-02-07 16:28 ` Dario Binacchi 0 siblings, 1 reply; 6+ messages in thread From: Yann E. MORIN @ 2024-02-07 9:56 UTC (permalink / raw) To: Dario Binacchi; +Cc: Bernd Kuhls, Samuel Martin, buildroot Dario, All, On 2024-02-06 18:53 +0100, Dario Binacchi spake thusly: > It requires the host-tinyxml2 package. > > The hash of README.md has changed because a reference to the tinyxml2 > license has been added: > > + - tinyxml (zlib license) is from https://github.com/leethomason/tinyxml2 Thanks for explaining the hash change. :-) I wonder if it really makes sense to keep using the README file as a license file in Buildroot. Indeed, the licensing terms are for third-party libraries uuu links to, and even though they are bundled in the source tree of uuu|mfgtools, they are not used by Buildroot as we use the ones we build. Thoughts? > Release notes: > https://github.com/nxp-imx/mfgtools/releases/tag/uuu_1.5.163 > https://github.com/nxp-imx/mfgtools/releases/tag/uuu_1.5.165 > > Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com> Applied to master, thanks. Regards, Yann E. MORIN. > --- > package/uuu/uuu.hash | 4 ++-- > package/uuu/uuu.mk | 4 ++-- > 2 files changed, 4 insertions(+), 4 deletions(-) > > diff --git a/package/uuu/uuu.hash b/package/uuu/uuu.hash > index 20816b5081db..c231d5d729f0 100644 > --- a/package/uuu/uuu.hash > +++ b/package/uuu/uuu.hash > @@ -1,4 +1,4 @@ > # locally computed > -sha256 6972c7a1e76d60a22212913a8867b737104410c2a47ad88c8af460bd4885ec09 uuu_source-uuu_1.5.141.tar.gz > +sha256 6e65fc028afacc94b805ae376e3da3864dcb2570d425037820e716207ab70373 uuu_source-uuu_1.5.165.tar.gz > sha256 cc8d47f7b9260f6669ecd41c24554c552f17581d81ee8fc602c6d23edb8bf495 LICENSE > -sha256 2d872c6e5aaea15ec1932bfb378fb62e24ee7ec399fe7f998f03d9b728215335 README.md > +sha256 1b3d030a1824d633f75194743bd92bc1ed2d9a4bf1915bc11e49bf4c0c54012d README.md > diff --git a/package/uuu/uuu.mk b/package/uuu/uuu.mk > index 93c748ee46d8..d1bae61f528e 100644 > --- a/package/uuu/uuu.mk > +++ b/package/uuu/uuu.mk > @@ -4,11 +4,11 @@ > # > ################################################################################ > > -UUU_VERSION = 1.5.141 > +UUU_VERSION = 1.5.165 > UUU_SOURCE = uuu_source-uuu_$(UUU_VERSION).tar.gz > UUU_SITE = https://github.com/NXPmicro/mfgtools/releases/download/uuu_$(UUU_VERSION) > UUU_LICENSE = BSD 3-Clause "New" or "Revised" License > UUU_LICENSE_FILES = LICENSE README.md > -HOST_UUU_DEPENDENCIES = host-bzip2 host-openssl host-zlib host-libusb host-zstd > +HOST_UUU_DEPENDENCIES = host-bzip2 host-openssl host-zlib host-libusb host-zstd host-tinyxml2 > > $(eval $(host-cmake-package)) > -- > 2.43.0 > > _______________________________________________ > 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] 6+ messages in thread
* Re: [Buildroot] [PATCH 2/2] package/uuu: bump to version 1.5.165 2024-02-07 9:56 ` Yann E. MORIN @ 2024-02-07 16:28 ` Dario Binacchi 2024-02-07 16:34 ` Yann E. MORIN 0 siblings, 1 reply; 6+ messages in thread From: Dario Binacchi @ 2024-02-07 16:28 UTC (permalink / raw) To: Yann E. MORIN; +Cc: Bernd Kuhls, Samuel Martin, buildroot Yann, All On Wed, Feb 7, 2024 at 10:56 AM Yann E. MORIN <yann.morin.1998@free.fr> wrote: > > Dario, All, > > On 2024-02-06 18:53 +0100, Dario Binacchi spake thusly: > > It requires the host-tinyxml2 package. > > > > The hash of README.md has changed because a reference to the tinyxml2 > > license has been added: > > > > + - tinyxml (zlib license) is from https://github.com/leethomason/tinyxml2 > > Thanks for explaining the hash change. :-) > > I wonder if it really makes sense to keep using the README file as a > license file in Buildroot. I agree with you. The license of the package is located in the file LICENSE. Additionally, by removing the file README.md from the license files, we simplify the bump to new versions. So, if you agree, I will submit a patch for the removal of README.md from the license files. Thanks and regards, Dario > Indeed, the licensing terms are for > third-party libraries uuu links to, and even though they are bundled in > the source tree of uuu|mfgtools, they are not used by Buildroot as we > use the ones we build. > > Thoughts? > > > Release notes: > > https://github.com/nxp-imx/mfgtools/releases/tag/uuu_1.5.163 > > https://github.com/nxp-imx/mfgtools/releases/tag/uuu_1.5.165 > > > > Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com> > > Applied to master, thanks. > > Regards, > Yann E. MORIN. > > > --- > > package/uuu/uuu.hash | 4 ++-- > > package/uuu/uuu.mk | 4 ++-- > > 2 files changed, 4 insertions(+), 4 deletions(-) > > > > diff --git a/package/uuu/uuu.hash b/package/uuu/uuu.hash > > index 20816b5081db..c231d5d729f0 100644 > > --- a/package/uuu/uuu.hash > > +++ b/package/uuu/uuu.hash > > @@ -1,4 +1,4 @@ > > # locally computed > > -sha256 6972c7a1e76d60a22212913a8867b737104410c2a47ad88c8af460bd4885ec09 uuu_source-uuu_1.5.141.tar.gz > > +sha256 6e65fc028afacc94b805ae376e3da3864dcb2570d425037820e716207ab70373 uuu_source-uuu_1.5.165.tar.gz > > sha256 cc8d47f7b9260f6669ecd41c24554c552f17581d81ee8fc602c6d23edb8bf495 LICENSE > > -sha256 2d872c6e5aaea15ec1932bfb378fb62e24ee7ec399fe7f998f03d9b728215335 README.md > > +sha256 1b3d030a1824d633f75194743bd92bc1ed2d9a4bf1915bc11e49bf4c0c54012d README.md > > diff --git a/package/uuu/uuu.mk b/package/uuu/uuu.mk > > index 93c748ee46d8..d1bae61f528e 100644 > > --- a/package/uuu/uuu.mk > > +++ b/package/uuu/uuu.mk > > @@ -4,11 +4,11 @@ > > # > > ################################################################################ > > > > -UUU_VERSION = 1.5.141 > > +UUU_VERSION = 1.5.165 > > UUU_SOURCE = uuu_source-uuu_$(UUU_VERSION).tar.gz > > UUU_SITE = https://github.com/NXPmicro/mfgtools/releases/download/uuu_$(UUU_VERSION) > > UUU_LICENSE = BSD 3-Clause "New" or "Revised" License > > UUU_LICENSE_FILES = LICENSE README.md > > -HOST_UUU_DEPENDENCIES = host-bzip2 host-openssl host-zlib host-libusb host-zstd > > +HOST_UUU_DEPENDENCIES = host-bzip2 host-openssl host-zlib host-libusb host-zstd host-tinyxml2 > > > > $(eval $(host-cmake-package)) > > -- > > 2.43.0 > > > > _______________________________________________ > > 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. | > '------------------------------^-------^------------------^--------------------' -- Dario Binacchi Senior Embedded Linux Developer dario.binacchi@amarulasolutions.com __________________________________ Amarula Solutions SRL Via Le Canevare 30, 31100 Treviso, Veneto, IT T. +39 042 243 5310 info@amarulasolutions.com www.amarulasolutions.com _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Buildroot] [PATCH 2/2] package/uuu: bump to version 1.5.165 2024-02-07 16:28 ` Dario Binacchi @ 2024-02-07 16:34 ` Yann E. MORIN 0 siblings, 0 replies; 6+ messages in thread From: Yann E. MORIN @ 2024-02-07 16:34 UTC (permalink / raw) To: Dario Binacchi; +Cc: Bernd Kuhls, Samuel Martin, buildroot Dario, All, On 2024-02-07 17:28 +0100, Dario Binacchi spake thusly: > On Wed, Feb 7, 2024 at 10:56 AM Yann E. MORIN <yann.morin.1998@free.fr> wrote: > > I wonder if it really makes sense to keep using the README file as a > > license file in Buildroot. > I agree with you. The license of the package is located in the file LICENSE. > Additionally, by removing the file README.md from the license files, we > simplify the bump to new versions. > So, if you agree, I will submit a patch for the removal of README.md from > the license files. Yes, please go ahead! Just sumarise the situation in the commit log. Regards, Yann E. MORIN. -- .-----------------.--------------------.------------------.--------------------. | 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] 6+ messages in thread
* Re: [Buildroot] [PATCH 1/2] package/tinyxml2: add host variant 2024-02-06 17:53 [Buildroot] [PATCH 1/2] package/tinyxml2: add host variant Dario Binacchi 2024-02-06 17:53 ` [Buildroot] [PATCH 2/2] package/uuu: bump to version 1.5.165 Dario Binacchi @ 2024-02-07 9:41 ` Yann E. MORIN 1 sibling, 0 replies; 6+ messages in thread From: Yann E. MORIN @ 2024-02-07 9:41 UTC (permalink / raw) To: Dario Binacchi; +Cc: Bernd Kuhls, Samuel Martin, buildroot Dario, All, On 2024-02-06 18:53 +0100, Dario Binacchi spake thusly: > It is required by package uuu starting from version 1.5.165. > > Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com> Applied to master, thanks. Regards, Yann E. MORIN. > --- > package/tinyxml2/tinyxml2.mk | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/package/tinyxml2/tinyxml2.mk b/package/tinyxml2/tinyxml2.mk > index 5ea9e13a4b0b..f53e8d6b9926 100644 > --- a/package/tinyxml2/tinyxml2.mk > +++ b/package/tinyxml2/tinyxml2.mk > @@ -16,3 +16,4 @@ TINYXML2_CONF_OPTS += -DBUILD_STATIC_LIBS=ON > endif > > $(eval $(cmake-package)) > +$(eval $(host-cmake-package)) > -- > 2.43.0 > > _______________________________________________ > 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] 6+ messages in thread
end of thread, other threads:[~2024-02-07 16:35 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-02-06 17:53 [Buildroot] [PATCH 1/2] package/tinyxml2: add host variant Dario Binacchi 2024-02-06 17:53 ` [Buildroot] [PATCH 2/2] package/uuu: bump to version 1.5.165 Dario Binacchi 2024-02-07 9:56 ` Yann E. MORIN 2024-02-07 16:28 ` Dario Binacchi 2024-02-07 16:34 ` Yann E. MORIN 2024-02-07 9:41 ` [Buildroot] [PATCH 1/2] package/tinyxml2: add host variant Yann E. MORIN
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox