mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-python/mysqlclient: Bump to 2.1.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST mysqlclient-2.1.0.tar.gz 87635 BLAKE2B b92e138f6128873912e951087bc4f12b3c00a400521c7ee64da177c6f5a2dfb3a649d92f7a12f45c8716fd8b6b9682a0eff6d9bc111cffac38a27676f67d396a SHA512 a0b2645af225fd6f1f551cfd34c09309a859410e66287c32637901e15beb88632f9a3e87cf2b08a94867a9b2d4a048c56d63d55f523eafc82f1b1b93ce1c843c
|
||||
DIST mysqlclient-2.1.1.tar.gz 88138 BLAKE2B fdd044f2703af874dc0ca67b2fe07fcac3ceed5a4543aa15a0daa852ddf5ad6940a43675c0f104d9aa173e96da946e33054e1cc4c1b9812487558af64cc8fd43 SHA512 d8aed044b651aabb8d28d2df085f84e4d824ef0f147216d111425a9c8024f55634236ec131debf46660084c5a8fd67c944db60ffbf89e1d712cdca80c0726a06
|
||||
|
||||
91
dev-python/mysqlclient/mysqlclient-2.1.1.ebuild
Normal file
91
dev-python/mysqlclient/mysqlclient-2.1.1.ebuild
Normal file
@@ -0,0 +1,91 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_COMPAT=( python3_{8..10} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Python interface to MySQL"
|
||||
HOMEPAGE="
|
||||
https://pypi.org/project/mysqlclient/
|
||||
https://github.com/PyMySQL/mysqlclient/
|
||||
"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2+"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~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]
|
||||
)
|
||||
"
|
||||
|
||||
distutils_enable_sphinx doc
|
||||
distutils_enable_tests pytest
|
||||
|
||||
src_test() {
|
||||
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
|
||||
|
||||
distutils-r1_src_test
|
||||
|
||||
einfo "Stopping test MySQL instance ..."
|
||||
pkill -F "${pidfile}" &>/dev/null
|
||||
}
|
||||
|
||||
python_test() {
|
||||
local -x TESTDB="${T}/mysql.cnf"
|
||||
rm -rf MySQLdb || die
|
||||
epytest
|
||||
}
|
||||
Reference in New Issue
Block a user