mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-11 00:07:51 +03:00
Result of running the command: grep --include="*.ebuild" -r . -e 'KEYWORDS=.*[" ]sparc' -l | xargs ekeyword ~sparc Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
91 lines
1.9 KiB
Bash
91 lines
1.9 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_EXT=1
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
PYTHON_COMPAT=( python3_{11..14} )
|
|
|
|
inherit distutils-r1 pypi
|
|
|
|
DESCRIPTION="Python interface to MySQL"
|
|
HOMEPAGE="
|
|
https://pypi.org/project/mysqlclient/
|
|
https://github.com/PyMySQL/mysqlclient/
|
|
"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm arm64 ~hppa ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
|
|
|
|
DEPEND="
|
|
dev-db/mysql-connector-c:0=
|
|
"
|
|
RDEPEND="
|
|
${DEPEND}
|
|
"
|
|
BDEPEND="
|
|
test? (
|
|
dev-db/mariadb[server]
|
|
)
|
|
"
|
|
|
|
EPYTEST_PLUGINS=()
|
|
distutils_enable_sphinx doc \
|
|
dev-python/sphinx-rtd-theme
|
|
distutils_enable_tests pytest
|
|
|
|
src_test() {
|
|
rm -r src || die
|
|
|
|
local datadir="${T}/mysql" \
|
|
install_log="${T}/mysqld_install.log" \
|
|
pidfile="${T}/mysqld.pid" \
|
|
socket="${T}/mysqld.sock" \
|
|
log="${T}/mysqld.log"
|
|
einfo "Creating test MySQL instance ..."
|
|
if ! mysql_install_db \
|
|
--no-defaults \
|
|
--auth-root-authentication-method=normal \
|
|
--basedir="${EPREFIX}/usr" \
|
|
--datadir="${datadir}" >& "${install_log}"
|
|
then
|
|
cat "${install_log}"
|
|
die "Failed to create database"
|
|
fi
|
|
|
|
einfo "Starting test MySQL instance ..."
|
|
mysqld \
|
|
--no-defaults \
|
|
--character-set-server=utf8 \
|
|
--pid-file="${pidfile}" \
|
|
--socket="${socket}" \
|
|
--skip-networking \
|
|
--datadir="${datadir}" >& "${log}" &
|
|
|
|
local i timeout=10
|
|
einfo "Waiting for MySQL to start for up to ${timeout} seconds ..."
|
|
for i in seq 1 ${timeout}; do
|
|
[[ -S "${socket}" ]] && break
|
|
sleep 1
|
|
done
|
|
if [[ ! -S "${socket}" ]]; then
|
|
cat "${log}"
|
|
die "MySQL failed to start in ${timeout} seconds"
|
|
fi
|
|
|
|
cat > "${T}/mysql.cnf" <<- EOF
|
|
[MySQLdb-tests]
|
|
socket = ${socket}
|
|
user = root
|
|
database = test
|
|
EOF
|
|
|
|
local -x TESTDB="${T}/mysql.cnf"
|
|
distutils-r1_src_test
|
|
|
|
einfo "Stopping test MySQL instance ..."
|
|
pkill -F "${pidfile}" &>/dev/null
|
|
}
|