mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 16:27:27 +00:00
e4a2593a21
BBPATH check actually does not work Signed-off-by: Khem Raj <raj.khem@gmail.com>
25 lines
846 B
BlitzBasic
25 lines
846 B
BlitzBasic
SUMMARY = "Python interface to MySQL"
|
|
HOMEPAGE = "https://github.com/farcepest/MySQLdb1"
|
|
SECTION = "devel/python"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://GPL-2.0;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|
|
|
DEPENDS = "mysql5"
|
|
|
|
SRCNAME = "MySQL-python"
|
|
|
|
SRC_URI = "https://pypi.python.org/packages/source/M/${SRCNAME}/${SRCNAME}-${PV}.zip \
|
|
file://0001-_mysql.c-fix-compilation-with-MariaDB-with-10.3.13.patch \
|
|
"
|
|
SRC_URI[md5sum] = "654f75b302db6ed8dc5a898c625e030c"
|
|
SRC_URI[sha256sum] = "811040b647e5d5686f84db415efd697e6250008b112b6909ba77ac059e140c74"
|
|
|
|
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
|
|
|
inherit ${@bb.utils.contains("BBFILE_COLLECTIONS", "meta-python2", "setuptools", "", d)}
|
|
|
|
python() {
|
|
if 'meta-python2' not in d.getVar('BBFILE_COLLECTIONS').split():
|
|
raise bb.parse.SkipRecipe('Requires meta-python2 to be present.')
|
|
}
|