From 2f113b14474f8b595e1a6712715d5ad862d6fafd Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Mon, 7 Nov 2022 16:28:21 +0800 Subject: libdbd-sqlite-perl: upgrade 1.70 -> 1.72 Changelog: ========== - Upgraded SQLite to 3.39.4 - Set UTF8CACHE to avoid slowdown with -DDEBUGGING (andk, Leont, FGasper) - Fix another test failure on perl built with -DDEBUGGING - Lowercase datatype in table column metadata for backcompat - Fix test failure on perl built with -DDEBUGGING (andk++) - Expose sqlite_error_offset introduced in 3.38.0 - Improve sqlite_load_extension doc (GH#94, Derek Lamb++) - Add a feature to unregister a created function - Fix accented characters in POD (GH#90, HaraldJoerg++) Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- .../recipes-perl/libdb/libdbd-sqlite-perl_1.70.bb | 55 ---------------------- .../recipes-perl/libdb/libdbd-sqlite-perl_1.72.bb | 55 ++++++++++++++++++++++ 2 files changed, 55 insertions(+), 55 deletions(-) delete mode 100644 meta-perl/recipes-perl/libdb/libdbd-sqlite-perl_1.70.bb create mode 100644 meta-perl/recipes-perl/libdb/libdbd-sqlite-perl_1.72.bb (limited to 'meta-perl') diff --git a/meta-perl/recipes-perl/libdb/libdbd-sqlite-perl_1.70.bb b/meta-perl/recipes-perl/libdb/libdbd-sqlite-perl_1.70.bb deleted file mode 100644 index 17ec3298c8..0000000000 --- a/meta-perl/recipes-perl/libdb/libdbd-sqlite-perl_1.70.bb +++ /dev/null @@ -1,55 +0,0 @@ -SUMMARY = "A Perl DBI driver for SQLite" -DESCRIPTION = "DBD::SQLite is a Perl DBI driver for SQLite, that includes the entire \ -thing in the distribution. So in order to get a fast transaction capable \ -RDBMS working for your perl project you simply have to install this \ -module, and nothing else. \ -" -HOMEPAGE = "https://metacpan.org/release/DBD-SQLite" - -SECTION = "libs" -LICENSE = "Artistic-1.0 | GPL-1.0-or-later" -LIC_FILES_CHKSUM = "file://LICENSE;md5=1726e2117494ba3e13e1c3d93f795360" - -SRC_URI = "${CPAN_MIRROR}/authors/id/I/IS/ISHIGAKI/DBD-SQLite-${PV}.tar.gz \ - file://sqlite-perl-test.pl \ -" - -SRC_URI[sha256sum] = "40fd8ddf539e0e773a7a4e6d376794c3301459f9ab0050978bdcf97113dafe3e" - -UPSTREAM_CHECK_REGEX = "DBD\-SQLite\-(?P(\d+\.\d+))(?!_\d+).tar" - -S = "${WORKDIR}/DBD-SQLite-${PV}" - -DEPENDS += "libdbi-perl-native" - -inherit cpan ptest-perl - -RDEPENDS:${PN} += "libdbi-perl \ - sqlite3 \ - perl-module-constant \ - perl-module-locale \ - perl-module-tie-hash \ -" - -do_install:append() { - if [ ${PERL_DBM_TEST} = "1" ]; then - install -m 755 -D ${WORKDIR}/sqlite-perl-test.pl ${D}/${bindir}/sqlite-perl-test.pl - fi -} - -do_install_ptest() { - cp -r ${B}/MANIFEST ${D}${PTEST_PATH} - chown -R root:root ${D}${PTEST_PATH} -} - -RDEPENDS:${PN}-ptest += " \ - libtest-nowarnings-perl \ - perl-module-lib \ - perl-module-encode \ - perl-module-file-spec \ - perl-module-file-spec-functions \ - perl-module-findbin \ - perl-module-test-more \ - " - -BBCLASSEXTEND = "native" diff --git a/meta-perl/recipes-perl/libdb/libdbd-sqlite-perl_1.72.bb b/meta-perl/recipes-perl/libdb/libdbd-sqlite-perl_1.72.bb new file mode 100644 index 0000000000..975034a07d --- /dev/null +++ b/meta-perl/recipes-perl/libdb/libdbd-sqlite-perl_1.72.bb @@ -0,0 +1,55 @@ +SUMMARY = "A Perl DBI driver for SQLite" +DESCRIPTION = "DBD::SQLite is a Perl DBI driver for SQLite, that includes the entire \ +thing in the distribution. So in order to get a fast transaction capable \ +RDBMS working for your perl project you simply have to install this \ +module, and nothing else. \ +" +HOMEPAGE = "https://metacpan.org/release/DBD-SQLite" + +SECTION = "libs" +LICENSE = "Artistic-1.0 | GPL-1.0-or-later" +LIC_FILES_CHKSUM = "file://LICENSE;md5=1726e2117494ba3e13e1c3d93f795360" + +SRC_URI = "${CPAN_MIRROR}/authors/id/I/IS/ISHIGAKI/DBD-SQLite-${PV}.tar.gz \ + file://sqlite-perl-test.pl \ +" + +SRC_URI[sha256sum] = "5ca41e61eb52b52bd862a3088b912a75fe70910ac789b9a9983e0a449e94f551" + +UPSTREAM_CHECK_REGEX = "DBD\-SQLite\-(?P(\d+\.\d+))(?!_\d+).tar" + +S = "${WORKDIR}/DBD-SQLite-${PV}" + +DEPENDS += "libdbi-perl-native" + +inherit cpan ptest-perl + +RDEPENDS:${PN} += "libdbi-perl \ + sqlite3 \ + perl-module-constant \ + perl-module-locale \ + perl-module-tie-hash \ +" + +do_install:append() { + if [ ${PERL_DBM_TEST} = "1" ]; then + install -m 755 -D ${WORKDIR}/sqlite-perl-test.pl ${D}/${bindir}/sqlite-perl-test.pl + fi +} + +do_install_ptest() { + cp -r ${B}/MANIFEST ${D}${PTEST_PATH} + chown -R root:root ${D}${PTEST_PATH} +} + +RDEPENDS:${PN}-ptest += " \ + libtest-nowarnings-perl \ + perl-module-lib \ + perl-module-encode \ + perl-module-file-spec \ + perl-module-file-spec-functions \ + perl-module-findbin \ + perl-module-test-more \ + " + +BBCLASSEXTEND = "native" -- cgit v1.2.3-54-g00ecf