mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

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>
56 lines
1.5 KiB
BlitzBasic
56 lines
1.5 KiB
BlitzBasic
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<pver>(\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"
|