doing the test

This commit is contained in:
Matthew Thode
2016-09-11 12:39:52 -05:00
parent 3b236e80fc
commit 083f371f72
155 changed files with 14 additions and 3478 deletions

View File

@@ -1,2 +1 @@
DIST mysqlclient-1.3.6.tar.gz 78133 SHA256 1f63a8ab111530a0ff9acaeb118074f11e7564b7c124f2e7fc56fcac641aecf2 SHA512 387f3aef2f913d72fcb08001c70724702bf0af0d6d17be37cba390ffed10e54886f8a9da04cf8f76d3e7e19bd9fb932f0e80142e374703ca97d67d095ad512d1 WHIRLPOOL 4d767c12a73892c48f9456450df797a79238a06e1d1c159b4ae69264906bdd0461b1acbc89efff8c3c050774244c7a102e37061746d5fc4fb14e4dead2ab9070
DIST mysqlclient-1.3.7.tar.gz 79823 SHA256 c74a83b4cb2933d0e43370117eeebdfa03077ae72686d2df43d31879267f1f1b SHA512 e49aa1c8b3052c115c0423ed0375c7cfaaf2ce2a4e467175ad64ca76eaad6ecff260db8a9afabe7c9c21f017e0c73277c9cf71dde939bf5b31ff3f284331bafe WHIRLPOOL 054cc538f9182c17c006e09eb4a9555910ca621a6729c9d7a06f223ff920bb89fce7c88b4cc0feef14c25a53e7d4be22917ad5c36896d78a7ef05e543c69a13b

View File

@@ -1,36 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python2_7 python3_{3,4} pypy )
inherit distutils-r1
DESCRIPTION="Fork of MySQL-python"
HOMEPAGE="https://pypi.python.org/pypi/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 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc"
RDEPEND="
!dev-python/mysql-python
virtual/mysql"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
DOCS=( HISTORY 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
}