Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/alembic/
Date: Tue, 02 Jan 2018 14:57:51
Message-Id: 1514905057.ef38b344af53f212ffe06d16420fbd1fcf4ce90f.mgorny@gentoo
1 commit: ef38b344af53f212ffe06d16420fbd1fcf4ce90f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 2 13:39:34 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 2 14:57:37 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef38b344
7
8 dev-python/alembic: Clean old up
9
10 dev-python/alembic/Manifest | 1 -
11 dev-python/alembic/alembic-0.8.10.ebuild | 46 --------------------------------
12 2 files changed, 47 deletions(-)
13
14 diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
15 index 9b53841d314..a2a37538ae4 100644
16 --- a/dev-python/alembic/Manifest
17 +++ b/dev-python/alembic/Manifest
18 @@ -1,3 +1,2 @@
19 -DIST alembic-0.8.10.tar.gz 976028 BLAKE2B d9309b5ea4be7b42394e1273e3113f9eb1c181806fb21eb414f4b2102e8df25b4f123538c96891d28a9f7d16904b42f6a1980a2f7a93297d170d28dd3448d879 SHA512 28456eb41a2b2d0d870f34cfddf46c25ed01fd1ee99b1a3697e6c0c5369f49245e54db0d7232cc839cf03a5c48efb48a8b967586b3a81ba9462b485b6782a415
20 DIST alembic-0.9.3.tar.gz 991744 BLAKE2B 2d18836fee1bd9a57cdc1b8f6159b9c1dc79b82a1bccd8cb62a597dfe47751992929630b9460e430be38bfd43d48cd1981858fa6b924a7283a48c12226867ef5 SHA512 1f39521a1cc9e1e8f8d344f2e48e1f656aed2ffda8e0608b9c5a9a7a1f0e4d16865ae0fba903023512a198afc70e72c683b0ff2bd1bc2e9ba6667009e940a63e
21 DIST alembic-0.9.5.tar.gz 990808 BLAKE2B a8155d15a9de2acb7a2f01829a0d01eeae5a7981a72aaa95e0d9d53433f52d0695d7e5414dbded1e5d53253a5e2d1cef67b12ed6be58d901859f3eae137486c1 SHA512 7588a681a6cf50a58ad697cb879d465d259880a473647d598242609c6321a8be7f53fc0d9a24fe976c4c65750eb0acc1a8e60253d4ccda33c87319ac9985e8b8
22
23 diff --git a/dev-python/alembic/alembic-0.8.10.ebuild b/dev-python/alembic/alembic-0.8.10.ebuild
24 deleted file mode 100644
25 index 0d136584e35..00000000000
26 --- a/dev-python/alembic/alembic-0.8.10.ebuild
27 +++ /dev/null
28 @@ -1,46 +0,0 @@
29 -# Copyright 1999-2017 Gentoo Foundation
30 -# Distributed under the terms of the GNU General Public License v2
31 -
32 -EAPI=6
33 -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
34 -
35 -inherit distutils-r1
36 -
37 -DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
38 -HOMEPAGE="https://bitbucket.org/zzzeek/alembic"
39 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
40 -
41 -LICENSE="MIT"
42 -SLOT="0"
43 -KEYWORDS="amd64 ~arm64 x86"
44 -IUSE="test doc"
45 -
46 -# requires.txt cites 'SQLAlchemy>=0.7.3' which is really both old and silly
47 -# because it shatters the testsuite. If 'someone' cares to adhere to correct form
48 -# and edit to -0.7.3, feel free, and then pick up the pieces.
49 -RDEPEND=">=dev-python/sqlalchemy-0.8.4[${PYTHON_USEDEP}]
50 - dev-python/mako[${PYTHON_USEDEP}]
51 - >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]"
52 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
53 - test? ( ${RDEPEND}
54 - dev-python/nose[${PYTHON_USEDEP}]
55 - dev-python/mock[${PYTHON_USEDEP}] )"
56 -# For test phase
57 -DISTUTILS_IN_SOURCE_BUILD=1
58 -
59 -python_prepare_all() {
60 - # suite passes all if run from source. The residual fail & error are quite erroneous
61 - rm tests/test_script_consumption.py || die
62 -
63 - distutils-r1_python_prepare_all
64 -}
65 -
66 -python_test() {
67 - ${EPYTHON} run_tests.py || die "Testing failed with ${EPYTHON}"
68 -}
69 -
70 -python_install_all() {
71 - use doc && local HTML_DOCS=( docs/. )
72 -
73 - distutils-r1_python_install_all
74 -}