diff options
| author | wangmy <wangmy@fujitsu.com> | 2022-04-25 15:31:15 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2022-04-25 11:00:43 -0700 |
| commit | 8e926e200b0381179feb68f6afb54d7b33f4c969 (patch) | |
| tree | b272da60e513d00929f7945507b7daad3e8cd84b /meta-perl/recipes-perl/libdb/libdbd-sqlite-perl_1.70.bb | |
| parent | bfd4f628c412c4fa6f645ac56dbb4ac001ad5575 (diff) | |
| download | meta-openembedded-8e926e200b0381179feb68f6afb54d7b33f4c969.tar.gz | |
libdbd-sqlite-perl: upgrade 1.68 -> 1.70
Changelog:
==========
- Fix doc to use the correct attribute with sqlite_ (GH#86, eekboek++)
- Modify the fix to silence the sqlite_unicode warning not to check
the attribute twice
- Fix an encoding issue of naive (GH#83, HaraldJoerg++)
- Typo (GH#85, grr++)
- Silenced deprecation warning of sqlite_unicode not to break
tests of existing applications
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-perl/recipes-perl/libdb/libdbd-sqlite-perl_1.70.bb')
| -rw-r--r-- | meta-perl/recipes-perl/libdb/libdbd-sqlite-perl_1.70.bb | 55 |
1 files changed, 55 insertions, 0 deletions
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 new file mode 100644 index 0000000000..17ec3298c8 --- /dev/null +++ b/meta-perl/recipes-perl/libdb/libdbd-sqlite-perl_1.70.bb | |||
| @@ -0,0 +1,55 @@ | |||
| 1 | SUMMARY = "A Perl DBI driver for SQLite" | ||
| 2 | DESCRIPTION = "DBD::SQLite is a Perl DBI driver for SQLite, that includes the entire \ | ||
| 3 | thing in the distribution. So in order to get a fast transaction capable \ | ||
| 4 | RDBMS working for your perl project you simply have to install this \ | ||
| 5 | module, and nothing else. \ | ||
| 6 | " | ||
| 7 | HOMEPAGE = "https://metacpan.org/release/DBD-SQLite" | ||
| 8 | |||
| 9 | SECTION = "libs" | ||
| 10 | LICENSE = "Artistic-1.0 | GPL-1.0-or-later" | ||
| 11 | LIC_FILES_CHKSUM = "file://LICENSE;md5=1726e2117494ba3e13e1c3d93f795360" | ||
| 12 | |||
| 13 | SRC_URI = "${CPAN_MIRROR}/authors/id/I/IS/ISHIGAKI/DBD-SQLite-${PV}.tar.gz \ | ||
| 14 | file://sqlite-perl-test.pl \ | ||
| 15 | " | ||
| 16 | |||
| 17 | SRC_URI[sha256sum] = "40fd8ddf539e0e773a7a4e6d376794c3301459f9ab0050978bdcf97113dafe3e" | ||
| 18 | |||
| 19 | UPSTREAM_CHECK_REGEX = "DBD\-SQLite\-(?P<pver>(\d+\.\d+))(?!_\d+).tar" | ||
| 20 | |||
| 21 | S = "${WORKDIR}/DBD-SQLite-${PV}" | ||
| 22 | |||
| 23 | DEPENDS += "libdbi-perl-native" | ||
| 24 | |||
| 25 | inherit cpan ptest-perl | ||
| 26 | |||
| 27 | RDEPENDS:${PN} += "libdbi-perl \ | ||
| 28 | sqlite3 \ | ||
| 29 | perl-module-constant \ | ||
| 30 | perl-module-locale \ | ||
| 31 | perl-module-tie-hash \ | ||
| 32 | " | ||
| 33 | |||
| 34 | do_install:append() { | ||
| 35 | if [ ${PERL_DBM_TEST} = "1" ]; then | ||
| 36 | install -m 755 -D ${WORKDIR}/sqlite-perl-test.pl ${D}/${bindir}/sqlite-perl-test.pl | ||
| 37 | fi | ||
| 38 | } | ||
| 39 | |||
| 40 | do_install_ptest() { | ||
| 41 | cp -r ${B}/MANIFEST ${D}${PTEST_PATH} | ||
| 42 | chown -R root:root ${D}${PTEST_PATH} | ||
| 43 | } | ||
| 44 | |||
| 45 | RDEPENDS:${PN}-ptest += " \ | ||
| 46 | libtest-nowarnings-perl \ | ||
| 47 | perl-module-lib \ | ||
| 48 | perl-module-encode \ | ||
| 49 | perl-module-file-spec \ | ||
| 50 | perl-module-file-spec-functions \ | ||
| 51 | perl-module-findbin \ | ||
| 52 | perl-module-test-more \ | ||
| 53 | " | ||
| 54 | |||
| 55 | BBCLASSEXTEND = "native" | ||
