All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/automake: bump to version 1.16.5
@ 2021-10-09  8:18 Fabrice Fontaine
  2021-10-14 21:00 ` Arnout Vandecappelle
  0 siblings, 1 reply; 2+ messages in thread
From: Fabrice Fontaine @ 2021-10-09  8:18 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine

This bump will avoid to set --with-python_{prefix,exec_prefix} to fix
the following build failures with python and libsoc or libgpiod raised
since bump of automake to version 1.16.4 in commit
fe90272b5128987ee7492fff950660e05324838d and
https://git.savannah.gnu.org/cgit/automake.git/commit/?id=ed8daa069a6c8ed34f7856c42402ec46f305e670:

 /bin/mkdir -p '/home/buildroot/autobuild/instance-0/output-1/host/arc-buildroot-linux-uclibc/sysroot/home/buildroot/autobuild/instance-0/output-1/host/lib/python3.9/site-packages'
 /bin/bash ../../libtool   --mode=install /usr/bin/install -c   gpiod.la '/home/buildroot/autobuild/instance-0/output-1/host/arc-buildroot-linux-uclibc/sysroot/home/buildroot/autobuild/instance-0/output-1/host/lib/python3.9/site-packages'
libtool: install: /usr/bin/install -c .libs/gpiod.so /home/buildroot/autobuild/instance-0/output-1/host/arc-buildroot-linux-uclibc/sysroot/home/buildroot/autobuild/instance-0/output-1/host/lib/python3.9/site-packages/gpiod.so

[...]

libgpiod: installs files in /home/buildroot/autobuild/instance-0/output-1/host/arc-buildroot-linux-uclibc/sysroot//home/buildroot/autobuild/instance-0/output-1

Fixes:
 - http://autobuild.buildroot.org/results/045dc3f737f58d44014a4b717b5a565388e86f63
 - http://autobuild.buildroot.org/results/6e7a129b05e7852a4dc8dd35148664ad09610f28

https://git.savannah.gnu.org/cgit/automake.git/tree/NEWS?h=v1.16.5

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

diff --git a/package/automake/automake.hash b/package/automake/automake.hash
index e8112e0c48..b2e70641db 100644
--- a/package/automake/automake.hash
+++ b/package/automake/automake.hash
@@ -1,4 +1,4 @@
 # Locally calculated
-sha256  80facc09885a57e6d49d06972c0ae1089c5fa8f4d4c7cfe5baea58e5085f136d  automake-1.16.4.tar.xz
+sha256  f01d58cd6d9d77fbdca9eb4bbd5ead1988228fdb73d6f7a201f5f8d6b118b469  automake-1.16.5.tar.xz
 # License files, locally calculated
 sha256  ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6  COPYING
diff --git a/package/automake/automake.mk b/package/automake/automake.mk
index 470a0bd46e..5270e7864d 100644
--- a/package/automake/automake.mk
+++ b/package/automake/automake.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-AUTOMAKE_VERSION = 1.16.4
+AUTOMAKE_VERSION = 1.16.5
 AUTOMAKE_SOURCE = automake-$(AUTOMAKE_VERSION).tar.xz
 AUTOMAKE_SITE = $(BR2_GNU_MIRROR)/automake
 AUTOMAKE_LICENSE = GPL-2.0+
-- 
2.33.0

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

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

* Re: [Buildroot] [PATCH 1/1] package/automake: bump to version 1.16.5
  2021-10-09  8:18 [Buildroot] [PATCH 1/1] package/automake: bump to version 1.16.5 Fabrice Fontaine
@ 2021-10-14 21:00 ` Arnout Vandecappelle
  0 siblings, 0 replies; 2+ messages in thread
From: Arnout Vandecappelle @ 2021-10-14 21:00 UTC (permalink / raw)
  To: Fabrice Fontaine, buildroot



On 09/10/2021 10:18, Fabrice Fontaine wrote:
> This bump will avoid to set --with-python_{prefix,exec_prefix} to fix
> the following build failures with python and libsoc or libgpiod raised
> since bump of automake to version 1.16.4 in commit
> fe90272b5128987ee7492fff950660e05324838d and
> https://git.savannah.gnu.org/cgit/automake.git/commit/?id=ed8daa069a6c8ed34f7856c42402ec46f305e670:
> 
>   /bin/mkdir -p '/home/buildroot/autobuild/instance-0/output-1/host/arc-buildroot-linux-uclibc/sysroot/home/buildroot/autobuild/instance-0/output-1/host/lib/python3.9/site-packages'
>   /bin/bash ../../libtool   --mode=install /usr/bin/install -c   gpiod.la '/home/buildroot/autobuild/instance-0/output-1/host/arc-buildroot-linux-uclibc/sysroot/home/buildroot/autobuild/instance-0/output-1/host/lib/python3.9/site-packages'
> libtool: install: /usr/bin/install -c .libs/gpiod.so /home/buildroot/autobuild/instance-0/output-1/host/arc-buildroot-linux-uclibc/sysroot/home/buildroot/autobuild/instance-0/output-1/host/lib/python3.9/site-packages/gpiod.so
> 
> [...]
> 
> libgpiod: installs files in /home/buildroot/autobuild/instance-0/output-1/host/arc-buildroot-linux-uclibc/sysroot//home/buildroot/autobuild/instance-0/output-1
> 
> Fixes:
>   - http://autobuild.buildroot.org/results/045dc3f737f58d44014a4b717b5a565388e86f63
>   - http://autobuild.buildroot.org/results/6e7a129b05e7852a4dc8dd35148664ad09610f28
> 
> https://git.savannah.gnu.org/cgit/automake.git/tree/NEWS?h=v1.16.5
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

  Applied to master, thanks.

  Regards,
  Arnout

> ---
>   package/automake/automake.hash | 2 +-
>   package/automake/automake.mk   | 2 +-
>   2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/package/automake/automake.hash b/package/automake/automake.hash
> index e8112e0c48..b2e70641db 100644
> --- a/package/automake/automake.hash
> +++ b/package/automake/automake.hash
> @@ -1,4 +1,4 @@
>   # Locally calculated
> -sha256  80facc09885a57e6d49d06972c0ae1089c5fa8f4d4c7cfe5baea58e5085f136d  automake-1.16.4.tar.xz
> +sha256  f01d58cd6d9d77fbdca9eb4bbd5ead1988228fdb73d6f7a201f5f8d6b118b469  automake-1.16.5.tar.xz
>   # License files, locally calculated
>   sha256  ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6  COPYING
> diff --git a/package/automake/automake.mk b/package/automake/automake.mk
> index 470a0bd46e..5270e7864d 100644
> --- a/package/automake/automake.mk
> +++ b/package/automake/automake.mk
> @@ -4,7 +4,7 @@
>   #
>   ################################################################################
>   
> -AUTOMAKE_VERSION = 1.16.4
> +AUTOMAKE_VERSION = 1.16.5
>   AUTOMAKE_SOURCE = automake-$(AUTOMAKE_VERSION).tar.xz
>   AUTOMAKE_SITE = $(BR2_GNU_MIRROR)/automake
>   AUTOMAKE_LICENSE = GPL-2.0+
> 
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2021-10-14 21:01 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-09  8:18 [Buildroot] [PATCH 1/1] package/automake: bump to version 1.16.5 Fabrice Fontaine
2021-10-14 21:00 ` Arnout Vandecappelle

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.