* [Buildroot] [PATCH 1/1] package/perl: bump perl-cross to version 1.4
@ 2022-07-17 21:41 Fabrice Fontaine
2022-07-18 10:11 ` Thomas Petazzoni via buildroot
2022-08-10 15:04 ` Peter Korsgaard
0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2022-07-17 21:41 UTC (permalink / raw)
To: buildroot; +Cc: Fabrice Fontaine
This bump will fix the following static build failure with berkeleydb
thanks to
https://github.com/arsv/perl-cross/commit/31dac3e264a7f1f53dbf49570771123ebd514055:
/nvmedata/autobuild/instance-6/output-1/host/lib/gcc/mipsel-buildroot-linux-uclibc/10.3.0/../../../../mipsel-buildroot-linux-uclibc/bin/ld: lib/auto/DB_File/DB_File.a(DB_File.o): in function `ParseOpenInfo':
DB_File.c:(.text+0x7d30): undefined reference to `db_create'
Fixes:
- http://autobuild.buildroot.org/results/e01a042185b2221bee815bb9096c4419eeb6e558
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
package/perl/perl.hash | 4 ++--
package/perl/perl.mk | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/package/perl/perl.hash b/package/perl/perl.hash
index d8344d9754..9ec2b42e34 100644
--- a/package/perl/perl.hash
+++ b/package/perl/perl.hash
@@ -3,8 +3,8 @@ md5 7d2ece7f50775ea1ff739831935a24bd perl-5.34.1.tar.xz
sha1 e7dbef3c1ea7caa73e2c705bba9e4bfb92ea98f0 perl-5.34.1.tar.xz
sha256 6d52cf833ff1af27bb5e986870a2c30cec73c044b41e3458cd991f94374039f7 perl-5.34.1.tar.xz
-# Hashes from: https://github.com/arsv/perl-cross/releases/download/1.3.7/perl-cross-1.3.7.hash
-sha256 77f13ca84a63025053852331b72d4046c1f90ded98bd45ccedea738621907335 perl-cross-1.3.7.tar.gz
+# Hash from: https://github.com/arsv/perl-cross/releases/download/1.4/perl-cross-1.4.hash
+sha256 be9d9f9f7148edff7a2f9695ba3cb7e3975eff6b25a9a81dd311725fd757aa91 perl-cross-1.4.tar.gz
# Locally calculated
sha256 dd90d4f42e4dcadf5a7c09eea0189d93c7b37ae560c91f0f6d5233ed3b9292a2 Artistic
diff --git a/package/perl/perl.mk b/package/perl/perl.mk
index 392fb8b6e2..27acfaeff2 100644
--- a/package/perl/perl.mk
+++ b/package/perl/perl.mk
@@ -15,7 +15,7 @@ PERL_CPE_ID_VENDOR = perl
PERL_DEPENDENCIES = $(TARGET_NLS_DEPENDENCIES)
PERL_INSTALL_STAGING = YES
-PERL_CROSS_VERSION = 1.3.7
+PERL_CROSS_VERSION = 1.4
# DO NOT refactor with the github helper (the result is not the same)
PERL_CROSS_SITE = https://github.com/arsv/perl-cross/releases/download/$(PERL_CROSS_VERSION)
PERL_CROSS_SOURCE = perl-cross-$(PERL_CROSS_VERSION).tar.gz
--
2.35.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/perl: bump perl-cross to version 1.4
2022-07-17 21:41 [Buildroot] [PATCH 1/1] package/perl: bump perl-cross to version 1.4 Fabrice Fontaine
@ 2022-07-18 10:11 ` Thomas Petazzoni via buildroot
2022-08-10 15:04 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2022-07-18 10:11 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: buildroot
On Sun, 17 Jul 2022 23:41:32 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:
> This bump will fix the following static build failure with berkeleydb
> thanks to
> https://github.com/arsv/perl-cross/commit/31dac3e264a7f1f53dbf49570771123ebd514055:
>
> /nvmedata/autobuild/instance-6/output-1/host/lib/gcc/mipsel-buildroot-linux-uclibc/10.3.0/../../../../mipsel-buildroot-linux-uclibc/bin/ld: lib/auto/DB_File/DB_File.a(DB_File.o): in function `ParseOpenInfo':
> DB_File.c:(.text+0x7d30): undefined reference to `db_create'
>
> Fixes:
> - http://autobuild.buildroot.org/results/e01a042185b2221bee815bb9096c4419eeb6e558
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
> package/perl/perl.hash | 4 ++--
> package/perl/perl.mk | 2 +-
> 2 files changed, 3 insertions(+), 3 deletions(-)
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/perl: bump perl-cross to version 1.4
2022-07-17 21:41 [Buildroot] [PATCH 1/1] package/perl: bump perl-cross to version 1.4 Fabrice Fontaine
2022-07-18 10:11 ` Thomas Petazzoni via buildroot
@ 2022-08-10 15:04 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2022-08-10 15:04 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: buildroot
>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:
> This bump will fix the following static build failure with berkeleydb
> thanks to
> https://github.com/arsv/perl-cross/commit/31dac3e264a7f1f53dbf49570771123ebd514055:
> /nvmedata/autobuild/instance-6/output-1/host/lib/gcc/mipsel-buildroot-linux-uclibc/10.3.0/../../../../mipsel-buildroot-linux-uclibc/bin/ld:
> lib/auto/DB_File/DB_File.a(DB_File.o): in function `ParseOpenInfo':
> DB_File.c:(.text+0x7d30): undefined reference to `db_create'
> Fixes:
> - http://autobuild.buildroot.org/results/e01a042185b2221bee815bb9096c4419eeb6e558
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Committed to 2022.05.x and 2022.02.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-08-10 15:04 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-17 21:41 [Buildroot] [PATCH 1/1] package/perl: bump perl-cross to version 1.4 Fabrice Fontaine
2022-07-18 10:11 ` Thomas Petazzoni via buildroot
2022-08-10 15:04 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox