diff options
-rw-r--r-- | meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb | 3 | ||||
-rw-r--r-- | meta-oe/recipes-dbs/mysql/mysql-python_1.2.5.bb | 7 |
2 files changed, 8 insertions, 2 deletions
diff --git a/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb b/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb index f045167e8e..6dda3005e7 100644 --- a/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb +++ b/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb | |||
@@ -101,8 +101,9 @@ RDEPENDS_packagegroup-meta-oe-bsp_remove_riscv32 = "efivar efibootmgr" | |||
101 | 101 | ||
102 | RDEPENDS_packagegroup-meta-oe-dbs ="\ | 102 | RDEPENDS_packagegroup-meta-oe-dbs ="\ |
103 | leveldb libdbi mariadb mariadb-native \ | 103 | leveldb libdbi mariadb mariadb-native \ |
104 | mysql-python postgresql psqlodbc rocksdb soci \ | 104 | postgresql psqlodbc rocksdb soci \ |
105 | sqlite \ | 105 | sqlite \ |
106 | ${@bb.utils.contains("BBPATH", "meta-python2", "mysql-python", "", d)} \ | ||
106 | " | 107 | " |
107 | 108 | ||
108 | RDEPENDS_packagegroup-meta-oe-devtools ="\ | 109 | RDEPENDS_packagegroup-meta-oe-devtools ="\ |
diff --git a/meta-oe/recipes-dbs/mysql/mysql-python_1.2.5.bb b/meta-oe/recipes-dbs/mysql/mysql-python_1.2.5.bb index 6d52222ce4..f1c2b7701c 100644 --- a/meta-oe/recipes-dbs/mysql/mysql-python_1.2.5.bb +++ b/meta-oe/recipes-dbs/mysql/mysql-python_1.2.5.bb | |||
@@ -16,4 +16,9 @@ SRC_URI[sha256sum] = "811040b647e5d5686f84db415efd697e6250008b112b6909ba77ac059e | |||
16 | 16 | ||
17 | S = "${WORKDIR}/${SRCNAME}-${PV}" | 17 | S = "${WORKDIR}/${SRCNAME}-${PV}" |
18 | 18 | ||
19 | inherit setuptools3 | 19 | inherit setuptools |
20 | |||
21 | python() { | ||
22 | if 'meta-python2' not in d.getVar('BBFILE_COLLECTIONS').split(): | ||
23 | raise bb.parse.SkipRecipe('Requires meta-python2 to be present.') | ||
24 | } | ||