mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-08-23 04:17:37 +00:00
* fails without mysql_config:
ERROR: Function failed: do_compile (log file is located at mysql-python/1.2.4-r0/temp/log.do_compile.29833)
ERROR: Logfile of failure stored in: mysql-python/1.2.4-r0/temp/log.do_compile.29833
Log data follows:
| DEBUG: Executing shell function do_compile
| sh: 1: mysql_config: not found
| Traceback (most recent call last):
| File "setup.py", line 18, in <module>
| metadata, options = get_config()
| File "mysql-python/1.2.4-r0/MySQL-python-1.2.4/setup_posix.py", line 43, in get_config
| libs = mysql_config("libs_r")
| File "mysql-python/1.2.4-r0/MySQL-python-1.2.4/setup_posix.py", line 25, in mysql_config
| raise EnvironmentError("%s not found" % (mysql_config.path,))
| EnvironmentError: mysql_config not found
| ERROR: python setup.py build_ext execution failed.
| ERROR: Function failed: do_compile (log file is located at mysql-python/1.2.4-r0/temp/log.do_compile.29833)
NOTE: recipe mysql-python-1.2.4-r0: task do_compile: Failed
ERROR: Task 6 (meta-oe/recipes-support/mysql/mysql-python_1.2.4.bb, do_compile) failed with exit code '1'
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
21 lines
593 B
BlitzBasic
21 lines
593 B
BlitzBasic
DESCRIPTION = "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"
|
|
|
|
PR = "r0"
|
|
SRCNAME = "MySQL-python"
|
|
|
|
SRC_URI = "https://pypi.python.org/packages/source/M/${SRCNAME}/${SRCNAME}-${PV}.zip \
|
|
file://remove-distribute.patch"
|
|
|
|
SRC_URI[md5sum] = "ddf2386daf10a97af115ffad2ed4a9a0"
|
|
SRC_URI[sha256sum] = "e405f9d6be33923d428acaa4db4f4470427f1d15ea0d2d82a933449ace26bbd9"
|
|
|
|
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
|
|
|
inherit setuptools
|