dev-python/mysqlclient: Remove old

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2022-04-27 22:16:33 +02:00
parent bd4394c29c
commit 67cc6f245e
3 changed files with 0 additions and 125 deletions

View File

@@ -1,3 +1 @@
DIST mysqlclient-1.4.6.tar.gz 85517 BLAKE2B f5e604094b06b919b92ecadc8b3f0249dd038149d1182ba882fe6b0ecd34f0bcceeed21b310318ca3291d9483fd3d1ac385c29415e07a8fbabb6cd65ccee8a2d SHA512 11ecb8a0a6f78edb193cd07472579aec1626994a80a584ff74de18774e7db8896de595f3e4d280b78e8636f53323ebcce8aa294ec7b2a54a839742d9699650ab
DIST mysqlclient-2.0.3.tar.gz 88886 BLAKE2B 2673f2ab46ddff241260b036b14bad84947a37d002cbacd7aa53127fa3dd4fad7a37c9e2f8704d43cab6a2e0289f2542cb36ccb3f1bd66c64d2440f79d26948e SHA512 49c234bc982b373a74d65361a697dfa4f87f06d193d86d7cc40a732f48c9b2494cea21ee3f95d4d6d2a55b3f7476a92eda0c2e294766cb0ff592e1c54353b9cb
DIST mysqlclient-2.1.0.tar.gz 87635 BLAKE2B b92e138f6128873912e951087bc4f12b3c00a400521c7ee64da177c6f5a2dfb3a649d92f7a12f45c8716fd8b6b9682a0eff6d9bc111cffac38a27676f67d396a SHA512 a0b2645af225fd6f1f551cfd34c09309a859410e66287c32637901e15beb88632f9a3e87cf2b08a94867a9b2d4a048c56d63d55f523eafc82f1b1b93ce1c843c

View File

@@ -1,35 +0,0 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python3_{7,8,9} )
inherit distutils-r1
DESCRIPTION="Fork of MySQL-python"
HOMEPAGE="https://pypi.org/project/mysqlclient/ https://github.com/PyMySQL/mysqlclient-python"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
IUSE="doc"
RDEPEND="
!dev-python/mysql-python
dev-db/mysql-connector-c:0="
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
DOCS=( README.md doc/{FAQ,MySQLdb}.rst )
python_compile_all() {
use doc && sphinx-build -b html doc doc/_build/
}
python_install_all() {
use doc && local HTML_DOCS=( doc/_build/. )
distutils-r1_python_install_all
}

View File

@@ -1,88 +0,0 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Fork of MySQL-python"
HOMEPAGE="https://pypi.org/project/mysqlclient/ https://github.com/PyMySQL/mysqlclient-python"
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"
RDEPEND="
dev-db/mysql-connector-c:0=
"
DEPEND="${RDEPEND}"
BDEPEND="
test? (
dev-db/mariadb[server]
dev-python/mock[${PYTHON_USEDEP}]
)
"
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() {
# The C extension ("_mysql") can't be imported from "${S}/MySQLdb"
# so we need to cd somewhere else to make sure "MySQLdb" is imported
# from ${BUILD_DIR}/lib (thanks to PYTHONPATH).
cd "${T}" || die
TESTDB="${T}/mysql.cnf" epytest "${S}"
}