* [ptxdist] [PATCH] libunwind: Version bump. 1.70 -> 1.7.1
@ 2023-07-24 15:58 Christian Melki
2023-07-24 17:04 ` Ladislav Michl
2023-08-01 7:48 ` [ptxdist] [APPLIED] " Michael Olbrich
0 siblings, 2 replies; 5+ messages in thread
From: Christian Melki @ 2023-07-24 15:58 UTC (permalink / raw)
To: ptxdist
Developers fixed the tarball misnomer and released a new version.
No other changes.
* (Re-)fix URL and remove comment.
Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
rules/libunwind.make | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/rules/libunwind.make b/rules/libunwind.make
index 8a28aa505..76f5d763f 100644
--- a/rules/libunwind.make
+++ b/rules/libunwind.make
@@ -14,12 +14,11 @@ PACKAGES-$(PTXCONF_LIBUNWIND) += libunwind
#
# Paths and names
#
-LIBUNWIND_VERSION := 1.7.0
-LIBUNWIND_MD5 := 149e49ae27646e73010df4b76989fbec
+LIBUNWIND_VERSION := 1.7.1
+LIBUNWIND_MD5 := 31c7a97f88cdbe9fe8f6af93b9e4ba9c
LIBUNWIND := libunwind-$(LIBUNWIND_VERSION)
LIBUNWIND_SUFFIX := tar.gz
-# FIXME: Developers broke tarball name for 1.7.0. Revisit when proper tarballs are available and clean this up.
-LIBUNWIND_URL := https://github.com/libunwind/libunwind/releases/download/v1.7.0/libunwind-1.70.$(LIBUNWIND_SUFFIX)
+LIBUNWIND_URL := https://github.com/libunwind/libunwind/releases/download/v$(LIBUNWIND_VERSION)/$(LIBUNWIND).$(LIBUNWIND_SUFFIX)
LIBUNWIND_SOURCE := $(SRCDIR)/$(LIBUNWIND).$(LIBUNWIND_SUFFIX)
LIBUNWIND_DIR := $(BUILDDIR)/$(LIBUNWIND)
LIBUNWIND_LICENSE := MIT
--
2.34.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [ptxdist] [PATCH] libunwind: Version bump. 1.70 -> 1.7.1
2023-07-24 15:58 [ptxdist] [PATCH] libunwind: Version bump. 1.70 -> 1.7.1 Christian Melki
@ 2023-07-24 17:04 ` Ladislav Michl
2023-07-24 18:32 ` Christian Melki
2023-08-01 7:48 ` [ptxdist] [APPLIED] " Michael Olbrich
1 sibling, 1 reply; 5+ messages in thread
From: Ladislav Michl @ 2023-07-24 17:04 UTC (permalink / raw)
To: ptxdist
Hi,
On Mon, Jul 24, 2023 at 05:58:15PM +0200, Christian Melki wrote:
> Developers fixed the tarball misnomer and released a new version.
> No other changes.
>
> * (Re-)fix URL and remove comment.
note small typo in the subject: 1.70 -> 1.7.0
l.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [ptxdist] [PATCH] libunwind: Version bump. 1.70 -> 1.7.1
2023-07-24 17:04 ` Ladislav Michl
@ 2023-07-24 18:32 ` Christian Melki
2023-07-25 4:58 ` Ladislav Michl
0 siblings, 1 reply; 5+ messages in thread
From: Christian Melki @ 2023-07-24 18:32 UTC (permalink / raw)
To: Ladislav Michl; +Cc: ptxdist
On 7/24/23 19:04, Ladislav Michl wrote:
> Hi,
>
> On Mon, Jul 24, 2023 at 05:58:15PM +0200, Christian Melki wrote:
>> Developers fixed the tarball misnomer and released a new version.
>> No other changes.
>>
>> * (Re-)fix URL and remove comment.
>
Normally you'd be right, but not this time around. :)
They broke the tarball and version name,
hence the comment above and the nag in the previous bump commit.
https://github.com/libunwind/libunwind/releases/tag/v1.7.1
https://github.com/libunwind/libunwind/compare/v1.7.0...v1.7.1
https://github.com/libunwind/libunwind/issues/535
/C
> note small typo in the subject: 1.70 -> 1.7.0
>
> l.
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [ptxdist] [PATCH] libunwind: Version bump. 1.70 -> 1.7.1
2023-07-24 18:32 ` Christian Melki
@ 2023-07-25 4:58 ` Ladislav Michl
0 siblings, 0 replies; 5+ messages in thread
From: Ladislav Michl @ 2023-07-25 4:58 UTC (permalink / raw)
To: Christian Melki; +Cc: ptxdist
On Mon, Jul 24, 2023 at 08:32:36PM +0200, Christian Melki wrote:
> On 7/24/23 19:04, Ladislav Michl wrote:
> > Hi,
> >
> > On Mon, Jul 24, 2023 at 05:58:15PM +0200, Christian Melki wrote:
> >> Developers fixed the tarball misnomer and released a new version.
> >> No other changes.
> >>
> >> * (Re-)fix URL and remove comment.
> >
>
> Normally you'd be right, but not this time around. :)
> They broke the tarball and version name,
> hence the comment above and the nag in the previous bump commit.
>
> https://github.com/libunwind/libunwind/releases/tag/v1.7.1
> https://github.com/libunwind/libunwind/compare/v1.7.0...v1.7.1
>
> https://github.com/libunwind/libunwind/issues/535
Well, the previous commit was:
libunwind: Version bump. 1.6.2 -> 1.7.0 (-ish).
So I would expect this one is following the same scheme, otherwise it
is hard to tell what's happening without reading both commit messages.
Unless this is meant as developer attention test ;-)
> > note small typo in the subject: 1.70 -> 1.7.0
> >
> > l.
> >
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [ptxdist] [APPLIED] libunwind: Version bump. 1.70 -> 1.7.1
2023-07-24 15:58 [ptxdist] [PATCH] libunwind: Version bump. 1.70 -> 1.7.1 Christian Melki
2023-07-24 17:04 ` Ladislav Michl
@ 2023-08-01 7:48 ` Michael Olbrich
1 sibling, 0 replies; 5+ messages in thread
From: Michael Olbrich @ 2023-08-01 7:48 UTC (permalink / raw)
To: ptxdist; +Cc: Christian Melki
Thanks, applied as 19b537a9ecf4c5976b9e77c98f4fccc528d7a39d.
Michael
[sent from post-receive hook]
On Tue, 01 Aug 2023 09:48:59 +0200, Christian Melki <christian.melki@t2data.com> wrote:
> Developers fixed the tarball misnomer and released a new version.
> No other changes.
>
> * (Re-)fix URL and remove comment.
>
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20230724155815.3593684-1-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/libunwind.make b/rules/libunwind.make
> index 8a28aa505d16..76f5d763fa84 100644
> --- a/rules/libunwind.make
> +++ b/rules/libunwind.make
> @@ -14,12 +14,11 @@ PACKAGES-$(PTXCONF_LIBUNWIND) += libunwind
> #
> # Paths and names
> #
> -LIBUNWIND_VERSION := 1.7.0
> -LIBUNWIND_MD5 := 149e49ae27646e73010df4b76989fbec
> +LIBUNWIND_VERSION := 1.7.1
> +LIBUNWIND_MD5 := 31c7a97f88cdbe9fe8f6af93b9e4ba9c
> LIBUNWIND := libunwind-$(LIBUNWIND_VERSION)
> LIBUNWIND_SUFFIX := tar.gz
> -# FIXME: Developers broke tarball name for 1.7.0. Revisit when proper tarballs are available and clean this up.
> -LIBUNWIND_URL := https://github.com/libunwind/libunwind/releases/download/v1.7.0/libunwind-1.70.$(LIBUNWIND_SUFFIX)
> +LIBUNWIND_URL := https://github.com/libunwind/libunwind/releases/download/v$(LIBUNWIND_VERSION)/$(LIBUNWIND).$(LIBUNWIND_SUFFIX)
> LIBUNWIND_SOURCE := $(SRCDIR)/$(LIBUNWIND).$(LIBUNWIND_SUFFIX)
> LIBUNWIND_DIR := $(BUILDDIR)/$(LIBUNWIND)
> LIBUNWIND_LICENSE := MIT
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-08-01 7:50 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-24 15:58 [ptxdist] [PATCH] libunwind: Version bump. 1.70 -> 1.7.1 Christian Melki
2023-07-24 17:04 ` Ladislav Michl
2023-07-24 18:32 ` Christian Melki
2023-07-25 4:58 ` Ladislav Michl
2023-08-01 7:48 ` [ptxdist] [APPLIED] " Michael Olbrich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox