* [Buildroot] [PATCH 1/1] package/lsuio: bump to 2020 version
@ 2024-08-20 8:58 Vincent Jardin
2024-08-20 21:38 ` Thomas Petazzoni via buildroot
0 siblings, 1 reply; 7+ messages in thread
From: Vincent Jardin @ 2024-08-20 8:58 UTC (permalink / raw)
To: buildroot; +Cc: Vincent Jardin, peter
The new version from peter@digitalbrains.com adds some few new features (name,
offset, etc.) and it includes some few improvements.
The former version was more than 14y old.
There is no tag, neither any archive, so currently I assume that HEAD can be used.
Signed-off-by: Vincent Jardin <vjardin@free.fr>
---
package/lsuio/lsuio.hash | 1 +
package/lsuio/lsuio.mk | 5 +++--
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/package/lsuio/lsuio.hash b/package/lsuio/lsuio.hash
index 2df6d074f4..fc897ba49e 100644
--- a/package/lsuio/lsuio.hash
+++ b/package/lsuio/lsuio.hash
@@ -1,3 +1,4 @@
# Locally calculated
sha256 c88b3850248b2d3419e025abd7b9b0991c8bd33a2d4983f9608408a29900bfb5 lsuio-0.2.0.tar.gz
sha256 32b1062f7da84967e7019d01ab805935caa7ab7321a7ced0e30ebe75e5df1670 COPYING
+sha256 5520415d6e6e37cf70acefd73743915b2a9bb1e1026f61c132a89b41db861d21 lsuio-HEAD-git4.tar.gz
diff --git a/package/lsuio/lsuio.mk b/package/lsuio/lsuio.mk
index 193de15aef..4d5cf35bcf 100644
--- a/package/lsuio/lsuio.mk
+++ b/package/lsuio/lsuio.mk
@@ -4,8 +4,9 @@
#
################################################################################
-LSUIO_VERSION = 0.2.0
-LSUIO_SITE = http://www.osadl.org/projects/downloads/UIO/user
+LSUIO_VERSION = HEAD
+LSUIO_SITE = https://github.com/DigitalBrains1/lsuio.git
+LSUIO_SITE_METHOD = git
LSUIO_LICENSE = GPL-2.0
LSUIO_LICENSE_FILES = COPYING
--
2.46.0
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/lsuio: bump to 2020 version
2024-08-20 8:58 [Buildroot] [PATCH 1/1] package/lsuio: bump to 2020 version Vincent Jardin
@ 2024-08-20 21:38 ` Thomas Petazzoni via buildroot
2024-08-21 9:50 ` [Buildroot] [PATCH v2 0/1] " Vincent Jardin
0 siblings, 1 reply; 7+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-08-20 21:38 UTC (permalink / raw)
To: Vincent Jardin; +Cc: peter, buildroot
Hello Vincent,
Thanks for this update, see below some comments.
On Tue, 20 Aug 2024 10:58:48 +0200
Vincent Jardin <vjardin@free.fr> wrote:
> diff --git a/package/lsuio/lsuio.mk b/package/lsuio/lsuio.mk
> index 193de15aef..4d5cf35bcf 100644
> --- a/package/lsuio/lsuio.mk
> +++ b/package/lsuio/lsuio.mk
> @@ -4,8 +4,9 @@
> #
> ################################################################################
>
> -LSUIO_VERSION = 0.2.0
> -LSUIO_SITE = http://www.osadl.org/projects/downloads/UIO/user
> +LSUIO_VERSION = HEAD
You can't use "HEAD" because this is a moving thing: if you build today
and tomorrow and there's a commit made upstream, you will build
something different. If there are no tags, please use a fixed commit
hash.
> +LSUIO_SITE = https://github.com/DigitalBrains1/lsuio.git
Please use $(call github,DigitalBrains1,lsuio,$(LSUIO_VERSION))
see other packages.
> +LSUIO_SITE_METHOD = git
This can be dropped if you use $(call github,...).
Thanks!
Thomas
--
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH v2 0/1] package/lsuio: bump to 2020 version
2024-08-20 21:38 ` Thomas Petazzoni via buildroot
@ 2024-08-21 9:50 ` Vincent Jardin
2024-08-21 9:50 ` [Buildroot] [PATCH v2 1/1] " Vincent Jardin
0 siblings, 1 reply; 7+ messages in thread
From: Vincent Jardin @ 2024-08-21 9:50 UTC (permalink / raw)
To: buildroot; +Cc: Vincent Jardin, peter, thomas.petazzoni
v1 -> v2 changes:
- Apply comment from Thomas Petazzoni
- use $(call, github, ...)
- version set to git hash (missing tag version/archive)
Vincent Jardin (1):
package/lsuio: bump to 2020 version
package/lsuio/lsuio.hash | 1 +
package/lsuio/lsuio.mk | 5 +++--
2 files changed, 4 insertions(+), 2 deletions(-)
--
2.46.0
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH v2 1/1] package/lsuio: bump to 2020 version
2024-08-21 9:50 ` [Buildroot] [PATCH v2 0/1] " Vincent Jardin
@ 2024-08-21 9:50 ` Vincent Jardin
2024-08-24 19:00 ` Thomas Petazzoni via buildroot
0 siblings, 1 reply; 7+ messages in thread
From: Vincent Jardin @ 2024-08-21 9:50 UTC (permalink / raw)
To: buildroot; +Cc: Vincent Jardin, peter, thomas.petazzoni
The new version from peter@digitalbrains.com adds some few new features (name,
offset, etc.) and it includes some few improvements.
The former version was more than 14y old.
There is no tag, neither any archive, so currently I assume that git sha can be used.
Signed-off-by: Vincent Jardin <vjardin@free.fr>
---
package/lsuio/lsuio.hash | 1 +
package/lsuio/lsuio.mk | 5 +++--
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/package/lsuio/lsuio.hash b/package/lsuio/lsuio.hash
index 2df6d074f4..472aee6e3e 100644
--- a/package/lsuio/lsuio.hash
+++ b/package/lsuio/lsuio.hash
@@ -1,3 +1,4 @@
# Locally calculated
sha256 c88b3850248b2d3419e025abd7b9b0991c8bd33a2d4983f9608408a29900bfb5 lsuio-0.2.0.tar.gz
sha256 32b1062f7da84967e7019d01ab805935caa7ab7321a7ced0e30ebe75e5df1670 COPYING
+sha256 fe799ea2920f07b3d950ae9b6b3dec8c0838437f4571fc8091b94fd765b3d415 lsuio-ba46808da148552462e50ba66d8d15cc5b9a3a00.tar.gz
diff --git a/package/lsuio/lsuio.mk b/package/lsuio/lsuio.mk
index 193de15aef..46647d17ee 100644
--- a/package/lsuio/lsuio.mk
+++ b/package/lsuio/lsuio.mk
@@ -4,8 +4,9 @@
#
################################################################################
-LSUIO_VERSION = 0.2.0
-LSUIO_SITE = http://www.osadl.org/projects/downloads/UIO/user
+# no tag yet
+LSUIO_VERSION = ba46808da148552462e50ba66d8d15cc5b9a3a00
+LSUIO_SITE = $(call github,DigitalBrains1,lsuio,$(LSUIO_VERSION))
LSUIO_LICENSE = GPL-2.0
LSUIO_LICENSE_FILES = COPYING
--
2.46.0
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [Buildroot] [PATCH v2 1/1] package/lsuio: bump to 2020 version
2024-08-21 9:50 ` [Buildroot] [PATCH v2 1/1] " Vincent Jardin
@ 2024-08-24 19:00 ` Thomas Petazzoni via buildroot
2024-08-24 20:34 ` Vincent Jardin
2024-08-26 12:04 ` Peter Lebbing
0 siblings, 2 replies; 7+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-08-24 19:00 UTC (permalink / raw)
To: Vincent Jardin; +Cc: peter, buildroot
Hello Vincent,
Thanks for this v2!
On Wed, 21 Aug 2024 11:50:44 +0200
Vincent Jardin <vjardin@free.fr> wrote:
> diff --git a/package/lsuio/lsuio.hash b/package/lsuio/lsuio.hash
> index 2df6d074f4..472aee6e3e 100644
> --- a/package/lsuio/lsuio.hash
> +++ b/package/lsuio/lsuio.hash
> @@ -1,3 +1,4 @@
> # Locally calculated
> sha256 c88b3850248b2d3419e025abd7b9b0991c8bd33a2d4983f9608408a29900bfb5 lsuio-0.2.0.tar.gz
> sha256 32b1062f7da84967e7019d01ab805935caa7ab7321a7ced0e30ebe75e5df1670 COPYING
> +sha256 fe799ea2920f07b3d950ae9b6b3dec8c0838437f4571fc8091b94fd765b3d415 lsuio-ba46808da148552462e50ba66d8d15cc5b9a3a00.tar.gz
There was no need to keep the hash for lsuio-0.2.0.tar.gz, and we
normally put the tarball hash before the license file hash. I've fixed
those minor details, did a few small tweaks in the commit title/log and
applied to next. Thanks!
Thomas
--
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Buildroot] [PATCH v2 1/1] package/lsuio: bump to 2020 version
2024-08-24 19:00 ` Thomas Petazzoni via buildroot
@ 2024-08-24 20:34 ` Vincent Jardin
2024-08-26 12:04 ` Peter Lebbing
1 sibling, 0 replies; 7+ messages in thread
From: Vincent Jardin @ 2024-08-24 20:34 UTC (permalink / raw)
To: Thomas Petazzoni; +Cc: peter, buildroot
Hi Thomas,
On Sat, Aug 24, 2024 at 09:00:17PM UTC, Thomas Petazzoni wrote:
>
> There was no need to keep the hash for lsuio-0.2.0.tar.gz, and we
> normally put the tarball hash before the license file hash. I've fixed
> those minor details, did a few small tweaks in the commit title/log and
> applied to next. Thanks!
Thanks for this follow up.
Next: DPDK, it should be ok ?
FRR, I'll provide a proper update.
Best regards,
Vincent
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: [Buildroot] [PATCH v2 1/1] package/lsuio: bump to 2020 version
2024-08-24 19:00 ` Thomas Petazzoni via buildroot
2024-08-24 20:34 ` Vincent Jardin
@ 2024-08-26 12:04 ` Peter Lebbing
1 sibling, 0 replies; 7+ messages in thread
From: Peter Lebbing @ 2024-08-26 12:04 UTC (permalink / raw)
To: Thomas Petazzoni, Vincent Jardin; +Cc: buildroot
(resent because I completely failed to realise I'd need to first subscribe to
the mailing list before being able to CC it. Sorry!)
Hello Thomas, Vincent and mailing list,
Vincent asked me to create a tag with an incremented version number. I did that
and adjusted the --version output of the program and the ChangeLog, so it now
looks more like a real v0.3.0.
https://github.com/DigitalBrains1/lsuio/releases/tag/v0.3.0
Please note I moved the default branch from 'master' to 'main'; I thought there
were few enough people using the repository that the fallout would be small.
Regards,
Peter.
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-08-26 12:05 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-20 8:58 [Buildroot] [PATCH 1/1] package/lsuio: bump to 2020 version Vincent Jardin
2024-08-20 21:38 ` Thomas Petazzoni via buildroot
2024-08-21 9:50 ` [Buildroot] [PATCH v2 0/1] " Vincent Jardin
2024-08-21 9:50 ` [Buildroot] [PATCH v2 1/1] " Vincent Jardin
2024-08-24 19:00 ` Thomas Petazzoni via buildroot
2024-08-24 20:34 ` Vincent Jardin
2024-08-26 12:04 ` Peter Lebbing
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox