Gentoo Archives: gentoo-commits

From: "Matt Thode (prometheanfire)" <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/alembic: alembic-0.7.4.ebuild ChangeLog
Date: Sat, 31 Jan 2015 05:31:11
Message-Id: 20150131053102.3457E10BCE@oystercatcher.gentoo.org
1 prometheanfire 15/01/31 05:31:02
2
3 Modified: ChangeLog
4 Added: alembic-0.7.4.ebuild
5 Log:
6 bump
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x33ED3FD25AFC78BA)
9
10 Revision Changes Path
11 1.15 dev-python/alembic/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/alembic/ChangeLog?rev=1.15&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/alembic/ChangeLog?rev=1.15&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/alembic/ChangeLog?r1=1.14&r2=1.15
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/alembic/ChangeLog,v
20 retrieving revision 1.14
21 retrieving revision 1.15
22 diff -u -r1.14 -r1.15
23 --- ChangeLog 5 Nov 2014 07:58:55 -0000 1.14
24 +++ ChangeLog 31 Jan 2015 05:31:02 -0000 1.15
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/alembic
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/alembic/ChangeLog,v 1.14 2014/11/05 07:58:55 patrick Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/alembic/ChangeLog,v 1.15 2015/01/31 05:31:02 prometheanfire Exp $
31 +
32 +*alembic-0.7.4 (31 Jan 2015)
33 +
34 + 31 Jan 2015; Matthew Thode <prometheanfire@g.o> +alembic-0.7.4.ebuild:
35 + bump
36
37 *alembic-0.6.7 (05 Nov 2014)
38
39
40
41
42 1.1 dev-python/alembic/alembic-0.7.4.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/alembic/alembic-0.7.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/alembic/alembic-0.7.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: alembic-0.7.4.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/alembic/alembic-0.7.4.ebuild,v 1.1 2015/01/31 05:31:02 prometheanfire Exp $
52
53 EAPI=5
54 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
55
56 inherit distutils-r1
57
58 DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
59 HOMEPAGE="https://bitbucket.org/zzzeek/alembic"
60 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
61
62 LICENSE="MIT"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="test doc"
66
67 # requires.txt cites 'SQLAlchemy>=0.7.3' which is really both old and silly
68 # because it shatters the testsuite. If 'someone' cares to adhere to correct form
69 # and edit to -0.7.3, feel free, and then pick up the pieces.
70 RDEPEND=">=dev-python/sqlalchemy-0.8.4[${PYTHON_USEDEP}]
71 dev-python/mako[${PYTHON_USEDEP}]"
72 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
73 test? ( ${RDEPEND}
74 dev-python/nose[${PYTHON_USEDEP}]
75 dev-python/mock[${PYTHON_USEDEP}] )"
76 # For test phase
77 DISTUTILS_IN_SOURCE_BUILD=1
78
79 python_prepare_all() {
80 # suite passes all if run from source. The residual fail & error are quite erroneous
81 rm tests/test_script_consumption.py
82
83 distutils-r1_python_prepare_all
84 }
85
86 python_test() {
87 ${EPYTHON} run_tests.py || die "Testing failed with ${EPYTHON}"
88 }
89
90 python_install_all() {
91 use doc && local HTML_DOCS=( docs/. )
92
93 distutils-r1_python_install_all
94 }