diff options
-rw-r--r-- | meta-oe/recipes-dbs/mysql/mariadb.inc | 2 | ||||
-rw-r--r-- | meta-oe/recipes-devtools/perl/dbd-mariadb_1.23.bb | 20 | ||||
-rw-r--r-- | meta-oe/recipes-devtools/perl/libdbd-mysql-perl_5.006.bb | 24 |
3 files changed, 21 insertions, 25 deletions
diff --git a/meta-oe/recipes-dbs/mysql/mariadb.inc b/meta-oe/recipes-dbs/mysql/mariadb.inc index 695965f7d2..4bfa1c9caa 100644 --- a/meta-oe/recipes-dbs/mysql/mariadb.inc +++ b/meta-oe/recipes-dbs/mysql/mariadb.inc | |||
@@ -215,7 +215,7 @@ RDEPENDS:${PN}-client = "perl perl-module-getopt-long perl-module-file-temp \ | |||
215 | RDEPENDS:${PN}-server = "perl perl-module-getopt-long perl-module-data-dumper \ | 215 | RDEPENDS:${PN}-server = "perl perl-module-getopt-long perl-module-data-dumper \ |
216 | perl-module-file-basename perl-module-file-path perl-module-sys-hostname \ | 216 | perl-module-file-basename perl-module-file-path perl-module-sys-hostname \ |
217 | perl-module-file-copy perl-module-file-temp perl-module-posix \ | 217 | perl-module-file-copy perl-module-file-temp perl-module-posix \ |
218 | ${PN}-client ${PN}-setupdb libdbi-perl libdbd-mysql-perl lzo" | 218 | ${PN}-client ${PN}-setupdb libdbi-perl dbd-mariadb lzo" |
219 | RDEPENDS:${PN}-leftovers = "perl perl-module-cwd perl-module-benchmark perl-module-getopt-long \ | 219 | RDEPENDS:${PN}-leftovers = "perl perl-module-cwd perl-module-benchmark perl-module-getopt-long \ |
220 | perl-module-posix perl-module-data-dumper perl-module-sigtrap perl-module-threads \ | 220 | perl-module-posix perl-module-data-dumper perl-module-sigtrap perl-module-threads \ |
221 | perl-module-threads-shared perl-module-io-socket perl-module-sys-hostname perl-module-file-copy \ | 221 | perl-module-threads-shared perl-module-io-socket perl-module-sys-hostname perl-module-file-copy \ |
diff --git a/meta-oe/recipes-devtools/perl/dbd-mariadb_1.23.bb b/meta-oe/recipes-devtools/perl/dbd-mariadb_1.23.bb new file mode 100644 index 0000000000..0eaf2137b6 --- /dev/null +++ b/meta-oe/recipes-devtools/perl/dbd-mariadb_1.23.bb | |||
@@ -0,0 +1,20 @@ | |||
1 | DESPCRIPTION = "DBD::MariaDB is the Perl5 Database Interface driver for MariaDB and MySQL databases." | ||
2 | HOMEPAGE = "https://metacpan.org/dist/DBD-MariaDB" | ||
3 | LICENSE = "GPL-1.0-only" | ||
4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=d0a06964340e5c0cde88b7af611f755c" | ||
5 | |||
6 | DEPENDS = "libdbi-perl-native libdev-checklib-perl-native libmysqlclient" | ||
7 | |||
8 | SRC_URI = "${CPAN_MIRROR}/authors/id/P/PA/PALI/DBD-MariaDB-${PV}.tar.gz" | ||
9 | SRC_URI[sha256sum] = "0d0c76c660ddd55570e48f3e2fdea8f621a69ac0ed48190e8cfcafcb5e9b859d" | ||
10 | |||
11 | RDEPENDS:${PN} = "libdbi-perl" | ||
12 | |||
13 | S = "${WORKDIR}/DBD-MariaDB-${PV}" | ||
14 | |||
15 | inherit cpan | ||
16 | |||
17 | RDEPENDS:${PN}-ptest += " \ | ||
18 | libtest-warnings-perl \ | ||
19 | perl-module-test-more \ | ||
20 | " | ||
diff --git a/meta-oe/recipes-devtools/perl/libdbd-mysql-perl_5.006.bb b/meta-oe/recipes-devtools/perl/libdbd-mysql-perl_5.006.bb deleted file mode 100644 index 9199979147..0000000000 --- a/meta-oe/recipes-devtools/perl/libdbd-mysql-perl_5.006.bb +++ /dev/null | |||
@@ -1,24 +0,0 @@ | |||
1 | SUMMARY = "A Perl DBI driver for MySQL" | ||
2 | DESCRIPTION = "DBD::mysql is the Perl5 Database Interface driver for \ | ||
3 | the MySQL database. In other words: DBD::mysql is an interface between \ | ||
4 | the Perl programming language and the MySQL programming API that comes \ | ||
5 | with the MySQL relational database management system. Most functions \ | ||
6 | provided by this programming API are supported. Some rarely used \ | ||
7 | functions are missing, mainly because no-one ever requested them. \ | ||
8 | " | ||
9 | HOMEPAGE = "https://github.com/perl5-dbi/DBD-mysql" | ||
10 | |||
11 | SECTION = "libs" | ||
12 | LICENSE = "Artistic-1.0 | GPL-1.0-or-later" | ||
13 | DEPENDS += "libdev-checklib-perl-native libdbi-perl-native libmysqlclient" | ||
14 | |||
15 | LIC_FILES_CHKSUM = "file://LICENSE;md5=d0a06964340e5c0cde88b7af611f755c" | ||
16 | |||
17 | SRCREV = "9b5b70ea372f49fe9bc9e592dae3870596d1e3d6" | ||
18 | SRC_URI = "git://github.com/perl5-dbi/DBD-mysql.git;protocol=https;branch=master" | ||
19 | |||
20 | S = "${WORKDIR}/git" | ||
21 | |||
22 | inherit cpan | ||
23 | |||
24 | EXTRA_OEMAKE = ' CC="${CC} -Wno-incompatible-pointer-types"' | ||