diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2025-01-14 16:28:28 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2025-01-14 08:52:04 -0800 |
| commit | 169a8f33ab3495d38aa51c3424860c10d09d0b6a (patch) | |
| tree | a74cafc5070b77dd7d17455a3c103fcfebad8e89 | |
| parent | 5069dfbc90f483d36773836d287843c205f0741c (diff) | |
| download | meta-openembedded-169a8f33ab3495d38aa51c3424860c10d09d0b6a.tar.gz | |
libdbi-perl: upgrade 1.644 -> 1.646
0001-Fix-building-on-Fedora-40-with-GCC-14.2.1.patch
removed since it's included in 1.646
License-Update: Copyright year updated to 2025
Changelog:
===========
* Remove "experimental" tag from statistics_info ()
* RT tickets moved to github issues
* Fix install issue
* Move developer tests to xt/
* Make Changes match CPAN::Changes::Spec and regen DBI::Changes from that
* Fixes for modern gcc i.c.w. recent perl
* Small code & doc cleanups for recent perl
* See TODO in `perldoc DBI` to see where you can help with documentation
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-oe/recipes-devtools/perl/libdbi-perl/0001-Fix-building-on-Fedora-40-with-GCC-14.2.1.patch | 28 | ||||
| -rw-r--r-- | meta-oe/recipes-devtools/perl/libdbi-perl_1.646.bb (renamed from meta-oe/recipes-devtools/perl/libdbi-perl_1.644.bb) | 8 |
2 files changed, 3 insertions, 33 deletions
diff --git a/meta-oe/recipes-devtools/perl/libdbi-perl/0001-Fix-building-on-Fedora-40-with-GCC-14.2.1.patch b/meta-oe/recipes-devtools/perl/libdbi-perl/0001-Fix-building-on-Fedora-40-with-GCC-14.2.1.patch deleted file mode 100644 index f29d6c4d8f..0000000000 --- a/meta-oe/recipes-devtools/perl/libdbi-perl/0001-Fix-building-on-Fedora-40-with-GCC-14.2.1.patch +++ /dev/null | |||
| @@ -1,28 +0,0 @@ | |||
| 1 | From dc970a868a4c2d7e2051b533e0a3588ef1d35530 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: =?UTF-8?q?Dani=C3=ABl=20van=20Eeden?= <git@myname.nl> | ||
| 3 | Date: Mon, 26 Aug 2024 10:17:01 +0200 | ||
| 4 | Subject: [PATCH] Fix building on Fedora 40 with GCC 14.2.1 | ||
| 5 | |||
| 6 | Upstream-Status: Backport [https://github.com/perl5-dbi/dbi/commit/d6e2bf13ac6043f5b0a9a147805b4915bd70e631] | ||
| 7 | |||
| 8 | Signed-off-by: Changqing Li <changqing.li@windriver.com> | ||
| 9 | --- | ||
| 10 | DBI.xs | 2 +- | ||
| 11 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 12 | |||
| 13 | diff --git a/DBI.xs b/DBI.xs | ||
| 14 | index 747e341..9b1d136 100644 | ||
| 15 | --- a/DBI.xs | ||
| 16 | +++ b/DBI.xs | ||
| 17 | @@ -1106,7 +1106,7 @@ dbih_inner(pTHX_ SV *orv, const char *what) | ||
| 18 | if (!SvMAGICAL(ohv)) { | ||
| 19 | if (!what) | ||
| 20 | return NULL; | ||
| 21 | - if (!hv_fetch(ohv,"_NO_DESTRUCT_WARN",17,0)) | ||
| 22 | + if (!hv_fetch((HV*)ohv,"_NO_DESTRUCT_WARN",17,0)) | ||
| 23 | sv_dump(orv); | ||
| 24 | croak("%s handle %s is not a DBI handle (has no magic)", | ||
| 25 | what, neatsvpv(orv,0)); | ||
| 26 | -- | ||
| 27 | 2.46.0 | ||
| 28 | |||
diff --git a/meta-oe/recipes-devtools/perl/libdbi-perl_1.644.bb b/meta-oe/recipes-devtools/perl/libdbi-perl_1.646.bb index 7f6c9059d0..947353c17c 100644 --- a/meta-oe/recipes-devtools/perl/libdbi-perl_1.644.bb +++ b/meta-oe/recipes-devtools/perl/libdbi-perl_1.646.bb | |||
| @@ -7,12 +7,10 @@ database interface independent of the actual database being used. \ | |||
| 7 | HOMEPAGE = "http://search.cpan.org/dist/DBI/" | 7 | HOMEPAGE = "http://search.cpan.org/dist/DBI/" |
| 8 | SECTION = "libs" | 8 | SECTION = "libs" |
| 9 | LICENSE = "Artistic-1.0 | GPL-1.0-or-later" | 9 | LICENSE = "Artistic-1.0 | GPL-1.0-or-later" |
| 10 | LIC_FILES_CHKSUM = "file://LICENSE;md5=8097b88c6165f0d43949441e6ea581cd" | 10 | LIC_FILES_CHKSUM = "file://LICENSE;md5=65f65488c774efe1da488e36ad6c4a36" |
| 11 | 11 | ||
| 12 | SRC_URI = "https://cpan.metacpan.org/authors/id/H/HM/HMBRAND/DBI-${PV}.tar.gz \ | 12 | SRC_URI = "https://cpan.metacpan.org/authors/id/H/HM/HMBRAND/DBI-${PV}.tar.gz" |
| 13 | file://0001-Fix-building-on-Fedora-40-with-GCC-14.2.1.patch \ | 13 | SRC_URI[sha256sum] = "53ab32ac8c30295a776dde658df22be760936cdca5a3c003a23bda6d829fa184" |
| 14 | " | ||
| 15 | SRC_URI[sha256sum] = "2297b99de09e67086640b590699e0e982fb469da63a93fe28dc14782db7a53c8" | ||
| 16 | 14 | ||
| 17 | S = "${WORKDIR}/DBI-${PV}" | 15 | S = "${WORKDIR}/DBI-${PV}" |
| 18 | 16 | ||
