diff options
author | Ian Delaney <idella4@gentoo.org> | 2014-09-15 16:30:34 +0000 |
---|---|---|
committer | Ian Delaney <idella4@gentoo.org> | 2014-09-15 16:30:34 +0000 |
commit | 90137c87ff88fddb4552641b9fe59872ea40d063 (patch) | |
tree | 51ebedbb5ec24008af30fe8ff46d19f89e81d355 /dev-python/sqlalchemy | |
parent | Version bump to 1.5.3. (diff) | |
download | gentoo-2-90137c87ff88fddb4552641b9fe59872ea40d063.tar.gz gentoo-2-90137c87ff88fddb4552641b9fe59872ea40d063.tar.bz2 gentoo-2-90137c87ff88fddb4552641b9fe59872ea40d063.zip |
further corrections; delete redundant deps on sqlite and options of testrunner, refine impls deps on mock
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Diffstat (limited to 'dev-python/sqlalchemy')
-rw-r--r-- | dev-python/sqlalchemy/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/sqlalchemy/sqlalchemy-0.9.7.ebuild | 11 |
2 files changed, 9 insertions, 8 deletions
diff --git a/dev-python/sqlalchemy/ChangeLog b/dev-python/sqlalchemy/ChangeLog index f09c88eb47cd..cf41b1d18fbe 100644 --- a/dev-python/sqlalchemy/ChangeLog +++ b/dev-python/sqlalchemy/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/sqlalchemy # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/sqlalchemy/ChangeLog,v 1.133 2014/09/15 15:44:33 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/sqlalchemy/ChangeLog,v 1.134 2014/09/15 16:30:34 idella4 Exp $ + + 15 Sep 2014; Ian Delaney <idella4@gentoo.org> sqlalchemy-0.9.7.ebuild: + further corrections; delete redundant deps on sqlite and options of + testrunner, refine impls deps on mock 15 Sep 2014; Ian Delaney <idella4@gentoo.org> sqlalchemy-0.9.7.ebuild: add missed dep pytest diff --git a/dev-python/sqlalchemy/sqlalchemy-0.9.7.ebuild b/dev-python/sqlalchemy/sqlalchemy-0.9.7.ebuild index 45ac95a8c9c3..5662da9bc5e3 100644 --- a/dev-python/sqlalchemy/sqlalchemy-0.9.7.ebuild +++ b/dev-python/sqlalchemy/sqlalchemy-0.9.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/sqlalchemy/sqlalchemy-0.9.7.ebuild,v 1.3 2014/09/15 15:44:33 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/sqlalchemy/sqlalchemy-0.9.7.ebuild,v 1.4 2014/09/15 16:30:34 idella4 Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy ) @@ -21,14 +21,11 @@ KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86- IUSE="doc examples +sqlite test" REQUIRED_USE="test? ( sqlite )" -RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - sqlite? ( >=dev-db/sqlite-3.3.13 )" +RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" DEPEND="${RDEPEND} - test? ( ( || ( dev-python/pytest[${PYTHON_USEDEP}] >=dev-python/nose-0.10.4[${PYTHON_USEDEP}] ) ) - >=dev-db/sqlite-3.3.13 - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/mock[${PYTHON_USEDEP}] + test? ( dev-python/pytest[${PYTHON_USEDEP}] + $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' 'python{2_7,3_2}' pypy) )" S="${WORKDIR}/${MY_P}" |