All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] glibc: bump version for more post-2.28 fixes
@ 2018-10-09 11:45 yegorslists at googlemail.com
  2018-10-09 12:07 ` Baruch Siach
  0 siblings, 1 reply; 3+ messages in thread
From: yegorslists at googlemail.com @ 2018-10-09 11:45 UTC (permalink / raw)
  To: buildroot

From: Yegor Yefremov <yegorslists@googlemail.com>

This version bump fixes following issue:

sysdeps/ieee754/soft-fp: ignore maybe-uninitialized with -O [BZ #19444]

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---
 package/glibc/glibc.hash | 2 +-
 package/glibc/glibc.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/glibc/glibc.hash b/package/glibc/glibc.hash
index 9fff30e1ef..c0447fc4d2 100644
--- a/package/glibc/glibc.hash
+++ b/package/glibc/glibc.hash
@@ -1,5 +1,5 @@
 # Locally calculated (fetched from Github)
-sha256  6e88cea4002efa7f78d86ea5e98eb92ed423d5a35068751517c4f00f56b8666c     glibc-glibc-2.28-18-g2339d6a55eb7a7e040ae888e906adc49eeb59eab.tar.gz
+sha256  7fc691e1aa6526ca8e92db831c040af373934712fb78979275d9d65cf9cc6530     glibc-5a580643111ef6081be7b4c7bd1997a5447c903f.tar.gz
 # Locally calculated (fetched from Github)
 sha256  e08ab67b2db2d0f0e8f3311d23c54fb8f6d4c1ef6fa0b4047fd5da400e3ce9de     glibc-arc-2018.03-release.tar.gz
 
diff --git a/package/glibc/glibc.mk b/package/glibc/glibc.mk
index 708c22f723..526bca8146 100644
--- a/package/glibc/glibc.mk
+++ b/package/glibc/glibc.mk
@@ -10,7 +10,7 @@ GLIBC_SITE = $(call github,foss-for-synopsys-dwc-arc-processors,glibc,$(GLIBC_VE
 else
 # Generate version string using:
 #   git describe --match 'glibc-*' --abbrev=40 origin/release/MAJOR.MINOR/master
-GLIBC_VERSION = glibc-2.28-18-g2339d6a55eb7a7e040ae888e906adc49eeb59eab
+GLIBC_VERSION = 5a580643111ef6081be7b4c7bd1997a5447c903f
 # Upstream doesn't officially provide an https download link.
 # There is one (https://sourceware.org/git/glibc.git) but it's not reliable,
 # sometimes the connection times out. So use an unofficial github mirror.
-- 
2.17.0

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

* [Buildroot] [PATCH] glibc: bump version for more post-2.28 fixes
  2018-10-09 11:45 [Buildroot] [PATCH] glibc: bump version for more post-2.28 fixes yegorslists at googlemail.com
@ 2018-10-09 12:07 ` Baruch Siach
  2018-10-09 12:29   ` Yegor Yefremov
  0 siblings, 1 reply; 3+ messages in thread
From: Baruch Siach @ 2018-10-09 12:07 UTC (permalink / raw)
  To: buildroot

Hi Yegor,

yegorslists at googlemail.com writes:
> From: Yegor Yefremov <yegorslists@googlemail.com>
>
> This version bump fixes following issue:
>
> sysdeps/ieee754/soft-fp: ignore maybe-uninitialized with -O [BZ
> #19444]

Are you sure? Upstream commit 4a06ceea33ec is not included in the
release/2.28/master branch as of 5473739a7b44, which is the version you
bump to.

> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>

[snip]

> diff --git a/package/glibc/glibc.mk b/package/glibc/glibc.mk
> index 708c22f723..526bca8146 100644
> --- a/package/glibc/glibc.mk
> +++ b/package/glibc/glibc.mk
> @@ -10,7 +10,7 @@ GLIBC_SITE = $(call github,foss-for-synopsys-dwc-arc-processors,glibc,$(GLIBC_VE
>  else
>  # Generate version string using:
>  #   git describe --match 'glibc-*' --abbrev=40 origin/release/MAJOR.MINOR/master
> -GLIBC_VERSION = glibc-2.28-18-g2339d6a55eb7a7e040ae888e906adc49eeb59eab
> +GLIBC_VERSION = 5a580643111ef6081be7b4c7bd1997a5447c903f

The hash prefix is useful, please keep it. Should be 'glibc-2.28-21-g'
for this commit. This is taken from the output of 'git describe'.

>  # Upstream doesn't officially provide an https download link.
>  # There is one (https://sourceware.org/git/glibc.git) but it's not reliable,
>  # sometimes the connection times out. So use an unofficial github mirror.

baruch

--
     http://baruch.siach.name/blog/                  ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch at tkos.co.il - tel: +972.52.368.4656, http://www.tkos.co.il -

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

* [Buildroot] [PATCH] glibc: bump version for more post-2.28 fixes
  2018-10-09 12:07 ` Baruch Siach
@ 2018-10-09 12:29   ` Yegor Yefremov
  0 siblings, 0 replies; 3+ messages in thread
From: Yegor Yefremov @ 2018-10-09 12:29 UTC (permalink / raw)
  To: buildroot

Hi Baruch,

On Tue, Oct 9, 2018 at 2:07 PM Baruch Siach <baruch@tkos.co.il> wrote:
>
> Hi Yegor,
>
> yegorslists at googlemail.com writes:
> > From: Yegor Yefremov <yegorslists@googlemail.com>
> >
> > This version bump fixes following issue:
> >
> > sysdeps/ieee754/soft-fp: ignore maybe-uninitialized with -O [BZ
> > #19444]
>
> Are you sure? Upstream commit 4a06ceea33ec is not included in the
> release/2.28/master branch as of 5473739a7b44, which is the version you
> bump to.

You're right. Then the only solution is to add a patch as a file.

Yegor

> > Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
>
> [snip]
>
> > diff --git a/package/glibc/glibc.mk b/package/glibc/glibc.mk
> > index 708c22f723..526bca8146 100644
> > --- a/package/glibc/glibc.mk
> > +++ b/package/glibc/glibc.mk
> > @@ -10,7 +10,7 @@ GLIBC_SITE = $(call github,foss-for-synopsys-dwc-arc-processors,glibc,$(GLIBC_VE
> >  else
> >  # Generate version string using:
> >  #   git describe --match 'glibc-*' --abbrev=40 origin/release/MAJOR.MINOR/master
> > -GLIBC_VERSION = glibc-2.28-18-g2339d6a55eb7a7e040ae888e906adc49eeb59eab
> > +GLIBC_VERSION = 5a580643111ef6081be7b4c7bd1997a5447c903f
>
> The hash prefix is useful, please keep it. Should be 'glibc-2.28-21-g'
> for this commit. This is taken from the output of 'git describe'.
>
> >  # Upstream doesn't officially provide an https download link.
> >  # There is one (https://sourceware.org/git/glibc.git) but it's not reliable,
> >  # sometimes the connection times out. So use an unofficial github mirror.
>
> baruch
>
> --
>      http://baruch.siach.name/blog/                  ~. .~   Tk Open Systems
> =}------------------------------------------------ooO--U--Ooo------------{=
>    - baruch at tkos.co.il - tel: +972.52.368.4656, http://www.tkos.co.il -

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

end of thread, other threads:[~2018-10-09 12:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-09 11:45 [Buildroot] [PATCH] glibc: bump version for more post-2.28 fixes yegorslists at googlemail.com
2018-10-09 12:07 ` Baruch Siach
2018-10-09 12:29   ` Yegor Yefremov

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.