diff options
author | 2018-01-02 14:39:34 +0100 | |
---|---|---|
committer | 2018-01-02 15:57:37 +0100 | |
commit | ef38b344af53f212ffe06d16420fbd1fcf4ce90f (patch) | |
tree | d4ad707624fe5cfbf234ce6624b81828edd09f87 /dev-python/alembic | |
parent | dev-python/aiosmtpd: Clean old up (diff) | |
download | gentoo-ef38b344af53f212ffe06d16420fbd1fcf4ce90f.tar.gz gentoo-ef38b344af53f212ffe06d16420fbd1fcf4ce90f.tar.bz2 gentoo-ef38b344af53f212ffe06d16420fbd1fcf4ce90f.zip |
dev-python/alembic: Clean old up
Diffstat (limited to 'dev-python/alembic')
-rw-r--r-- | dev-python/alembic/Manifest | 1 | ||||
-rw-r--r-- | dev-python/alembic/alembic-0.8.10.ebuild | 46 |
2 files changed, 0 insertions, 47 deletions
diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest index 9b53841d3148..a2a37538ae43 100644 --- a/dev-python/alembic/Manifest +++ b/dev-python/alembic/Manifest @@ -1,3 +1,2 @@ -DIST alembic-0.8.10.tar.gz 976028 BLAKE2B d9309b5ea4be7b42394e1273e3113f9eb1c181806fb21eb414f4b2102e8df25b4f123538c96891d28a9f7d16904b42f6a1980a2f7a93297d170d28dd3448d879 SHA512 28456eb41a2b2d0d870f34cfddf46c25ed01fd1ee99b1a3697e6c0c5369f49245e54db0d7232cc839cf03a5c48efb48a8b967586b3a81ba9462b485b6782a415 DIST alembic-0.9.3.tar.gz 991744 BLAKE2B 2d18836fee1bd9a57cdc1b8f6159b9c1dc79b82a1bccd8cb62a597dfe47751992929630b9460e430be38bfd43d48cd1981858fa6b924a7283a48c12226867ef5 SHA512 1f39521a1cc9e1e8f8d344f2e48e1f656aed2ffda8e0608b9c5a9a7a1f0e4d16865ae0fba903023512a198afc70e72c683b0ff2bd1bc2e9ba6667009e940a63e DIST alembic-0.9.5.tar.gz 990808 BLAKE2B a8155d15a9de2acb7a2f01829a0d01eeae5a7981a72aaa95e0d9d53433f52d0695d7e5414dbded1e5d53253a5e2d1cef67b12ed6be58d901859f3eae137486c1 SHA512 7588a681a6cf50a58ad697cb879d465d259880a473647d598242609c6321a8be7f53fc0d9a24fe976c4c65750eb0acc1a8e60253d4ccda33c87319ac9985e8b8 diff --git a/dev-python/alembic/alembic-0.8.10.ebuild b/dev-python/alembic/alembic-0.8.10.ebuild deleted file mode 100644 index 0d136584e356..000000000000 --- a/dev-python/alembic/alembic-0.8.10.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) - -inherit distutils-r1 - -DESCRIPTION="database migrations tool, written by the author of SQLAlchemy" -HOMEPAGE="https://bitbucket.org/zzzeek/alembic" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~arm64 x86" -IUSE="test doc" - -# requires.txt cites 'SQLAlchemy>=0.7.3' which is really both old and silly -# because it shatters the testsuite. If 'someone' cares to adhere to correct form -# and edit to -0.7.3, feel free, and then pick up the pieces. -RDEPEND=">=dev-python/sqlalchemy-0.8.4[${PYTHON_USEDEP}] - dev-python/mako[${PYTHON_USEDEP}] - >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - test? ( ${RDEPEND} - dev-python/nose[${PYTHON_USEDEP}] - dev-python/mock[${PYTHON_USEDEP}] )" -# For test phase -DISTUTILS_IN_SOURCE_BUILD=1 - -python_prepare_all() { - # suite passes all if run from source. The residual fail & error are quite erroneous - rm tests/test_script_consumption.py || die - - distutils-r1_python_prepare_all -} - -python_test() { - ${EPYTHON} run_tests.py || die "Testing failed with ${EPYTHON}" -} - -python_install_all() { - use doc && local HTML_DOCS=( docs/. ) - - distutils-r1_python_install_all -} |