Gentoo Archives: gentoo-commits

From: Patrick Lauer <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/alembic/
Date: Tue, 30 Aug 2016 09:36:26
Message-Id: 1472545800.c542b7c946c78980b47630c15c7c3149ae6f3b70.patrick@gentoo
1 commit: c542b7c946c78980b47630c15c7c3149ae6f3b70
2 Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 30 08:30:00 2016 +0000
4 Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 30 08:30:00 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c542b7c9
7
8 dev-python/alembic: Bump
9
10 Package-Manager: portage-2.3.0
11
12 dev-python/alembic/Manifest | 1 +
13 dev-python/alembic/alembic-0.8.7.ebuild | 47 +++++++++++++++++++++++++++++++++
14 2 files changed, 48 insertions(+)
15
16 diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
17 index 1499a34..d65cc14 100644
18 --- a/dev-python/alembic/Manifest
19 +++ b/dev-python/alembic/Manifest
20 @@ -3,3 +3,4 @@ DIST alembic-0.8.2.tar.gz 931914 SHA256 a69d65a766801c40e921ca24ae358bf081a990f5
21 DIST alembic-0.8.4.tar.gz 950696 SHA256 8507fc12ccc99321da2fa117dde4b5d8664ff5ef017df7ce5e7e5051901a624a SHA512 ef0c156d21b28dcabe1cb9249a0350fb12b489019240e46c37f2b070f04f86471afe0011c3df745f4d126a0477605f460cef63133cc28cb5ddf550f10627a7ab WHIRLPOOL 46dff4aeb8693314b708c5182d69e271422930fb1d4ffffee6d7f355f9845b8a19ce4385f6834fb83b35a316be6491c37d9ffd5e6824d349d753c1c12c04c0cb
22 DIST alembic-0.8.5.tar.gz 959286 SHA256 de8ca3b1d806cd39bf8a21d90f5c5822a2173b721ec20f868da38edd45b58cb2 SHA512 bc60363cc1dc4ee7dbc0b788f7ec638e3338b83dcca5858432bff1672c7bf5bbe8ba7522d80002140e8075017f1d5861ffb69b9c027790adc1b589484ad7448e WHIRLPOOL 4e2089237c427455c75e297f628af461f6a5fbf0195d48f531e419541878c525ce7d38da58964fde91e957c9ebdbba54372c9bae684cc4716d546d9c8105b2c2
23 DIST alembic-0.8.6.tar.gz 961323 SHA256 53403da066ef90cbc5a3f801f3dd39bbbfbc41b0a84eb8c1c806243b7e2c6466 SHA512 0537f8679d060db0b7cf6d92540d2016d05cb792e2d0984f235c0975baf4aab23cf0667a2ef21c7e8d7f8a580c0f7ee46b0e05932049323c40f7490e66150277 WHIRLPOOL 58aba9f8f0b9af9c1061c2b075c94ee2adbe0c5a3de183b70ade4bd54bc7c238a89f21b3c173bccf57a94472883300be03b3813e0d75fac51bba31f65f237a3f
24 +DIST alembic-0.8.7.tar.gz 968161 SHA256 7fb8a456d6c47fe24b87e02acb405b2094545f9b574beb80105a64fe9b335a45 SHA512 929ae344106d2ea31d7a47cee48917825e26eb0b2b817e915bb10e142823e825a989c91d90865bad63a48e344fd0f14de97a09f45568720bd257633c437ca21e WHIRLPOOL 0b83049223d8b86251b8bdba592d3f1e4d606e370d86c0e7739d7166b99a01a55bda1c1dfed5587f6b94463f3ec98120091ebbaa883fd702770326bc4bf0a914
25
26 diff --git a/dev-python/alembic/alembic-0.8.7.ebuild b/dev-python/alembic/alembic-0.8.7.ebuild
27 new file mode 100644
28 index 00000000..1fc1aaa
29 --- /dev/null
30 +++ b/dev-python/alembic/alembic-0.8.7.ebuild
31 @@ -0,0 +1,47 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=5
37 +PYTHON_COMPAT=( python2_7 python3_3 python3_4 python3_5)
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
42 +HOMEPAGE="https://bitbucket.org/zzzeek/alembic"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~arm64 ~x86"
48 +IUSE="test doc"
49 +
50 +# requires.txt cites 'SQLAlchemy>=0.7.3' which is really both old and silly
51 +# because it shatters the testsuite. If 'someone' cares to adhere to correct form
52 +# and edit to -0.7.3, feel free, and then pick up the pieces.
53 +RDEPEND=">=dev-python/sqlalchemy-0.8.4[${PYTHON_USEDEP}]
54 + dev-python/mako[${PYTHON_USEDEP}]
55 + >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]"
56 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
57 + test? ( ${RDEPEND}
58 + dev-python/nose[${PYTHON_USEDEP}]
59 + dev-python/mock[${PYTHON_USEDEP}] )"
60 +# For test phase
61 +DISTUTILS_IN_SOURCE_BUILD=1
62 +
63 +python_prepare_all() {
64 + # suite passes all if run from source. The residual fail & error are quite erroneous
65 + rm tests/test_script_consumption.py
66 +
67 + distutils-r1_python_prepare_all
68 +}
69 +
70 +python_test() {
71 + ${EPYTHON} run_tests.py || die "Testing failed with ${EPYTHON}"
72 +}
73 +
74 +python_install_all() {
75 + use doc && local HTML_DOCS=( docs/. )
76 +
77 + distutils-r1_python_install_all
78 +}